-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 903 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 903 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
{
"name": "@rstackjs/agent-skills",
"private": true,
"scripts": {
"build": "pnpm --parallel --filter ./packages/** build",
"check-spell": "cspell",
"format": "prettier -w .",
"lint": "rslint && prettier -c . && pnpm run check-spell",
"lint:write": "rslint --fix && prettier -w .",
"prepare": "skills-package-manager install && simple-git-hooks && pnpm build"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint:write"
},
"devDependencies": {
"@rslint/core": "^0.4.2",
"@rstackjs/config": "workspace:*",
"@types/node": "^24.10.9",
"cspell": "^9.6.4",
"cspell-ban-words": "^0.0.4",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^3.0.0",
"simple-git-hooks": "^2.13.1",
"skills-package-manager": "^0.9.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"pnpm": ">=10.28.2"
}
}