BMAD-METHOD/package.json

78 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2025-06-06 02:24:31 -05:00
{
"name": "bmad-method",
"version": "4.30.3",
2025-06-06 02:24:31 -05:00
"description": "Breakthrough Method of Agile AI-driven Development",
"main": "tools/cli.js",
"bin": {
2025-06-14 20:39:46 -05:00
"bmad": "tools/bmad-npx-wrapper.js",
"bmad-method": "tools/bmad-npx-wrapper.js"
},
2025-06-10 21:41:58 -05:00
"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",
2025-06-13 16:36:48 -05:00
"validate": "node tools/cli.js validate",
2025-06-14 18:11:16 -05:00
"install:bmad": "node tools/installer/bin/bmad.js install",
2025-06-17 15:31:58 -05:00
"format": "prettier --write \"**/*.md\"",
"version:patch": "node tools/version-bump.js patch",
2025-06-14 18:20:06 -05:00
"version:minor": "node tools/version-bump.js minor",
"version:major": "node tools/version-bump.js major",
"version:expansion": "node tools/bump-expansion-version.js",
"version:expansion:set": "node tools/update-expansion-version.js",
"version:all": "node tools/bump-all-versions.js",
"version:all:minor": "node tools/bump-all-versions.js minor",
"version:all:major": "node tools/bump-all-versions.js major",
"version:all:patch": "node tools/bump-all-versions.js patch",
"version:expansion:all": "node tools/bump-all-versions.js",
"version:expansion:all:minor": "node tools/bump-all-versions.js minor",
"version:expansion:all:major": "node tools/bump-all-versions.js major",
"version:expansion:all:patch": "node tools/bump-all-versions.js patch",
2025-06-14 20:09:20 -05:00
"release": "semantic-release",
"release:test": "semantic-release --dry-run --no-ci || echo 'Config test complete - authentication errors are expected locally'",
2025-06-14 18:11:16 -05:00
"prepare": "husky"
2025-06-10 21:41:58 -05:00
},
2025-06-06 02:24:31 -05:00
"dependencies": {
"@kayvan/markdown-tree-parser": "^1.5.0",
"chalk": "^4.1.2",
"commander": "^14.0.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.3",
"inquirer": "^8.2.6",
2025-06-14 18:11:16 -05:00
"js-yaml": "^4.1.0",
"ora": "^5.4.1"
2025-06-06 02:24:31 -05:00
},
"keywords": [
"agile",
"ai",
2025-06-13 08:05:58 -05:00
"orchestrator",
2025-06-06 02:24:31 -05:00
"development",
"methodology",
"agents",
"bmad"
],
2025-06-08 02:12:13 -05:00
"author": "Brian (BMad) Madison",
2025-06-06 02:24:31 -05:00
"license": "MIT",
"repository": {
"type": "git",
2025-06-14 20:39:46 -05:00
"url": "git+https://github.com/bmadcode/BMAD-METHOD.git"
2025-06-06 02:24:31 -05:00
},
"engines": {
"node": ">=20.0.0"
2025-06-14 18:11:16 -05:00
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.1.1",
"prettier": "^3.5.3",
2025-06-14 20:09:20 -05:00
"semantic-release": "^22.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
2025-06-14 18:11:16 -05:00
"yaml-lint": "^1.7.0"
},
"lint-staged": {
"**/*.md": [
"prettier --write"
2025-06-14 18:11:16 -05:00
]
2025-06-06 02:24:31 -05:00
}
2025-06-08 02:12:13 -05:00
}