-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "claude-code-fallback",
"version": "0.2.0",
"description": "Cloudflare Workers fallback proxy for Claude Code - routes to alternative providers when Anthropic API is unavailable",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "npm run build:frontend && wrangler deploy",
"build:frontend": "bash scripts/build-frontend.sh",
"tail": "wrangler tail",
"test": "vitest run --reporter=verbose",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --reporter=verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/broven/claude-code-fallback.git"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"proxy",
"fallback",
"cloudflare-workers",
"openrouter"
],
"author": "broven",
"license": "ISC",
"bugs": {
"url": "https://github.com/broven/claude-code-fallback/issues"
},
"homepage": "https://github.com/broven/claude-code-fallback#readme",
"dependencies": {
"hono": "^4.11.5"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.12.10",
"@cloudflare/workers-types": "^4.20240117.0",
"@vitest/coverage-istanbul": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^3.2.4",
"wrangler": "^4.63.0"
}
}