forked from cosmix/linear-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 807 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "linear-mcp",
"version": "0.1.0",
"description": "MCP server for Linear integration providing issue querying and searching capabilities",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "vite build && chmod +x build/index.js",
"start": "bun run build/index.js",
"dev": "vite build --watch",
"test": "bun test",
"test:watch": "bun test --watch"
},
"keywords": ["mcp", "linear", "issue-tracking"],
"author": "Dimosthenis Kaponis",
"license": "MIT",
"dependencies": {
"@linear/sdk": "^38.0.0",
"@modelcontextprotocol/sdk": "^1.4.1",
"@types/node": "^22.10.10",
"typescript": "^5.7.3"
},
"devDependencies": {
"vite": "^6.0.11",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}