-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 910 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 910 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
38
39
{
"name": "opencode2api",
"version": "1.5.0",
"description": "An OpenAI-compatible API gateway for the OpenCode CLI, enabling the use of free models (Kimi, GLM, MiniMax) in standard AI clients.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --detectOpenHandles",
"test:unit": "npm test",
"test:integration": "bash tests/test-integration.sh"
},
"keywords": [
"opencode",
"openai",
"proxy",
"kimi",
"glm",
"minimax",
"ai",
"api"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@opencode-ai/sdk": "^1.1.51",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"express": "^4.21.2"
},
"devDependencies": {
"jest": "^30.2.0",
"supertest": "^7.2.2"
}
}