-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@stylistic/eslint-plugin": "^5.6.1",
"@tsconfig/node24": "^24.0.3",
"@types/node": "^24.10.4",
"@vue/eslint-config-typescript": "^14.6.0",
"eslint": "^9.39.2",
"eslint-plugin-vue": "~10.6.2",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"npm-run-all2": "^8.0.4",
"simple-git-hooks": "^2.13.1",
"typescript": "~5.9.3"
},
"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 --cache",
"lint:fix": "eslint --fix --cache",
"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 --fix --cache"
}
}