-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"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.3.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"hono": "^4.12.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.12.11",
"@types/node": "^25.0.6",
"oxfmt": "^0.31.0",
"oxlint": "^1.46.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "3.2",
"wrangler": "^4.64.0"
}
}