@narumitw/pi-btw 0.25.0 → 0.28.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 CHANGED
@@ -113,6 +113,7 @@ Normal assistant messages become part of the main Pi conversation and can distra
113
113
  ```txt
114
114
  extensions/pi-btw/
115
115
  ├── src/
116
+ │ ├── index.ts
116
117
  │ └── btw.ts
117
118
  ├── README.md
118
119
  ├── LICENSE
@@ -125,7 +126,7 @@ The package exposes its Pi extension through `package.json`:
125
126
  ```json
126
127
  {
127
128
  "pi": {
128
- "extensions": ["./src/btw.ts"]
129
+ "extensions": ["./src/index.ts"]
129
130
  }
130
131
  }
131
132
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@narumitw/pi-btw",
3
- "version": "0.25.0",
3
+ "version": "0.28.0",
4
4
  "description": "Pi extension that adds a /btw side-question command.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "pi": {
21
21
  "extensions": [
22
- "./src/btw.ts"
22
+ "./src/index.ts"
23
23
  ]
24
24
  },
25
25
  "scripts": {
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export { default } from "./btw.js";