-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.42 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@blade-ai/boss-skill",
"version": "3.9.4",
"description": "BMAD Harness Engineer — pluggable pipeline skill for coding agents. Compatible with Claude Code, OpenClaw, Codex & Antigravity. Auto-detect install.",
"author": {
"name": "echoVic",
"email": "137844255@qq.com"
},
"license": "MIT",
"homepage": "https://github.com/echoVic/boss-skill",
"repository": {
"type": "git",
"url": "git+https://github.com/echoVic/boss-skill.git"
},
"bugs": {
"url": "https://github.com/echoVic/boss-skill/issues"
},
"keywords": [
"bmad",
"harness-engineer",
"pipeline",
"agent-orchestration",
"claude-code",
"openclaw",
"codex",
"antigravity",
"coding-agent",
"skill",
"quality-gate",
"brainstorming",
"hooks",
"subagent",
"devops",
"automation"
],
"files": [
"packages/boss-cli/dist/",
"packages/boss-cli/assets/",
"packages/boss-cli/src/runtime/schema/",
"skill/",
"scripts/",
".claude/",
".claude-plugin/",
".codex-plugin/",
"DESIGN.md"
],
"workspaces": [
"packages/*"
],
"type": "module",
"bin": {
"boss": "packages/boss-cli/dist/bin/boss.js",
"boss-skill": "packages/boss-cli/dist/bin/boss.js"
},
"scripts": {
"build": "node -e \"require('node:fs').rmSync('packages/boss-cli/dist',{recursive:true,force:true})\" --input-type=commonjs && tsc -p packages/boss-cli/tsconfig.json",
"typecheck": "tsc --noEmit -p packages/boss-cli/tsconfig.json && tsc --noEmit --target ES2022 --module NodeNext --moduleResolution NodeNext --strict --noUncheckedIndexedAccess --esModuleInterop false --skipLibCheck --types node,vitest/globals test/bin/boss-skill.test.ts test/helpers/run-cli.ts vitest.config.ts",
"test": "vitest run",
"test:faults": "vitest run test/faults",
"test:harness": "vitest run test/harness",
"test:install-matrix": "vitest run test/install",
"test:skills": "vitest run test/skills",
"evals": "bash test/evals/run-evals.sh",
"test:watch": "vitest",
"release": "node scripts/release.js",
"prepublishOnly": "npm run build && node packages/boss-cli/dist/bin/boss.js --version"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/node": "^24.0.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
}
}