generated from nichoth/template-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
37
38
39
40
41
42
{
"version": "0.0.0",
"type": "module",
"main": "src/index.js",
"private": true,
"scripts": {
"start": "vite",
"copy": "cp node_modules/@nichoth/tonic/dist/tonic.min.js ./public",
"lint": "standardx -v",
"build": "mkdir -p public && rm -rf ./public/* && npm run copy && vite build",
"preversion": "check-deps . 5 && npm run lint",
"version": "auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"test": "esbuild --bundle --platform=browser --format=esm test/test.js | tape-run --html=test/index.html | tap-arc"
},
"dependencies": {
"@nichoth/routes": "^4.0.1",
"@nichoth/tonic": "^15.3.4",
"route-event": "^6.0.8"
},
"devDependencies": {
"@babel/eslint-parser": "7.26.8",
"@bicycle-codes/debug": "^0.7.2",
"@bicycle-codes/tapzero": "^0.10.10",
"@nichoth/check-max-deps": "0.0.3",
"auto-changelog": "^2.5.0",
"esbuild": "^0.25.0",
"postcss-nesting": "^13.0.1",
"standardx": "^7.0.0",
"tap-arc": "^1.3.2",
"tape-run": "^11.0.0",
"vite": "^6.2.0"
},
"standardx": {
"ignore": [
"public/*"
]
},
"directories": {
"test": "test"
}
}