package.json•1.26 kB
{
"name": "linear-mcp",
"version": "1.0.0",
"description": "Custom Linear MCP layer - HTTP service exposing JSON-RPC endpoints for Claude Code",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"mcp": "node dist/mcp-server.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"linear",
"graphql",
"json-rpc"
],
"author": "",
"license": "MIT",
"dependencies": {
"@linear/sdk": "^25.0.0",
"@modelcontextprotocol/sdk": "^1.15.0",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"p-retry": "^6.2.0",
"pino": "^8.16.2",
"pino-http": "^8.5.1",
"prom-client": "^15.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.4",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"pino-pretty": "^13.0.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
}
}