forked from cloudflare/mcp
-
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.18 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.18 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": "cloudflare-mcp",
"version": "0.1.0",
"description": "MCP server for the entire Cloudflare API using codemode",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --env staging",
"deploy:prod": "wrangler deploy --env production",
"types": "wrangler types",
"typecheck": "tsc --noEmit",
"lint": "oxlint src/",
"format": "oxfmt --write src/",
"format:check": "oxfmt --check src/",
"test": "vitest run",
"test:watch": "vitest",
"check": "npm run format:check && npm run lint && npm run typecheck && npm run test",
"seed:staging": "tsx scripts/seed-r2.ts staging",
"seed:prod": "tsx scripts/seed-r2.ts production"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "^0.8.3",
"@modelcontextprotocol/server": "2.0.0",
"hono": "^4.12.25",
"zod": "^4.3.5"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.16.18",
"@modelcontextprotocol/client": "2.0.0",
"@types/node": "^25.0.6",
"msw": "^2.14.6",
"oxfmt": "^0.31.0",
"oxlint": "^1.46.0",
"tsx": "^4.22.4",
"typescript": "^5.7.0",
"vitest": "^4.1.8",
"wrangler": "^4.103.0"
}
}