@narumitw/pi-btw 0.25.0 → 0.31.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 +2 -1
- package/package.json +6 -6
- package/src/index.ts +1 -0
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/
|
|
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.
|
|
3
|
+
"version": "0.31.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/
|
|
22
|
+
"./src/index.ts"
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"typecheck": "tsc --noEmit"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@biomejs/biome": "2.5.
|
|
32
|
-
"@earendil-works/pi-ai": "0.
|
|
33
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
34
|
-
"@earendil-works/pi-tui": "0.
|
|
31
|
+
"@biomejs/biome": "2.5.5",
|
|
32
|
+
"@earendil-works/pi-ai": "0.82.1",
|
|
33
|
+
"@earendil-works/pi-coding-agent": "0.82.1",
|
|
34
|
+
"@earendil-works/pi-tui": "0.82.1",
|
|
35
35
|
"typescript": "7.0.2"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./btw.js";
|