forked from yee94/opencode-qoder-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "opencode-qoder-auth",
"version": "0.2.6",
"description": "opencode auth plugin — Qoder AI models with bundled SDK, zero config required",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/index.js",
"./provider": "./dist/provider.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && mkdir -p dist/src/vendor && cp src/vendor/qoder-agent-sdk.mjs dist/src/vendor/qoder-agent-sdk.mjs && cp src/vendor/qoder-agent-sdk.d.ts dist/src/vendor/qoder-agent-sdk.d.ts",
"prepack": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"vendor:patch-sdk": "node ./scripts/patch-qoder-agent-sdk.mjs"
},
"dependencies": {
"@ai-sdk/provider": "^3.0.8",
"@opencode-ai/plugin": "^1.2.27",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.4.5",
"typescript": "^6.0.3",
"vitest": "^4.0.15"
},
"author": "zxcrf",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zxcrf/opencode-qoder-auth.git"
},
"keywords": [
"opencode",
"opencode-plugin",
"opencode-auth",
"qoder",
"ai",
"plugin"
],
"engines": {
"node": ">=20.0.0"
}
}