@morojs/moro 1.5.2 → 1.5.3

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 (1) hide show
  1. package/package.json +6 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@morojs/moro",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "High-performance Node.js framework with intelligent routing, automatic middleware ordering, enterprise authentication (Auth.js), type-safe Zod validation, and functional architecture",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,7 +38,11 @@
38
38
  "docs:serve": "http-server docs-html -p 8080",
39
39
  "docs:json": "typedoc --json docs-json/api.json src/index.ts",
40
40
  "docs:markdown": "typedoc --plugin typedoc-plugin-markdown --out docs-md src/index.ts",
41
- "docs:all": "npm run docs:build && npm run docs:json && npm run docs:markdown"
41
+ "docs:all": "npm run docs:build && npm run docs:json && npm run docs:markdown",
42
+ "prerelease": "node scripts/release.js",
43
+ "prerelease:patch": "node scripts/release.js patch",
44
+ "prerelease:minor": "node scripts/release.js minor",
45
+ "prerelease:major": "node scripts/release.js major"
42
46
  },
43
47
  "keywords": [
44
48
  "nodejs",