-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.28 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
{
"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",
"charter:detect": "charter setup --detect-only --format json",
"charter:setup": "charter setup --preset worker --ci github --yes",
"verify:adf": "charter doctor --adf-only --ci --format json && charter adf evidence --auto-measure --ci --format json",
"charter:doctor": "charter doctor --format json",
"charter:adf:bundle": "charter adf bundle --task \"describe task\" --format json"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.2.4",
"@modelcontextprotocol/sdk": "^1.27.1",
"@stackbilt/scaffold-core": "^1.1.0",
"agents": "^0.7.2",
"hono": "^4.12.8",
"zod": "^3.25.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240620.0",
"@stackbilt/cli": "^1.0.0",
"typescript": "^5.5.0",
"vitest": "^3.2.1",
"wrangler": "^3.60.0"
}
}