@veloxts/velox 0.6.59 → 0.6.60
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 +35 -12
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @veloxts/velox
|
|
2
2
|
|
|
3
|
+
## 0.6.60
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat(create): add tRPC-specific CLAUDE.md and improve AI-native features
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/auth@0.6.60
|
|
10
|
+
- @veloxts/core@0.6.60
|
|
11
|
+
- @veloxts/orm@0.6.60
|
|
12
|
+
- @veloxts/router@0.6.60
|
|
13
|
+
- @veloxts/validation@0.6.60
|
|
14
|
+
|
|
3
15
|
## 0.6.59
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Velox TS Framework
|
|
2
2
|
|
|
3
|
-
> **Early Preview (v0.6.x)** - APIs are stabilizing but may still change.
|
|
3
|
+
> **Early Preview (v0.6.x)** - APIs are stabilizing but may still change. Do not use in production yet.
|
|
4
4
|
|
|
5
5
|
## Type-safe full-stack without the build step
|
|
6
6
|
|
|
@@ -24,8 +24,11 @@ Your web app is running at `http://localhost:8080`.
|
|
|
24
24
|
For adding to an existing project:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
|
|
28
|
-
npm install
|
|
27
|
+
# Runtime dependencies
|
|
28
|
+
npm install @veloxts/velox @veloxts/cli @prisma/client zod
|
|
29
|
+
|
|
30
|
+
# Development dependencies
|
|
31
|
+
npm install -D tsx typescript prisma
|
|
29
32
|
```
|
|
30
33
|
|
|
31
34
|
Note: Manual setup requires Prisma 7 configuration with driver adapters. See [@veloxts/orm](https://www.npmjs.com/package/@veloxts/orm) for details.
|
|
@@ -33,15 +36,35 @@ Note: Manual setup requires Prisma 7 configuration with driver adapters. See [@v
|
|
|
33
36
|
## What's Included
|
|
34
37
|
|
|
35
38
|
This umbrella package re-exports:
|
|
36
|
-
|
|
37
|
-
- `@veloxts/
|
|
38
|
-
- `@veloxts/
|
|
39
|
-
- `@veloxts/
|
|
40
|
-
- `@veloxts/
|
|
41
|
-
- `@veloxts/
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
39
|
+
|
|
40
|
+
- `@veloxts/core` - App bootstrap, plugins, DI container
|
|
41
|
+
- `@veloxts/router` - Procedures, REST adapter, tRPC integration
|
|
42
|
+
- `@veloxts/orm` - Prisma database plugin with driver adapters
|
|
43
|
+
- `@veloxts/auth` - JWT/session authentication, guards, rate limiting
|
|
44
|
+
- `@veloxts/validation` - Zod schema utilities and integration
|
|
45
|
+
|
|
46
|
+
## Separate Packages
|
|
47
|
+
|
|
48
|
+
Install these separately based on your needs:
|
|
49
|
+
|
|
50
|
+
| Package | Description |
|
|
51
|
+
|---------|-------------|
|
|
52
|
+
| `@veloxts/cli` | Developer CLI (`velox dev`, `velox make`, `velox migrate`) |
|
|
53
|
+
| `@veloxts/client` | Type-safe frontend API client |
|
|
54
|
+
| `@veloxts/web` | React Server Components with Vinxi |
|
|
55
|
+
| `@veloxts/mcp` | Model Context Protocol server for AI assistants |
|
|
56
|
+
| `create-velox-app` | Project scaffolder |
|
|
57
|
+
|
|
58
|
+
## Ecosystem Add-ons (Experimental)
|
|
59
|
+
|
|
60
|
+
| Package | Description |
|
|
61
|
+
|---------|-------------|
|
|
62
|
+
| `@veloxts/cache` | Multi-driver caching (memory, Redis) |
|
|
63
|
+
| `@veloxts/queue` | Background job processing (sync, BullMQ) |
|
|
64
|
+
| `@veloxts/mail` | Email sending (SMTP, Resend, React Email) |
|
|
65
|
+
| `@veloxts/storage` | File storage abstraction (local, S3/R2) |
|
|
66
|
+
| `@veloxts/scheduler` | Cron task scheduling |
|
|
67
|
+
| `@veloxts/events` | Real-time broadcasting (WebSocket, SSE) |
|
|
45
68
|
|
|
46
69
|
## License
|
|
47
70
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/velox",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.60",
|
|
4
4
|
"description": "Complete VeloxTS framework - batteries included",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"CHANGELOG.md"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@veloxts/
|
|
43
|
-
"@veloxts/orm": "0.6.
|
|
44
|
-
"@veloxts/
|
|
45
|
-
"@veloxts/
|
|
46
|
-
"@veloxts/auth": "0.6.
|
|
42
|
+
"@veloxts/core": "0.6.60",
|
|
43
|
+
"@veloxts/orm": "0.6.60",
|
|
44
|
+
"@veloxts/validation": "0.6.60",
|
|
45
|
+
"@veloxts/router": "0.6.60",
|
|
46
|
+
"@veloxts/auth": "0.6.60"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"typescript": "5.9.3",
|