-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.05 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
79
80
81
82
83
84
85
86
{
"name": "@bman654/clodex",
"version": "2.13.1",
"publishConfig": {
"access": "public"
},
"description": "Bridge Claude Code to OpenAI and OpenCode Go models — API keys or ChatGPT/Codex-plan OAuth, with prompt caching, auto-compaction, model switching, and a Claude Code binary patcher",
"author": "Brandon Wallace",
"license": "MIT",
"keywords": [
"claude",
"claude-code",
"openai",
"opencode",
"chatgpt",
"codex",
"ai",
"llm",
"cli",
"bridge",
"proxy"
],
"type": "module",
"packageManager": "pnpm@10.34.5",
"bin": {
"clodex": "dist/cli.js",
"clodex-claude": "dist/claude-wrapper.js"
},
"files": [
"dist",
"docs",
"README.md"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"update:opencode-go": "node scripts/update-opencode-go-models.mjs"
},
"dependencies": {
"@ai-sdk/anthropic": "4.0.12",
"@ai-sdk/openai": "4.0.11",
"@ai-sdk/openai-compatible": "3.0.7",
"@ai-sdk/provider-utils": "5.0.7",
"@clack/prompts": "0.9.1",
"ai": "7.0.22",
"https-proxy-agent": "9.1.0",
"ipaddr.js": "2.4.0",
"node-forge": "1.4.0",
"node-gyp-build": "4.8.4",
"open": "11.0.0",
"picocolors": "1.1.1",
"tweakcc": "4.3.0",
"undici": "7.29.0",
"ws": "8.21.0"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@types/node": "22.19.19",
"@types/node-forge": "1.3.14",
"@types/ws": "8.18.1",
"husky": "9.1.7",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "2.1.9"
},
"optionalDependencies": {
"@napi-rs/keyring": "1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bman654/clodex.git"
},
"homepage": "https://github.com/bman654/clodex#readme",
"bugs": {
"url": "https://github.com/bman654/clodex/issues"
}
}