package.json•1.5 kB
{
"type": "module",
"name": "@masx200/mcp-streamable-http-bridge",
"version": "2.6.0",
"scripts": {
"format": "prettier --write .",
"dev": "concurrently --kill-others 'yarn run watch' 'nodemon main.js' ",
"watch": "npx tsc -p tsconfig.json --watch",
"build": "npx tsc -p tsconfig.json",
"start:bridge-ts": "yarn run build:ts && node main.js",
"start": "yarn run build:ts && node main.js",
"build:ts": "npx tsc -p tsconfig.json",
"dev:ts": "npx ts-node main.ts"
},
"keywords": [
"mcp",
"calculator",
"math"
],
"author": "masx200",
"license": "MIT",
"dependencies": {
"@dmitryrechkin/json-schema-to-zod": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.20.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.9.1",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@types/yargs": "^17.0.33",
"concurrently": "^9.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"json-zod": "^0.1.0",
"morgan": "^1.10.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"uuid": "^11.1.0",
"ws": "^8.18.3",
"yargs": "^18.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/morgan": "^1",
"ts-node": "^10.9.2"
},
"description": "mcp-demo-streamable-http-bridge",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://gitee.com/masx200/mcp-demo-streamable-http-bridge"
},
"types": "./main.ts"
}