@mickaelroger78/opencode-manager 0.1.0 → 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.
package/README.md CHANGED
@@ -175,7 +175,24 @@ Secrets may be stored as environment variables or plain text files inside the wo
175
175
  Install the npm package with:
176
176
 
177
177
  ```sh
178
- npm install -g opencode-manager
178
+ npm install -g @mickaelroger78/opencode-manager
179
+ ```
180
+
181
+ The global install links the `opencode-manager` command into npm's global binary
182
+ directory, so that directory must be in your shell `PATH`.
183
+
184
+ For a project-local install, npm links the command under `node_modules/.bin`
185
+ instead of your shell `PATH`:
186
+
187
+ ```sh
188
+ npm install @mickaelroger78/opencode-manager
189
+ npm exec -- opencode-manager
190
+ ```
191
+
192
+ You can also run it without installing globally:
193
+
194
+ ```sh
195
+ npx @mickaelroger78/opencode-manager
179
196
  ```
180
197
 
181
198
  The package ships prebuilt Linux and macOS binaries for x64 and arm64. During
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "@mickaelroger78/opencode-manager",
3
- "version": "0.1.0",
3
+ "version": "0.1.6",
4
4
  "description": "TUI for managing isolated OpenCode workspaces.",
5
5
  "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Mickael-Roger/opencode-manager.git"
9
+ },
10
+ "homepage": "https://github.com/Mickael-Roger/opencode-manager#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/Mickael-Roger/opencode-manager/issues"
13
+ },
6
14
  "bin": {
7
15
  "opencode-manager": "bin/opencode-manager"
8
16
  },