-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 KB
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
{
"name": "skills-package-manager-workspace",
"private": true,
"version": "0.5.0",
"packageManager": "pnpm@10.33.0",
"scripts": {
"prepare": "simple-git-hooks && pnpm run build",
"build": "pnpm run generate:schema && pnpm -r --filter=!website build",
"build:website": "pnpm --filter website build",
"generate:schema": "tsx packages/skills-package-manager/scripts/generate-schema.ts",
"bump": "bumpp -r --no-tag --no-push",
"test": "rstest run",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check",
"check:write": "biome check --write"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec nano-staged"
},
"nano-staged": {
"*.{js,ts,cjs,mjs,jsx,tsx,json,jsonc,yml,yaml}": "biome check --write --no-errors-on-unmatched",
"*.{md,mdx}": "biome format --write --no-errors-on-unmatched"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@rstest/core": "^0.9.4",
"@types/node": "^24.0.0",
"bumpp": "^11.0.1",
"nano-staged": "^0.9.0",
"path-serializer": "^0.6.0",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.21.0"
}
}