wexts 1.0.1 → 2.0.0
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/README.md +13 -2
- package/package.json +29 -20
package/README.md
CHANGED
|
@@ -1,9 +1,20 @@
|
|
|
1
|
-
# Wexts Framework
|
|
1
|
+
# Wexts Framework v2
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
5
|
+

|
|
5
6
|
|
|
6
|
-
**Wexts**
|
|
7
|
+
**Wexts v2** is a modern, production-ready full-stack framework that seamlessly integrates **NestJS 11** and **Next.js 16**. Build type-safe applications with automatic API client generation, shared types, and exceptional developer experience.
|
|
8
|
+
|
|
9
|
+
> **Requirements:** Node.js 20.9.0+, PNPM 10.0.0+
|
|
10
|
+
|
|
11
|
+
## ✨ What's New in v2
|
|
12
|
+
|
|
13
|
+
- 🎯 **Next.js 16** with Turbopack (stable) and React Compiler
|
|
14
|
+
- 🚀 **NestJS 11** with latest architectural improvements
|
|
15
|
+
- ⚡ **TypeScript 5.9** with enhanced type inference
|
|
16
|
+
- 📦 **Modern Build System** with optimized bundling
|
|
17
|
+
- 🔥 **React 19** full support
|
|
7
18
|
|
|
8
19
|
## 🚀 Features
|
|
9
20
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wexts",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Modern full-stack framework combining NestJS 11 and Next.js 16",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -43,7 +43,9 @@
|
|
|
43
43
|
"build": "tsup",
|
|
44
44
|
"dev": "tsup --watch",
|
|
45
45
|
"test": "vitest run",
|
|
46
|
+
"test:watch": "vitest",
|
|
46
47
|
"lint": "eslint src",
|
|
48
|
+
"typecheck": "tsc --noEmit",
|
|
47
49
|
"release": "npm run build && npm publish --access public"
|
|
48
50
|
},
|
|
49
51
|
"keywords": [
|
|
@@ -53,36 +55,43 @@
|
|
|
53
55
|
"nestjs",
|
|
54
56
|
"nextjs",
|
|
55
57
|
"monorepo",
|
|
56
|
-
"typescript"
|
|
58
|
+
"typescript",
|
|
59
|
+
"react"
|
|
57
60
|
],
|
|
58
61
|
"author": "wexts Team",
|
|
59
62
|
"license": "MIT",
|
|
60
63
|
"repository": {
|
|
61
64
|
"type": "git",
|
|
62
65
|
"url": "https://github.com/ziadmustafa1/wexts.git",
|
|
63
|
-
"directory": "packages/
|
|
66
|
+
"directory": "packages/fusionjs"
|
|
67
|
+
},
|
|
68
|
+
"engines": {
|
|
69
|
+
"node": ">=20.9.0",
|
|
70
|
+
"pnpm": ">=10.0.0"
|
|
64
71
|
},
|
|
65
72
|
"devDependencies": {
|
|
66
|
-
"tsup": "^8.
|
|
67
|
-
"vitest": "^1.
|
|
68
|
-
"@types/node": "^
|
|
69
|
-
"@types/react": "^
|
|
70
|
-
"@types/http-proxy": "^1.17.
|
|
73
|
+
"tsup": "^8.3.5",
|
|
74
|
+
"vitest": "^2.1.8",
|
|
75
|
+
"@types/node": "^22.10.2",
|
|
76
|
+
"@types/react": "^19.0.6",
|
|
77
|
+
"@types/http-proxy": "^1.17.15",
|
|
78
|
+
"eslint": "^9.17.0"
|
|
71
79
|
},
|
|
72
80
|
"dependencies": {
|
|
73
|
-
"commander": "^
|
|
74
|
-
"inquirer": "^
|
|
75
|
-
"chokidar": "^
|
|
76
|
-
"picocolors": "^1.
|
|
77
|
-
"reflect-metadata": "^0.2.
|
|
78
|
-
"typescript": "^5.3
|
|
79
|
-
"http-proxy": "^1.18.1"
|
|
81
|
+
"commander": "^12.1.0",
|
|
82
|
+
"inquirer": "^12.4.0",
|
|
83
|
+
"chokidar": "^4.0.3",
|
|
84
|
+
"picocolors": "^1.1.1",
|
|
85
|
+
"reflect-metadata": "^0.2.2",
|
|
86
|
+
"typescript": "^5.9.3",
|
|
87
|
+
"http-proxy": "^1.18.1",
|
|
88
|
+
"consola": "^3.2.3"
|
|
80
89
|
},
|
|
81
90
|
"peerDependencies": {
|
|
82
|
-
"@nestjs/common": "^
|
|
83
|
-
"@nestjs/core": "^
|
|
84
|
-
"react": "^
|
|
85
|
-
"next": "^
|
|
91
|
+
"@nestjs/common": "^11.0.0",
|
|
92
|
+
"@nestjs/core": "^11.0.0",
|
|
93
|
+
"react": "^19.0.0",
|
|
94
|
+
"next": "^16.0.0"
|
|
86
95
|
},
|
|
87
96
|
"peerDependenciesMeta": {
|
|
88
97
|
"@nestjs/common": {
|