chat-relay/mcp-server/package.json
BinaryBeastMaster 25abcd2974 Initial commit
2025-05-10 15:09:23 -07:00

31 lines
604 B
JSON

{
"name": "chat-relay-mcp",
"version": "0.0.1",
"description": "chat-relay-mcp MCP server",
"type": "module",
"bin": {
"chat-relay-mcp": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && mcp-build",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"dependencies": {
"mcp-framework": "^0.2.2",
"node-fetch": "^3.3.2",
"ws": "^8.18.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/ws": "^8.18.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.19.0"
}
}