-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 814 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 814 Bytes
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
{
"name": "ocb",
"version": "1.0.0",
"description": "OpenCode Bridge - Use OpenCode AI models in Claude Code",
"type": "module",
"main": "dist/proxy.js",
"bin": {
"ocb": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/proxy.js",
"stop": "taskkill /F /IM node.exe 2>nul || true",
"cli": "node dist/cli.js",
"dev": "tsx src/proxy.ts"
},
"dependencies": {
"express": "^4.18.0",
"tsx": "^4.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"keywords": ["opencode", "claude-code", "bridge", "ai", "cli", "ocb"],
"author": "",
"license": "MIT",
"files": [
"dist",
"src",
"package.json",
"tsconfig.json",
"README.md"
]
}