mirror of
https://github.com/rstackjs/agent-skills.git
synced 2026-09-14 20:07:05 +08:00
38 lines
1006 B
JSON
38 lines
1006 B
JSON
{
|
|
"name": "@rstackjs/agent-skills",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "pnpm --parallel --filter ./packages/** build",
|
|
"check-spell": "cspell",
|
|
"format": "prettier --write .",
|
|
"lint": "biome check && pnpm run check-spell",
|
|
"prepare": "simple-git-hooks && pnpm build"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm exec nano-staged"
|
|
},
|
|
"nano-staged": {
|
|
"*.{md,mdx,json,css,less,scss}": "prettier --write",
|
|
"*.{js,jsx,ts,tsx,mjs,cjs}": [
|
|
"biome check --write --no-errors-on-unmatched",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.3.13",
|
|
"@rstackjs/config": "workspace:*",
|
|
"@types/node": "^24.10.9",
|
|
"cspell": "^9.6.4",
|
|
"cspell-ban-words": "^0.0.4",
|
|
"nano-staged": "^0.9.0",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-packagejson": "^3.0.0",
|
|
"simple-git-hooks": "^2.13.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"packageManager": "pnpm@10.28.2",
|
|
"engines": {
|
|
"pnpm": ">=10.28.2"
|
|
}
|
|
}
|