-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.5 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@khaentertainment/thronekeeper",
"description": "Universal AI model routing for Claude Code with VS Code extension, CLI, and secure credential management.",
"version": "1.5.62",
"type": "module",
"bin": {
"throne": "cli/index.js"
},
"files": [
"index.js",
"cli/",
"lib/",
"key-resolver.js",
"transform.js",
"xml-tool-formatter.js",
"xml-tool-parser.js",
"models-capabilities.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node index.js",
"test": "VITEST_MAX_THREADS=1 VITEST_MIN_THREADS=1 vitest run",
"ext:dev": "cd extensions/thronekeeper && npm run watch",
"webview:build": "cd extensions/thronekeeper/webview && npm run build",
"secretsd": "cd backends/python/ct_secretsd && python -m ct_secretsd",
"ext:package": "bash scripts/package-vsix.sh"
},
"keywords": [
"anthropic",
"openai",
"api",
"proxy",
"claude",
"streaming",
"sse"
],
"repository": {
"type": "git",
"url": "https://github.com/KHAEntertainment/claude-throne"
},
"bugs": {
"url": "https://github.com/KHAEntertainment/claude-throne/issues"
},
"author": "KHA Entertainment <contact@thehive.ai>",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"fastify": "^5.2.1",
"undici": "^6.22.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^20.19.39",
"jsdom": "^27.0.1",
"supertest": "^7.0.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}