pi-thinking-timer 0.1.4 → 0.1.6
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 +1 -1
- package/{thinking-timer.ts → index.ts} +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
* so it may break if pi changes how it renders collapsed thinking blocks.
|
|
17
17
|
*/
|
|
18
18
|
|
|
19
|
-
import type { ExtensionAPI, ExtensionContext } from "@
|
|
20
|
-
import { AssistantMessageComponent } from "@
|
|
21
|
-
import { Text } from "@
|
|
19
|
+
import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
20
|
+
import { AssistantMessageComponent } from "@earendil-works/pi-coding-agent";
|
|
21
|
+
import { Text } from "@earendil-works/pi-tui";
|
|
22
22
|
|
|
23
23
|
type Store = {
|
|
24
24
|
/** Active thinking blocks: key -> start time (ms since epoch) */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-thinking-timer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Pi extension that shows a live timer next to collapsed Thinking blocks.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "xryul",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"pi-extension"
|
|
19
19
|
],
|
|
20
20
|
"pi": {
|
|
21
|
-
"extensions": ["./
|
|
21
|
+
"extensions": ["./index.ts"],
|
|
22
22
|
"image": "https://raw.githubusercontent.com/xRyul/pi-thinking-timer/main/assets/demo.gif"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@
|
|
26
|
-
"@
|
|
25
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
26
|
+
"@earendil-works/pi-tui": "*"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
|
-
"
|
|
29
|
+
"index.ts",
|
|
30
30
|
"README.md",
|
|
31
31
|
"LICENSE",
|
|
32
32
|
"package.json"
|