{
"name": "mcp_poker",
"version": "1.0.0",
"description": "Holdem poker game server with MCP server API",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc && tsc -p tsconfig.client.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"poker",
"holdem",
"mcp",
"game-server"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/express": "^4.17.17",
"@types/node": "^20.4.5",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@types/uuid": "^9.0.2",
"express": "^4.18.2",
"socket.io": "^4.7.2",
"socket.io-client": "^4.8.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}