{ "name": "bmad-method", "version": "4.1.0", "description": "Breakthrough Method of Agile AI-driven Development", "main": "tools/cli.js", "bin": { "bmad": "./tools/bmad-npx-wrapper.js", "bmad-method": "./tools/bmad-npx-wrapper.js" }, "scripts": { "build": "node tools/cli.js build", "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", "install:bmad": "node tools/installer/bin/bmad.js install", "format": "prettier --write \"**/*.md\" && node tools/yaml-format.js **/*.md **/*.yml **/*.yaml .roo/.roomodes", "version:patch": "node tools/version-bump.js patch", "version:minor": "node tools/version-bump.js minor", "version:major": "node tools/version-bump.js major", "release": "semantic-release", "prepare": "husky" }, "dependencies": { "@kayvan/markdown-tree-parser": "^1.4.2", "chalk": "^4.1.2", "commander": "^9.4.1", "fs-extra": "^11.1.0", "glob": "^8.0.3", "inquirer": "^8.2.5", "js-yaml": "^4.1.0", "ora": "^5.4.1" }, "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" }, "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", "husky": "^9.1.7", "lint-staged": "^16.1.1", "prettier": "^3.5.3", "semantic-release": "^24.2.5", "yaml-lint": "^1.7.0" }, "lint-staged": { "*.{yml,yaml}": [ "node tools/yaml-format.js" ], "*.md": [ "node tools/yaml-format.js" ], ".roomodes": [ "node tools/yaml-format.js" ] } }