-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 985 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 985 Bytes
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
{
"private": true,
"name": "ava",
"module": "main.tsx",
"type": "module",
"scripts": {
"check": "tsc --noEmit",
"build": "npm run check && npm run build:js -- --define:DEV=false --minify && npm run build:css",
"build:js": "esbuild ./src/app/main.tsx --bundle --outfile=./zig-out/app/index.js",
"build:css": "tailwindcss -i ./src/app/index.css -o ./zig-out/app/index.css",
"watch": "concurrently \"npm run build:js -- --define:DEV=true --watch\" \"npm run build:css -- --watch\""
},
"prettier": {
"semi": false,
"arrowParens": "avoid",
"printWidth": 125
},
"dependencies": {
"@preact/signals": "^1.2.3",
"@tailwindcss/cli": "^4.1.11",
"lucide": "^0.363.0",
"marked": "^12.0.1",
"preact": "^10.20.1",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"concurrently": "^9.2.0",
"esbuild": "^0.20.1",
"typescript": "5.4.3",
"undom": "^0.4.0"
},
"overrides": {
"typescript": "5.4.3"
}
}