-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "codex-smart-proxy",
"version": "0.2.8",
"description": "Smart proxy for Codex Desktop App that routes requests to different upstream providers (OpenAI, DeepSeek, Kimi) based on model slug, with protocol conversion.",
"keywords": [
"openai",
"responses-api",
"anthropic",
"claude",
"deepseek",
"proxy",
"cli"
],
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/server/cli.ts --config smart-proxy.json.example",
"dev:config": "tsx src/server/cli.ts --config smart-proxy.json.example",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"cli": "./dist/cli.js"
},
"devDependencies": {
"@ai0x0/utils": "^0.0.31",
"@eslint/js": "^9.39.4",
"@rollup/rollup-darwin-arm64": "^4.60.3",
"@types/node": "^22.19.19",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"rollup": "^3.30.0",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.2",
"vitest": "^2.1.9"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"bin": {
"codex-smart-proxy": "dist/cli.js"
},
"dependencies": {
"@codeproxy/core": "^0.1.6"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ZaneChen76/codex-smart-proxy.git"
}
}