pi-edit-session-in-place 0.1.1 → 0.1.3
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 +3 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -6,11 +6,11 @@ A [pi](https://github.com/badlogic/pi-mono) extension that lets you rewind to an
|
|
|
6
6
|
|
|
7
7
|
Tested with:
|
|
8
8
|
|
|
9
|
-
- `@mariozechner/pi-coding-agent` `0.
|
|
10
|
-
- `@mariozechner/pi-tui` `0.
|
|
9
|
+
- `@mariozechner/pi-coding-agent` `0.67.4`
|
|
10
|
+
- `@mariozechner/pi-tui` `0.67.4`
|
|
11
11
|
- Node.js `>=20.6.0`
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Local development and verification in this repo target pi `0.67.4`. `@mariozechner/pi-coding-agent` stays in `devDependencies` for local typechecking and tests, while the extension relies on pi's bundled runtime packages at execution time.
|
|
14
14
|
|
|
15
15
|
## What it does
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-edit-session-in-place",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "pi extension that lets you re-edit or delete an earlier user message in the current session branch",
|
|
5
5
|
"author": "Mitch Fultz (https://github.com/fitchmultz)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,17 +37,16 @@
|
|
|
37
37
|
"LICENSE"
|
|
38
38
|
],
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@mariozechner/pi-coding-agent": "*",
|
|
41
40
|
"@mariozechner/pi-tui": "*"
|
|
42
41
|
},
|
|
43
42
|
"engines": {
|
|
44
43
|
"node": ">=20.6.0"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
48
|
-
"@mariozechner/pi-tui": "^0.
|
|
49
|
-
"@types/node": "^
|
|
50
|
-
"typescript": "^
|
|
46
|
+
"@mariozechner/pi-coding-agent": "^0.67.4",
|
|
47
|
+
"@mariozechner/pi-tui": "^0.67.4",
|
|
48
|
+
"@types/node": "^25.6.0",
|
|
49
|
+
"typescript": "^6.0.2"
|
|
51
50
|
},
|
|
52
51
|
"overrides": {
|
|
53
52
|
"basic-ftp": "5.2.2"
|
|
@@ -56,5 +55,6 @@
|
|
|
56
55
|
"extensions": [
|
|
57
56
|
"./extensions"
|
|
58
57
|
]
|
|
59
|
-
}
|
|
58
|
+
},
|
|
59
|
+
"packageManager": "npm@10.9.8"
|
|
60
60
|
}
|