-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.95 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@ddukbg/github-enterprise-mcp",
"version": "1.3.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"github-enterprise-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && npm run copy-i18n",
"copy-i18n": "mkdir -p dist/i18n/en dist/i18n/ko && cp i18n/en/*.json dist/i18n/en/ && cp i18n/ko/*.json dist/i18n/ko/",
"start": "node dist/index.js",
"dev": "concurrently \"npm run build:watch\" \"npm run dev:js\"",
"build:watch": "tsc --watch && npm run copy-i18n",
"dev:js": "nodemon dist/index.js --transport http",
"test": "npm run build && node test-i18n.js",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"mcp",
"github",
"enterprise",
"llm",
"ai",
"claude",
"cursor",
"model context protocol",
"issue tracking",
"pull request",
"git",
"repository",
"workflow"
],
"author": "ddukbg",
"license": "ISC",
"description": "MCP server for GitHub Enterprise API integration with Cursor, enabling AI access to repositories, issues, PRs and workflows",
"repository": {
"type": "git",
"url": "git+https://github.com/ddukbg/github-enterprise-mcp.git"
},
"homepage": "https://github.com/ddukbg/github-enterprise-mcp",
"bugs": {
"url": "https://github.com/ddukbg/github-enterprise-mcp/issues"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.13.10",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.5"
},
"dependencies": {
"axios": "^1.8.4",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.19.2",
"node-fetch": "^3.3.2",
"universal-user-agent": "^7.0.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}