@orkestrel/mcp 0.0.13 → 0.0.15
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/README.md +2 -3
- package/dist/src/browser/index.js +214 -214
- package/dist/src/browser/index.js.map +1 -1
- package/dist/src/core/index.cjs.map +1 -1
- package/dist/src/core/index.js.map +1 -1
- package/dist/src/server/index.cjs +18 -4
- package/dist/src/server/index.cjs.map +1 -1
- package/dist/src/server/index.d.cts +22 -6
- package/dist/src/server/index.d.ts +22 -6
- package/dist/src/server/index.js +18 -4
- package/dist/src/server/index.js.map +1 -1
- package/package.json +20 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orkestrel/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
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,38 +72,42 @@
|
|
|
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:guides",
|
|
75
|
+
"test": "npm run test:src && npm run test:policy && npm run test:config && npm run test:conformance && npm run test:guides",
|
|
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",
|
|
79
79
|
"test:src:server": "vitest run --config vite.config.ts --no-cache --reporter=dot --project src:server",
|
|
80
80
|
"test:policy": "vitest run --config vite.config.ts --no-cache --reporter=dot --project policy",
|
|
81
|
-
"test:
|
|
81
|
+
"test:config": "vitest run --config vite.config.ts --no-cache --reporter=dot --project config",
|
|
82
|
+
"test:conformance": "vitest run --config vite.config.ts --no-cache --reporter=dot --project conformance",
|
|
83
|
+
"test:probe": "vitest run --config vite.config.ts --no-cache --reporter=verbose --project probe",
|
|
82
84
|
"test:guides": "vitest run --config vite.config.ts --reporter=dot --project guides",
|
|
85
|
+
"test:integration": "vitest run --config vite.config.ts --no-cache --reporter=dot --project integration",
|
|
83
86
|
"build": "npm run clean && npm run build:src",
|
|
84
87
|
"build:src": "npm run build:src:core && npm run build:src:browser && npm run build:src:server",
|
|
85
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",
|
|
86
89
|
"build:src:browser": "vite build --config configs/src/vite.browser.config.ts",
|
|
87
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",
|
|
88
|
-
"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 && npm run test:integration"
|
|
89
92
|
},
|
|
90
93
|
"dependencies": {
|
|
91
|
-
"@orkestrel/contract": "^0.0.
|
|
92
|
-
"@orkestrel/emitter": "^0.0.
|
|
93
|
-
"@orkestrel/sse": "^0.0.
|
|
94
|
-
"@orkestrel/tool": "^0.0.
|
|
95
|
-
"@orkestrel/websocket": "^0.0.
|
|
94
|
+
"@orkestrel/contract": "^0.0.11",
|
|
95
|
+
"@orkestrel/emitter": "^0.0.6",
|
|
96
|
+
"@orkestrel/sse": "^0.0.5",
|
|
97
|
+
"@orkestrel/tool": "^0.0.10",
|
|
98
|
+
"@orkestrel/websocket": "^0.0.8"
|
|
96
99
|
},
|
|
97
100
|
"devDependencies": {
|
|
98
101
|
"@microsoft/api-extractor": "^7.58.12",
|
|
102
|
+
"@modelcontextprotocol/conformance": "0.2.0-alpha.10",
|
|
99
103
|
"@orkestrel/guide": "^0.0.9",
|
|
100
|
-
"@orkestrel/router": "^0.0.
|
|
101
|
-
"@orkestrel/scaffold": "^0.0.
|
|
102
|
-
"@orkestrel/server": "^0.0.
|
|
104
|
+
"@orkestrel/router": "^0.0.9",
|
|
105
|
+
"@orkestrel/scaffold": "^0.0.30",
|
|
106
|
+
"@orkestrel/server": "^0.0.12",
|
|
103
107
|
"@types/node": "^26.2.0",
|
|
104
108
|
"@vitest/browser-playwright": "^4.1.10",
|
|
105
|
-
"oxfmt": "^0.
|
|
106
|
-
"oxlint": "^1.
|
|
109
|
+
"oxfmt": "^0.63.0",
|
|
110
|
+
"oxlint": "^1.78.0",
|
|
107
111
|
"playwright": "^1.62.1",
|
|
108
112
|
"typescript": "^6.0.3",
|
|
109
113
|
"vite": "~8.2.1",
|
|
@@ -111,8 +115,8 @@
|
|
|
111
115
|
"vitest": "^4.1.10"
|
|
112
116
|
},
|
|
113
117
|
"peerDependencies": {
|
|
114
|
-
"@orkestrel/router": "^0.0.
|
|
115
|
-
"@orkestrel/server": "^0.0.
|
|
118
|
+
"@orkestrel/router": "^0.0.9",
|
|
119
|
+
"@orkestrel/server": "^0.0.12"
|
|
116
120
|
},
|
|
117
121
|
"engines": {
|
|
118
122
|
"node": ">=22.12.0"
|