-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1006 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1006 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"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"
}
}