hn-bits 0.2.0 → 0.2.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/README.md +12 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -4,6 +4,18 @@ Terminal-first Hacker News client. Fullscreen TUI built with TypeScript + Ink (R
|
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g hn-bits
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or run without installing:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx hn-bits
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### From source
|
|
18
|
+
|
|
7
19
|
```bash
|
|
8
20
|
npm install
|
|
9
21
|
npm run build
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hn-bits",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Terminal-first Hacker News client",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/navinrc/hn-bits.git"
|
|
9
|
+
},
|
|
6
10
|
"bin": {
|
|
7
11
|
"hn": "./dist/index.js"
|
|
8
12
|
},
|