-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 941 Bytes
/
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
{
"name": "root",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"prettier": "^3.4.2",
"tailwindcss": "^3.4.17",
"wrangler": "^3.100.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"
},
"packageManager": "[email protected]"
}