create-velox-app 0.8.0 → 0.8.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 +6 -0
- package/dist/templates/index.d.ts +1 -2
- package/dist/templates/index.js +1 -5
- package/package.json +5 -5
- package/src/templates/source/api/package.auth.json +7 -7
- package/src/templates/source/api/package.default.json +7 -7
- package/src/templates/source/api/package.trpc.json +8 -8
- package/src/templates/source/root/package.json +2 -2
- package/src/templates/source/rsc/package.json +6 -6
- package/src/templates/source/rsc-auth/package.json +6 -6
- package/src/templates/source/web/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,9 +6,8 @@
|
|
|
6
6
|
import { VELOXTS_VERSION } from './shared.js';
|
|
7
7
|
import type { TemplateConfig, TemplateFile, TemplateType } from './types.js';
|
|
8
8
|
import { DATABASE_METADATA, getAvailableDatabases, getAvailableTemplates, isDatabaseAvailable, isValidDatabase, isValidTemplate, TEMPLATE_METADATA } from './types.js';
|
|
9
|
-
export { VELOXTS_VERSION };
|
|
10
9
|
export type { DatabaseMetadata, DatabaseType, TemplateConfig, TemplateFile, TemplateMetadata, TemplateType, } from './types.js';
|
|
11
|
-
export { DATABASE_METADATA, getAvailableDatabases, getAvailableTemplates, isDatabaseAvailable, isValidDatabase, isValidTemplate, TEMPLATE_METADATA, };
|
|
10
|
+
export { DATABASE_METADATA, getAvailableDatabases, getAvailableTemplates, isDatabaseAvailable, isValidDatabase, isValidTemplate, TEMPLATE_METADATA, VELOXTS_VERSION, };
|
|
12
11
|
/**
|
|
13
12
|
* Generate all files for a given template
|
|
14
13
|
*/
|
package/dist/templates/index.js
CHANGED
|
@@ -10,11 +10,7 @@ import { VELOXTS_VERSION } from './shared.js';
|
|
|
10
10
|
import { generateSpaTemplate } from './spa.js';
|
|
11
11
|
import { generateTrpcTemplate } from './trpc.js';
|
|
12
12
|
import { DATABASE_METADATA, getAvailableDatabases, getAvailableTemplates, isDatabaseAvailable, isValidDatabase, isValidTemplate, TEMPLATE_METADATA, } from './types.js';
|
|
13
|
-
|
|
14
|
-
// Re-exports
|
|
15
|
-
// ============================================================================
|
|
16
|
-
export { VELOXTS_VERSION };
|
|
17
|
-
export { DATABASE_METADATA, getAvailableDatabases, getAvailableTemplates, isDatabaseAvailable, isValidDatabase, isValidTemplate, TEMPLATE_METADATA, };
|
|
13
|
+
export { DATABASE_METADATA, getAvailableDatabases, getAvailableTemplates, isDatabaseAvailable, isValidDatabase, isValidTemplate, TEMPLATE_METADATA, VELOXTS_VERSION, };
|
|
18
14
|
// ============================================================================
|
|
19
15
|
// Template Generator
|
|
20
16
|
// ============================================================================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-velox-app",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Project scaffolder for VeloxTS framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"CHANGELOG.md"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@clack/prompts": "1.0
|
|
26
|
+
"@clack/prompts": "1.1.0",
|
|
27
27
|
"ora": "9.3.0",
|
|
28
28
|
"picocolors": "1.1.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@playwright/test": "1.58.2",
|
|
32
|
-
"@types/node": "25.
|
|
33
|
-
"@vitest/coverage-v8": "4.0
|
|
32
|
+
"@types/node": "25.5.0",
|
|
33
|
+
"@vitest/coverage-v8": "4.1.0",
|
|
34
34
|
"typescript": "5.9.3",
|
|
35
|
-
"vitest": "4.0
|
|
35
|
+
"vitest": "4.1.0"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"velox",
|
|
@@ -18,23 +18,23 @@
|
|
|
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.5.0",
|
|
22
|
+
"@prisma/client": "7.5.0",
|
|
23
|
+
"@prisma/client-runtime-utils": "7.5.0",
|
|
24
24
|
"@veloxts/auth": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/velox": "__VELOXTS_VERSION__",
|
|
27
27
|
"bcrypt": "6.0.0",
|
|
28
|
-
"better-sqlite3": "12.
|
|
29
|
-
"dotenv": "17.
|
|
28
|
+
"better-sqlite3": "12.8.0",
|
|
29
|
+
"dotenv": "17.3.1",
|
|
30
30
|
"file-uri-to-path": "2.0.0",
|
|
31
31
|
"zod": "4.3.6"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/bcrypt": "6.0.0",
|
|
35
|
-
"@types/node": "25.
|
|
35
|
+
"@types/node": "25.5.0",
|
|
36
36
|
"hot-hook": "0.4.0",
|
|
37
|
-
"prisma": "7.
|
|
37
|
+
"prisma": "7.5.0",
|
|
38
38
|
"tsup": "8.5.1",
|
|
39
39
|
"tsx": "4.21.0",
|
|
40
40
|
"typescript": "5.9.3"
|
|
@@ -18,20 +18,20 @@
|
|
|
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.5.0",
|
|
22
|
+
"@prisma/client": "7.5.0",
|
|
23
|
+
"@prisma/client-runtime-utils": "7.5.0",
|
|
24
24
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/velox": "__VELOXTS_VERSION__",
|
|
26
|
-
"better-sqlite3": "12.
|
|
27
|
-
"dotenv": "17.
|
|
26
|
+
"better-sqlite3": "12.8.0",
|
|
27
|
+
"dotenv": "17.3.1",
|
|
28
28
|
"file-uri-to-path": "2.0.0",
|
|
29
29
|
"zod": "4.3.6"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/node": "25.
|
|
32
|
+
"@types/node": "25.5.0",
|
|
33
33
|
"hot-hook": "0.4.0",
|
|
34
|
-
"prisma": "7.
|
|
34
|
+
"prisma": "7.5.0",
|
|
35
35
|
"tsup": "8.5.1",
|
|
36
36
|
"tsx": "4.21.0",
|
|
37
37
|
"typescript": "5.9.3"
|
|
@@ -18,21 +18,21 @@
|
|
|
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.
|
|
24
|
-
"@trpc/server": "11.
|
|
21
|
+
"@prisma/adapter-better-sqlite3": "7.5.0",
|
|
22
|
+
"@prisma/client": "7.5.0",
|
|
23
|
+
"@prisma/client-runtime-utils": "7.5.0",
|
|
24
|
+
"@trpc/server": "11.12.0",
|
|
25
25
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/velox": "__VELOXTS_VERSION__",
|
|
27
|
-
"better-sqlite3": "12.
|
|
28
|
-
"dotenv": "17.
|
|
27
|
+
"better-sqlite3": "12.8.0",
|
|
28
|
+
"dotenv": "17.3.1",
|
|
29
29
|
"file-uri-to-path": "2.0.0",
|
|
30
30
|
"zod": "4.3.6"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@types/node": "25.
|
|
33
|
+
"@types/node": "25.5.0",
|
|
34
34
|
"hot-hook": "0.4.0",
|
|
35
|
-
"prisma": "7.
|
|
35
|
+
"prisma": "7.5.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.5.0",
|
|
21
21
|
"@veloxts/velox": "__VELOXTS_VERSION__"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/node": "25.
|
|
24
|
+
"@types/node": "25.5.0",
|
|
25
25
|
"@veloxts/cli": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/mcp": "__VELOXTS_VERSION__",
|
|
27
27
|
"tsx": "4.21.0",
|
|
@@ -17,10 +17,10 @@
|
|
|
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.
|
|
23
|
-
"better-sqlite3": "12.
|
|
20
|
+
"@prisma/adapter-better-sqlite3": "7.5.0",
|
|
21
|
+
"@prisma/client": "7.5.0",
|
|
22
|
+
"@prisma/client-runtime-utils": "7.5.0",
|
|
23
|
+
"better-sqlite3": "12.8.0",
|
|
24
24
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/orm": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/router": "__VELOXTS_VERSION__",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"zod": "4.3.6"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "25.
|
|
37
|
+
"@types/node": "25.5.0",
|
|
38
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.5.0",
|
|
43
43
|
"typescript": "5.9.3"
|
|
44
44
|
}
|
|
45
45
|
}
|
|
@@ -17,10 +17,10 @@
|
|
|
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.
|
|
23
|
-
"better-sqlite3": "12.
|
|
20
|
+
"@prisma/adapter-better-sqlite3": "7.5.0",
|
|
21
|
+
"@prisma/client": "7.5.0",
|
|
22
|
+
"@prisma/client-runtime-utils": "7.5.0",
|
|
23
|
+
"better-sqlite3": "12.8.0",
|
|
24
24
|
"@veloxts/auth": "__VELOXTS_VERSION__",
|
|
25
25
|
"@veloxts/core": "__VELOXTS_VERSION__",
|
|
26
26
|
"@veloxts/orm": "__VELOXTS_VERSION__",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bcrypt": "6.0.0",
|
|
40
|
-
"@types/node": "25.
|
|
40
|
+
"@types/node": "25.5.0",
|
|
41
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.5.0",
|
|
46
46
|
"typescript": "5.9.3"
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -11,18 +11,18 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@tanstack/react-query": "5.90.21",
|
|
14
|
-
"@tanstack/react-router": "1.
|
|
14
|
+
"@tanstack/react-router": "1.167.0",
|
|
15
15
|
"@veloxts/client": "__VELOXTS_VERSION__",
|
|
16
16
|
"react": "19.2.4",
|
|
17
17
|
"react-dom": "19.2.4",
|
|
18
18
|
"react-error-boundary": "6.1.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@tanstack/router-plugin": "1.
|
|
22
|
-
"@types/node": "25.
|
|
21
|
+
"@tanstack/router-plugin": "1.166.9",
|
|
22
|
+
"@types/node": "25.5.0",
|
|
23
23
|
"@types/react": "19.2.14",
|
|
24
24
|
"@types/react-dom": "19.2.3",
|
|
25
|
-
"@vitejs/plugin-react": "5.
|
|
25
|
+
"@vitejs/plugin-react": "5.2.0",
|
|
26
26
|
"typescript": "5.9.3",
|
|
27
27
|
"vite": "7.3.1"
|
|
28
28
|
}
|