-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 922 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 922 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
{
"name": "root",
"private": true,
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"devDependencies": {
"prettier": "^3.8.1",
"tailwindcss": "^3.4.17",
"wrangler": "^4.69.0"
},
"scripts": {
"prettier-version": "prettier --version",
"md-fmt": "prettier --write '**/*.md'",
"md-check": "prettier --check '**/*.md'",
"css-minify": "tailwindcss --minify -i style/tailwind.css -o assets/style.css",
"assets": "mkdir -p assets && cp public/* assets/",
"wasm-pack": "wasm-pack build --out-dir assets/pkg --release --no-typescript --target web --out-name client --features hydrate --no-default-features",
"wasm-pack-dev": "wasm-pack build --out-dir assets/pkg --dev --no-opt --no-typescript --target web --out-name client --features hydrate --no-default-features",
"build": "wrangler build",
"dev": "wrangler dev --env quick",
"start": "wrangler dev"
}
}