create-better-t-stack 3.7.2 → 3.7.3-canary.1bf365d5

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,12 +1,12 @@
1
1
  {
2
2
  "name": "create-better-t-stack",
3
- "version": "3.7.2",
3
+ "version": "3.7.3-canary.1bf365d5",
4
4
  "description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Aman Varshney",
8
8
  "bin": {
9
- "create-better-t-stack": "dist/cli.js"
9
+ "create-better-t-stack": "src/cli.ts"
10
10
  },
11
11
  "files": [
12
12
  "templates",
@@ -48,20 +48,16 @@
48
48
  },
49
49
  "homepage": "https://better-t-stack.dev/",
50
50
  "scripts": {
51
- "build": "tsdown --publint",
52
- "dev": "tsdown --watch",
53
51
  "check-types": "tsc --noEmit",
54
52
  "test": "bun run build && vitest run; rm -rf .smoke || true",
55
- "test:ui": "bun run build && vitest --ui",
56
- "prepublishOnly": "npm run build"
53
+ "test:ui": "bun run build && vitest --ui"
57
54
  },
58
55
  "exports": {
59
56
  ".": {
60
- "types": "./dist/index.d.ts",
61
- "import": "./dist/index.js"
57
+ "import": "./src/index.ts"
62
58
  },
63
59
  "./cli": {
64
- "import": "./dist/cli.js"
60
+ "import": "./src/cli.ts"
65
61
  }
66
62
  },
67
63
  "dependencies": {
@@ -80,9 +76,10 @@
80
76
  "trpc-cli": "^0.12.0",
81
77
  "ts-morph": "^27.0.2",
82
78
  "yaml": "^2.8.1",
83
- "zod": "^4.1.12"
79
+ "zod": "^4.1.13"
84
80
  },
85
81
  "devDependencies": {
82
+ "@create-better-t-stack/types": "1.0.0",
86
83
  "@types/fs-extra": "^11.0.4",
87
84
  "@types/node": "^24.9.1",
88
85
  "@vitest/ui": "^3.2.4",
package/src/cli.ts ADDED
@@ -0,0 +1,3 @@
1
+ import { createBtsCli } from "./index";
2
+
3
+ createBtsCli().run();
@@ -11,8 +11,5 @@
11
11
  "type": "module",
12
12
  "scripts": {},
13
13
  "devDependencies": {},
14
- "peerDependencies": {
15
- "typescript": "^5"
16
- },
17
14
  "dependencies": {}
18
15
  }
@@ -10,8 +10,5 @@
10
10
  },
11
11
  "type": "module",
12
12
  "scripts": {},
13
- "devDependencies": {},
14
- "peerDependencies": {
15
- "typescript": "^5"
16
- }
13
+ "devDependencies": {}
17
14
  }
@@ -1,5 +1,4 @@
1
1
  import { createAuthClient } from "better-auth/react";
2
- import { anonymousClient } from "better-auth/client/plugins";
3
2
  import { convexClient } from "@convex-dev/better-auth/client/plugins";
4
3
  import { expoClient } from "@better-auth/expo/client";
5
4
  import Constants from "expo-constants";
@@ -8,7 +7,6 @@ import * as SecureStore from "expo-secure-store";
8
7
  export const authClient = createAuthClient({
9
8
  baseURL: process.env.EXPO_PUBLIC_CONVEX_SITE_URL,
10
9
  plugins: [
11
- anonymousClient(),
12
10
  expoClient({
13
11
  scheme: Constants.expoConfig?.scheme as string,
14
12
  storagePrefix: Constants.expoConfig?.scheme as string,
@@ -10,8 +10,5 @@
10
10
  },
11
11
  "type": "module",
12
12
  "scripts": {},
13
- "devDependencies": {},
14
- "peerDependencies": {
15
- "typescript": "^5"
16
- }
13
+ "devDependencies": {}
17
14
  }
@@ -9,8 +9,7 @@
9
9
  "license": "ISC",
10
10
  "description": "",
11
11
  "devDependencies": {
12
- "@types/node": "^24.3.0",
13
- "typescript": "^5.9.2"
12
+ "@types/node": "^24.3.0"
14
13
  },
15
14
  "dependencies": {}
16
15
  }
@@ -13,7 +13,5 @@
13
13
  "supabase"
14
14
  ],
15
15
  {{/if}}
16
- "devDependencies": {
17
- "typescript": "^5.8.2"
18
- }
16
+ "devDependencies": {}
19
17
  }
@@ -10,8 +10,5 @@
10
10
  }
11
11
  },
12
12
  "scripts": {},
13
- "devDependencies": {},
14
- "peerDependencies": {
15
- "typescript": "^5"
16
- }
13
+ "devDependencies": {}
17
14
  }
@@ -44,8 +44,7 @@
44
44
  },
45
45
  "devDependencies": {
46
46
  "@babel/core": "^7.26.10",
47
- "@types/react": "~19.1.10",
48
- "typescript": "~5.8.2"
47
+ "@types/react": "~19.1.10"
49
48
  },
50
49
  "private": true
51
50
  }
@@ -46,7 +46,6 @@
46
46
  "devDependencies": {
47
47
  "ajv": "^8.17.1",
48
48
  "@babel/core": "^7.28.0",
49
- "@types/react": "~19.1.10",
50
- "typescript": "~5.9.2"
49
+ "@types/react": "~19.1.10"
51
50
  }
52
51
  }
