git-thing 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +9 -1
  2. package/readme.md +7 -17
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "git-thing",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A TUI for managing git branches and rebasing",
5
5
  "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/nilsbuilds/git-thingy.git"
9
+ },
10
+ "homepage": "https://github.com/nilsbuilds/git-thingy#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/nilsbuilds/git-thingy/issues"
13
+ },
6
14
  "bin": {
7
15
  "git-thing": "dist/cli.js"
8
16
  },
package/readme.md CHANGED
@@ -1,25 +1,15 @@
1
- # Git-thing
1
+ # git-thing
2
2
 
3
- > This readme is automatically generated by [create-ink-app](https://github.com/vadimdemedes/create-ink-app)
3
+ A TUI for managing git branches and rebasing.
4
4
 
5
- ## Install
5
+ ## Usage
6
6
 
7
7
  ```bash
8
- $ npm install --global Git-thing
8
+ npx git-thing
9
9
  ```
10
10
 
11
- ## CLI
11
+ Or install globally:
12
12
 
13
- ```
14
- $ Git-thing --help
15
-
16
- Usage
17
- $ Git-thing
18
-
19
- Options
20
- --name Your name
21
-
22
- Examples
23
- $ Git-thing --name=Jane
24
- Hello, Jane
13
+ ```bash
14
+ npm install -g git-thing
25
15
  ```