-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.71 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
61
62
63
64
65
{
"name": "ccmux",
"version": "0.0.0",
"description": "Claude model switcher / routing proxy (ccmux).",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"ccmux": "bin/ccmux.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"bin",
"dist",
"src/policy/recipes",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit && tsc -p tsconfig.eslint.json --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:all": "npm run lint && npm run typecheck && npm run test",
"build:dashboard": "cd src/dashboard/frontend && npm ci && npm run build",
"check:spa": "node --import tsx scripts/check-spa-bundle.ts src/dashboard/frontend/dist",
"prepublishOnly": "npm run build && npm run build:dashboard && npm run test:all && npm run check:spa"
},
"dependencies": {
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"fastify": "^4.28.1",
"js-tiktoken": "^1.0.21",
"js-yaml": "^4.1.0",
"pino": "^9.3.2",
"pino-pretty": "^11.2.1",
"undici": "^6.19.7"
},
"devDependencies": {
"@types/eslint": "^8.56.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"typescript": "^5.5.4",
"vitest": "^1.6.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"jsdom": "^24.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.7"
}
}