package.json•923 B
{
"name": "mcp",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:web": "node dist/web-server.js",
"start:both": "concurrently \"npm run start:web\" \"npm run start\"",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["mcp", "server", "typescript"],
"author": "",
"license": "ISC",
"description": "MCP Server with TypeScript support",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"zod": "^3.22.4",
"express": "^4.18.2",
"ws": "^8.14.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/express": "^4.17.21",
"@types/ws": "^8.5.10",
"@types/cors": "^2.8.17",
"typescript": "^5.3.0",
"rimraf": "^5.0.5",
"concurrently": "^8.2.2"
}
}