-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.66 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.66 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
{
"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",
"build": "mkdir -p ./public && rm -rf ./public/* && vite build",
"start": "cp -r ./_public/* ./public && concurrently --kill-others \"npx wrangler pages dev public\" \"npx vite\"",
"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/routes": "^5.0.0",
"htm": "^3.1.1",
"ky": "^1.14.1",
"preact": "^10.28.0",
"route-event": "^8.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250109.0",
"@preact/preset-vite": "^2.9.4",
"@substrate-system/debug": "^0.9.60",
"@substrate-system/tapout": "^0.0.37",
"@substrate-system/tapzero": "^0.10.16",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.19.1",
"auto-changelog": "^2.4.0",
"concurrently": "^9.1.2",
"esbuild": "^0.27.4",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"lightningcss": "^1.31.1",
"stylelint-config-standard": "^40.0.0",
"stylelint": "^17.1.0",
"tap-spec": "^5.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"wrangler": "^4.56.0"
},
"author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)"
}