-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"name": "@0dust/claude-router",
"version": "1.0.0",
"description": "Intelligent model routing for Claude Code",
"main": "./dist/sdk/index.js",
"types": "./dist/sdk/index.d.ts",
"bin": {
"claude-router": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc && cp src/classifier/prompt.md dist/classifier/",
"test": "vitest run",
"dev": "tsc --watch",
"prepublishOnly": "npm run build && npm test"
},
"files": [
"dist/",
"hooks/",
".claude-plugin/",
"runtime-claude.md",
"README.md",
"LICENSE"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0"
},
"devDependencies": {
"typescript": "^5.4.0",
"vitest": "^1.6.0",
"@types/node": "^20.0.0"
},
"keywords": [
"claude",
"claude-code",
"model-routing",
"ai",
"anthropic",
"llm"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/0dust/ClaudeRouter.git"
},
"homepage": "https://github.com/0dust/ClaudeRouter#readme",
"license": "MIT"
}