create-velox-app 0.6.107 → 0.7.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/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/dist/templates/placeholders.js +1 -1
- package/package.json +5 -5
- package/src/templates/source/api/package.auth.json +4 -4
- package/src/templates/source/api/package.default.json +4 -4
- package/src/templates/source/api/package.trpc.json +4 -4
- package/src/templates/source/root/package.json +2 -2
- package/src/templates/source/rsc/package.json +7 -7
- package/src/templates/source/rsc-auth/package.json +7 -7
- package/src/templates/source/web/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# create-velox-app
|
|
2
2
|
|
|
3
|
-
> **Early Access (v0.
|
|
3
|
+
> **Early Access (v0.7.x)**
|
|
4
4
|
|
|
5
5
|
Interactive project scaffolder for VeloxTS Framework - creates production-ready applications with batteries included. Learn more at [@veloxts/velox](https://www.npmjs.com/package/@veloxts/velox).
|
|
6
6
|
|
|
@@ -193,7 +193,7 @@ export function applyPlaceholdersToJson(content, config) {
|
|
|
193
193
|
return applyPlaceholders(jsonString, config);
|
|
194
194
|
}
|
|
195
195
|
// Database adapter versions
|
|
196
|
-
const PRISMA_VERSION = '7.
|
|
196
|
+
const PRISMA_VERSION = '7.4.0';
|
|
197
197
|
const PG_VERSION = '8.16.0';
|
|
198
198
|
/**
|
|
199
199
|
* Apply database-specific dependency modifications to package.json content.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-velox-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Project scaffolder for VeloxTS framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"CHANGELOG.md"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@clack/prompts": "1.0.
|
|
27
|
-
"ora": "9.
|
|
26
|
+
"@clack/prompts": "1.0.1",
|
|
27
|
+
"ora": "9.3.0",
|
|
28
28
|
"picocolors": "1.1.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@playwright/test": "1.
|
|
32
|
-
"@types/node": "25.
|
|
31
|
+
"@playwright/test": "1.58.2",
|
|
32
|
+
"@types/node": "25.2.3",
|
|
33
33
|
"@vitest/coverage-v8": "4.0.18",
|
|
34
34
|
"typescript": "5.9.3",
|
|
35
35
|
"vitest": "4.0.18"
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"postinstall": "prisma generate"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@prisma/adapter-better-sqlite3": "7.
|
|
22
|
-
"@prisma/client": "7.
|
|
23
|
-
"@prisma/client-runtime-utils": "7.
|
|
21
|
+
"@prisma/adapter-better-sqlite3": "7.4.0",
|
|
22
|
+
"@prisma/client": "7.4.0",
|
|
23
|
+
"@prisma/client-runtime-utils": "7.4.0",
|
|
24
24
|
"@veloxts/auth": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/velox": "__VELOXTS_VERSION__",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@types/bcrypt": "6.0.0",
|
|
35
35
|
"@types/node": "25.1.0",
|
|
36
36
|
"hot-hook": "0.4.0",
|
|
37
|
-
"prisma": "7.
|
|
37
|
+
"prisma": "7.4.0",
|
|
38
38
|
"tsup": "8.5.1",
|
|
39
39
|
"tsx": "4.21.0",
|
|
40
40
|
"typescript": "5.9.3"
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"postinstall": "prisma generate"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@prisma/adapter-better-sqlite3": "7.
|
|
22
|
-
"@prisma/client": "7.
|
|
23
|
-
"@prisma/client-runtime-utils": "7.
|
|
21
|
+
"@prisma/adapter-better-sqlite3": "7.4.0",
|
|
22
|
+
"@prisma/client": "7.4.0",
|
|
23
|
+
"@prisma/client-runtime-utils": "7.4.0",
|
|
24
24
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/velox": "__VELOXTS_VERSION__",
|
|
26
26
|
"better-sqlite3": "12.6.2",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/node": "25.1.0",
|
|
33
33
|
"hot-hook": "0.4.0",
|
|
34
|
-
"prisma": "7.
|
|
34
|
+
"prisma": "7.4.0",
|
|
35
35
|
"tsup": "8.5.1",
|
|
36
36
|
"tsx": "4.21.0",
|
|
37
37
|
"typescript": "5.9.3"
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"postinstall": "prisma generate"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@prisma/adapter-better-sqlite3": "7.
|
|
22
|
-
"@prisma/client": "7.
|
|
23
|
-
"@prisma/client-runtime-utils": "7.
|
|
21
|
+
"@prisma/adapter-better-sqlite3": "7.4.0",
|
|
22
|
+
"@prisma/client": "7.4.0",
|
|
23
|
+
"@prisma/client-runtime-utils": "7.4.0",
|
|
24
24
|
"@trpc/server": "11.9.0",
|
|
25
25
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/velox": "__VELOXTS_VERSION__",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "25.1.0",
|
|
34
34
|
"hot-hook": "0.4.0",
|
|
35
|
-
"prisma": "7.
|
|
35
|
+
"prisma": "7.4.0",
|
|
36
36
|
"tsup": "8.5.1",
|
|
37
37
|
"tsx": "4.21.0",
|
|
38
38
|
"typescript": "5.9.3"
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"db:studio": "__WS_API__ db:studio"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@prisma/client-runtime-utils": "7.
|
|
20
|
+
"@prisma/client-runtime-utils": "7.4.0",
|
|
21
21
|
"@veloxts/velox": "__VELOXTS_VERSION__"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/node": "25.
|
|
24
|
+
"@types/node": "25.2.3",
|
|
25
25
|
"@veloxts/cli": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/mcp": "__VELOXTS_VERSION__",
|
|
27
27
|
"tsx": "4.21.0",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"lint:client": "./scripts/check-client-imports.sh"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@prisma/adapter-better-sqlite3": "7.
|
|
21
|
-
"@prisma/client": "7.
|
|
22
|
-
"@prisma/client-runtime-utils": "7.
|
|
20
|
+
"@prisma/adapter-better-sqlite3": "7.4.0",
|
|
21
|
+
"@prisma/client": "7.4.0",
|
|
22
|
+
"@prisma/client-runtime-utils": "7.4.0",
|
|
23
23
|
"better-sqlite3": "12.6.2",
|
|
24
24
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/orm": "__VELOXTS_VERSION__",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
"@veloxts/validation": "__VELOXTS_VERSION__",
|
|
28
28
|
"@veloxts/web": "__VELOXTS_VERSION__",
|
|
29
29
|
"@vinxi/server-functions": "0.5.1",
|
|
30
|
-
"dotenv": "17.
|
|
30
|
+
"dotenv": "17.3.1",
|
|
31
31
|
"react": "19.2.4",
|
|
32
32
|
"react-dom": "19.2.4",
|
|
33
33
|
"vinxi": "0.5.11",
|
|
34
34
|
"zod": "4.3.6"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "25.
|
|
38
|
-
"@types/react": "19.2.
|
|
37
|
+
"@types/node": "25.2.3",
|
|
38
|
+
"@types/react": "19.2.14",
|
|
39
39
|
"@types/react-dom": "19.2.3",
|
|
40
40
|
"@veloxts/cli": "__VELOXTS_VERSION__",
|
|
41
41
|
"@veloxts/mcp": "__VELOXTS_VERSION__",
|
|
42
|
-
"prisma": "7.
|
|
42
|
+
"prisma": "7.4.0",
|
|
43
43
|
"typescript": "5.9.3"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"lint:client": "./scripts/check-client-imports.sh"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@prisma/adapter-better-sqlite3": "7.
|
|
21
|
-
"@prisma/client": "7.
|
|
22
|
-
"@prisma/client-runtime-utils": "7.
|
|
20
|
+
"@prisma/adapter-better-sqlite3": "7.4.0",
|
|
21
|
+
"@prisma/client": "7.4.0",
|
|
22
|
+
"@prisma/client-runtime-utils": "7.4.0",
|
|
23
23
|
"better-sqlite3": "12.6.2",
|
|
24
24
|
"@veloxts/auth": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@veloxts/web": "__VELOXTS_VERSION__",
|
|
30
30
|
"@vinxi/server-functions": "0.5.1",
|
|
31
31
|
"bcrypt": "6.0.0",
|
|
32
|
-
"dotenv": "17.
|
|
32
|
+
"dotenv": "17.3.1",
|
|
33
33
|
"react": "19.2.4",
|
|
34
34
|
"react-dom": "19.2.4",
|
|
35
35
|
"vinxi": "0.5.11",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bcrypt": "6.0.0",
|
|
40
|
-
"@types/node": "25.
|
|
41
|
-
"@types/react": "19.2.
|
|
40
|
+
"@types/node": "25.2.3",
|
|
41
|
+
"@types/react": "19.2.14",
|
|
42
42
|
"@types/react-dom": "19.2.3",
|
|
43
43
|
"@veloxts/cli": "__VELOXTS_VERSION__",
|
|
44
44
|
"@veloxts/mcp": "__VELOXTS_VERSION__",
|
|
45
|
-
"prisma": "7.
|
|
45
|
+
"prisma": "7.4.0",
|
|
46
46
|
"typescript": "5.9.3"
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -10,19 +10,19 @@
|
|
|
10
10
|
"type-check": "tsc --noEmit"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@tanstack/react-query": "5.90.
|
|
14
|
-
"@tanstack/react-router": "1.
|
|
13
|
+
"@tanstack/react-query": "5.90.21",
|
|
14
|
+
"@tanstack/react-router": "1.159.10",
|
|
15
15
|
"@veloxts/client": "__VELOXTS_VERSION__",
|
|
16
16
|
"react": "19.2.4",
|
|
17
17
|
"react-dom": "19.2.4",
|
|
18
|
-
"react-error-boundary": "6.1.
|
|
18
|
+
"react-error-boundary": "6.1.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@tanstack/router-plugin": "1.
|
|
22
|
-
"@types/node": "25.
|
|
23
|
-
"@types/react": "19.2.
|
|
21
|
+
"@tanstack/router-plugin": "1.159.12",
|
|
22
|
+
"@types/node": "25.2.3",
|
|
23
|
+
"@types/react": "19.2.14",
|
|
24
24
|
"@types/react-dom": "19.2.3",
|
|
25
|
-
"@vitejs/plugin-react": "5.1.
|
|
25
|
+
"@vitejs/plugin-react": "5.1.4",
|
|
26
26
|
"typescript": "5.9.3",
|
|
27
27
|
"vite": "7.3.1"
|
|
28
28
|
}
|