Files
2026-06-18 16:49:16 +02:00

31 lines
644 B
JSON

{
"name": "betternews-mcp",
"version": "1.1.0",
"description": "MCP server for the BetterNews API",
"type": "module",
"main": "dist/index.js",
"bin": {
"betternews-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.19.21",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
},
"packageManager": "pnpm@11.5.2",
"engines": {
"node": ">=22"
}
}