package.json•921 B
{
"name": "astro-blog-mcp",
"version": "1.0.0",
"description": "MCP Server for automated Astro blog post creation",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "node scripts/prevent-prod-tests.js && tsx src/test.ts"
},
"keywords": [
"mcp",
"astro",
"blog",
"automation"
],
"author": "Amilcar Barahona",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@octokit/rest": "^20.0.2",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-rate-limit": "^8.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=22.x"
}
}