package.json•1.44 kB
{
"name": "ghost-mcp",
"version": "0.1.7",
"description": "Model Context Protocol server for Ghost CMS - manage your blog content with AI",
"keywords": ["mcp", "ghost", "cms", "blog", "ai", "claude", "cursor"],
"author": "MCPAnvil",
"license": "MIT",
"homepage": "https://github.com/slb350/ghost-mcp",
"repository": {
"type": "git",
"url": "https://github.com/slb350/ghost-mcp.git"
},
"bugs": {
"url": "https://github.com/slb350/ghost-mcp/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ghost-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"test": "vitest",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"@tryghost/admin-api": "^1.13.11",
"@tryghost/content-api": "^1.11.20",
"dotenv": "^16.4.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^20.12.14",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.57.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18"
}
}