package.json•655 B
{
"name": "nhl-mcp-server",
"version": "1.0.0",
"description": "MCP server for NHL live data and statistics with natural language queries",
"type": "module",
"main": "dist/index.js",
"bin": {
"nhl-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"nhl",
"hockey",
"statistics",
"live-data"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.3"
}
}