From 01cb46e43da9713c24e68e57221ebe312c53b6ee Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Fri, 13 Jun 2025 08:39:56 -0500 Subject: [PATCH] fix: Add bin field to root package.json for npx execution MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Points to installer CLI at tools/installer/bin/bmad.js - Enables npx github:bmadcode/BMAD-METHOD#v4-alpha to work 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e7b02cfd..cb59272f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,10 @@ "version": "4.0.0", "description": "Breakthrough Method of Agile AI-driven Development", "main": "tools/cli.js", - "bin": {}, + "bin": { + "bmad": "./tools/installer/bin/bmad.js", + "bmad-method": "./tools/installer/bin/bmad.js" + }, "scripts": { "build": "node tools/cli.js build", "install": "node tools/installer/bin/bmad.js install",