forked from antfu/skills
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 592 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 592 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
{
"private": true,
"packageManager": "pnpm@10.28.2",
"scripts": {
"lint": "eslint .",
"start": "node scripts/cli.ts",
"prepare": "simple-git-hooks && git submodule update --init --recursive"
},
"devDependencies": {
"@antfu/eslint-config": "^7.2.0",
"@clack/prompts": "^0.11.0",
"@types/node": "^25.0.10",
"eslint": "^9.39.2",
"lint-staged": "^15.5.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,mts}": "eslint --fix"
}
}