-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.67 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
{
"name": "opencode-llm-proxy",
"version": "1.10.0",
"description": "Local AI gateway for OpenCode with tool/function calling — use any model via OpenAI, Anthropic, or Gemini API format",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20.19.0",
"bun": ">=1.0.0"
},
"files": [
"index.js",
"canonical-messages.js",
"metrics.js",
"remote-media.js",
"dist/llm-proxy.js",
"mcp-tool-bridge.js",
"README.md",
"LICENSE",
"docs/"
],
"scripts": {
"build": "esbuild index.js --bundle --format=esm --platform=node --target=node20 --outfile=dist/llm-proxy.js",
"prepack": "npm run build",
"test": "node --test --experimental-test-coverage",
"test:conformance": "node --test test/stream-conformance.test.js",
"test:integration": "node --test test/http-integration.test.js",
"lint": "eslint ."
},
"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",
"tool-calling",
"function-calling",
"tools",
"mcp",
"model-context-protocol",
"coding-agent",
"ai-agent",
"agentic"
],
"author": "KochC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KochC/opencode-llm-proxy.git"
},
"peerDependencies": {
"opencode-ai": ">=1.0.0 <2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.28.1",
"eslint": "^10.1.0"
}
}