mcp-planes-server
Version:
Plane API client and server
66 lines (65 loc) • 1.68 kB
JSON
{
"name": "mcp-planes-server",
"version": "1.0.0",
"description": "Plane API client and server",
"type": "module",
"bin": {
"mcp-planes-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"prepublishOnly": "npm run build",
"dockerbuild": "docker buildx build -t flux159/mcp-server-kubernetes --platform linux/amd64,linux/arm64 --push .",
"chat": "npx mcp-chat --server \"./dist/index.js\""
},
"keywords": [
"mcp",
"planes",
"project-management",
"issue-tracking"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"express": "4.21.2",
"node-fetch": "^3.3.2",
"zod": "3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"shx": "0.3.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"extensionsToTreatAsEsm": [".ts", ".tsx"],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.tsx?$": ["ts-jest", {
"useESM": true
}]
}
}
}