-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 828 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 828 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
31
32
{
"name": "stackbilt-mcp-gateway",
"version": "0.1.0",
"private": true,
"description": "OAuth-authenticated MCP gateway for Stackbilt platform services",
"repository": {
"type": "git",
"url": "https://github.com/Stackbilt-dev/stackbilt-mcp-gateway.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.2.4",
"@modelcontextprotocol/sdk": "^1.27.1",
"agents": "^0.7.2",
"hono": "^4.12.8",
"zod": "^3.25.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240620.0",
"typescript": "^5.5.0",
"vitest": "^3.2.1",
"wrangler": "^3.60.0"
}
}