You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
836 B
34 lines
836 B
{
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"packageManager": "pnpm@8.6.2",
|
|
"type": "module",
|
|
"scripts": {
|
|
"check": "tsc --incremental --noEmit",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.11.0"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged && pnpm check",
|
|
"commit-msg": "node scripts/verifyCommit.js"
|
|
},
|
|
"lint-staged": {
|
|
"*.{json,ts?(x)}": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.4.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"chalk": "^5.3.0",
|
|
"eslint": "^8.45.0",
|
|
"lint-staged": "^13.2.3",
|
|
"simple-git-hooks": "^2.9.0",
|
|
"typescript": "^5.0.2",
|
|
"vite": "^4.4.5",
|
|
"vitest": "^0.33.0"
|
|
}
|
|
}
|
|
|