41 lines
898 B
JSON
41 lines
898 B
JSON
{
|
|
"name": "bmad-method",
|
|
"version": "4.0.0",
|
|
"description": "Breakthrough Method of Agile AI-driven Development",
|
|
"main": "build/cli.js",
|
|
"bin": {
|
|
"bmad-build": "build/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "node build/cli.js build",
|
|
"list:agents": "node build/cli.js list:agents",
|
|
"analyze:deps": "node build/cli.js analyze:deps",
|
|
"validate": "node build/cli.js validate",
|
|
"test": "echo \"Tests not yet implemented\" && exit 0"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^9.4.1",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.5.0"
|
|
},
|
|
"keywords": [
|
|
"agile",
|
|
"ai",
|
|
"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"
|
|
}
|
|
}
|