psinetron-opencode-visualizer 1.0.5 → 1.0.6
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/README.md +9 -1
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://github.com/psinetron/opencode-visualiser/stargazers)
|
|
5
5
|
[](https://www.npmjs.com/package/psinetron-opencode-visualizer)
|
|
6
6
|
|
|
7
|
-
**
|
|
7
|
+
**Turning raw OpenCode terminal logs into cozy 2D pixel office chaos.** Watch your agents work, idle, and celebrate success in a bustling virtual office.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -78,6 +78,14 @@ Available skins: `person1`, `person2`, `person3`, `person4`, `person5`.
|
|
|
78
78
|
|
|
79
79
|
---
|
|
80
80
|
|
|
81
|
+
## 💙 Support OpenCode
|
|
82
|
+
|
|
83
|
+
This plugin is built on top of [OpenCode](https://opencode.ai) — an open-source AI coding tool. If you find it useful, consider supporting the project by subscribing to **OpenCode GO**. Using the link below gives you **50% off** and helps fund continued development:
|
|
84
|
+
|
|
85
|
+
👉 [opencode.ai/go?ref=EZW07YHVTG](https://opencode.ai/go?ref=EZW07YHVTG)
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
81
89
|
## 📜 License
|
|
82
90
|
|
|
83
91
|
MIT License. See LICENSE for more information. Built, not bought, by psinetron.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "psinetron-opencode-visualizer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"description": "OpenCode session visualizer — real-time pixel-art office scene with animated agents",
|
|
6
6
|
"files": [
|
|
@@ -10,7 +10,15 @@
|
|
|
10
10
|
"keywords": ["opencode", "opencode-plugin", "visualizer", "monitor"],
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"type": "module",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@opencode-ai/plugin": ">=1.16.0"
|
|
15
|
+
},
|
|
13
16
|
"devDependencies": {
|
|
14
|
-
"@
|
|
17
|
+
"@types/node": "^22.0.0",
|
|
18
|
+
"typescript": "^5.8.0"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/psinetron/opencode-visualiser.git"
|
|
15
23
|
}
|
|
16
24
|
}
|