opencode-system-metrics-tui 0.1.5 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +10 -10
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  ## Install globally in OpenCode
4
4
 
5
5
  ```powershell
6
- opencode plugin -g opencode-system-metrics-tui@0.1.4 --force
6
+ opencode plugin -g opencode-system-metrics-tui@0.1.6 --force
7
7
  ```
8
8
 
9
9
  This is the primary installation path. The version must match `package.json`; `--force` asks OpenCode to refresh its package cache. Verify the actual installed artifact afterward:
@@ -91,7 +91,7 @@ npm publish --access public
91
91
  En otro equipo:
92
92
 
93
93
  ```bash
94
- opencode plugin opencode-system-metrics-tui@0.1.4
94
+ opencode plugin opencode-system-metrics-tui@0.1.6
95
95
  ```
96
96
 
97
97
  El paquete exporta tanto la raíz (`opencode-system-metrics-tui`) como `./tui`; ambas rutas cargan el mismo bundle TUI.
@@ -101,8 +101,8 @@ El instalador de OpenCode configura el plugin TUI automáticamente. Reinicia Ope
101
101
  Publicar en npm e instalar en OpenCode son pasos distintos:
102
102
 
103
103
  - `npm publish --access public` publica el paquete en npm.
104
- - `opencode plugin opencode-system-metrics-tui@0.1.4` lo instala solo en el proyecto actual.
105
- - `opencode plugin -g opencode-system-metrics-tui@0.1.4 --force` lo instala globalmente para todos los proyectos.
104
+ - `opencode plugin opencode-system-metrics-tui@0.1.6` lo instala solo en el proyecto actual.
105
+ - `opencode plugin -g opencode-system-metrics-tui@0.1.6 --force` lo instala globalmente para todos los proyectos.
106
106
 
107
107
  ### Verificación
108
108
 
@@ -184,7 +184,7 @@ npm publish --access public
184
184
  On another machine:
185
185
 
186
186
  ```bash
187
- opencode plugin opencode-system-metrics-tui@0.1.4
187
+ opencode plugin opencode-system-metrics-tui@0.1.6
188
188
  ```
189
189
 
190
190
  The package exports both the root (`opencode-system-metrics-tui`) and `./tui`; both paths load the same TUI bundle.
@@ -194,8 +194,8 @@ The OpenCode installer configures the TUI plugin automatically. Restart OpenCode
194
194
  Publishing to npm and installing in OpenCode are separate steps:
195
195
 
196
196
  - `npm publish --access public` publishes the package to npm.
197
- - `opencode plugin opencode-system-metrics-tui@0.1.4` installs it for the current project only.
198
- - `opencode plugin -g opencode-system-metrics-tui@0.1.4 --force` installs it globally for all projects.
197
+ - `opencode plugin opencode-system-metrics-tui@0.1.6` installs it for the current project only.
198
+ - `opencode plugin -g opencode-system-metrics-tui@0.1.6 --force` installs it globally for all projects.
199
199
 
200
200
  ### Verification
201
201
 
@@ -277,7 +277,7 @@ npm publish --access public
277
277
  Em outro computador:
278
278
 
279
279
  ```bash
280
- opencode plugin opencode-system-metrics-tui@0.1.4
280
+ opencode plugin opencode-system-metrics-tui@0.1.6
281
281
  ```
282
282
 
283
283
  O pacote exporta tanto a raiz (`opencode-system-metrics-tui`) quanto `./tui`; os dois caminhos carregam o mesmo bundle TUI.
@@ -287,8 +287,8 @@ O instalador do OpenCode configura o plugin TUI automaticamente. Reinicie o Open
287
287
  Publicar no npm e instalar no OpenCode são etapas diferentes:
288
288
 
289
289
  - `npm publish --access public` publica o pacote no npm.
290
- - `opencode plugin opencode-system-metrics-tui@0.1.4` instala o plugin apenas no projeto atual.
291
- - `opencode plugin -g opencode-system-metrics-tui@0.1.4 --force` instala o plugin globalmente para todos os projetos.
290
+ - `opencode plugin opencode-system-metrics-tui@0.1.6` instala o plugin apenas no projeto atual.
291
+ - `opencode plugin -g opencode-system-metrics-tui@0.1.6 --force` instala o plugin globalmente para todos os projetos.
292
292
 
293
293
  ### Verificação
294
294
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-system-metrics-tui",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "OpenCode TUI sidebar plugin for live system metrics",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -38,8 +38,8 @@
38
38
  },
39
39
  "devDependencies": {
40
40
  "@opencode-ai/plugin": "^1.18.29",
41
- "@types/node": "^22.10.5",
41
+ "@types/node": "^26.4.1",
42
42
  "tsx": "^4.19.2",
43
- "typescript": "^5.7.3"
43
+ "typescript": "^7.0.2"
44
44
  }
45
45
  }