@orkestrel/middleware 0.0.16 → 0.0.18
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/package.json +27 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/middleware",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "Batteries for the @orkestrel/server middleware seam — boundary, telemetry, compression, security, CORS, rate limiting, sessions, CSRF, static files, and multipart uploads as typed factories. Part of the @orkestrel line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"compression",
|
|
@@ -68,45 +68,51 @@
|
|
|
68
68
|
"format": "oxfmt --config .oxfmtrc.json --write .",
|
|
69
69
|
"format:check": "oxfmt --config .oxfmtrc.json --check .",
|
|
70
70
|
"lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
|
|
71
|
-
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
|
|
71
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && npm run test:guides",
|
|
72
72
|
"test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:server",
|
|
73
73
|
"test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
74
74
|
"test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
|
|
75
75
|
"test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
|
|
76
76
|
"test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
|
|
77
|
-
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
77
|
+
"test:guides": "vitest run --config vite.config.ts --no-cache --reporter=dot --project guides",
|
|
78
78
|
"build": "npm run clean && npm run build:src",
|
|
79
79
|
"build:src": "npm run build:src:core && npm run build:src:server",
|
|
80
80
|
"build:src:core": "vite build --config configs/src/vite.core.config.ts && npm run copy dist/src/core/index.d.ts dist/src/core/index.d.cts",
|
|
81
81
|
"build:src:server": "vite build --config configs/src/vite.server.config.ts && npm run copy dist/src/server/index.d.ts dist/src/server/index.d.cts",
|
|
82
|
-
"
|
|
82
|
+
"prepack": "npm run build",
|
|
83
|
+
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release",
|
|
84
|
+
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
85
|
+
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
86
|
+
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
87
|
+
"test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup"
|
|
83
88
|
},
|
|
84
89
|
"dependencies": {
|
|
85
|
-
"@orkestrel/abort": "^0.0.
|
|
86
|
-
"@orkestrel/budget": "^0.0.
|
|
87
|
-
"@orkestrel/contract": "^0.0.
|
|
88
|
-
"@orkestrel/timeout": "^0.0.
|
|
90
|
+
"@orkestrel/abort": "^0.0.8",
|
|
91
|
+
"@orkestrel/budget": "^0.0.8",
|
|
92
|
+
"@orkestrel/contract": "^0.0.13",
|
|
93
|
+
"@orkestrel/timeout": "^0.0.8"
|
|
89
94
|
},
|
|
90
95
|
"devDependencies": {
|
|
91
|
-
"@microsoft/api-extractor": "^7.
|
|
92
|
-
"@orkestrel/database": "^0.0.
|
|
93
|
-
"@orkestrel/guide": "^0.0.
|
|
94
|
-
"@orkestrel/
|
|
95
|
-
"@orkestrel/
|
|
96
|
-
"@orkestrel/
|
|
97
|
-
"@orkestrel/
|
|
98
|
-
"@
|
|
96
|
+
"@microsoft/api-extractor": "^7.59.0",
|
|
97
|
+
"@orkestrel/database": "^0.0.12",
|
|
98
|
+
"@orkestrel/guide": "^0.0.15",
|
|
99
|
+
"@orkestrel/probe": "^0.0.9",
|
|
100
|
+
"@orkestrel/router": "^0.0.12",
|
|
101
|
+
"@orkestrel/scaffold": "^0.0.57",
|
|
102
|
+
"@orkestrel/server": "^0.0.16",
|
|
103
|
+
"@orkestrel/test": "^0.0.11",
|
|
104
|
+
"@types/node": "^26.4.0",
|
|
99
105
|
"@vitest/browser-playwright": "^4.1.11",
|
|
100
|
-
"oxfmt": "^0.
|
|
101
|
-
"oxlint": "^1.
|
|
106
|
+
"oxfmt": "^0.65.0",
|
|
107
|
+
"oxlint": "^1.80.0",
|
|
102
108
|
"typescript": "^6.0.3",
|
|
103
|
-
"vite": "^8.2.
|
|
109
|
+
"vite": "^8.2.2",
|
|
104
110
|
"vite-plugin-dts": "^5.0.3",
|
|
105
111
|
"vitest": "^4.1.11"
|
|
106
112
|
},
|
|
107
113
|
"peerDependencies": {
|
|
108
|
-
"@orkestrel/database": "^0.0.
|
|
109
|
-
"@orkestrel/server": "^0.0.
|
|
114
|
+
"@orkestrel/database": "^0.0.12",
|
|
115
|
+
"@orkestrel/server": "^0.0.16"
|
|
110
116
|
},
|
|
111
117
|
"peerDependenciesMeta": {
|
|
112
118
|
"@orkestrel/database": {
|