nextrush 2.0.0 → 2.0.1
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 +54 -20
- package/dist/index.d.mts +737 -9
- package/dist/index.d.ts +737 -9
- package/dist/index.js +5 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nextrush",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.01",
|
|
4
4
|
"description": "🚀 NextRush v2 - Enterprise-grade Node.js framework with built-in security, validation, WebSocket, templates, events (CQRS), logging, and DI. 13,261 RPS, zero dependencies, full TypeScript support.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-framework",
|
|
@@ -108,11 +108,12 @@
|
|
|
108
108
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
109
109
|
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
110
110
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
111
|
-
"type-check": "tsc --noEmit",
|
|
111
|
+
"type-check": "tsc --noEmit --project tsconfig.build.json",
|
|
112
112
|
"act": "act",
|
|
113
113
|
"act:list": "act -l",
|
|
114
114
|
"act:dry": "act --dryrun",
|
|
115
115
|
"validate": "npm run lint && npm run format:check && npm run type-check && npm run test",
|
|
116
|
+
"validate:publish": "npm run lint && npm run format:check && npm run type-check",
|
|
116
117
|
"docs:generate": "typedoc --out docsx/api src/index.ts",
|
|
117
118
|
"docs:serve": "npx serve docsx/api",
|
|
118
119
|
"bench:quick": "node performance/scripts/quick-bench.js"
|