package.json•679 B
{
"name": "mcp-nhl-api",
"version": "1.0.0",
"description": "NHL API server using the Model-Context Protocol",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"demo": "tsx src/demo.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nhl",
"api",
"mcp",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.10",
"tsx": "^4.7.1",
"typescript": "^5.8.2"
}
}