-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=v18.3.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@stylistic/eslint-plugin": "^4.2.0",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.13.9",
"@vue/eslint-config-typescript": "^14.5.0",
"eslint": "^9.21.0",
"eslint-plugin-vue": "~10.0.0",
"jiti": "^2.4.2",
"lint-staged": "^15.4.3",
"npm-run-all2": "^7.0.2",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.8.0"
},
"scripts": {
"clean": "pnpm run -r clean",
"docs:dev": "pnpm run --filter ./packages/docs -r dev",
"docs:build": "pnpm run --filter ./packages/docs -r build",
"type-check": "run-p type-check:*",
"type-check:packages": "pnpm run -r type-check",
"type-check:self": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:staged": "lint-staged",
"build": "pnpm run -r build",
"preinstall": "node scripts/preinstall.js",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec run-s type-check lint:staged"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint"
}
}