-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 KB
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
55
56
57
58
59
60
{
"name": "github-mcp-plus",
"version": "1.2.2",
"publisher": "sh20raj",
"displayName": "GitHub MCP Plus",
"description": "Professional GitHub tools for AI assistants - optimized for GSoC and Open Source",
"type": "module",
"main": "build/extension.js",
"engines": {
"vscode": "^1.99.0"
},
"categories": [
"AI",
"Programming Languages"
],
"activationEvents": [
"onStartupFinished"
],
"bin": {
"github-mcp-plus": "build/index.js"
},
"scripts": {
"vscode:prepublish": "npm run build && npm run bundle-extension",
"build": "tsc",
"bundle-extension": "esbuild src/extension.ts --bundle --outfile=build/extension.js --external:vscode --platform=node --format=cjs",
"test": "echo \"Error: no test specified\" && exit 1",
"package-extension": "vsce package --no-git-tag-version --allow-package-secrets github"
},
"contributes": {
"mcpServerDefinitionProviders": [
{
"id": "github-mcp-plus-provider"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/shade-solutions/github-mcp-plus.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shade-solutions/github-mcp-plus/issues"
},
"homepage": "https://github.com/shade-solutions/github-mcp-plus#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"octokit": "^4.1.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@types/vscode": "^1.99.0",
"@vscode/vsce": "^3.7.1",
"dotenv": "^17.3.1",
"esbuild": "^0.27.3",
"typescript": "^5.8.2"
}
}