generated from nichoth/template-cloudflare-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.25 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.25 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"type": "module",
"private": "true",
"version": "0.0.0",
"main": "public/index.js",
"scripts": {
"lint": "eslint \"./**/*.{ts,js}\"",
"build-tests": "esbuild test/index.ts --bundle --format=cjs --keep-names > test/test-bundle.js",
"test": "esbuild ./test/index.ts --bundle | tapout",
"test:sync": "esbuild ./test/sync.ts --bundle | tapout",
"test:db": "esbuild ./test/db-adapter.ts --bundle | tapout",
"build": "mkdir -p ./public && rm -rf ./public/* && npx vite build $([ \"$NODE_ENV\" != \"production\" ] && echo \"--mode staging\")",
"start": "vite",
"toc": "markdown-toc --maxdepth 3 -i README.md",
"preversion": "npm run lint",
"version": "auto-changelog --template keepachangelog --breaking-pattern 'BREAKING CHANGE' && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@preact/signals": "^2.5.1",
"@substrate-system/a11y": "^0.0.17",
"@substrate-system/check-box": "^0.0.11",
"@substrate-system/css-normalize": "^0.0.13",
"@substrate-system/hamburger-two": "^0.0.11",
"@substrate-system/icons": "^0.1.29",
"@substrate-system/routes": "^5.0.0",
"@substrate-system/state": "^0.0.4",
"@substrate-system/tool-tip": "^0.0.5",
"hono": "^4.11.3",
"htm": "^3.1.1",
"ky": "^1.14.1",
"preact": "^10.28.0",
"route-event": "^7.4.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.19.0",
"@cloudflare/workers-types": "^4.20250109.0",
"@hono/vite-dev-server": "^0.23.0",
"@preact/preset-vite": "^2.9.4",
"@substrate-system/debug": "^0.9.60",
"@substrate-system/tapout": "^0.0.35",
"@substrate-system/tapzero": "^0.10.16",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.19.1",
"auto-changelog": "^2.4.0",
"concurrently": "^9.1.2",
"esbuild": "^0.27.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"lightningcss": "^1.30.2",
"markdown-toc": "^1.2.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^39.0.1",
"tap-spec": "^5.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"wrangler": "^4.56.0"
},
"author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)"
}