* chore: fix installation directory handling to use .bmad-core as default path - Remove redundant ./ prefix from default directory - Update all default paths from ./.bmad-core to .bmad-core - Add logic to handle direct .bmad-core path selection - Treat parent as project root when .bmad-core specified - Simplify directory state detection for existing files - Remove unknown_existing state type from installer logic * chore: refactor installer to use modern JS patterns and improve code clarity ## CHANGES - Replace require with node:path import - Add block scoping to switch cases - Remove unused options parameter from update - Use optional chaining for ideConfig check - Replace forEach with for...of loops - Use template literals for string concatenation - Add early return to avoid else block - Update spell check dictionary entries * chore: update dependencies to latest major versions ## CHANGES - Update @kayvan/markdown-tree-parser to v1.5.0 - Update chalk to v5.4.1 for ESM support - Update commander to v14.0.0 with Node 20 requirement - Update fs-extra to v11.3.0 - Update glob to v11.0.3 with new API - Update inquirer to v12.6.3 with modular design - Update ora to v8.2.0 with improved features
74 lines
2.1 KiB
JSON
74 lines
2.1 KiB
JSON
{
|
|
"name": "bmad-method",
|
|
"version": "4.2.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"
|
|
]
|
|
}
|
|
}
|