-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 717 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 717 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
{
"name": "unsight-dev",
"type": "module",
"private": true,
"packageManager": "pnpm@10.21.0",
"scripts": {
"dev": "pnpm --filter web dev",
"dev:ext": "pnpm --filter unsight dev",
"lint": "eslint --cache .",
"test:types": "pnpm -r test:types",
"test:unit": "pnpm -r test:unit",
"postinstall": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "6.0.0",
"changelogithub": "14.0.0",
"eslint": "9.39.4",
"nano-staged": "0.9.0",
"simple-git-hooks": "2.13.1",
"typescript": "5.9.2"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"npx eslint --fix"
]
}
}