create-velox-app 0.6.62 → 0.6.64
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/package.json +1 -1
- package/src/templates/source/api/package.auth.json +0 -1
- package/src/templates/source/api/package.default.json +0 -1
- package/src/templates/source/root/package.json +4 -1
- package/src/templates/source/rsc/package.json +1 -0
- package/src/templates/source/rsc-auth/package.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# create-velox-app
|
|
2
2
|
|
|
3
|
+
## 0.6.64
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(create): add @veloxts/velox and @veloxts/mcp to root package.json
|
|
8
|
+
|
|
9
|
+
## 0.6.63
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- feat(create): add dynamic database display name to CLAUDE.md templates
|
|
14
|
+
|
|
3
15
|
## 0.6.62
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -16,11 +16,14 @@
|
|
|
16
16
|
"db:studio": "__WS_API__ db:studio"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@prisma/client-runtime-utils": "7.2.0"
|
|
19
|
+
"@prisma/client-runtime-utils": "7.2.0",
|
|
20
|
+
"@veloxts/velox": "__VELOXTS_VERSION__"
|
|
20
21
|
},
|
|
21
22
|
"devDependencies": {
|
|
22
23
|
"@types/node": "25.0.3",
|
|
23
24
|
"@veloxts/cli": "__VELOXTS_VERSION__",
|
|
25
|
+
"@veloxts/mcp": "__VELOXTS_VERSION__",
|
|
26
|
+
"tsx": "4.21.0",
|
|
24
27
|
"typescript": "5.9.3"
|
|
25
28
|
}
|
|
26
29
|
}
|