* In main.yml - reversed a change from last release that did an explicit build, because the prepare script was no longer in package.json * In package.json - replaced prepare script, which will cause automatic build after npm install - set version to 0.11.0 - set versions of inspector-cli, inspector-client, and inspector-server to ^0.11.0 * In package.lock.json - updated versions of inspector, inspector-cli, inspector-client, and inspector-server to ^0.11.0 * In cli/package.json - set version to 0.11.0 - set versions of sdk to 1.10.2 * In client/package.json - set version to 0.11.0 - set versions of sdk to 1.10.2 * In server/package.json - set version to 0.11.0 - set versions of sdk to 1.10.2
37 lines
999 B
JSON
37 lines
999 B
JSON
{
|
|
"name": "@modelcontextprotocol/inspector-server",
|
|
"version": "0.11.0",
|
|
"description": "Server-side application for the Model Context Protocol inspector",
|
|
"license": "MIT",
|
|
"author": "Anthropic, PBC (https://anthropic.com)",
|
|
"homepage": "https://modelcontextprotocol.io",
|
|
"bugs": "https://github.com/modelcontextprotocol/inspector/issues",
|
|
"type": "module",
|
|
"bin": {
|
|
"mcp-inspector-server": "build/index.js"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node build/index.js",
|
|
"dev": "tsx watch --clear-screen=false src/index.ts",
|
|
"dev:windows": "tsx watch --clear-screen=false src/index.ts < NUL"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/ws": "^8.5.12",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.10.2",
|
|
"cors": "^2.8.5",
|
|
"express": "^5.1.0",
|
|
"ws": "^8.18.0",
|
|
"zod": "^3.23.8"
|
|
}
|
|
}
|