@dragonwize/opencode-event-push 0.5.0 → 0.5.1
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 +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Add the plugin to your `opencode.json`:
|
|
|
11
11
|
```json
|
|
12
12
|
{
|
|
13
13
|
"$schema": "https://opencode.ai/config.json",
|
|
14
|
-
"plugin": ["opencode-event-push"]
|
|
14
|
+
"plugin": ["@dragonwize/opencode-event-push"]
|
|
15
15
|
}
|
|
16
16
|
```
|
|
17
17
|
|
|
@@ -26,8 +26,8 @@ OpenCode installs the package automatically at startup using Bun. The package la
|
|
|
26
26
|
The plugin reads its config from `event-push.json` in the **same directory as the installed plugin package** (i.e. next to `package.json`). Copy the bundled example and edit it:
|
|
27
27
|
|
|
28
28
|
```sh
|
|
29
|
-
cp ~/.cache/opencode/node_modules/opencode-event-push/event-push.example.json \
|
|
30
|
-
~/.cache/opencode/node_modules/opencode-event-push/event-push.json
|
|
29
|
+
cp ~/.cache/opencode/node_modules/@dragonwize/opencode-event-push/event-push.example.json \
|
|
30
|
+
~/.cache/opencode/node_modules/@dragonwize/opencode-event-push/event-push.json
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Then open `event-push.json` and replace the placeholder URLs, events, and credentials.
|