pi-diff-review 0.1.3 → 0.1.4

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.
@@ -1,4 +1,4 @@
1
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
1
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
2
2
  import { registerDiffReviewCommand } from "../src/index.ts";
3
3
 
4
4
  export default function (pi: ExtensionAPI) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-diff-review",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Local diff review TUI extension for pi",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -32,8 +32,16 @@
32
32
  "prettier": "^3.5.3"
33
33
  },
34
34
  "peerDependencies": {
35
- "@mariozechner/pi-coding-agent": "*",
36
- "@mariozechner/pi-tui": "*"
35
+ "@earendil-works/pi-coding-agent": "*",
36
+ "@earendil-works/pi-tui": "*"
37
+ },
38
+ "peerDependenciesMeta": {
39
+ "@earendil-works/pi-coding-agent": {
40
+ "optional": true
41
+ },
42
+ "@earendil-works/pi-tui": {
43
+ "optional": true
44
+ }
37
45
  },
38
46
  "pi": {
39
47
  "extensions": [
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type {
2
2
  ExtensionAPI,
3
3
  ExtensionCommandContext,
4
- } from "@mariozechner/pi-coding-agent";
4
+ } from "@earendil-works/pi-coding-agent";
5
5
  import { getDiff, parseDiffSource } from "./diff-source.ts";
6
6
  import { parseDiff } from "./diff-parser.ts";
7
7
  import { buildReviewPrompt } from "./prompt.ts";
@@ -4,7 +4,7 @@ import {
4
4
  truncateToWidth,
5
5
  visibleWidth,
6
6
  wrapTextWithAnsi,
7
- } from "@mariozechner/pi-tui";
7
+ } from "@earendil-works/pi-tui";
8
8
  import { formatLocation } from "./prompt.ts";
9
9
  import type {
10
10
  DiffRenderMode,
package/src/types.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Theme } from "@mariozechner/pi-coding-agent";
1
+ import type { Theme } from "@earendil-works/pi-coding-agent";
2
2
 
3
3
  export type DiffLineKind = "meta" | "hunk" | "context" | "add" | "remove";
4
4