create-stackforge 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-stackforge",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "The universal full-stack boilerplate generator. Scaffold production-ready apps with Next.js/Vite, 8 UI libraries, 6 databases, 4 ORMs, 3 auth providers, REST/tRPC/GraphQL, and AI agent integrations.",
5
5
  "license": "MIT",
6
6
  "author": "Lakshay Kapoor",
@@ -109,6 +109,9 @@
109
109
  "test:integration": "node --test --import tsx tests/integration/**/*.test.ts",
110
110
  "test:e2e": "node --test --import tsx tests/e2e/**/*.test.ts",
111
111
  "test:all": "node --test --import tsx tests/**/*.test.ts",
112
- "clean:tests": "tsx scripts/clean-test-artifacts.ts"
112
+ "clean:tests": "tsx scripts/clean-test-artifacts.ts",
113
+ "update:versions": "tsx scripts/update-versions.ts",
114
+ "update:versions:major": "tsx scripts/update-versions.ts --major",
115
+ "update:versions:dry": "tsx scripts/update-versions.ts --dry-run"
113
116
  }
114
117
  }