create-better-fullstack 1.0.0-canary.1d67537e

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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { EMBEDDED_TEMPLATES, GeneratorOptions, GeneratorResult, TEMPLATE_COUNT, VirtualDirectory, VirtualFile, VirtualFileSystem, VirtualFileTree, VirtualNode, generateVirtualProject } from "@better-fullstack/template-generator";
3
+ import { API, Addons, Auth, Backend, Database, DatabaseSetup, Examples, Frontend, ORM, PackageManager, Payments, ProjectConfig, Runtime, ServerDeploy, WebDeploy } from "@better-fullstack/types";
4
+ export { type API, type Addons, type Auth, type Backend, type Database, type DatabaseSetup, EMBEDDED_TEMPLATES, type Examples, type Frontend, type GeneratorOptions, type GeneratorResult, type ORM, type PackageManager, type Payments, type ProjectConfig, type Runtime, type ServerDeploy, TEMPLATE_COUNT, type VirtualDirectory, type VirtualFile, VirtualFileSystem, type VirtualFileTree, type VirtualNode, type WebDeploy, generateVirtualProject };
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, generateVirtualProject } from "@better-fullstack/template-generator";
3
+
4
+ export { EMBEDDED_TEMPLATES, TEMPLATE_COUNT, VirtualFileSystem, generateVirtualProject };
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "create-better-fullstack",
3
+ "version": "1.0.0-canary.1d67537e",
4
+ "description": "A CLI-first toolkit for building Full Stack applications. Skip the configuration. Ship the code.",
5
+ "keywords": [
6
+ "better-auth",
7
+ "better-fullstack",
8
+ "biome",
9
+ "boilerplate",
10
+ "cli",
11
+ "drizzle",
12
+ "elysia",
13
+ "expo",
14
+ "fullstack",
15
+ "hono",
16
+ "monorepo",
17
+ "prisma",
18
+ "pwa",
19
+ "react",
20
+ "react-native",
21
+ "shadcn",
22
+ "starter",
23
+ "tailwind",
24
+ "tanstack",
25
+ "tauri",
26
+ "trpc",
27
+ "turborepo",
28
+ "type-safety",
29
+ "typescript"
30
+ ],
31
+ "homepage": "https://github.com/Marve10s/Better-Fullstack",
32
+ "license": "MIT",
33
+ "author": "Marve10s",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/Marve10s/Better-Fullstack.git",
37
+ "directory": "apps/cli"
38
+ },
39
+ "bin": {
40
+ "create-better-fullstack": "dist/cli.mjs"
41
+ },
42
+ "files": [
43
+ "dist"
44
+ ],
45
+ "type": "module",
46
+ "exports": {
47
+ ".": {
48
+ "types": "./dist/index.d.mts",
49
+ "import": "./dist/index.mjs"
50
+ },
51
+ "./cli": {
52
+ "import": "./dist/cli.mjs"
53
+ },
54
+ "./virtual": {
55
+ "types": "./dist/virtual.d.mts",
56
+ "import": "./dist/virtual.mjs"
57
+ }
58
+ },
59
+ "publishConfig": {
60
+ "access": "public"
61
+ },
62
+ "scripts": {
63
+ "build": "tsdown --publint",
64
+ "dev": "tsdown --watch",
65
+ "lint": "oxlint . && tsc --noEmit",
66
+ "check-types": "tsc --noEmit",
67
+ "test": "bun run build && bun test",
68
+ "test:watch": "bun run build && bun test --watch",
69
+ "test:coverage": "bun run build && bun test --coverage",
70
+ "test:ci": "bun run build && CI=1 bun test --bail=5",
71
+ "test:astro-combos": "bun run build && bun run scripts/test-astro-combinations.ts",
72
+ "prepublishOnly": "npm run build"
73
+ },
74
+ "dependencies": {
75
+ "@better-fullstack/template-generator": "1.0.0-canary.1d67537e",
76
+ "@better-fullstack/types": "1.0.0-canary.1d67537e",
77
+ "@clack/core": "^0.5.0",
78
+ "@clack/prompts": "^1.0.0-alpha.8",
79
+ "@orpc/server": "^1.13.0",
80
+ "consola": "^3.4.2",
81
+ "execa": "^9.6.1",
82
+ "fs-extra": "^11.3.3",
83
+ "gradient-string": "^3.0.0",
84
+ "handlebars": "^4.7.8",
85
+ "jsonc-parser": "^3.3.1",
86
+ "oxfmt": "^0.19.0",
87
+ "picocolors": "^1.1.1",
88
+ "tinyglobby": "^0.2.15",
89
+ "trpc-cli": "^0.12.1",
90
+ "ts-morph": "^27.0.2",
91
+ "yaml": "^2.8.2",
92
+ "zod": "^4.2.1"
93
+ },
94
+ "devDependencies": {
95
+ "@types/bun": "^1.3.5",
96
+ "@types/fs-extra": "^11.0.4",
97
+ "@types/node": "^25.0.3",
98
+ "publint": "^0.3.16",
99
+ "tsdown": "^0.18.2",
100
+ "typescript": "^5.9.3"
101
+ }
102
+ }