From 9d69f378fe6e1cf6910a3a8bee6c7accae4fa263 Mon Sep 17 00:00:00 2001 From: Jonah Schulte Date: Sat, 27 Dec 2025 22:57:45 -0500 Subject: [PATCH] feat: prepare package for npm distribution as @jschulte/bmad-method - Renamed package to @jschulte/bmad-method (scoped package) - Updated version to 6.0.0-alpha.22 - Updated repository URL to jschulte/BMAD-METHOD - Added .npmignore to exclude dev files - Enhanced description to mention story-pipeline This allows users to install via: npx @jschulte/bmad-method install --- .npmignore | 39 +++++++++++++++++++++++++++++++++++++++ package.json | 8 ++++---- 2 files changed, 43 insertions(+), 4 deletions(-) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 00000000..cb2b4ea2 --- /dev/null +++ b/.npmignore @@ -0,0 +1,39 @@ +# Development files +.git +.github +.husky +.vscode +.claude +.agentvibes +.DS_Store +*.log +npm-debug.log* +.env* + +# Test files +test/ +coverage/ +*.test.js +*.spec.js + +# Documentation (keep README.md) +docs/ +website/ +*.pdf + +# Build artifacts +dist/ +build/ +*.tgz + +# IDE +.idea/ +*.swp +*.swo +*~ + +# Misc +.editorconfig +.prettierrc* +.eslintrc* +.markdownlint* diff --git a/package.json b/package.json index 90722299..91a478f0 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "$schema": "https://json.schemastore.org/package.json", - "name": "bmad-method", - "version": "6.0.0-alpha.21", - "description": "Breakthrough Method of Agile AI-driven Development", + "name": "@jschulte/bmad-method", + "version": "6.0.0-alpha.22", + "description": "Breakthrough Method of Agile AI-driven Development (Enhanced with story-pipeline)", "keywords": [ "agile", "ai", @@ -14,7 +14,7 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/bmad-code-org/BMAD-METHOD.git" + "url": "git+https://github.com/jschulte/BMAD-METHOD.git" }, "license": "MIT", "author": "Brian (BMad) Madison",