pi-read-map 1.2.2 → 1.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/constants.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-read-map",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Pi extension that adds structural file maps for large files",
5
5
  "type": "module",
6
6
  "pi": {
package/src/constants.ts CHANGED
@@ -7,11 +7,11 @@ export const THRESHOLDS = {
7
7
  /** Maximum bytes before truncation */
8
8
  MAX_BYTES: 50 * 1024,
9
9
  /** Maximum map size in bytes */
10
- MAX_MAP_BYTES: 20 * 1024,
10
+ MAX_MAP_BYTES: 25 * 1024,
11
11
  /** Target size for full detail */
12
12
  FULL_TARGET_BYTES: 10 * 1024,
13
13
  /** Target size for compact detail */
14
- COMPACT_TARGET_BYTES: 15 * 1024,
14
+ COMPACT_TARGET_BYTES: 20 * 1024,
15
15
  /** Maximum size for outline level */
16
16
  MAX_OUTLINE_BYTES: 50 * 1024,
17
17
  /** Maximum size for truncated level (hard cap) */