-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 857 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 857 Bytes
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
{
"name": "claude-failover",
"version": "1.1.0",
"description": "Anthropic API proxy with automatic key rotation, model fallback, and web dashboard",
"main": "src/server.js",
"bin": {
"claude-failover": "./bin/cli.js"
},
"scripts": {
"start": "node src/server.js",
"dev": "node bin/cli.js start",
"test": "node test/profile-order.test.js && node test/codex-oauth.test.js"
},
"keywords": [
"anthropic",
"claude",
"proxy",
"api",
"key-rotation",
"failover",
"rate-limit",
"model-fallback"
],
"author": "Kentro <hello@kentro.io>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"src/",
"dashboard/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/Kentro-io/claude-failover.git"
}
}