opencode-antigravity-config 1.0.4 → 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.
Files changed (3) hide show
  1. package/README.md +1 -4
  2. package/main.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -5,10 +5,7 @@ GUI installer for [Antigravity OpenCode](https://opencode.ai) configuration stac
5
5
  ## Quick Start
6
6
 
7
7
  ```bash
8
- # Option 1: Run directly without installing (Recommended)
9
- npx opencode-antigravity-config
10
-
11
- # Option 2: Install globally
8
+ # Install globally
12
9
  npm install -g opencode-antigravity-config
13
10
 
14
11
  # Launch the installer GUI
package/main.js CHANGED
@@ -71,7 +71,7 @@ ipcMain.on('run-opencode-cli', () => {
71
71
  });
72
72
  ipcMain.on('run-opencode-web', () => {
73
73
  if (process.platform === 'win32') {
74
- spawn('cmd.exe', ['/c', 'start', 'cmd', '/k', 'opencode --port 8080'], { detached: true, stdio: 'ignore' });
74
+ spawn('cmd.exe', ['/c', 'start', 'cmd', '/k', 'opencode web --port 8080'], { detached: true, stdio: 'ignore' });
75
75
  }
76
76
  });
77
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-antigravity-config",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "GUI installer for Antigravity OpenCode configuration",
5
5
  "main": "main.js",
6
6
  "bin": {