opencode-subagent-magazine 1.2.0 → 1.2.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +187 -187
- package/dist/_version.d.ts +1 -1
- package/dist/_version.js +1 -1
- package/dist/server.d.ts +3 -0
- package/dist/server.js +6 -0
- package/dist/tui.js +1 -1
- package/install.mjs +103 -103
- package/package.json +62 -63
- package/src/_version.ts +1 -1
- package/src/index.tsx +1782 -1782
- package/src/server.ts +10 -0
package/package.json
CHANGED
|
@@ -1,63 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "opencode-subagent-magazine",
|
|
3
|
-
"version": "1.2.0",
|
|
4
|
-
"description": "OpenCode TUI plugin monitoring sub-agent invocation status in real time",
|
|
5
|
-
"type": "module",
|
|
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
|
-
"build": "
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"opencode",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"
|
|
48
|
-
|
|
49
|
-
"@opencode-ai/
|
|
50
|
-
"@
|
|
51
|
-
"@opentui/
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"@opencode-ai/
|
|
57
|
-
"
|
|
58
|
-
"esbuild": "^0.
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "opencode-subagent-magazine",
|
|
3
|
+
"version": "1.2.1-beta.0",
|
|
4
|
+
"description": "OpenCode TUI plugin monitoring sub-agent invocation status in real time",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
"./server": {
|
|
9
|
+
"import": "./dist/server.js",
|
|
10
|
+
"types": "./dist/server.d.ts"
|
|
11
|
+
},
|
|
12
|
+
"./tui": {
|
|
13
|
+
"import": "./dist/tui.js",
|
|
14
|
+
"config": {
|
|
15
|
+
"enabled": true
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"src",
|
|
22
|
+
"install.mjs",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"bin": {
|
|
26
|
+
"opencode-subagent-magazine": "install.mjs"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsc && node build.tui.mjs",
|
|
30
|
+
"build:tui": "node build.tui.mjs",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"version": "node -e \"require('fs').writeFileSync('src/_version.ts','// auto-generated\\nexport const PLUGIN_VERSION='+JSON.stringify(require('./package.json').version)+';\\n')\"",
|
|
33
|
+
"prepublishOnly": "tsc"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"opencode",
|
|
37
|
+
"opencode-plugin",
|
|
38
|
+
"tui",
|
|
39
|
+
"subagent",
|
|
40
|
+
"subtask"
|
|
41
|
+
],
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "git+https://github.com/Hotakus/opencode-subagent-magazine.git"
|
|
45
|
+
},
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"@opencode-ai/plugin": ">=1.14.0",
|
|
49
|
+
"@opencode-ai/sdk": ">=1.14.0",
|
|
50
|
+
"@opentui/core": ">=0.2.0",
|
|
51
|
+
"@opentui/solid": ">=0.2.0",
|
|
52
|
+
"solid-js": ">=1.9.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@opencode-ai/plugin": "^1.14.50",
|
|
56
|
+
"@opencode-ai/sdk": "^1.14.50",
|
|
57
|
+
"esbuild": "^0.25.0",
|
|
58
|
+
"esbuild-plugin-solid": "^0.5.0",
|
|
59
|
+
"tsx": "^4.22.3",
|
|
60
|
+
"typescript": "^5.8.0"
|
|
61
|
+
}
|
|
62
|
+
}
|
package/src/_version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// auto-generated
|
|
2
|
-
export const PLUGIN_VERSION="1.2.0";
|
|
2
|
+
export const PLUGIN_VERSION="1.2.1-beta.0";
|