-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "example-pear-react-tailwind-shadcn-js",
"version": "0.0.1",
"license": "Apache-2.0",
"type": "module",
"main": "index.html",
"scripts": {
"postinstall": "npx patch-package",
"clean": "rm -rf build",
"build:swc": "npm run clean && swc src -d build --copy-files",
"build:swc:watch": "npm run build:swc -- --watch --config-file .swcrcdev",
"build:tailwind": "npx @tailwindcss/cli -i src/input.css -o src/output.css",
"build:tailwind:watch": "npm run build:tailwind -- --watch",
"build": "npm run build:tailwind && npm run build:swc",
"start": "pear run .",
"dev:start": "RUN_ENV=dev pear run -d .",
"dev:watch": "concurrently --kill-others --kill-others-on-fail \"npm run build:tailwind:watch\" \"npm run build:swc:watch\" \"npm run dev:start\"",
"dev": "npm run dev:watch"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.477.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.0.2"
},
"devDependencies": {
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.5",
"chokidar": "^4.0.3",
"concurrently": "^9.1.2",
"pear-hotmods": "^1.0.3",
"react-refresh": "^0.16.0",
"tailwindcss": "^4.0.9",
"tailwindcss-animate": "^1.0.7"
},
"pear": {
"gui": {
"backgroundColor": "#1F2430",
"height": "540",
"width": "720"
}
}
}