@veloxts/velox 0.6.59 → 0.6.61

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +35 -12
  3. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @veloxts/velox
2
2
 
3
+ ## 0.6.61
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(mcp,cli): improve workspace support and add procedure auto-registration
8
+ - Updated dependencies
9
+ - @veloxts/auth@0.6.61
10
+ - @veloxts/core@0.6.61
11
+ - @veloxts/orm@0.6.61
12
+ - @veloxts/router@0.6.61
13
+ - @veloxts/validation@0.6.61
14
+
15
+ ## 0.6.60
16
+
17
+ ### Patch Changes
18
+
19
+ - feat(create): add tRPC-specific CLAUDE.md and improve AI-native features
20
+ - Updated dependencies
21
+ - @veloxts/auth@0.6.60
22
+ - @veloxts/core@0.6.60
23
+ - @veloxts/orm@0.6.60
24
+ - @veloxts/router@0.6.60
25
+ - @veloxts/validation@0.6.60
26
+
3
27
  ## 0.6.59
4
28
 
5
29
  ### 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. Use with caution in production.
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
- npm install @veloxts/velox zod
28
- npm install -D @veloxts/cli tsx typescript prisma @prisma/client
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
- - `@veloxts/core` - App bootstrap, plugins, DI
37
- - `@veloxts/router` - Procedures, REST adapter, tRPC
38
- - `@veloxts/orm` - Prisma database plugin
39
- - `@veloxts/auth` - Authentication & authorization
40
- - `@veloxts/validation` - Zod integration
41
- - `@veloxts/mcp` - exposes project context to AI assistants
42
- - `@veloxts/web` - React Server Components for full-stack web apps
43
-
44
- Separate packages: `@veloxts/cli`, `@veloxts/client`, `create-velox-app`
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.59",
3
+ "version": "0.6.61",
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/validation": "0.6.59",
43
- "@veloxts/orm": "0.6.59",
44
- "@veloxts/router": "0.6.59",
45
- "@veloxts/core": "0.6.59",
46
- "@veloxts/auth": "0.6.59"
42
+ "@veloxts/core": "0.6.61",
43
+ "@veloxts/validation": "0.6.61",
44
+ "@veloxts/router": "0.6.61",
45
+ "@veloxts/orm": "0.6.61",
46
+ "@veloxts/auth": "0.6.61"
47
47
  },
48
48
  "devDependencies": {
49
49
  "typescript": "5.9.3",