package.json•1.69 kB
{
"name": "claudeus-plane-mcp",
"version": "1.0.0",
"description": "Model Context Protocol server for Plane integration",
"license": "MIT",
"private": false,
"author": "Amadeus Samiel H.",
"homepage": "https://simhop.se",
"bugs": "https://github.com/deus-h/claudeus-plane-mcp/discussions",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"claudeus-plane-mcp": "dist/index.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "chmod +x dist/inspector-wrapper.js && chmod +x dist/index.js",
"watch": "tsc -w",
"start": "node dist/index.js",
"clean": "rimraf dist node_modules",
"inspector": "pnpx @modelcontextprotocol/inspector dist/inspector-wrapper.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.4.1",
"axios": "^1.7.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@modelcontextprotocol/inspector": "^0.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
}
}