-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "opencode-qoder-plugin",
"version": "0.2.4",
"description": "opencode plugin — Qoder AI models with bundled SDK, zero config required",
"type": "module",
"main": "index.ts",
"exports": {
".": "./index.ts",
"./provider": "./provider.ts"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"vendor:patch-sdk": "node ./scripts/patch-qoder-agent-sdk.mjs"
},
"dependencies": {
"@ai-sdk/provider": "^3.0.8",
"@ali/qoder-agent-sdk": "^0.0.45",
"@opencode-ai/plugin": "^1.2.27",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.4.5",
"vitest": "^4.0.15"
},
"author": "yee.wang <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yee94/opencode-qoder-provider.git"
},
"keywords": [
"opencode",
"opencode-plugin",
"qoder",
"ai",
"plugin"
],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}