youmna-git-glance 1.1.0 → 1.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.
- package/README.md +24 -0
- package/index.js +1 -0
- package/package.json +8 -2
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# 🚀 Git Glance
|
|
2
|
+
|
|
3
|
+
A lightweight, beautiful CLI dashboard to get an instant overview of your Git repository status. Built with Node.js.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/youmna-git-glance)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
8
|
+
## ✨ Features
|
|
9
|
+
- 📊 **Instant Summary:** View current branch and remote URLs.
|
|
10
|
+
- 🕒 **Latest Commit:** See the most recent commit message and author.
|
|
11
|
+
- 📂 **File Tracking:** Instantly see how many files have been modified.
|
|
12
|
+
- 🎨 **Beautiful UI:** Clean, color-coded dashboard output.
|
|
13
|
+
|
|
14
|
+
## 📦 Installation
|
|
15
|
+
Install the tool globally using npm:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g youmna-git-glance
|
|
19
|
+
``````
|
|
20
|
+
|
|
21
|
+
🚀 Usage
|
|
22
|
+
```bash
|
|
23
|
+
git-glance
|
|
24
|
+
```
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "youmna-git-glance",
|
|
3
|
-
"version": "1.1.
|
|
2
|
+
"name": "youmna-git-glance",
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"git-glance": "./index.js"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"simple-git": "^3.27.0",
|
|
10
|
+
"chalk": "^5.3.0",
|
|
11
|
+
"boxen": "^7.1.1",
|
|
12
|
+
"ora": "^8.0.1"
|
|
7
13
|
}
|
|
8
14
|
}
|