@@ -48,8 +48,7 @@
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/node": "^24.10.0",
51
- "@types/react": "~19.1.0",
52
- "typescript": "~5.9.2"
51
+ "@types/react": "~19.1.0"
53
52
  },
54
53
  "private": true
55
54
  }
@@ -14,10 +14,8 @@
14
14
  "@nuxt/content": "^3.7.1",
15
15
  "@nuxtjs/mdc": "^0.17.4",
16
16
  "nuxt": "^4.1.2",
17
- "typescript": "^5.9.2",
18
17
  "vue": "^3.5.21",
19
- "vue-router": "^4.5.1",
20
- "zod": "^4.1.5"
18
+ "vue-router": "^4.5.1"
21
19
  },
22
20
  "devDependencies": {
23
21
  "tailwindcss": "^4.1.13",
@@ -20,7 +20,6 @@
20
20
  "sonner": "^2.0.5",
21
21
  "tailwind-merge": "^3.3.1",
22
22
  "tw-animate-css": "^1.3.4",
23
- "zod": "^4.1.12",
24
23
  "babel-plugin-react-compiler": "^1.0.0"
25
24
  },
26
25
  "devDependencies": {
@@ -28,7 +27,6 @@
28
27
  "@types/node": "^20",
29
28
  "@types/react": "19.2.2",
30
29
  "@types/react-dom": "19.2.2",
31
- "tailwindcss": "^4.1.10",
32
- "typescript": "^5"
30
+ "tailwindcss": "^4.1.10"
33
31
  }
34
32
  }
@@ -24,8 +24,7 @@
24
24
  "react-router": "^7.6.1",
25
25
  "sonner": "^2.0.3",
26
26
  "tailwind-merge": "^3.3.0",
27
- "tw-animate-css": "^1.3.2",
28
- "zod": "^4.0.2"
27
+ "tw-animate-css": "^1.3.2"
29
28
  },
30
29
  "devDependencies": {
31
30
  "@react-router/dev": "^7.6.1",
@@ -35,7 +34,6 @@
35
34
  "@types/react-dom": "^19.0.4",
36
35
  "react-router-devtools": "^1.1.0",
37
36
  "tailwindcss": "^4.1.8",
38
- "typescript": "^5.8.3",
39
37
  "vite": "^6.3.5",
40
38
  "vite-tsconfig-paths": "^5.1.4"
41
39
  }
@@ -24,8 +24,7 @@
24
24
  "react-dom": "19.1.2",
25
25
  "sonner": "^2.0.5",
26
26
  "tailwind-merge": "^3.3.1",
27
- "tw-animate-css": "^1.2.5",
28
- "zod": "^4.0.2"
27
+ "tw-animate-css": "^1.2.5"
29
28
  },
30
29
  "devDependencies": {
31
30
  "@tanstack/react-router-devtools": "^1.114.27",
@@ -35,7 +34,6 @@
35
34
  "@types/react-dom": "^19.0.4",
36
35
  "@vitejs/plugin-react": "^4.3.4",
37
36
  "postcss": "^8.5.3",
38
- "typescript": "^5.8.3",
39
37
  "tailwindcss": "^4.0.15",
40
38
  "vite": "^6.2.2"
41
39
  }
@@ -26,8 +26,7 @@
26
26
  "tailwindcss": "^4.1.3",
27
27
  "tailwind-merge": "^3.3.1",
28
28
  "tw-animate-css": "^1.2.5",
29
- "vite-tsconfig-paths": "^5.1.4",
30
- "zod": "^4.0.2"
29
+ "vite-tsconfig-paths": "^5.1.4"
31
30
  },
32
31
  "devDependencies": {
33
32
  "@tanstack/react-router-devtools": {{#if (eq auth "clerk")}}"1.134.4"{{else}}"^1.132.31"{{/if}},
@@ -37,7 +36,6 @@
37
36
  "@types/react-dom": "^19.0.4",
38
37
  "@vitejs/plugin-react": "^5.0.4",
39
38
  "jsdom": "^26.0.0",
40
- "typescript": "^5.7.2",
41
39
  "vite": "^7.0.2",
42
40
  "web-vitals": "^5.0.3"
43
41
  }
@@ -15,11 +15,9 @@
15
15
  "@tanstack/solid-router": "^1.131.44",
16
16
  "lucide-solid": "^0.544.0",
17
17
  "solid-js": "^1.9.9",
18
- "tailwindcss": "^4.1.13",
19
- "zod": "^4.0.2"
18
+ "tailwindcss": "^4.1.13"
20
19
  },
21
20
  "devDependencies": {
22
- "typescript": "^5.9.2",
23
21
  "vite": "^7.1.5",
24
22
  "vite-plugin-solid": "^2.11.8"
25
23
  }
@@ -19,11 +19,9 @@
19
19
  "svelte": "^5.38.1",
20
20
  "svelte-check": "^4.3.1",
21
21
  "tailwindcss": "^4.1.12",
22
- "typescript": "^5.9.2",
23
22
  "vite": "^7.1.2"
24
23
  },
25
24
  "dependencies": {
26
- "@tanstack/svelte-form": "^1.19.2",
27
- "zod": "^4.0.17"
25
+ "@tanstack/svelte-form": "^1.19.2"
28
26
  }
29
27
  }
package/dist/cli.d.ts DELETED
@@ -1 +0,0 @@
1
- export { };
package/dist/cli.js DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env node
2
- import { n as createBtsCli } from "./src-BNPik1LZ.js";
3
-
4
- //#region src/cli.ts
5
- createBtsCli().run();
6
-
7
- //#endregion
8
- export { };