ghost-mcp/package.json

65 lines
No EOL
1.6 KiB
JSON

{
"name": "ghost-mcp",
"version": "0.1.0",
"description": "Ghost MCP Server - Complete Ghost CMS functionality through Model Context Protocol",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"clean": "rimraf dist"
},
"keywords": [
"ghost",
"mcp",
"model-context-protocol",
"cms",
"api",
"blog"
],
"author": "Ghost MCP Development Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.0",
"dotenv": "^16.4.0",
"jsonwebtoken": "^9.0.0",
"uuid": "^10.0.0",
"winston": "^3.11.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^20.11.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/ghost-mcp.git"
},
"bugs": {
"url": "https://github.com/your-org/ghost-mcp/issues"
},
"homepage": "https://github.com/your-org/ghost-mcp#readme"
}