@kud/gh-cockpit 0.3.1 → 0.3.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/README.md +6 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -27,6 +27,12 @@
27
27
 
28
28
  ## 🚀 Quick Start
29
29
 
30
+ Everything here shells out to the [GitHub CLI](https://cli.github.com), so before anything else:
31
+
32
+ - **`gh` installed and authenticated** — `gh auth login`. Every fetch and every action runs through it, and an unauthenticated `gh` is the most likely reason a first run shows nothing.
33
+ - **Node 22 or newer.**
34
+ - A terminal that renders the glyphs you choose to pass it. Nothing here requires a Nerd Font — the defaults are plain — but a host that supplies one will want a font that has it.
35
+
30
36
  ```sh
31
37
  npm install @kud/gh-cockpit
32
38
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kud/gh-cockpit",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "A configurable GitHub cockpit for the terminal — your PRs, reviews and issues in one Ink TUI, grouped by whose move it is.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -19,7 +19,7 @@
19
19
  "dist"
20
20
  ],
21
21
  "engines": {
22
- "node": ">=20"
22
+ "node": ">=22"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "tsup",
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "dependencies": {
56
56
  "@kud/gh": "0.9.0",
57
- "@kud/gh-ink": "0.33.0",
57
+ "@kud/gh-ink": "0.35.0",
58
58
  "@kud/ink-ui": "0.14.0",
59
59
  "zx": "8.8.5"
60
60
  },