package.json•1.12 kB
{
"name": "fpl-mcp",
"version": "1.0.1",
"description": "A Model Context Protocol (MCP) server for the Fantasy Premier League API",
"type": "module",
"main": "build/src/server.js",
"bin": {
"fpl-mcp": "build/src/server.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node build/src/server.js",
"dev": "ts-node-esm src/server.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"model-context-protocol",
"fantasy-premier-league",
"fpl",
"api"
],
"author": "Owen Lacey",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/owen-lacey/fpl-mcp.git"
},
"bugs": {
"url": "https://github.com/owen-lacey/fpl-mcp/issues"
},
"homepage": "https://github.com/owen-lacey/fpl-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"node-fetch": "^3.3.2",
"zod": "^3.25.76"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}