@calebmabry/wami 0.1.1 → 0.1.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.
- package/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -19,16 +19,16 @@
|
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
21
|
# Using bun
|
|
22
|
-
bun install -g wami
|
|
22
|
+
bun install -g @calebmabry/wami
|
|
23
23
|
|
|
24
24
|
# Using npm
|
|
25
|
-
npm
|
|
25
|
+
npm i -g @calebmabry/wami
|
|
26
26
|
|
|
27
27
|
# Using pnpm
|
|
28
|
-
pnpm add -g wami
|
|
28
|
+
pnpm add -g @calebmabry/wami
|
|
29
29
|
|
|
30
30
|
# Using yarn
|
|
31
|
-
yarn global add wami
|
|
31
|
+
yarn global add @calebmabry/wami
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
## 🚀 Usage
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@calebmabry/wami",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Where Am I - A TUI tool that detects your repository and shows available commands",
|
|
5
5
|
"module": "src/cli.tsx",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"wami": "
|
|
8
|
+
"wami": "dist/cli.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"dev": "bun run src/cli.tsx",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"repository": {
|
|
34
34
|
"type": "git",
|
|
35
|
-
"url": "https://github.com/caleb-mabry/wami.git"
|
|
35
|
+
"url": "git+https://github.com/caleb-mabry/wami.git"
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://github.com/caleb-mabry/wami#readme",
|
|
38
38
|
"bugs": {
|