mirror of
https://github.com/antfu/skills.git
synced 2026-09-14 16:12:50 +08:00
26 lines
613 B
JSON
26 lines
613 B
JSON
{
|
|
"private": true,
|
|
"packageManager": "pnpm@10.28.2",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"sync": "tsx scripts/sync.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",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts,mjs,mts}": "eslint --fix"
|
|
}
|
|
}
|