mirror of
https://github.com/BinaryBeastMaster/chat-relay.git
synced 2026-05-04 23:00:22 +00:00
31 lines
604 B
JSON
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"
|
|
}
|
|
}
|