feat: version bump

This commit is contained in:
Brian Madison
2025-07-27 23:54:23 -05:00
parent a80ea150f2
commit e9dd4e7beb
4 changed files with 82 additions and 82 deletions

View File

@@ -1,5 +1,5 @@
name: bmad-2d-phaser-game-dev name: bmad-2d-phaser-game-dev
version: 1.11.0 version: 1.12.0
short-title: Phaser 3 2D Game Dev Pack short-title: Phaser 3 2D Game Dev Pack
description: >- description: >-
2D Game Development expansion pack for BMad Method - Phaser 3 & TypeScript 2D Game Development expansion pack for BMad Method - Phaser 3 & TypeScript

View File

@@ -1,5 +1,5 @@
name: bmad-2d-unity-game-dev name: bmad-2d-unity-game-dev
version: 1.4.4 version: 1.5.0
short-title: Unity C# 2D Game Dev Pack short-title: Unity C# 2D Game Dev Pack
description: 2D Game Development expansion pack for BMad Method - Unity & C# focused description: 2D Game Development expansion pack for BMad Method - Unity & C# focused
author: pbean (PinkyD) author: pbean (PinkyD)

View File

@@ -1,5 +1,5 @@
name: bmad-infrastructure-devops name: bmad-infrastructure-devops
version: 1.10.0 version: 1.11.0
short-title: Infrastructure DevOps Pack short-title: Infrastructure DevOps Pack
description: >- description: >-
This expansion pack extends BMad Method with comprehensive infrastructure and This expansion pack extends BMad Method with comprehensive infrastructure and

View File

@@ -1,81 +1,81 @@
{ {
"name": "bmad-method", "name": "bmad-method",
"version": "4.32.0", "version": "4.33.0",
"description": "Breakthrough Method of Agile AI-driven Development", "description": "Breakthrough Method of Agile AI-driven Development",
"main": "tools/cli.js", "main": "tools/cli.js",
"bin": { "bin": {
"bmad": "tools/bmad-npx-wrapper.js", "bmad": "tools/bmad-npx-wrapper.js",
"bmad-method": "tools/bmad-npx-wrapper.js" "bmad-method": "tools/bmad-npx-wrapper.js"
}, },
"scripts": { "scripts": {
"build": "node tools/cli.js build", "build": "node tools/cli.js build",
"build:agents": "node tools/cli.js build --agents-only", "build:agents": "node tools/cli.js build --agents-only",
"build:teams": "node tools/cli.js build --teams-only", "build:teams": "node tools/cli.js build --teams-only",
"list:agents": "node tools/cli.js list:agents", "list:agents": "node tools/cli.js list:agents",
"validate": "node tools/cli.js validate", "validate": "node tools/cli.js validate",
"flatten": "node tools/flattener/main.js", "flatten": "node tools/flattener/main.js",
"install:bmad": "node tools/installer/bin/bmad.js install", "install:bmad": "node tools/installer/bin/bmad.js install",
"format": "prettier --write \"**/*.md\"", "format": "prettier --write \"**/*.md\"",
"version:patch": "node tools/version-bump.js patch", "version:patch": "node tools/version-bump.js patch",
"version:minor": "node tools/version-bump.js minor", "version:minor": "node tools/version-bump.js minor",
"version:major": "node tools/version-bump.js major", "version:major": "node tools/version-bump.js major",
"version:expansion": "node tools/bump-expansion-version.js", "version:expansion": "node tools/bump-expansion-version.js",
"version:expansion:set": "node tools/update-expansion-version.js", "version:expansion:set": "node tools/update-expansion-version.js",
"version:all": "node tools/bump-all-versions.js", "version:all": "node tools/bump-all-versions.js",
"version:all:minor": "node tools/bump-all-versions.js minor", "version:all:minor": "node tools/bump-all-versions.js minor",
"version:all:major": "node tools/bump-all-versions.js major", "version:all:major": "node tools/bump-all-versions.js major",
"version:all:patch": "node tools/bump-all-versions.js patch", "version:all:patch": "node tools/bump-all-versions.js patch",
"version:expansion:all": "node tools/bump-all-versions.js", "version:expansion:all": "node tools/bump-all-versions.js",
"version:expansion:all:minor": "node tools/bump-all-versions.js minor", "version:expansion:all:minor": "node tools/bump-all-versions.js minor",
"version:expansion:all:major": "node tools/bump-all-versions.js major", "version:expansion:all:major": "node tools/bump-all-versions.js major",
"version:expansion:all:patch": "node tools/bump-all-versions.js patch", "version:expansion:all:patch": "node tools/bump-all-versions.js patch",
"release": "semantic-release", "release": "semantic-release",
"release:test": "semantic-release --dry-run --no-ci || echo 'Config test complete - authentication errors are expected locally'", "release:test": "semantic-release --dry-run --no-ci || echo 'Config test complete - authentication errors are expected locally'",
"prepare": "husky" "prepare": "husky"
}, },
"dependencies": { "dependencies": {
"@kayvan/markdown-tree-parser": "^1.5.0", "@kayvan/markdown-tree-parser": "^1.5.0",
"bmad-method": "^4.30.3", "bmad-method": "^4.30.3",
"chalk": "^4.1.2", "chalk": "^4.1.2",
"commander": "^14.0.0", "commander": "^14.0.0",
"fs-extra": "^11.3.0", "fs-extra": "^11.3.0",
"glob": "^11.0.3", "glob": "^11.0.3",
"inquirer": "^8.2.6", "inquirer": "^8.2.6",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"minimatch": "^10.0.3", "minimatch": "^10.0.3",
"ora": "^5.4.1" "ora": "^5.4.1"
}, },
"keywords": [ "keywords": [
"agile", "agile",
"ai", "ai",
"orchestrator", "orchestrator",
"development", "development",
"methodology", "methodology",
"agents", "agents",
"bmad" "bmad"
], ],
"author": "Brian (BMad) Madison", "author": "Brian (BMad) Madison",
"license": "MIT", "license": "MIT",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/bmadcode/BMAD-METHOD.git" "url": "git+https://github.com/bmadcode/BMAD-METHOD.git"
}, },
"engines": { "engines": {
"node": ">=20.0.0" "node": ">=20.0.0"
}, },
"devDependencies": { "devDependencies": {
"@semantic-release/changelog": "^6.0.3", "@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1", "@semantic-release/git": "^10.0.1",
"husky": "^9.1.7", "husky": "^9.1.7",
"jest": "^30.0.4", "jest": "^30.0.4",
"lint-staged": "^16.1.1", "lint-staged": "^16.1.1",
"prettier": "^3.5.3", "prettier": "^3.5.3",
"semantic-release": "^22.0.0", "semantic-release": "^22.0.0",
"yaml-lint": "^1.7.0" "yaml-lint": "^1.7.0"
}, },
"lint-staged": { "lint-staged": {
"**/*.md": [ "**/*.md": [
"prettier --write" "prettier --write"
] ]
} }
} }