@pi-unipi/btw 2.0.7 → 2.0.9
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/extensions/btw.ts +3 -3
- package/package.json +5 -4
package/extensions/btw.ts
CHANGED
|
@@ -27,8 +27,8 @@ import {
|
|
|
27
27
|
type ExtensionCommandContext,
|
|
28
28
|
type ExtensionContext,
|
|
29
29
|
type ResourceLoader,
|
|
30
|
-
} from "@
|
|
31
|
-
import { type AssistantMessage, type Message, type ThinkingLevel as AiThinkingLevel, type UserMessage } from "@
|
|
30
|
+
} from "@earendil-works/pi-coding-agent";
|
|
31
|
+
import { type AssistantMessage, type Message, type ThinkingLevel as AiThinkingLevel, type UserMessage } from "@earendil-works/pi-ai";
|
|
32
32
|
import {
|
|
33
33
|
Box,
|
|
34
34
|
Container,
|
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
type KeybindingsManager,
|
|
44
44
|
type OverlayHandle,
|
|
45
45
|
type TUI,
|
|
46
|
-
} from "@
|
|
46
|
+
} from "@earendil-works/pi-tui";
|
|
47
47
|
import { BTW_COMMANDS, UNIPI_PREFIX } from "@pi-unipi/core";
|
|
48
48
|
|
|
49
49
|
// ─── Constants ──────────────────────────────────────────────────────────────
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-unipi/btw",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "A pi extension for parallel side conversations with /unipi:btw — part of the Unipi suite",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "extensions/btw.ts",
|
|
6
7
|
"license": "MIT",
|
|
7
8
|
"author": "Neuron Mr White",
|
|
8
9
|
"repository": {
|
|
@@ -39,9 +40,9 @@
|
|
|
39
40
|
]
|
|
40
41
|
},
|
|
41
42
|
"peerDependencies": {
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
44
|
-
"@
|
|
43
|
+
"@earendil-works/pi-ai": "^0.75.5",
|
|
44
|
+
"@earendil-works/pi-coding-agent": "^0.75.5",
|
|
45
|
+
"@earendil-works/pi-tui": "^0.75.5"
|
|
45
46
|
},
|
|
46
47
|
"dependencies": {
|
|
47
48
|
"@pi-unipi/core": "*"
|