-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 KB
/
package.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@ibraheem4/linear-mcp",
"version": "78.0.1",
"description": "A Linear MCP server for interacting with Linear's API",
"type": "module",
"bin": {
"@ibraheem4/linear-mcp": "./build/index.js",
"linear-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish"
},
"dependencies": {
"@linear/sdk": "37.0.0",
"@modelcontextprotocol/sdk": "0.6.0",
"dotenv": "16.4.7"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"keywords": [
"linear",
"mcp",
"model-context-protocol",
"cli",
"roo",
"cline",
"cursor",
"windsurf",
"claude"
],
"author": "Ibraheem Abdul-Malik",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ibraheem4/linear-mcp"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}