package.json•816 B
{
"name": "mcp-medium",
"version": "0.0.1",
"type": "module",
"packageManager": "pnpm@9.1.0",
"description": "MCP server for publishing posts to Medium",
"main": "dist/index.js",
"bin": {
"mcp-medium": "./dist/index.js"
},
"files": [
"dist"
],
"keywords": [
"mcp",
"medium",
"model-context-protocol"
],
"author": {
"name": "Jay Simons",
"url": "https://yaa.bz"
},
"license": "MIT",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"start": "node dist/index.js",
"prepublishOnly": "pnpm build",
"lint": "biome check",
"fix": "biome check --fix"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@types/node": "^24.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}