-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.14 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.14 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
{
"name": "bmad-plugin",
"version": "6.2.2.0",
"type": "module",
"scripts": {
"prepare": "husky",
"typecheck": "tsc --noEmit",
"lint": "biome check --no-errors-on-unmatched .",
"lint:staged": "biome check --write --staged --no-errors-on-unmatched",
"validate": "bun scripts/validate-upstream-coverage.ts",
"sync": "bun scripts/sync-upstream-content.ts",
"sync:dry": "bun scripts/sync-upstream-content.ts --dry-run",
"sync:source": "bun scripts/sync-upstream-content.ts --source",
"generate:agents": "bun scripts/generate-agents.ts",
"generate:skills": "bun scripts/generate-skills.ts",
"generate:manifest": "bun scripts/generate-agent-manifest.ts",
"sync-all": "bun scripts/sync-all.ts",
"clean:orphaned": "bun scripts/clean-orphaned-skills.ts",
"bump-core": "bun scripts/bump-core.ts",
"bump-module": "bun scripts/bump-module.ts",
"update-readme": "bun scripts/update-readme-version.ts",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/bun": "latest",
"husky": "^9",
"yaml": "^2.8.2"
},
"peerDependencies": {
"typescript": "^5"
}
}