pi-ding 0.1.0 → 0.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.
Files changed (2) hide show
  1. package/README.md +1 -15
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -4,25 +4,11 @@ A [pi](https://github.com/badlogic/pi-mono) extension that plays a sound when th
4
4
 
5
5
  ## Install
6
6
 
7
- ### Install from npm
8
-
9
7
  ```bash
10
8
  pi install npm:pi-ding
11
9
  ```
12
10
 
13
- ### Install from git
14
-
15
- ```bash
16
- pi install git:github.com/ninlds/pi-ding@v0.1.0
17
- ```
18
-
19
- ### Try without installing
20
-
21
- ```bash
22
- pi -e npm:pi-ding
23
- # or
24
- pi -e git:github.com/ninlds/pi-ding@v0.1.0
25
- ```
11
+ After installing, restart `pi` or run `/reload` inside pi.
26
12
 
27
13
  ## Configure (recommended)
28
14
 
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "pi-ding",
3
- "version": "0.1.0",
4
- "description": "Pi extension: play a sound when the agent finishes a prompt",
3
+ "version": "0.2.0",
4
+ "description": "pi extension: play a sound when the agent finishes a prompt",
5
5
  "type": "module",
6
- "keywords": ["pi-package", "pi-extension", "pi"],
6
+ "keywords": [
7
+ "pi-extension",
8
+ "pi"
9
+ ],
7
10
  "license": "MIT",
8
11
  "author": "ninlds",
9
12
  "repository": {
@@ -15,7 +18,9 @@
15
18
  },
16
19
  "homepage": "https://github.com/ninlds/pi-ding#readme",
17
20
  "pi": {
18
- "extensions": ["./extensions"]
21
+ "extensions": [
22
+ "./extensions/ding.ts"
23
+ ]
19
24
  },
20
25
  "peerDependencies": {
21
26
  "@mariozechner/pi-coding-agent": "*"