-
-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 610 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 610 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@10.32.1",
"scripts": {
"lint": "eslint .",
"start": "node scripts/cli.ts",
"prepare": "simple-git-hooks && git submodule update --init --recursive"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.2",
"@clack/prompts": "^1.1.0",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"lint-staged": "^16.3.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,mts}": "eslint --fix"
}
}