-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 768 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 768 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": "openclawcode",
"version": "1.0.9",
"description": "OpenAI-compatible proxy for the OpenCode Zen API. Bridge OpenCode models to any OpenAI-compatible client.",
"main": "src/index.js",
"bin": {
"openclawcode": "src/index.js"
},
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"keywords": [
"opencode",
"proxy",
"openai",
"api",
"llm"
],
"author": "lumis",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lumishoang/opencode-proxy"
},
"files": [
"src/",
".env.example"
],
"dependencies": {
"dotenv": "^17.4.2",
"express": "^4.21.0",
"node-fetch": "^3.3.2",
"uuid": "^10.0.0"
}
}