pi-redline 0.1.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/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "pi-redline",
3
+ "version": "0.1.0",
4
+ "description": "Redline pi sessions: an overlay TUI showing every file changed in the current pi session with syntax-highlighted diffs, per-line selection, fix/explain annotations, and a one-key submit-as-prompt flow.",
5
+ "author": "Alon Martin",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "engines": {
9
+ "node": ">=20"
10
+ },
11
+ "peerDependencies": {
12
+ "@earendil-works/pi-coding-agent": "*"
13
+ },
14
+ "peerDependenciesMeta": {
15
+ "@earendil-works/pi-coding-agent": {
16
+ "optional": false
17
+ }
18
+ },
19
+ "pi": {
20
+ "extensions": [
21
+ "./extensions/session-diff.ts"
22
+ ]
23
+ },
24
+ "files": [
25
+ "extensions/",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "keywords": [
30
+ "pi-package",
31
+ "pi-extension",
32
+ "diff",
33
+ "annotations",
34
+ "code-review",
35
+ "redline",
36
+ "session",
37
+ "tui",
38
+ "productivity"
39
+ ],
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "git+https://github.com/alonmartin2222/pi-redline.git"
43
+ },
44
+ "homepage": "https://github.com/alonmartin2222/pi-redline#readme",
45
+ "bugs": {
46
+ "url": "https://github.com/alonmartin2222/pi-redline/issues"
47
+ }
48
+ }