create-kofi-stack 2.1.53 → 2.1.55

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -858,7 +858,7 @@ function displayBanner() {
858
858
  console.log();
859
859
  }
860
860
  var program = new Command();
861
- program.name("create-kofi-stack").description("Scaffold opinionated full-stack projects").version(VERSION).argument("[project-name]", "Name of your project").option("--standalone", "Create standalone project (default)").option("--monorepo", "Create monorepo with Turborepo").option("--marketing <type>", "Marketing site type: none, nextjs, payload").option("--analytics <type>", "Analytics: none, posthog, vercel").option("--uploads <type>", "Storage: convex-fs, r2, uploadthing, s3, vercel-blob, none").option("--payments <type>", "Payments: none, stripe, polar").option("--rate-limiting", "Add rate limiting with Convex Rate Limiter").option("--monitoring", "Add monitoring with Sentry").option("-y, --yes", "Skip prompts and use defaults").action(async (projectName, options) => {
861
+ program.name("create-kofi-stack").description("Scaffold opinionated full-stack projects").version(VERSION).argument("[project-name]", "Name of your project").option("--standalone", "Create standalone project (default)").option("--monorepo", "Create monorepo with Turborepo").option("--marketing <type>", "Marketing site type: none, nextjs, astro, payload").option("--analytics <type>", "Analytics: none, posthog, vercel").option("--uploads <type>", "Storage: convex-fs, r2, uploadthing, s3, vercel-blob, none").option("--payments <type>", "Payments: none, stripe, polar").option("--rate-limiting", "Add rate limiting with Convex Rate Limiter").option("--monitoring", "Add monitoring with Sentry").option("-y, --yes", "Skip prompts and use defaults").action(async (projectName, options) => {
862
862
  displayBanner();
863
863
  p3.intro(pc3.bgCyan(pc3.black(" create-kofi-stack ")));
864
864
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-kofi-stack",
3
- "version": "2.1.53",
3
+ "version": "2.1.55",
4
4
  "description": "Scaffold opinionated full-stack projects with Next.js, Convex, Better-Auth, and more",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,8 +16,8 @@
16
16
  "typecheck": "tsc --noEmit"
17
17
  },
18
18
  "dependencies": {
19
- "kofi-stack-template-generator": "^2.1.53",
20
- "kofi-stack-types": "^2.1.53",
19
+ "kofi-stack-template-generator": "^2.1.55",
20
+ "kofi-stack-types": "^2.1.55",
21
21
  "@clack/prompts": "^0.7.0",
22
22
  "commander": "^12.0.0",
23
23
  "execa": "^8.0.0",