create-better-fullstack 1.3.16 → 1.3.18
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/README.md +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/index.d.mts +96 -6
- package/dist/index.mjs +1 -1
- package/dist/{src-zCIIp5Gn.mjs → src-CISBB09-.mjs} +646 -627
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ Options:
|
|
|
26
26
|
--yolo Random configuration (experimental)
|
|
27
27
|
--database <type> Database type (none, sqlite, postgres, mysql, mongodb)
|
|
28
28
|
--orm <type> ORM type (drizzle, prisma, mongoose, typeorm, kysely, mikroorm, sequelize, none)
|
|
29
|
-
--auth <type> Authentication (better-auth, clerk, nextauth, none)
|
|
29
|
+
--auth <type> Authentication (better-auth, go-better-auth, clerk, nextauth, stack-auth, supabase-auth, auth0, none)
|
|
30
30
|
--payments <type> Payments (polar, stripe, lemon-squeezy, paddle, dodo, none)
|
|
31
31
|
--frontend <types...> Frontend types
|
|
32
32
|
--backend <framework> Backend framework
|
package/dist/cli.mjs
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -57,6 +57,7 @@ declare const router: {
|
|
|
57
57
|
auth: z.ZodOptional<z.ZodEnum<{
|
|
58
58
|
none: "none";
|
|
59
59
|
"better-auth": "better-auth";
|
|
60
|
+
"go-better-auth": "go-better-auth";
|
|
60
61
|
clerk: "clerk";
|
|
61
62
|
nextauth: "nextauth";
|
|
62
63
|
"stack-auth": "stack-auth";
|
|
@@ -179,6 +180,11 @@ declare const router: {
|
|
|
179
180
|
sentry: "sentry";
|
|
180
181
|
grafana: "grafana";
|
|
181
182
|
}>>;
|
|
183
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
184
|
+
none: "none";
|
|
185
|
+
growthbook: "growthbook";
|
|
186
|
+
posthog: "posthog";
|
|
187
|
+
}>>;
|
|
182
188
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
183
189
|
none: "none";
|
|
184
190
|
plausible: "plausible";
|
|
@@ -216,6 +222,7 @@ declare const router: {
|
|
|
216
222
|
"native-unistyles": "native-unistyles";
|
|
217
223
|
svelte: "svelte";
|
|
218
224
|
solid: "solid";
|
|
225
|
+
"solid-start": "solid-start";
|
|
219
226
|
astro: "astro";
|
|
220
227
|
qwik: "qwik";
|
|
221
228
|
angular: "angular";
|
|
@@ -252,6 +259,7 @@ declare const router: {
|
|
|
252
259
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
253
260
|
none: "none";
|
|
254
261
|
ai: "ai";
|
|
262
|
+
"chat-sdk": "chat-sdk";
|
|
255
263
|
}>>>;
|
|
256
264
|
git: z.ZodOptional<z.ZodBoolean>;
|
|
257
265
|
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
@@ -320,6 +328,74 @@ declare const router: {
|
|
|
320
328
|
"ark-ui": "ark-ui";
|
|
321
329
|
"react-aria": "react-aria";
|
|
322
330
|
}>>;
|
|
331
|
+
shadcnBase: z.ZodOptional<z.ZodEnum<{
|
|
332
|
+
radix: "radix";
|
|
333
|
+
base: "base";
|
|
334
|
+
}>>;
|
|
335
|
+
shadcnStyle: z.ZodOptional<z.ZodEnum<{
|
|
336
|
+
vega: "vega";
|
|
337
|
+
nova: "nova";
|
|
338
|
+
maia: "maia";
|
|
339
|
+
lyra: "lyra";
|
|
340
|
+
mira: "mira";
|
|
341
|
+
}>>;
|
|
342
|
+
shadcnIconLibrary: z.ZodOptional<z.ZodEnum<{
|
|
343
|
+
lucide: "lucide";
|
|
344
|
+
tabler: "tabler";
|
|
345
|
+
hugeicons: "hugeicons";
|
|
346
|
+
phosphor: "phosphor";
|
|
347
|
+
remixicon: "remixicon";
|
|
348
|
+
}>>;
|
|
349
|
+
shadcnColorTheme: z.ZodOptional<z.ZodEnum<{
|
|
350
|
+
neutral: "neutral";
|
|
351
|
+
stone: "stone";
|
|
352
|
+
zinc: "zinc";
|
|
353
|
+
gray: "gray";
|
|
354
|
+
amber: "amber";
|
|
355
|
+
blue: "blue";
|
|
356
|
+
cyan: "cyan";
|
|
357
|
+
emerald: "emerald";
|
|
358
|
+
fuchsia: "fuchsia";
|
|
359
|
+
green: "green";
|
|
360
|
+
indigo: "indigo";
|
|
361
|
+
lime: "lime";
|
|
362
|
+
orange: "orange";
|
|
363
|
+
pink: "pink";
|
|
364
|
+
purple: "purple";
|
|
365
|
+
red: "red";
|
|
366
|
+
rose: "rose";
|
|
367
|
+
sky: "sky";
|
|
368
|
+
teal: "teal";
|
|
369
|
+
violet: "violet";
|
|
370
|
+
yellow: "yellow";
|
|
371
|
+
}>>;
|
|
372
|
+
shadcnBaseColor: z.ZodOptional<z.ZodEnum<{
|
|
373
|
+
neutral: "neutral";
|
|
374
|
+
stone: "stone";
|
|
375
|
+
zinc: "zinc";
|
|
376
|
+
gray: "gray";
|
|
377
|
+
}>>;
|
|
378
|
+
shadcnFont: z.ZodOptional<z.ZodEnum<{
|
|
379
|
+
inter: "inter";
|
|
380
|
+
geist: "geist";
|
|
381
|
+
"noto-sans": "noto-sans";
|
|
382
|
+
"nunito-sans": "nunito-sans";
|
|
383
|
+
figtree: "figtree";
|
|
384
|
+
roboto: "roboto";
|
|
385
|
+
raleway: "raleway";
|
|
386
|
+
"dm-sans": "dm-sans";
|
|
387
|
+
"public-sans": "public-sans";
|
|
388
|
+
outfit: "outfit";
|
|
389
|
+
"jetbrains-mono": "jetbrains-mono";
|
|
390
|
+
"geist-mono": "geist-mono";
|
|
391
|
+
}>>;
|
|
392
|
+
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
393
|
+
none: "none";
|
|
394
|
+
default: "default";
|
|
395
|
+
small: "small";
|
|
396
|
+
medium: "medium";
|
|
397
|
+
large: "large";
|
|
398
|
+
}>>;
|
|
323
399
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
324
400
|
none: "none";
|
|
325
401
|
docker: "docker";
|
|
@@ -450,10 +526,10 @@ declare const router: {
|
|
|
450
526
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
451
527
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
452
528
|
runtime: "none" | "bun" | "node" | "workers";
|
|
453
|
-
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
529
|
+
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
454
530
|
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
|
|
455
|
-
examples: ("ai" | "none")[];
|
|
456
|
-
auth: "none" | "better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0";
|
|
531
|
+
examples: ("ai" | "none" | "chat-sdk")[];
|
|
532
|
+
auth: "none" | "better-auth" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0";
|
|
457
533
|
payments: "none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo";
|
|
458
534
|
git: boolean;
|
|
459
535
|
packageManager: "bun" | "npm" | "pnpm";
|
|
@@ -502,6 +578,13 @@ declare const router: {
|
|
|
502
578
|
goLogging: "none" | "zap";
|
|
503
579
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
504
580
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
581
|
+
shadcnBase?: "radix" | "base" | undefined;
|
|
582
|
+
shadcnStyle?: "vega" | "nova" | "maia" | "lyra" | "mira" | undefined;
|
|
583
|
+
shadcnIconLibrary?: "lucide" | "tabler" | "hugeicons" | "phosphor" | "remixicon" | undefined;
|
|
584
|
+
shadcnColorTheme?: "neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow" | undefined;
|
|
585
|
+
shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
|
|
586
|
+
shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
|
|
587
|
+
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
505
588
|
};
|
|
506
589
|
reproducibleCommand: string;
|
|
507
590
|
timeScaffolded: string;
|
|
@@ -529,10 +612,10 @@ declare const router: {
|
|
|
529
612
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
530
613
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
531
614
|
runtime: "none" | "bun" | "node" | "workers";
|
|
532
|
-
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
615
|
+
frontend: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
533
616
|
addons: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
|
|
534
|
-
examples: ("ai" | "none")[];
|
|
535
|
-
auth: "none" | "better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0";
|
|
617
|
+
examples: ("ai" | "none" | "chat-sdk")[];
|
|
618
|
+
auth: "none" | "better-auth" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0";
|
|
536
619
|
payments: "none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo";
|
|
537
620
|
git: boolean;
|
|
538
621
|
packageManager: "bun" | "npm" | "pnpm";
|
|
@@ -581,6 +664,13 @@ declare const router: {
|
|
|
581
664
|
goLogging: "none" | "zap";
|
|
582
665
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
583
666
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
667
|
+
shadcnBase?: "radix" | "base" | undefined;
|
|
668
|
+
shadcnStyle?: "vega" | "nova" | "maia" | "lyra" | "mira" | undefined;
|
|
669
|
+
shadcnIconLibrary?: "lucide" | "tabler" | "hugeicons" | "phosphor" | "remixicon" | undefined;
|
|
670
|
+
shadcnColorTheme?: "neutral" | "stone" | "zinc" | "gray" | "amber" | "blue" | "cyan" | "emerald" | "fuchsia" | "green" | "indigo" | "lime" | "orange" | "pink" | "purple" | "red" | "rose" | "sky" | "teal" | "violet" | "yellow" | undefined;
|
|
671
|
+
shadcnBaseColor?: "neutral" | "stone" | "zinc" | "gray" | undefined;
|
|
672
|
+
shadcnFont?: "inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono" | undefined;
|
|
673
|
+
shadcnRadius?: "default" | "none" | "small" | "medium" | "large" | undefined;
|
|
584
674
|
};
|
|
585
675
|
reproducibleCommand: string;
|
|
586
676
|
timeScaffolded: string;
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as builder, c as createVirtual, d as history, f as router, i as add, l as docs, n as TEMPLATE_COUNT, o as create, p as sponsors, r as VirtualFileSystem, s as createBtsCli, t as EMBEDDED_TEMPLATES, u as generateVirtualProject } from "./src-
|
|
2
|
+
import { a as builder, c as createVirtual, d as history, f as router, i as add, l as docs, n as TEMPLATE_COUNT, o as create, p as sponsors, r as VirtualFileSystem, s as createBtsCli, t as EMBEDDED_TEMPLATES, u as generateVirtualProject } from "./src-CISBB09-.mjs";
|
|
3
3
|
|
|
4
4
|
export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
|