@orkestrel/router 0.0.11 → 0.0.12
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 +17 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/router",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "A typed request router for the @orkestrel line — server and browser environments. Part of the @orkestrel line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"browser",
|
|
@@ -70,37 +70,41 @@
|
|
|
70
70
|
"format": "oxfmt --config .oxfmtrc.json --write .",
|
|
71
71
|
"format:check": "oxfmt --config .oxfmtrc.json --check .",
|
|
72
72
|
"lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
|
|
73
|
-
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides",
|
|
73
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && npm run test:guides",
|
|
74
74
|
"test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:browser --project src:server",
|
|
75
75
|
"test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
76
76
|
"test:src:browser": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:browser",
|
|
77
77
|
"test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
|
|
78
78
|
"test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
|
|
79
79
|
"test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
|
|
80
|
-
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
80
|
+
"test:guides": "vitest run --config vite.config.ts --no-cache --reporter=dot --project guides",
|
|
81
81
|
"build": "npm run clean && npm run build:src",
|
|
82
82
|
"build:src": "npm run build:src:core && npm run build:src:browser && npm run build:src:server",
|
|
83
83
|
"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",
|
|
84
84
|
"build:src:browser": "vite build --config configs/src/vite.browser.config.ts",
|
|
85
85
|
"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",
|
|
86
86
|
"prepack": "npm run build",
|
|
87
|
-
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
|
|
87
|
+
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release",
|
|
88
|
+
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
89
|
+
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
90
|
+
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
91
|
+
"test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup"
|
|
88
92
|
},
|
|
89
93
|
"dependencies": {
|
|
90
|
-
"@orkestrel/abort": "^0.0.
|
|
94
|
+
"@orkestrel/abort": "^0.0.8",
|
|
91
95
|
"@orkestrel/contract": "^0.0.13",
|
|
92
|
-
"@orkestrel/emitter": "^0.0.
|
|
96
|
+
"@orkestrel/emitter": "^0.0.8"
|
|
93
97
|
},
|
|
94
98
|
"devDependencies": {
|
|
95
99
|
"@microsoft/api-extractor": "^7.59.0",
|
|
96
|
-
"@orkestrel/guide": "^0.0.
|
|
97
|
-
"@orkestrel/probe": "^0.0.
|
|
98
|
-
"@orkestrel/scaffold": "^0.0.
|
|
99
|
-
"@orkestrel/test": "^0.0.
|
|
100
|
-
"@types/node": "^26.
|
|
100
|
+
"@orkestrel/guide": "^0.0.14",
|
|
101
|
+
"@orkestrel/probe": "^0.0.9",
|
|
102
|
+
"@orkestrel/scaffold": "^0.0.57",
|
|
103
|
+
"@orkestrel/test": "^0.0.11",
|
|
104
|
+
"@types/node": "^26.4.0",
|
|
101
105
|
"@vitest/browser-playwright": "^4.1.11",
|
|
102
|
-
"oxfmt": "^0.
|
|
103
|
-
"oxlint": "^1.
|
|
106
|
+
"oxfmt": "^0.65.0",
|
|
107
|
+
"oxlint": "^1.80.0",
|
|
104
108
|
"playwright": "^1.62.1",
|
|
105
109
|
"typescript": "^6.0.3",
|
|
106
110
|
"vite": "^8.2.2",
|