# [5.0.0](https://github.com/bmadcode/BMAD-METHOD/compare/v4.1.0...v5.0.0) (2025-06-15) ### Bug Fixes * add docs ([48ef875](48ef875f5e)) * auto semantic versioning fix ([166ed04](166ed04767)) * auto semantic versioning fix again ([11260e4](11260e4395)) * BMAD install creates `.bmad-core/.bmad-core/` directory structure + updates ([#223](https://github.com/bmadcode/BMAD-METHOD/issues/223)) ([28b313c](28b313c01d)) * resolve NPM token configuration ([620b09a](620b09a556)) * resolve NPM token configuration ([b447a8b](b447a8bd57)) * update dependency resolver to support both yml and yaml code blocks ([ba1e5ce](ba1e5ceb36)) * update glob usage to modern async API ([927515c](927515c089)) * update yaml-format.js to use dynamic chalk imports ([b53d954](b53d954b7a)) ### Features * enhance installer with multi-IDE support and sync version bumping ([ebfd4c7](ebfd4c7dd5)) * improve semantic-release automation and disable manual version bumping ([38a5024](38a5024026)) * sync IDE configurations across all platforms ([b6a2f5b](b6a2f5b25e)) * update badges to use dynamic NPM version ([5a6fe36](5a6fe361d0)) * web bundles include a simplified prd with architecture now for simpler project folderes not needing a full plown architecture doc! ([8773545](877354525e)) ### BREAKING CHANGES * Manual version bumping via npm scripts is now disabled. Use conventional commits for automated releases. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
74 lines
2.1 KiB
JSON
74 lines
2.1 KiB
JSON
{
|
|
"name": "bmad-method",
|
|
"version": "5.0.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",
|
|
"release:test": "semantic-release --dry-run --no-ci || echo 'Config test complete - authentication errors are expected locally'",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@kayvan/markdown-tree-parser": "^1.5.0",
|
|
"chalk": "^5.4.1",
|
|
"commander": "^14.0.0",
|
|
"fs-extra": "^11.3.0",
|
|
"glob": "^11.0.3",
|
|
"inquirer": "^12.6.3",
|
|
"js-yaml": "^4.1.0",
|
|
"ora": "^8.2.0"
|
|
},
|
|
"keywords": [
|
|
"agile",
|
|
"ai",
|
|
"orchestrator",
|
|
"development",
|
|
"methodology",
|
|
"agents",
|
|
"bmad"
|
|
],
|
|
"author": "Brian (BMad) Madison",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bmadcode/BMAD-METHOD.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.1.1",
|
|
"prettier": "^3.5.3",
|
|
"semantic-release": "^22.0.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"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"
|
|
]
|
|
}
|
|
}
|