@orkestrel/mcp 0.0.21 → 0.0.23
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/dist/src/core/index.d.cts +5 -0
- package/dist/src/core/index.d.ts +5 -0
- package/dist/src/server/index.cjs +97 -9
- package/dist/src/server/index.cjs.map +1 -1
- package/dist/src/server/index.d.cts +91 -7
- package/dist/src/server/index.d.ts +91 -7
- package/dist/src/server/index.js +96 -10
- package/dist/src/server/index.js.map +1 -1
- package/package.json +17 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
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:guides && npm run test:conformance && npm run test:integration",
|
|
75
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:setup && 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",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"test:conformance": "vitest run --config vite.config.ts --no-cache --reporter=dot --project conformance",
|
|
83
83
|
"test:distribution": "vitest run --config vite.config.ts --no-cache --reporter=dot --project distribution",
|
|
84
84
|
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
85
|
-
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
85
|
+
"test:guides": "vitest run --config vite.config.ts --no-cache --reporter=dot --project guides",
|
|
86
86
|
"test:integration": "vitest run --config vite.config.ts --no-cache --reporter=dot --project integration",
|
|
87
87
|
"build": "npm run clean && npm run build:src",
|
|
88
88
|
"build:src": "npm run build:src:core && npm run build:src:browser && npm run build:src:server",
|
|
@@ -90,29 +90,31 @@
|
|
|
90
90
|
"build:src:browser": "vite build --config configs/src/vite.browser.config.ts",
|
|
91
91
|
"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",
|
|
92
92
|
"prepack": "npm run build",
|
|
93
|
-
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release"
|
|
93
|
+
"prepublishOnly": "npm run format:check && npm run lint:check && npm run check && npm run build && npm test && npm run test:distribution -- --mode release",
|
|
94
|
+
"test:bench": "vitest bench --config vite.config.ts --no-cache --project probe",
|
|
95
|
+
"test:setup": "vitest run --config vite.config.ts --no-cache --reporter=dot --project setup"
|
|
94
96
|
},
|
|
95
97
|
"dependencies": {
|
|
96
98
|
"@orkestrel/contract": "^0.0.13",
|
|
97
|
-
"@orkestrel/emitter": "^0.0.
|
|
99
|
+
"@orkestrel/emitter": "^0.0.8",
|
|
98
100
|
"@orkestrel/process": "^0.0.6",
|
|
99
101
|
"@orkestrel/sse": "^0.0.5",
|
|
100
|
-
"@orkestrel/tool": "^0.0.
|
|
101
|
-
"@orkestrel/websocket": "^0.0.
|
|
102
|
+
"@orkestrel/tool": "^0.0.12",
|
|
103
|
+
"@orkestrel/websocket": "^0.0.10"
|
|
102
104
|
},
|
|
103
105
|
"devDependencies": {
|
|
104
106
|
"@microsoft/api-extractor": "^7.59.0",
|
|
105
107
|
"@modelcontextprotocol/conformance": "0.2.0-alpha.10",
|
|
106
|
-
"@orkestrel/guide": "^0.0.
|
|
107
|
-
"@orkestrel/probe": "^0.0.
|
|
108
|
+
"@orkestrel/guide": "^0.0.13",
|
|
109
|
+
"@orkestrel/probe": "^0.0.4",
|
|
108
110
|
"@orkestrel/router": "^0.0.11",
|
|
109
|
-
"@orkestrel/scaffold": "^0.0.
|
|
110
|
-
"@orkestrel/server": "^0.0.
|
|
111
|
-
"@orkestrel/test": "^0.0.
|
|
112
|
-
"@types/node": "^26.
|
|
111
|
+
"@orkestrel/scaffold": "^0.0.52",
|
|
112
|
+
"@orkestrel/server": "^0.0.15",
|
|
113
|
+
"@orkestrel/test": "^0.0.11",
|
|
114
|
+
"@types/node": "^26.3.0",
|
|
113
115
|
"@vitest/browser-playwright": "^4.1.11",
|
|
114
|
-
"oxfmt": "^0.
|
|
115
|
-
"oxlint": "^1.
|
|
116
|
+
"oxfmt": "^0.65.0",
|
|
117
|
+
"oxlint": "^1.80.0",
|
|
116
118
|
"playwright": "^1.62.1",
|
|
117
119
|
"typescript": "^6.0.3",
|
|
118
120
|
"vite": "^8.2.2",
|