-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "remote-mcp-github",
"version": "0.0.1",
"private": true,
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"cf-typegen": "wrangler types",
"type-check": "tsc --noEmit",
"lint": "run-p --continue-on-error 'lint:*'",
"lint:eslint": "eslint .",
"lint:typecheck": "tsc --noEmit",
"lint:prettier": "prettier --check .",
"fix": "run-s --continue-on-error fix:eslint fix:prettier",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"e2e:oauth": "node scripts/e2e/oauth-e2e.mjs",
"prepare": "lefthook install"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.7.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"agents": "^0.15.0",
"hono": "^4.12.9",
"just-pick": "^4.2.0",
"octokit": "^5.0.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.16.7",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@types/node": "^24.13.1",
"eslint": "^10.4.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.6.0",
"lefthook": "^2.1.6",
"npm-run-all2": "^9.0.0",
"prettier": "^3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6",
"wrangler": "^4.92.0"
}
}