-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 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
{
"name": "opencode-trae-cli-auth",
"version": "0.1.3",
"description": "opencode provider plugin that proxies models through the local Trae CLI",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"examples/",
"README.md",
"LICENSE"
],
"exports": {
".": "./dist/index.js",
"./provider": "./dist/provider.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"soak": "bun scripts/soak-run.mjs",
"overnight": "node scripts/agentic-overnight.mjs",
"smoke:tools": "bun scripts/smoke-tool-calls.mjs",
"smoke:opencode:rw": "bun scripts/smoke-opencode-read-write.mjs",
"prepack": "bun run build",
"prepublishOnly": "bun run test && bun run build",
"test": "vitest run"
},
"dependencies": {
"@ai-sdk/provider": "^3.0.8",
"@opencode-ai/plugin": "^1.2.27"
},
"devDependencies": {
"@types/node": "^20.4.5",
"typescript": "^6.0.3",
"vitest": "^4.0.15"
},
"license": "MIT",
"keywords": [
"opencode",
"trae",
"traecli",
"provider",
"plugin",
"ai-sdk"
],
"homepage": "https://github.com/qqz/opencode-trae-cli-auth#readme",
"bugs": {
"url": "https://github.com/qqz/opencode-trae-cli-auth/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qqz/opencode-trae-cli-auth.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}