-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1012 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 1012 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "opencode-llm-proxy",
"version": "1.6.1",
"description": "Local AI gateway for OpenCode — use any model via OpenAI, Anthropic, or Gemini API format",
"main": "index.js",
"type": "module",
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"test": "node --test --experimental-test-coverage",
"lint": "eslint .",
"start": "node index.js"
},
"keywords": [
"opencode",
"opencode-plugin",
"openai",
"openai-compatible",
"anthropic",
"gemini",
"ollama",
"proxy",
"llm",
"ai",
"gateway",
"local-llm",
"github-copilot",
"langchain",
"open-webui",
"llm-proxy",
"ai-gateway",
"model-router",
"openrouter",
"bedrock"
],
"author": "KochC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KochC/opencode-llm-proxy.git"
},
"peerDependencies": {
"opencode-ai": "*"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0"
}
}