create-better-fullstack 1.5.4 → 1.6.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/dist/{addons-setup-Bll5VFJd.mjs → addons-setup-Cgup_RHm.mjs} +138 -101
- package/dist/addons-setup-Cx9DU_sr.mjs +5 -0
- package/dist/{bts-config-BYD8mHt-.mjs → bts-config-B_rZ4_sj.mjs} +30 -68
- package/dist/cli.mjs +1 -1
- package/dist/index.d.mts +180 -45
- package/dist/index.mjs +2697 -1089
- package/dist/{mcp-CRjipp-w.mjs → mcp-CuEEG8e5.mjs} +1 -1
- package/dist/mcp-entry.mjs +112 -21
- package/dist/virtual.d.mts +1 -1
- package/package.json +24 -9
- package/dist/addons-setup-CWGwxN68.mjs +0 -5
package/dist/index.d.mts
CHANGED
|
@@ -36,6 +36,7 @@ declare const router: {
|
|
|
36
36
|
rust: "rust";
|
|
37
37
|
python: "python";
|
|
38
38
|
go: "go";
|
|
39
|
+
java: "java";
|
|
39
40
|
}>>;
|
|
40
41
|
database: z.ZodOptional<z.ZodEnum<{
|
|
41
42
|
none: "none";
|
|
@@ -204,6 +205,11 @@ declare const router: {
|
|
|
204
205
|
none: "none";
|
|
205
206
|
"upstash-redis": "upstash-redis";
|
|
206
207
|
}>>;
|
|
208
|
+
i18n: z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
none: "none";
|
|
210
|
+
i18next: "i18next";
|
|
211
|
+
"next-intl": "next-intl";
|
|
212
|
+
}>>;
|
|
207
213
|
search: z.ZodOptional<z.ZodEnum<{
|
|
208
214
|
none: "none";
|
|
209
215
|
meilisearch: "meilisearch";
|
|
@@ -325,6 +331,7 @@ declare const router: {
|
|
|
325
331
|
orpc: "orpc";
|
|
326
332
|
"ts-rest": "ts-rest";
|
|
327
333
|
garph: "garph";
|
|
334
|
+
"graphql-yoga": "graphql-yoga";
|
|
328
335
|
}>>;
|
|
329
336
|
cssFramework: z.ZodOptional<z.ZodEnum<{
|
|
330
337
|
none: "none";
|
|
@@ -422,6 +429,7 @@ declare const router: {
|
|
|
422
429
|
fly: "fly";
|
|
423
430
|
railway: "railway";
|
|
424
431
|
sst: "sst";
|
|
432
|
+
vercel: "vercel";
|
|
425
433
|
}>>;
|
|
426
434
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
427
435
|
none: "none";
|
|
@@ -430,6 +438,7 @@ declare const router: {
|
|
|
430
438
|
fly: "fly";
|
|
431
439
|
railway: "railway";
|
|
432
440
|
sst: "sst";
|
|
441
|
+
vercel: "vercel";
|
|
433
442
|
}>>;
|
|
434
443
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
435
444
|
merge: "merge";
|
|
@@ -444,6 +453,7 @@ declare const router: {
|
|
|
444
453
|
none: "none";
|
|
445
454
|
axum: "axum";
|
|
446
455
|
"actix-web": "actix-web";
|
|
456
|
+
rocket: "rocket";
|
|
447
457
|
}>>;
|
|
448
458
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
449
459
|
none: "none";
|
|
@@ -454,6 +464,7 @@ declare const router: {
|
|
|
454
464
|
none: "none";
|
|
455
465
|
"sea-orm": "sea-orm";
|
|
456
466
|
sqlx: "sqlx";
|
|
467
|
+
diesel: "diesel";
|
|
457
468
|
}>>;
|
|
458
469
|
rustApi: z.ZodOptional<z.ZodEnum<{
|
|
459
470
|
none: "none";
|
|
@@ -479,16 +490,32 @@ declare const router: {
|
|
|
479
490
|
tracing: "tracing";
|
|
480
491
|
"env-logger": "env-logger";
|
|
481
492
|
}>>;
|
|
493
|
+
rustErrorHandling: z.ZodOptional<z.ZodEnum<{
|
|
494
|
+
none: "none";
|
|
495
|
+
"anyhow-thiserror": "anyhow-thiserror";
|
|
496
|
+
eyre: "eyre";
|
|
497
|
+
}>>;
|
|
498
|
+
rustCaching: z.ZodOptional<z.ZodEnum<{
|
|
499
|
+
none: "none";
|
|
500
|
+
redis: "redis";
|
|
501
|
+
moka: "moka";
|
|
502
|
+
}>>;
|
|
503
|
+
rustAuth: z.ZodOptional<z.ZodEnum<{
|
|
504
|
+
none: "none";
|
|
505
|
+
oauth2: "oauth2";
|
|
506
|
+
}>>;
|
|
482
507
|
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
483
508
|
none: "none";
|
|
484
509
|
fastapi: "fastapi";
|
|
485
510
|
django: "django";
|
|
486
511
|
flask: "flask";
|
|
512
|
+
litestar: "litestar";
|
|
487
513
|
}>>;
|
|
488
514
|
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
489
515
|
none: "none";
|
|
490
516
|
sqlalchemy: "sqlalchemy";
|
|
491
517
|
sqlmodel: "sqlmodel";
|
|
518
|
+
"tortoise-orm": "tortoise-orm";
|
|
492
519
|
}>>;
|
|
493
520
|
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
494
521
|
none: "none";
|
|
@@ -503,10 +530,19 @@ declare const router: {
|
|
|
503
530
|
"anthropic-sdk": "anthropic-sdk";
|
|
504
531
|
crewai: "crewai";
|
|
505
532
|
}>>>;
|
|
533
|
+
pythonAuth: z.ZodOptional<z.ZodEnum<{
|
|
534
|
+
none: "none";
|
|
535
|
+
authlib: "authlib";
|
|
536
|
+
jwt: "jwt";
|
|
537
|
+
}>>;
|
|
506
538
|
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
507
539
|
none: "none";
|
|
508
540
|
celery: "celery";
|
|
509
541
|
}>>;
|
|
542
|
+
pythonGraphql: z.ZodOptional<z.ZodEnum<{
|
|
543
|
+
none: "none";
|
|
544
|
+
strawberry: "strawberry";
|
|
545
|
+
}>>;
|
|
510
546
|
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
511
547
|
none: "none";
|
|
512
548
|
ruff: "ruff";
|
|
@@ -516,11 +552,13 @@ declare const router: {
|
|
|
516
552
|
gin: "gin";
|
|
517
553
|
echo: "echo";
|
|
518
554
|
fiber: "fiber";
|
|
555
|
+
chi: "chi";
|
|
519
556
|
}>>;
|
|
520
557
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
521
558
|
none: "none";
|
|
522
559
|
gorm: "gorm";
|
|
523
560
|
sqlc: "sqlc";
|
|
561
|
+
ent: "ent";
|
|
524
562
|
}>>;
|
|
525
563
|
goApi: z.ZodOptional<z.ZodEnum<{
|
|
526
564
|
none: "none";
|
|
@@ -534,7 +572,43 @@ declare const router: {
|
|
|
534
572
|
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
535
573
|
none: "none";
|
|
536
574
|
zap: "zap";
|
|
575
|
+
zerolog: "zerolog";
|
|
576
|
+
slog: "slog";
|
|
537
577
|
}>>;
|
|
578
|
+
goAuth: z.ZodOptional<z.ZodEnum<{
|
|
579
|
+
none: "none";
|
|
580
|
+
jwt: "jwt";
|
|
581
|
+
casbin: "casbin";
|
|
582
|
+
}>>;
|
|
583
|
+
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
584
|
+
none: "none";
|
|
585
|
+
"spring-boot": "spring-boot";
|
|
586
|
+
}>>;
|
|
587
|
+
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
588
|
+
none: "none";
|
|
589
|
+
maven: "maven";
|
|
590
|
+
gradle: "gradle";
|
|
591
|
+
}>>;
|
|
592
|
+
javaOrm: z.ZodOptional<z.ZodEnum<{
|
|
593
|
+
none: "none";
|
|
594
|
+
"spring-data-jpa": "spring-data-jpa";
|
|
595
|
+
}>>;
|
|
596
|
+
javaAuth: z.ZodOptional<z.ZodEnum<{
|
|
597
|
+
none: "none";
|
|
598
|
+
"spring-security": "spring-security";
|
|
599
|
+
}>>;
|
|
600
|
+
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
601
|
+
none: "none";
|
|
602
|
+
"spring-actuator": "spring-actuator";
|
|
603
|
+
"spring-validation": "spring-validation";
|
|
604
|
+
flyway: "flyway";
|
|
605
|
+
}>>>;
|
|
606
|
+
javaTestingLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
607
|
+
none: "none";
|
|
608
|
+
junit5: "junit5";
|
|
609
|
+
mockito: "mockito";
|
|
610
|
+
testcontainers: "testcontainers";
|
|
611
|
+
}>>>;
|
|
538
612
|
aiDocs: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
539
613
|
none: "none";
|
|
540
614
|
"claude-md": "claude-md";
|
|
@@ -547,7 +621,7 @@ declare const router: {
|
|
|
547
621
|
projectName: string;
|
|
548
622
|
projectDir: string;
|
|
549
623
|
relativePath: string;
|
|
550
|
-
ecosystem: "typescript" | "rust" | "python" | "go";
|
|
624
|
+
ecosystem: "typescript" | "rust" | "python" | "go" | "java";
|
|
551
625
|
database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
|
|
552
626
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
553
627
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
@@ -562,9 +636,9 @@ declare const router: {
|
|
|
562
636
|
versionChannel: "stable" | "latest" | "beta";
|
|
563
637
|
install: boolean;
|
|
564
638
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
565
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph";
|
|
566
|
-
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
567
|
-
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
639
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
640
|
+
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
641
|
+
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
568
642
|
ai: "none" | "langgraph" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "google-adk" | "modelfusion" | "tanstack-ai";
|
|
569
643
|
effect: "effect" | "none" | "effect-full";
|
|
570
644
|
stateManagement: "none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state";
|
|
@@ -584,26 +658,39 @@ declare const router: {
|
|
|
584
658
|
analytics: "none" | "plausible" | "umami";
|
|
585
659
|
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms";
|
|
586
660
|
caching: "none" | "upstash-redis";
|
|
661
|
+
i18n: "none" | "i18next" | "next-intl";
|
|
587
662
|
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
588
663
|
fileStorage: "none" | "s3" | "r2";
|
|
589
|
-
rustWebFramework: "none" | "axum" | "actix-web";
|
|
664
|
+
rustWebFramework: "none" | "axum" | "actix-web" | "rocket";
|
|
590
665
|
rustFrontend: "none" | "leptos" | "dioxus";
|
|
591
|
-
rustOrm: "none" | "sea-orm" | "sqlx";
|
|
666
|
+
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
592
667
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
593
668
|
rustCli: "none" | "clap" | "ratatui";
|
|
594
669
|
rustLibraries: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
|
|
595
670
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
596
|
-
|
|
597
|
-
|
|
671
|
+
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
672
|
+
rustCaching: "none" | "redis" | "moka";
|
|
673
|
+
rustAuth: "none" | "oauth2";
|
|
674
|
+
pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
|
|
675
|
+
pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
|
|
598
676
|
pythonValidation: "none" | "pydantic";
|
|
599
677
|
pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
|
|
678
|
+
pythonAuth: "none" | "authlib" | "jwt";
|
|
600
679
|
pythonTaskQueue: "none" | "celery";
|
|
680
|
+
pythonGraphql: "none" | "strawberry";
|
|
601
681
|
pythonQuality: "none" | "ruff";
|
|
602
|
-
goWebFramework: "none" | "gin" | "echo" | "fiber";
|
|
603
|
-
goOrm: "none" | "gorm" | "sqlc";
|
|
682
|
+
goWebFramework: "none" | "gin" | "echo" | "fiber" | "chi";
|
|
683
|
+
goOrm: "none" | "gorm" | "sqlc" | "ent";
|
|
604
684
|
goApi: "none" | "grpc-go";
|
|
605
685
|
goCli: "none" | "cobra" | "bubbletea";
|
|
606
|
-
goLogging: "none" | "zap";
|
|
686
|
+
goLogging: "none" | "zap" | "zerolog" | "slog";
|
|
687
|
+
goAuth: "none" | "jwt" | "casbin";
|
|
688
|
+
javaWebFramework: "none" | "spring-boot";
|
|
689
|
+
javaBuildTool: "none" | "maven" | "gradle";
|
|
690
|
+
javaOrm: "none" | "spring-data-jpa";
|
|
691
|
+
javaAuth: "none" | "spring-security";
|
|
692
|
+
javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
|
|
693
|
+
javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
|
|
607
694
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
608
695
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
609
696
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -630,7 +717,7 @@ declare const router: {
|
|
|
630
717
|
projectName: string;
|
|
631
718
|
projectDir: string;
|
|
632
719
|
relativePath: string;
|
|
633
|
-
ecosystem: "typescript" | "rust" | "python" | "go";
|
|
720
|
+
ecosystem: "typescript" | "rust" | "python" | "go" | "java";
|
|
634
721
|
database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
|
|
635
722
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
636
723
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
@@ -645,9 +732,9 @@ declare const router: {
|
|
|
645
732
|
versionChannel: "stable" | "latest" | "beta";
|
|
646
733
|
install: boolean;
|
|
647
734
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
648
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph";
|
|
649
|
-
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
650
|
-
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
735
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
736
|
+
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
737
|
+
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
651
738
|
ai: "none" | "langgraph" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "google-adk" | "modelfusion" | "tanstack-ai";
|
|
652
739
|
effect: "effect" | "none" | "effect-full";
|
|
653
740
|
stateManagement: "none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state";
|
|
@@ -667,26 +754,39 @@ declare const router: {
|
|
|
667
754
|
analytics: "none" | "plausible" | "umami";
|
|
668
755
|
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms";
|
|
669
756
|
caching: "none" | "upstash-redis";
|
|
757
|
+
i18n: "none" | "i18next" | "next-intl";
|
|
670
758
|
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
671
759
|
fileStorage: "none" | "s3" | "r2";
|
|
672
|
-
rustWebFramework: "none" | "axum" | "actix-web";
|
|
760
|
+
rustWebFramework: "none" | "axum" | "actix-web" | "rocket";
|
|
673
761
|
rustFrontend: "none" | "leptos" | "dioxus";
|
|
674
|
-
rustOrm: "none" | "sea-orm" | "sqlx";
|
|
762
|
+
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
675
763
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
676
764
|
rustCli: "none" | "clap" | "ratatui";
|
|
677
765
|
rustLibraries: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
|
|
678
766
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
679
|
-
|
|
680
|
-
|
|
767
|
+
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
768
|
+
rustCaching: "none" | "redis" | "moka";
|
|
769
|
+
rustAuth: "none" | "oauth2";
|
|
770
|
+
pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
|
|
771
|
+
pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
|
|
681
772
|
pythonValidation: "none" | "pydantic";
|
|
682
773
|
pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
|
|
774
|
+
pythonAuth: "none" | "authlib" | "jwt";
|
|
683
775
|
pythonTaskQueue: "none" | "celery";
|
|
776
|
+
pythonGraphql: "none" | "strawberry";
|
|
684
777
|
pythonQuality: "none" | "ruff";
|
|
685
|
-
goWebFramework: "none" | "gin" | "echo" | "fiber";
|
|
686
|
-
goOrm: "none" | "gorm" | "sqlc";
|
|
778
|
+
goWebFramework: "none" | "gin" | "echo" | "fiber" | "chi";
|
|
779
|
+
goOrm: "none" | "gorm" | "sqlc" | "ent";
|
|
687
780
|
goApi: "none" | "grpc-go";
|
|
688
781
|
goCli: "none" | "cobra" | "bubbletea";
|
|
689
|
-
goLogging: "none" | "zap";
|
|
782
|
+
goLogging: "none" | "zap" | "zerolog" | "slog";
|
|
783
|
+
goAuth: "none" | "jwt" | "casbin";
|
|
784
|
+
javaWebFramework: "none" | "spring-boot";
|
|
785
|
+
javaBuildTool: "none" | "maven" | "gradle";
|
|
786
|
+
javaOrm: "none" | "spring-data-jpa";
|
|
787
|
+
javaAuth: "none" | "spring-security";
|
|
788
|
+
javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
|
|
789
|
+
javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
|
|
690
790
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
691
791
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
692
792
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -726,7 +826,7 @@ declare const router: {
|
|
|
726
826
|
projectName: string;
|
|
727
827
|
projectDir: string;
|
|
728
828
|
relativePath: string;
|
|
729
|
-
ecosystem: "typescript" | "rust" | "python" | "go";
|
|
829
|
+
ecosystem: "typescript" | "rust" | "python" | "go" | "java";
|
|
730
830
|
database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
|
|
731
831
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
732
832
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
@@ -741,9 +841,9 @@ declare const router: {
|
|
|
741
841
|
versionChannel: "stable" | "latest" | "beta";
|
|
742
842
|
install: boolean;
|
|
743
843
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
744
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph";
|
|
745
|
-
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
746
|
-
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
844
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
845
|
+
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
846
|
+
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
747
847
|
ai: "none" | "langgraph" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "google-adk" | "modelfusion" | "tanstack-ai";
|
|
748
848
|
effect: "effect" | "none" | "effect-full";
|
|
749
849
|
stateManagement: "none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state";
|
|
@@ -763,26 +863,39 @@ declare const router: {
|
|
|
763
863
|
analytics: "none" | "plausible" | "umami";
|
|
764
864
|
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms";
|
|
765
865
|
caching: "none" | "upstash-redis";
|
|
866
|
+
i18n: "none" | "i18next" | "next-intl";
|
|
766
867
|
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
767
868
|
fileStorage: "none" | "s3" | "r2";
|
|
768
|
-
rustWebFramework: "none" | "axum" | "actix-web";
|
|
869
|
+
rustWebFramework: "none" | "axum" | "actix-web" | "rocket";
|
|
769
870
|
rustFrontend: "none" | "leptos" | "dioxus";
|
|
770
|
-
rustOrm: "none" | "sea-orm" | "sqlx";
|
|
871
|
+
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
771
872
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
772
873
|
rustCli: "none" | "clap" | "ratatui";
|
|
773
874
|
rustLibraries: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
|
|
774
875
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
775
|
-
|
|
776
|
-
|
|
876
|
+
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
877
|
+
rustCaching: "none" | "redis" | "moka";
|
|
878
|
+
rustAuth: "none" | "oauth2";
|
|
879
|
+
pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
|
|
880
|
+
pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
|
|
777
881
|
pythonValidation: "none" | "pydantic";
|
|
778
882
|
pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
|
|
883
|
+
pythonAuth: "none" | "authlib" | "jwt";
|
|
779
884
|
pythonTaskQueue: "none" | "celery";
|
|
885
|
+
pythonGraphql: "none" | "strawberry";
|
|
780
886
|
pythonQuality: "none" | "ruff";
|
|
781
|
-
goWebFramework: "none" | "gin" | "echo" | "fiber";
|
|
782
|
-
goOrm: "none" | "gorm" | "sqlc";
|
|
887
|
+
goWebFramework: "none" | "gin" | "echo" | "fiber" | "chi";
|
|
888
|
+
goOrm: "none" | "gorm" | "sqlc" | "ent";
|
|
783
889
|
goApi: "none" | "grpc-go";
|
|
784
890
|
goCli: "none" | "cobra" | "bubbletea";
|
|
785
|
-
goLogging: "none" | "zap";
|
|
891
|
+
goLogging: "none" | "zap" | "zerolog" | "slog";
|
|
892
|
+
goAuth: "none" | "jwt" | "casbin";
|
|
893
|
+
javaWebFramework: "none" | "spring-boot";
|
|
894
|
+
javaBuildTool: "none" | "maven" | "gradle";
|
|
895
|
+
javaOrm: "none" | "spring-data-jpa";
|
|
896
|
+
javaAuth: "none" | "spring-security";
|
|
897
|
+
javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
|
|
898
|
+
javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
|
|
786
899
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
787
900
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
788
901
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -809,7 +922,7 @@ declare const router: {
|
|
|
809
922
|
projectName: string;
|
|
810
923
|
projectDir: string;
|
|
811
924
|
relativePath: string;
|
|
812
|
-
ecosystem: "typescript" | "rust" | "python" | "go";
|
|
925
|
+
ecosystem: "typescript" | "rust" | "python" | "go" | "java";
|
|
813
926
|
database: "none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis";
|
|
814
927
|
orm: "none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize";
|
|
815
928
|
backend: "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self";
|
|
@@ -824,9 +937,9 @@ declare const router: {
|
|
|
824
937
|
versionChannel: "stable" | "latest" | "beta";
|
|
825
938
|
install: boolean;
|
|
826
939
|
dbSetup: "none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker";
|
|
827
|
-
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph";
|
|
828
|
-
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
829
|
-
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst";
|
|
940
|
+
api: "none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga";
|
|
941
|
+
webDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
942
|
+
serverDeploy: "none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel";
|
|
830
943
|
ai: "none" | "langgraph" | "langchain" | "llamaindex" | "vercel-ai" | "mastra" | "voltagent" | "openai-agents" | "google-adk" | "modelfusion" | "tanstack-ai";
|
|
831
944
|
effect: "effect" | "none" | "effect-full";
|
|
832
945
|
stateManagement: "none" | "zustand" | "jotai" | "nanostores" | "redux-toolkit" | "mobx" | "xstate" | "valtio" | "tanstack-store" | "legend-state";
|
|
@@ -846,26 +959,39 @@ declare const router: {
|
|
|
846
959
|
analytics: "none" | "plausible" | "umami";
|
|
847
960
|
cms: "none" | "payload" | "sanity" | "strapi" | "tinacms";
|
|
848
961
|
caching: "none" | "upstash-redis";
|
|
962
|
+
i18n: "none" | "i18next" | "next-intl";
|
|
849
963
|
search: "none" | "meilisearch" | "typesense" | "elasticsearch" | "algolia";
|
|
850
964
|
fileStorage: "none" | "s3" | "r2";
|
|
851
|
-
rustWebFramework: "none" | "axum" | "actix-web";
|
|
965
|
+
rustWebFramework: "none" | "axum" | "actix-web" | "rocket";
|
|
852
966
|
rustFrontend: "none" | "leptos" | "dioxus";
|
|
853
|
-
rustOrm: "none" | "sea-orm" | "sqlx";
|
|
967
|
+
rustOrm: "none" | "sea-orm" | "sqlx" | "diesel";
|
|
854
968
|
rustApi: "none" | "tonic" | "async-graphql";
|
|
855
969
|
rustCli: "none" | "clap" | "ratatui";
|
|
856
970
|
rustLibraries: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
|
|
857
971
|
rustLogging: "none" | "tracing" | "env-logger";
|
|
858
|
-
|
|
859
|
-
|
|
972
|
+
rustErrorHandling: "none" | "anyhow-thiserror" | "eyre";
|
|
973
|
+
rustCaching: "none" | "redis" | "moka";
|
|
974
|
+
rustAuth: "none" | "oauth2";
|
|
975
|
+
pythonWebFramework: "none" | "fastapi" | "django" | "flask" | "litestar";
|
|
976
|
+
pythonOrm: "none" | "sqlalchemy" | "sqlmodel" | "tortoise-orm";
|
|
860
977
|
pythonValidation: "none" | "pydantic";
|
|
861
978
|
pythonAi: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
|
|
979
|
+
pythonAuth: "none" | "authlib" | "jwt";
|
|
862
980
|
pythonTaskQueue: "none" | "celery";
|
|
981
|
+
pythonGraphql: "none" | "strawberry";
|
|
863
982
|
pythonQuality: "none" | "ruff";
|
|
864
|
-
goWebFramework: "none" | "gin" | "echo" | "fiber";
|
|
865
|
-
goOrm: "none" | "gorm" | "sqlc";
|
|
983
|
+
goWebFramework: "none" | "gin" | "echo" | "fiber" | "chi";
|
|
984
|
+
goOrm: "none" | "gorm" | "sqlc" | "ent";
|
|
866
985
|
goApi: "none" | "grpc-go";
|
|
867
986
|
goCli: "none" | "cobra" | "bubbletea";
|
|
868
|
-
goLogging: "none" | "zap";
|
|
987
|
+
goLogging: "none" | "zap" | "zerolog" | "slog";
|
|
988
|
+
goAuth: "none" | "jwt" | "casbin";
|
|
989
|
+
javaWebFramework: "none" | "spring-boot";
|
|
990
|
+
javaBuildTool: "none" | "maven" | "gradle";
|
|
991
|
+
javaOrm: "none" | "spring-data-jpa";
|
|
992
|
+
javaAuth: "none" | "spring-security";
|
|
993
|
+
javaLibraries: ("none" | "spring-actuator" | "spring-validation" | "flyway")[];
|
|
994
|
+
javaTestingLibraries: ("none" | "junit5" | "mockito" | "testcontainers")[];
|
|
869
995
|
aiDocs: ("none" | "claude-md" | "agents-md" | "cursorrules")[];
|
|
870
996
|
astroIntegration?: "none" | "svelte" | "solid" | "react" | "vue" | undefined;
|
|
871
997
|
shadcnBase?: "radix" | "base" | undefined;
|
|
@@ -936,6 +1062,7 @@ declare const router: {
|
|
|
936
1062
|
fly: "fly";
|
|
937
1063
|
railway: "railway";
|
|
938
1064
|
sst: "sst";
|
|
1065
|
+
vercel: "vercel";
|
|
939
1066
|
}>>;
|
|
940
1067
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
941
1068
|
none: "none";
|
|
@@ -944,6 +1071,7 @@ declare const router: {
|
|
|
944
1071
|
fly: "fly";
|
|
945
1072
|
railway: "railway";
|
|
946
1073
|
sst: "sst";
|
|
1074
|
+
vercel: "vercel";
|
|
947
1075
|
}>>;
|
|
948
1076
|
install: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
949
1077
|
packageManager: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1048,11 +1176,18 @@ type Effect = import__better_fullstack_types.Effect;
|
|
|
1048
1176
|
type Examples = import__better_fullstack_types.Examples;
|
|
1049
1177
|
type Frontend = import__better_fullstack_types.Frontend;
|
|
1050
1178
|
type GoApi = import__better_fullstack_types.GoApi;
|
|
1179
|
+
type GoAuth = import__better_fullstack_types.GoAuth;
|
|
1051
1180
|
type GoCli = import__better_fullstack_types.GoCli;
|
|
1052
1181
|
type GoLogging = import__better_fullstack_types.GoLogging;
|
|
1053
1182
|
type GoOrm = import__better_fullstack_types.GoOrm;
|
|
1054
1183
|
type GoWebFramework = import__better_fullstack_types.GoWebFramework;
|
|
1055
1184
|
type InitResult = import__better_fullstack_types.InitResult;
|
|
1185
|
+
type JavaAuth = import__better_fullstack_types.JavaAuth;
|
|
1186
|
+
type JavaBuildTool = import__better_fullstack_types.JavaBuildTool;
|
|
1187
|
+
type JavaLibraries = import__better_fullstack_types.JavaLibraries;
|
|
1188
|
+
type JavaOrm = import__better_fullstack_types.JavaOrm;
|
|
1189
|
+
type JavaTestingLibraries = import__better_fullstack_types.JavaTestingLibraries;
|
|
1190
|
+
type JavaWebFramework = import__better_fullstack_types.JavaWebFramework;
|
|
1056
1191
|
type Logging = import__better_fullstack_types.Logging;
|
|
1057
1192
|
type ORM = import__better_fullstack_types.ORM;
|
|
1058
1193
|
type PackageManager = import__better_fullstack_types.PackageManager;
|
|
@@ -1076,4 +1211,4 @@ type ServerDeploy = import__better_fullstack_types.ServerDeploy;
|
|
|
1076
1211
|
type Template = import__better_fullstack_types.Template;
|
|
1077
1212
|
type UILibrary = import__better_fullstack_types.UILibrary;
|
|
1078
1213
|
type WebDeploy = import__better_fullstack_types.WebDeploy;
|
|
1079
|
-
export { type API, type AddInput, type AddResult, type Addons, type AiDocs, type Analytics, type Animation, type Auth, type Backend, type BetterTStackConfig, type CMS, type CSSFramework, type Caching, type CreateInput, type Database, type DatabaseSetup, type DirectoryConflict, EMBEDDED_TEMPLATES, type Ecosystem, type Effect, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type GoApi, type GoCli, type GoLogging, type GoOrm, type GoWebFramework, type InitResult, type Logging, type ORM, type PackageManager, type Payments, type PythonAi, type PythonOrm, type PythonQuality, type PythonTaskQueue, type PythonValidation, type PythonWebFramework, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustLogging, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
|
|
1214
|
+
export { type API, type AddInput, type AddResult, type Addons, type AiDocs, type Analytics, type Animation, type Auth, type Backend, type BetterTStackConfig, type CMS, type CSSFramework, type Caching, type CreateInput, type Database, type DatabaseSetup, type DirectoryConflict, EMBEDDED_TEMPLATES, type Ecosystem, type Effect, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type GoApi, type GoAuth, type GoCli, type GoLogging, type GoOrm, type GoWebFramework, type InitResult, type JavaAuth, type JavaBuildTool, type JavaLibraries, type JavaOrm, type JavaTestingLibraries, type JavaWebFramework, type Logging, type ORM, type PackageManager, type Payments, type PythonAi, type PythonOrm, type PythonQuality, type PythonTaskQueue, type PythonValidation, type PythonWebFramework, type Realtime, type Runtime, type RustApi, type RustCli, type RustFrontend, type RustLibraries, type RustLogging, type RustOrm, type RustWebFramework, type ServerDeploy, TEMPLATE_COUNT, type Template, type UILibrary, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, add, builder, create, createBtsCli, createVirtual, docs, generateVirtualProject, history, router, sponsors };
|