pi-notifi 0.1.0 → 0.1.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 CHANGED
@@ -59,7 +59,7 @@ pi -e /absolute/path/to/pi-notifi
59
59
  The package manifest loads:
60
60
 
61
61
  ```text
62
- extensions/notifi.ts
62
+ index.ts
63
63
  ```
64
64
 
65
65
  No manual symlink is required. The extension invokes the packaged focus helper
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-notifi",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pi extension that sends focus-aware desktop notifications when pi finishes a task.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "type": "module",
22
22
  "files": [
23
- "extensions/",
23
+ "index.ts",
24
24
  "scripts/",
25
25
  "examples/",
26
26
  "README.md"
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "pi": {
33
33
  "extensions": [
34
- "./extensions/notifi.ts"
34
+ "./index.ts"
35
35
  ]
36
36
  },
37
37
  "peerDependencies": {
File without changes