@agnishc/edb-context-viewer 0.5.1 → 0.6.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.0] - 2026-05-11
4
+
5
+ ### Changed
6
+ - Migrated all imports and peerDependencies from `@mariozechner/pi-*` to `@earendil-works/pi-*` namespace
7
+
3
8
  ## [0.5.1] - 2026-05-05
4
9
 
5
10
  ## [0.5.0] - 2026-05-05
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agnishc/edb-context-viewer",
3
- "version": "0.5.1",
3
+ "version": "0.6.1",
4
4
  "description": "Pi extension: inspect the system prompt and full LLM context in scrollable overlay popups",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -38,7 +38,7 @@
38
38
  ]
39
39
  },
40
40
  "peerDependencies": {
41
- "@mariozechner/pi-coding-agent": "*",
42
- "@mariozechner/pi-tui": "*"
41
+ "@earendil-works/pi-coding-agent": "*",
42
+ "@earendil-works/pi-tui": "*"
43
43
  }
44
44
  }
package/src/index.ts CHANGED
@@ -16,7 +16,7 @@ import {
16
16
  type ExtensionCommandContext,
17
17
  type SessionContext,
18
18
  type Theme,
19
- } from "@mariozechner/pi-coding-agent";
19
+ } from "@earendil-works/pi-coding-agent";
20
20
  import { ScrollableOverlay } from "./scrollable-overlay";
21
21
 
22
22
  // ── Helpers ────────────────────────────────────────────────────────────────────
@@ -9,8 +9,8 @@
9
9
  * - `Escape` / `q` to close
10
10
  */
11
11
 
12
- import { copyToClipboard as copyTextToClipboard, type Theme } from "@mariozechner/pi-coding-agent";
13
- import { Key, matchesKey, truncateToWidth, visibleWidth } from "@mariozechner/pi-tui";
12
+ import { copyToClipboard as copyTextToClipboard, type Theme } from "@earendil-works/pi-coding-agent";
13
+ import { Key, matchesKey, truncateToWidth, visibleWidth } from "@earendil-works/pi-tui";
14
14
 
15
15
  const CONTENT_HEIGHT = 30;
16
16