@calebmabry/wami 0.1.0 → 0.1.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 +7 -7
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  > A smart TUI that detects your repository and shows available commands. Works everywhere, zero config.
4
4
 
5
5
  ![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)
6
- [![npm version](https://img.shields.io/npm/v/wami.svg)](https://www.npmjs.com/package/wami)
6
+ [![npm version](https://img.shields.io/npm/v/@calebmabry/wami.svg)](https://www.npmjs.com/package/wami)
7
7
 
8
8
  ## ✨ Features
9
9
 
@@ -17,7 +17,7 @@
17
17
 
18
18
  ## 📦 Installation
19
19
 
20
- \`\`\`bash
20
+ ```bash
21
21
  # Using bun
22
22
  bun install -g wami
23
23
 
@@ -29,15 +29,15 @@ pnpm add -g wami
29
29
 
30
30
  # Using yarn
31
31
  yarn global add wami
32
- \`\`\`
32
+ ```
33
33
 
34
34
  ## 🚀 Usage
35
35
 
36
36
  Navigate to any project and run:
37
37
 
38
- \`\`\`bash
38
+ ```bash
39
39
  wami
40
- \`\`\`
40
+ ```
41
41
 
42
42
  ### Keyboard Shortcuts
43
43
 
@@ -79,7 +79,7 @@ Detects \`pyproject.toml\`, \`Pipfile\`, or \`requirements.txt\` and supports:
79
79
 
80
80
  ## 🔧 Development
81
81
 
82
- \`\`\`bash
82
+ ```bash
83
83
  # Clone the repository
84
84
  git clone https://github.com/caleb-mabry/wami.git
85
85
  cd wami
@@ -95,7 +95,7 @@ bun run build
95
95
 
96
96
  # Type check
97
97
  bun run typecheck
98
- \`\`\`
98
+ ```
99
99
 
100
100
  ## 🤝 Contributing
101
101
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@calebmabry/wami",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
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": "./dist/cli.js"
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": {