Files
BMAD-METHOD/installer/package.json
2025-06-12 19:36:12 -05:00

50 lines
968 B
JSON

{
"name": "bmad-method",
"version": "4.0.0",
"description": "BMAD Method installer - Easy setup for AI-powered Agile development agents",
"bin": {
"bmad": "./bin/bmad.js"
},
"main": "lib/installer.js",
"scripts": {
"test": "jest",
"lint": "eslint lib/**/*.js bin/**/*.js"
},
"keywords": [
"bmad",
"agile",
"ai",
"agents",
"development",
"methodology",
"installer"
],
"author": "Brian (BMad) Madison",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/bmad-method.git"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"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"
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.5.0"
},
"files": [
"bin/",
"lib/",
"config/",
"templates/"
]
}