-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.62 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
{
"name": "@huzky-v/opencode-codex-lb",
"version": "0.2.4",
"description": "OpenCode plugin for service-based OpenAI-compatible load balancing",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/huzky-v/opencode-codex-lb.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js",
"default": "./dist/tui.js"
}
},
"oc-plugin": [
"server",
"tui"
],
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/build-tui.mjs",
"test": "bun test",
"publish:npm": "npm run build && npm publish --registry https://registry.npmjs.org/ --access public"
},
"dependencies": {
"@opentui/core": "^0.4.3",
"@opentui/solid": "^0.4.3",
"solid-js": "^1.9.12"
},
"peerDependencies": {
"@opentui/core": ">=0.3.4",
"@opentui/solid": ">=0.3.4"
},
"peerDependenciesMeta": {
"@opentui/core": {
"optional": true
},
"@opentui/solid": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@opencode-ai/plugin": "latest",
"@opentui/core": "^0.3.4",
"@opentui/solid": "^0.3.4",
"babel-preset-solid": "^1.9.12",
"typescript": "^5.9.3"
}
}