-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"name": "commandcode-proxy-v4",
"version": "4.5.0",
"description": "Local OpenAI Chat Completions & Anthropic Messages compatible proxy for Command Code AI. Chinese dashboard, hardened translation, retries, idle timeouts.",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wjf1/commandcode-proxy.git"
},
"homepage": "https://github.com/wjf1/commandcode-proxy",
"bugs": {
"url": "https://github.com/wjf1/commandcode-proxy/issues"
},
"author": {
"name": "wjf1",
"url": "https://github.com/wjf1"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"build:exe": "npm run build && esbuild dist/index.js --bundle --platform=node --format=cjs --outfile=dist/bundle.cjs --external:fsevents",
"build:win": "npm run build:exe && pkg dist/bundle.cjs --target node18-win-x64 --output dist/commandcode-proxy-v4.exe --compress GZip",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"pkg": {
"assets": [
"models.json"
],
"outputPath": "dist"
},
"keywords": [
"commandcode",
"proxy",
"openai",
"anthropic",
"api-gateway"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.19.43",
"esbuild": "^0.21.0",
"pkg": "^5.8.1",
"tsx": "^4.11.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"dependencies": {
"fastify": "^4.29.1"
}
}