jpeek 1.0.1 → 1.0.2

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/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@ Interactive fold/unfold JSON tree viewer for the terminal. Zero deps.
4
4
 
5
5
  > ⚠️ **Debug tool only.** Solely for inspecting JSON data in a terminal during
6
6
  > local development. `interact`/`render` block the Node process synchronously
7
- > until you quit no other code runs while open. Do not call from request
7
+ > until you quit, no other code runs while open. Do not call from request
8
8
  > handlers, servers, or any production/deployed code path.
9
9
 
10
10
  ## Install
@@ -23,7 +23,7 @@ jpeek.interact('my data', { hello: 'world', list: [1, 2, 3] });
23
23
 
24
24
  `jpeek.interact(name, data)` opens an interactive tree in the terminal.
25
25
 
26
- - `↑`/`↓` (Up Arrow/Down Arrow) — move
26
+ - `↑`/`↓` (Up Arrow/Down Arrow) — navigate
27
27
  - `→`/`enter` (Right Arrow) — expand
28
28
  - `←` (Left Arrow) — collapse / go to parent
29
29
  - `space` — toggle
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jpeek",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Interactive fold/unfold JSON tree viewer for the terminal — zero deps.",
5
5
  "main": "index.js",
6
6
  "files": [