create-better-t-stack 3.7.3-canary.fe324be3 → 3.7.4
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/cli.js +1 -1
- package/dist/index.d.ts +250 -108
- package/dist/index.js +1 -1
- package/dist/{src-yXf02Wox.js → src-B6YuFjPr.js} +346 -190
- package/package.json +1 -2
- package/templates/api/orpc/server/package.json.hbs +3 -0
- package/templates/api/trpc/server/package.json.hbs +4 -1
- package/templates/auth/better-auth/server/base/package.json.hbs +4 -1
- package/templates/backend/convex/packages/backend/package.json.hbs +2 -1
- package/templates/backend/server/base/package.json.hbs +3 -1
- package/templates/db/base/package.json.hbs +4 -1
- package/templates/frontend/native/bare/package.json.hbs +2 -1
- package/templates/frontend/native/unistyles/package.json.hbs +2 -1
- package/templates/frontend/native/uniwind/package.json.hbs +2 -1
- package/templates/frontend/nuxt/package.json.hbs +1 -0
- package/templates/frontend/react/next/package.json.hbs +8 -7
- package/templates/frontend/react/react-router/package.json.hbs +14 -13
- package/templates/frontend/react/tanstack-router/package.json.hbs +8 -7
- package/templates/frontend/react/tanstack-start/package.json.hbs +9 -8
- package/templates/frontend/solid/package.json.hbs +1 -0
- package/templates/frontend/svelte/package.json.hbs +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-better-t-stack",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.4",
|
|
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",
|
|
@@ -65,7 +65,6 @@
|
|
|
65
65
|
}
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@better-t-stack/types": "3.7.3",
|
|
69
68
|
"@biomejs/js-api": "^3.0.0",
|
|
70
69
|
"@biomejs/wasm-nodejs": "^2.2.6",
|
|
71
70
|
"@clack/prompts": "^1.0.0-alpha.6",
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"radix-ui": "^1.4.2",
|
|
12
|
-
"@tanstack/react-form": "^1.
|
|
12
|
+
"@tanstack/react-form": "^1.27.3",
|
|
13
13
|
"class-variance-authority": "^0.7.1",
|
|
14
14
|
"clsx": "^2.1.1",
|
|
15
15
|
"lucide-react": "^0.546.0",
|
|
16
|
-
"next": "^16.0.
|
|
16
|
+
"next": "^16.0.10",
|
|
17
17
|
"next-themes": "^0.4.6",
|
|
18
|
-
"react": "19.
|
|
19
|
-
"react-dom": "19.
|
|
18
|
+
"react": "19.2.3",
|
|
19
|
+
"react-dom": "19.2.3",
|
|
20
20
|
"sonner": "^2.0.5",
|
|
21
21
|
"tailwind-merge": "^3.3.1",
|
|
22
22
|
"tw-animate-css": "^1.3.4",
|
|
@@ -25,8 +25,9 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@tailwindcss/postcss": "^4.1.10",
|
|
27
27
|
"@types/node": "^20",
|
|
28
|
-
"@types/react": "19.2.
|
|
29
|
-
"@types/react-dom": "19.2.
|
|
30
|
-
"tailwindcss": "^4.1.10"
|
|
28
|
+
"@types/react": "19.2.7",
|
|
29
|
+
"@types/react-dom": "19.2.3",
|
|
30
|
+
"tailwindcss": "^4.1.10",
|
|
31
|
+
"typescript": "^5"
|
|
31
32
|
}
|
|
32
33
|
}
|
|
@@ -10,31 +10,32 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"radix-ui": "^1.4.2",
|
|
13
|
-
"@react-router/fs-routes": "^7.
|
|
14
|
-
"@react-router/node": "^7.
|
|
15
|
-
"@react-router/serve": "^7.
|
|
16
|
-
"@tanstack/react-form": "^1.
|
|
13
|
+
"@react-router/fs-routes": "^7.10.1",
|
|
14
|
+
"@react-router/node": "^7.10.1",
|
|
15
|
+
"@react-router/serve": "^7.10.1",
|
|
16
|
+
"@tanstack/react-form": "^1.27.3",
|
|
17
17
|
"class-variance-authority": "^0.7.1",
|
|
18
18
|
"clsx": "^2.1.1",
|
|
19
19
|
"isbot": "^5.1.28",
|
|
20
20
|
"lucide-react": "^0.511.0",
|
|
21
21
|
"next-themes": "^0.4.6",
|
|
22
|
-
"react": "19.
|
|
23
|
-
"react-dom": "19.
|
|
24
|
-
"react-router": "^7.
|
|
22
|
+
"react": "19.2.3",
|
|
23
|
+
"react-dom": "19.2.3",
|
|
24
|
+
"react-router": "^7.10.1",
|
|
25
25
|
"sonner": "^2.0.3",
|
|
26
26
|
"tailwind-merge": "^3.3.0",
|
|
27
27
|
"tw-animate-css": "^1.3.2"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@react-router/dev": "^7.
|
|
31
|
-
"@tailwindcss/vite": "^4.1.
|
|
30
|
+
"@react-router/dev": "^7.10.1",
|
|
31
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
32
32
|
"@types/node": "^20",
|
|
33
|
-
"@types/react": "~19.
|
|
34
|
-
"@types/react-dom": "^19.
|
|
33
|
+
"@types/react": "~19.2.7",
|
|
34
|
+
"@types/react-dom": "^19.2.3",
|
|
35
35
|
"react-router-devtools": "^1.1.0",
|
|
36
|
-
"tailwindcss": "^4.1.
|
|
37
|
-
"
|
|
36
|
+
"tailwindcss": "^4.1.18",
|
|
37
|
+
"typescript": "^5.8.3",
|
|
38
|
+
"vite": "^7.2.7",
|
|
38
39
|
"vite-tsconfig-paths": "^5.1.4"
|
|
39
40
|
}
|
|
40
41
|
}
|
|
@@ -15,25 +15,26 @@
|
|
|
15
15
|
"radix-ui": "^1.4.2",
|
|
16
16
|
"@tanstack/react-form": "^1.12.3",
|
|
17
17
|
"@tailwindcss/vite": "^4.0.15",
|
|
18
|
-
"@tanstack/react-router": "^1.
|
|
18
|
+
"@tanstack/react-router": "^1.141.1",
|
|
19
19
|
"class-variance-authority": "^0.7.1",
|
|
20
20
|
"clsx": "^2.1.1",
|
|
21
21
|
"lucide-react": "^0.473.0",
|
|
22
22
|
"next-themes": "^0.4.6",
|
|
23
|
-
"react": "19.
|
|
24
|
-
"react-dom": "19.
|
|
23
|
+
"react": "19.2.3",
|
|
24
|
+
"react-dom": "19.2.3",
|
|
25
25
|
"sonner": "^2.0.5",
|
|
26
26
|
"tailwind-merge": "^3.3.1",
|
|
27
27
|
"tw-animate-css": "^1.2.5"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@tanstack/react-router-devtools": "^1.
|
|
31
|
-
"@tanstack/router-plugin": "^1.
|
|
30
|
+
"@tanstack/react-router-devtools": "^1.141.1",
|
|
31
|
+
"@tanstack/router-plugin": "^1.141.1",
|
|
32
32
|
"@types/node": "^22.13.13",
|
|
33
|
-
"@types/react": "
|
|
34
|
-
"@types/react-dom": "
|
|
33
|
+
"@types/react": "19.2.7",
|
|
34
|
+
"@types/react-dom": "19.2.3",
|
|
35
35
|
"@vitejs/plugin-react": "^4.3.4",
|
|
36
36
|
"postcss": "^8.5.3",
|
|
37
|
+
"typescript": "^5.8.3",
|
|
37
38
|
"tailwindcss": "^4.0.15",
|
|
38
39
|
"vite": "^6.2.2"
|
|
39
40
|
}
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
"@tanstack/react-form": "^1.23.5",
|
|
13
13
|
"@tailwindcss/vite": "^4.1.8",
|
|
14
14
|
"@tanstack/react-query": "^5.80.6",
|
|
15
|
-
"@tanstack/react-router":
|
|
15
|
+
"@tanstack/react-router": "^1.141.1",
|
|
16
16
|
"@tanstack/react-router-with-query": "^1.130.17",
|
|
17
|
-
"@tanstack/react-start":
|
|
18
|
-
"@tanstack/router-plugin":
|
|
17
|
+
"@tanstack/react-start": "^1.141.1",
|
|
18
|
+
"@tanstack/router-plugin": "^1.141.1",
|
|
19
19
|
"class-variance-authority": "^0.7.1",
|
|
20
20
|
"clsx": "^2.1.1",
|
|
21
21
|
"lucide-react": "^0.525.0",
|
|
22
22
|
"next-themes": "^0.4.6",
|
|
23
|
-
"react": "19.
|
|
24
|
-
"react-dom": "19.
|
|
23
|
+
"react": "19.2.3",
|
|
24
|
+
"react-dom": "19.2.3",
|
|
25
25
|
"sonner": "^2.0.3",
|
|
26
26
|
"tailwindcss": "^4.1.3",
|
|
27
27
|
"tailwind-merge": "^3.3.1",
|
|
@@ -29,13 +29,14 @@
|
|
|
29
29
|
"vite-tsconfig-paths": "^5.1.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@tanstack/react-router-devtools":
|
|
32
|
+
"@tanstack/react-router-devtools": "^1.141.1",
|
|
33
33
|
"@testing-library/dom": "^10.4.0",
|
|
34
34
|
"@testing-library/react": "^16.2.0",
|
|
35
|
-
"@types/react": "
|
|
36
|
-
"@types/react-dom": "
|
|
35
|
+
"@types/react": "19.2.7",
|
|
36
|
+
"@types/react-dom": "19.2.3",
|
|
37
37
|
"@vitejs/plugin-react": "^5.0.4",
|
|
38
38
|
"jsdom": "^26.0.0",
|
|
39
|
+
"typescript": "^5.7.2",
|
|
39
40
|
"vite": "^7.0.2",
|
|
40
41
|
"web-vitals": "^5.0.3"
|
|
41
42
|
}
|