-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 883 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 883 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
26
27
28
29
30
{
"private": true,
"scripts": {
"core": "pnpm --filter nanotags",
"astro": "pnpm --filter nanotags-docs",
"typecheck": "pnpm -r run typecheck",
"lint": "pnpm -r run lint",
"format": "pnpm -r run format",
"test": "pnpm -r run test",
"prepare": "simple-git-hooks",
"bump": "./scripts/bump.sh"
},
"devDependencies": {
"nano-staged": "^0.9.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.56.0",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged",
"pre-push": "pnpm typecheck"
},
"nano-staged": {
"*.{js,cjs,mjs,jsx,ts,mts,tsx}": [
"oxlint --fix --fix-suggestions",
"oxfmt"
]
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}