-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.67 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
{
"name": "opencode-split-view",
"version": "0.1.0",
"description": "Split-screen TUI plugin for opencode: watch your master agent and subagents work side by side in real time. Toggle with one keybind, see every subagent session live in the terminal.",
"type": "module",
"main": "dist/index.js",
"license": "MIT",
"oc-plugin": [
"tui"
],
"keywords": [
"opencode",
"opencode-plugin",
"tui",
"split-view",
"split-screen",
"subagents",
"subagent",
"multitask",
"terminal",
"cli",
"ai-agent",
"agent-monitoring"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thegalkin/opencode-split-view.git"
},
"bugs": {
"url": "https://github.com/thegalkin/opencode-split-view/issues"
},
"homepage": "https://github.com/thegalkin/opencode-split-view#readme",
"exports": {
".": {
"import": "./dist/index.js"
},
"./tui": {
"import": "./dist/tui.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "bun build src/render.tsx --outfile dist/tui.js --target bun --format esm --external @opencode-ai/plugin --external @opencode-ai/sdk --external @opentui/core --external @opentui/keymap --external @opentui/solid --external solid-js",
"typecheck": "bun x tsc --noEmit"
},
"peerDependencies": {
"@opencode-ai/plugin": "*",
"@opentui/core": "0.4.3",
"@opentui/keymap": "0.4.3",
"@opentui/solid": "0.4.3",
"solid-js": "1.9.10"
},
"devDependencies": {
"@opentui/core": "0.4.3",
"@opentui/keymap": "0.4.3",
"@opentui/solid": "0.4.3",
"@types/bun": "latest",
"solid-js": "1.9.10",
"typescript": "^5.5.0"
}
}