opencode-browser 1.1.0 → 1.2.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/README.md +3 -3
- package/package.json +3 -3
- /package/{index.ts → src/index.ts} +0 -0
package/README.md
CHANGED
|
@@ -71,13 +71,13 @@ If you want to modify the plugin or test changes:
|
|
|
71
71
|
**For global installation:**
|
|
72
72
|
```bash
|
|
73
73
|
mkdir -p ~/.config/opencode/plugin
|
|
74
|
-
cp index.ts ~/.config/opencode/plugin/browser-mcp.ts
|
|
74
|
+
cp src/index.ts ~/.config/opencode/plugin/browser-mcp.ts
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
**For project-specific installation:**
|
|
78
78
|
```bash
|
|
79
79
|
mkdir -p .opencode/plugin
|
|
80
|
-
cp index.ts .opencode/plugin/browser-mcp.ts
|
|
80
|
+
cp src/index.ts .opencode/plugin/browser-mcp.ts
|
|
81
81
|
```
|
|
82
82
|
|
|
83
83
|
The plugin will be automatically loaded on OpenCode startup.
|
|
@@ -316,7 +316,7 @@ opencode --verbose
|
|
|
316
316
|
If you want to modify the plugin:
|
|
317
317
|
|
|
318
318
|
1. Clone the repository
|
|
319
|
-
2. Make your changes to `index.ts`
|
|
319
|
+
2. Make your changes to `src/index.ts`
|
|
320
320
|
3. Test locally by copying to your OpenCode plugin directory
|
|
321
321
|
4. Submit a PR if you'd like to contribute!
|
|
322
322
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-browser",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "OpenCode plugin that integrates Browser MCP for browser automation",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "index.ts",
|
|
6
|
+
"main": "src/index.ts",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"opencode",
|
|
9
9
|
"opencode-plugin",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"url": "https://github.com/michaljach/opencode-browser/issues"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
|
-
"
|
|
34
|
+
"src/",
|
|
35
35
|
"README.md",
|
|
36
36
|
"LICENSE"
|
|
37
37
|
],
|
|
File without changes
|