@orkestrel/mcp 0.0.15 → 0.0.17
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 +14 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.17",
|
|
4
4
|
"description": "A typed Model Context Protocol client/server with pluggable HTTP, WebSocket, and stdio transports. Part of the @orkestrel line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"json-rpc",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"format": "oxfmt --config .oxfmtrc.json --write .",
|
|
73
73
|
"format:check": "oxfmt --config .oxfmtrc.json --check .",
|
|
74
74
|
"lint:check": "oxlint --config .oxlintrc.json --deny-warnings .",
|
|
75
|
-
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:conformance && npm run test:
|
|
75
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:guides && npm run test:conformance && npm run test:integration",
|
|
76
76
|
"test:src": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core --project src:browser --project src:server",
|
|
77
77
|
"test:src:core": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:core",
|
|
78
78
|
"test:src:browser": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:browser",
|
|
@@ -88,22 +88,23 @@
|
|
|
88
88
|
"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",
|
|
89
89
|
"build:src:browser": "vite build --config configs/src/vite.browser.config.ts",
|
|
90
90
|
"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",
|
|
91
|
-
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test
|
|
91
|
+
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test"
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
|
-
"@orkestrel/contract": "^0.0.
|
|
95
|
-
"@orkestrel/emitter": "^0.0.
|
|
94
|
+
"@orkestrel/contract": "^0.0.12",
|
|
95
|
+
"@orkestrel/emitter": "^0.0.7",
|
|
96
96
|
"@orkestrel/sse": "^0.0.5",
|
|
97
|
-
"@orkestrel/tool": "^0.0.
|
|
98
|
-
"@orkestrel/websocket": "^0.0.
|
|
97
|
+
"@orkestrel/tool": "^0.0.11",
|
|
98
|
+
"@orkestrel/websocket": "^0.0.9"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
101
|
"@microsoft/api-extractor": "^7.58.12",
|
|
102
102
|
"@modelcontextprotocol/conformance": "0.2.0-alpha.10",
|
|
103
|
-
"@orkestrel/guide": "^0.0.
|
|
104
|
-
"@orkestrel/router": "^0.0.
|
|
105
|
-
"@orkestrel/scaffold": "^0.0.
|
|
106
|
-
"@orkestrel/server": "^0.0.
|
|
103
|
+
"@orkestrel/guide": "^0.0.12",
|
|
104
|
+
"@orkestrel/router": "^0.0.10",
|
|
105
|
+
"@orkestrel/scaffold": "^0.0.40",
|
|
106
|
+
"@orkestrel/server": "^0.0.13",
|
|
107
|
+
"@orkestrel/test": "^0.0.6",
|
|
107
108
|
"@types/node": "^26.2.0",
|
|
108
109
|
"@vitest/browser-playwright": "^4.1.10",
|
|
109
110
|
"oxfmt": "^0.63.0",
|
|
@@ -115,8 +116,8 @@
|
|
|
115
116
|
"vitest": "^4.1.10"
|
|
116
117
|
},
|
|
117
118
|
"peerDependencies": {
|
|
118
|
-
"@orkestrel/router": "^0.0.
|
|
119
|
-
"@orkestrel/server": "^0.0.
|
|
119
|
+
"@orkestrel/router": "^0.0.10",
|
|
120
|
+
"@orkestrel/server": "^0.0.13"
|
|
120
121
|
},
|
|
121
122
|
"engines": {
|
|
122
123
|
"node": ">=22.12.0"
|