-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 772 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
{
"name": "github-mcp-auth",
"version": "0.1.0",
"description": "Multi-tenant OAuth 2.1 gateway in front of github-mcp-server. Each claude.ai user authorizes with GitHub OAuth and acts as themselves on the GitHub API.",
"type": "module",
"bin": {
"github-mcp-auth": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"deploy": "bash scripts/push-to-vps.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"http-proxy-middleware": "^3.0.3",
"pg": "^8.13.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"typescript": "^5.7.2"
}
}