🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

pi-read-map

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pi-read-map - npm Package Compare versions

Comparing version
1.2.1
to
1.2.2
+6
-0
CHANGELOG.md

@@ -5,2 +5,8 @@ # Changelog

## [1.2.2] - 2026-02-14
### Changed
- "Ctrl+O to expand" hint in file map summary uses dim styling instead of warning (yellow) for a less alarming appearance
## [1.2.1] - 2026-02-14

@@ -7,0 +13,0 @@

+1
-1
{
"name": "pi-read-map",
"version": "1.2.1",
"version": "1.2.2",
"description": "Pi extension that adds structural file maps for large files",

@@ -5,0 +5,0 @@ "type": "module",

@@ -185,2 +185,6 @@ # pi-read-map

## Known Issues
**Peer dependency warnings during install.** You may see `npm warn ERESOLVE overriding peer dependency` messages about `tree-sitter-cpp`. This is cosmetic — the extension installs and works correctly. The warning occurs because `tree-sitter-cpp@0.23.4` on npm declares `peerDependencies: { "tree-sitter": "^0.21.1" }` while we use `tree-sitter@0.22.4` (required by `tree-sitter-rust`). The fix exists on the tree-sitter-cpp master branch but hasn't been published to npm yet. See [tree-sitter/tree-sitter-cpp#349](https://github.com/tree-sitter/tree-sitter-cpp/issues/349) for tracking.
## Acknowledgments

@@ -187,0 +191,0 @@

@@ -145,3 +145,3 @@ import type { ExtensionAPI, Theme } from "@mariozechner/pi-coding-agent";

summary += theme.fg("muted", ` │ `);
summary += theme.fg("warning", "Ctrl+O to expand");
summary += theme.fg("dim", "Ctrl+O to expand");

@@ -148,0 +148,0 @@ return new Text(summary, 0, 0);