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.
Files changed (2) hide show
  1. package/README.md +13 -2
  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
  ![npm version](https://img.shields.io/npm/v/wexts)
4
4
  ![license](https://img.shields.io/npm/l/wexts)
5
+ ![node version](https://img.shields.io/node/v/wexts)
5
6
 
6
- **Wexts** (formerly wexts) is a powerful, production-ready full-stack framework that unifies **NestJS 10** and **Next.js 16** development. Build type-safe applications with automatic API client generation, shared types, and zero boilerplate.
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": "1.0.1",
4
- "description": "The all-in-one wexts framework combining NestJS and Next.js",
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/wexts"
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.0.0",
67
- "vitest": "^1.0.0",
68
- "@types/node": "^20.0.0",
69
- "@types/react": "^18.2.0",
70
- "@types/http-proxy": "^1.17.14"
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": "^11.1.0",
74
- "inquirer": "^9.2.12",
75
- "chokidar": "^3.5.3",
76
- "picocolors": "^1.0.0",
77
- "reflect-metadata": "^0.2.1",
78
- "typescript": "^5.3.0",
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": "^10.0.0",
83
- "@nestjs/core": "^10.0.0",
84
- "react": "^18.0.0 || ^19.0.0",
85
- "next": "^14.0.0 || ^15.0.0 || ^16.0.0"
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": {