@diegopetrucci/pi-notify 0.1.2 → 0.1.3

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 -1
  2. package/index.ts +2 -2
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A pi extension that sends notifications when the agent finishes and is waiting for input.
4
4
 
5
- This started from the original `notify.ts` example in [`badlogic/pi-mono`](https://github.com/badlogic/pi-mono/blob/main/packages/coding-agent/examples/extensions/notify.ts), but now supports multiple notification channels and JSON configuration.
5
+ This started from the original `notify.ts` example in [`earendil-works/pi-mono`](https://github.com/earendil-works/pi-mono/blob/main/packages/coding-agent/examples/extensions/notify.ts), but now supports multiple notification channels and JSON configuration.
6
6
 
7
7
  ## Supported notification channels
8
8
 
package/index.ts CHANGED
@@ -16,8 +16,8 @@
16
16
  import { execFile } from "node:child_process";
17
17
  import { existsSync, readFileSync } from "node:fs";
18
18
  import { join } from "node:path";
19
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
20
- import { getAgentDir } from "@mariozechner/pi-coding-agent";
19
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
20
+ import { getAgentDir } from "@earendil-works/pi-coding-agent";
21
21
 
22
22
  type TerminalBackend = "auto" | "osc777" | "osc99" | "none";
23
23
  type DesktopBackend = "auto" | "macos" | "linux" | "windows-toast" | "none";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diegopetrucci/pi-notify",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A pi extension that sends a notification when the agent is ready for input.",
5
5
  "keywords": ["pi-package", "pi", "notification", "terminal"],
6
6
  "license": "MIT",
@@ -23,6 +23,6 @@
23
23
  ]
24
24
  },
25
25
  "peerDependencies": {
26
- "@mariozechner/pi-coding-agent": "*"
26
+ "@earendil-works/pi-coding-agent": "*"
27
27
  }
28
28
  }