-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.28 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-plugin-litellm",
"version": "0.10.0",
"description": "OpenCode plugin for LiteLLM proxy support with auto-detection and dynamic model discovery",
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"files": [
"src"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run typecheck",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencode",
"litellm",
"lite-llm",
"plugin",
"llm-proxy",
"openai-compatible"
],
"author": "Yusef Mohamadi (https://github.com/yuseferi)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yuseferi/opencode-litellm.git"
},
"bugs": {
"url": "https://github.com/yuseferi/opencode-litellm/issues"
},
"homepage": "https://github.com/yuseferi/opencode-litellm#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@opencode-ai/plugin": "^1.14.0",
"@opencode-ai/sdk": "^1.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/git": "^11.0.1",
"@types/node": "^25.0.3",
"semantic-release": "^25.0.8",
"typescript": "^5.9.3"
}
}