Files
BMAD-METHOD/package.json
Brian Madison 01cb46e43d fix: Add bin field to root package.json for npx execution
- Points to installer CLI at tools/installer/bin/bmad.js
- Enables npx github:bmadcode/BMAD-METHOD#v4-alpha to work

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-13 08:39:56 -05:00

42 lines
1.0 KiB
JSON

{
"name": "bmad-method",
"version": "4.0.0",
"description": "Breakthrough Method of Agile AI-driven Development",
"main": "tools/cli.js",
"bin": {
"bmad": "./tools/installer/bin/bmad.js",
"bmad-method": "./tools/installer/bin/bmad.js"
},
"scripts": {
"build": "node tools/cli.js build",
"install": "node tools/installer/bin/bmad.js install",
"build:agents": "node tools/cli.js build --agents-only",
"build:teams": "node tools/cli.js build --teams-only",
"list:agents": "node tools/cli.js list:agents",
"validate": "node tools/cli.js validate"
},
"dependencies": {
"commander": "^9.4.1",
"js-yaml": "^4.1.0",
"@kayvan/markdown-tree-parser": "^1.4.2"
},
"keywords": [
"agile",
"ai",
"orchestrator",
"development",
"methodology",
"agents",
"bmad"
],
"author": "Brian (BMad) Madison",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/bmad-method.git"
},
"engines": {
"node": ">=14.0.0"
}
}