-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 1.03 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
{
"private": true,
"name": "ava",
"module": "main.tsx",
"type": "module",
"scripts": {
"postinstall": "git submodule update --init --recursive",
"bundle": "esbuild ./src/app/main.tsx --bundle --outdir=./zig-out/app",
"build": "npm run check && npm test && npm run bundle -- --minify --define:DEV=false --define:NEXT=false",
"watch": "npm run bundle -- --sourcemap=inline --watch --define:DEV=true --define:NEXT=true",
"check": "tsc --noEmit",
"test": "node --loader ./src/app/_test-util/loader.js --test ./src/app/*/*.test.*"
},
"prettier": {
"semi": false,
"arrowParens": "avoid",
"printWidth": 125
},
"dependencies": {
"@preact/signals": "^1.2.3",
"@twind/core": "^1.1.3",
"@twind/preset-radix-ui": "^1.0.7",
"@twind/preset-tailwind": "^1.1.4",
"lucide": "^0.363.0",
"marked": "^12.0.1",
"preact": "^10.20.1"
},
"devDependencies": {
"esbuild": "^0.20.1",
"typescript": "5.4.3",
"undom": "^0.4.0"
},
"overrides": {
"typescript": "5.4.3"
}
}