-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 853 Bytes
/
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
{
"private": true,
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@8.15.9",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^16.18.126",
"eslint": "^9.20.1",
"lint-staged": "^15.4.3",
"simple-git-hooks": "^2.11.1",
"typescript": "5.7.3",
"typescript-eslint": "^8.24.1"
},
"scripts": {
"build": "pnpm run -r build",
"build:watch": "pnpm build && pnpm run -r --parallel build:watch",
"lint": "pnpm eslint && pnpm type-check",
"eslint": "eslint --cache .",
"type-check": "pnpm run -r type-check",
"test": "pnpm run -r test"
},
"repository": {
"type": "git",
"url": "https://github.com/yioneko/vtsls.git"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix"
]
}
}