-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.31 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
{
"name": "switchlm",
"version": "1.0.2",
"description": "Local model-routing proxy for Codex and OpenAI Responses API clients",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TTLC198/SwitchLM.git"
},
"homepage": "https://github.com/TTLC198/SwitchLM#readme",
"bugs": {
"url": "https://github.com/TTLC198/SwitchLM/issues"
},
"main": "dist/index.js",
"bin": {
"switchlm": "dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"THIRD_PARTY_NOTICES.md"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"codex",
"openai",
"responses-api",
"model-router",
"proxy"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run --dir src",
"dev": "tsx src/cli.ts start",
"start": "node dist/cli.js start",
"prepack": "npm run build",
"prepublishOnly": "npm test && npm run typecheck"
},
"dependencies": {
"fastify": "^5.6.2",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/node": "^24.2.1",
"vitest": "^3.2.4",
"tsx": "^4.20.3",
"typescript": "^6.0.3"
}
}