git-fish-log 1.0.6 โ 1.0.8
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-/345/225/260/345/227/246/347/211/210.md +171 -33
- package/README.md +9 -2
- package/dist/index.js +449 -263
- package/package.json +48 -48
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "git-fish-log",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "๐ Git ๆธ้ฑผ & ็่ๅๆๅจ CLI โ
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"fish": "./dist/index.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"README.md",
|
|
13
|
-
"README-ๅฐๅฆ็.md"
|
|
14
|
-
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsup",
|
|
17
|
-
"dev": "tsup --watch",
|
|
18
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
19
|
-
},
|
|
20
|
-
"keywords": [
|
|
21
|
-
"git",
|
|
22
|
-
"cli",
|
|
23
|
-
"git-history",
|
|
24
|
-
"commit-analysis",
|
|
25
|
-
"developer-tools",
|
|
26
|
-
"productivity",
|
|
27
|
-
"humor",
|
|
28
|
-
"programmer-humor",
|
|
29
|
-
"git-stats",
|
|
30
|
-
"typescript",
|
|
31
|
-
"nodejs"
|
|
32
|
-
],
|
|
33
|
-
"author": "Wendy199804",
|
|
34
|
-
"license": "ISC",
|
|
35
|
-
"repository": {
|
|
36
|
-
"type": "git",
|
|
37
|
-
"url": "https://github.com/Wendy199804/git-fish-log.git"
|
|
38
|
-
},
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"chalk": "^5.6.2",
|
|
41
|
-
"commander": "^15.0.0"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@types/node": "^22.10.2",
|
|
45
|
-
"tsup": "^8.3.5",
|
|
46
|
-
"typescript": "^5.7.2"
|
|
47
|
-
}
|
|
48
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "git-fish-log",
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "๐ Git ๆธ้ฑผ & ็่ๅๆๅจ CLI โ ็ปไฝ ็ๆไบค่ฎฐๅฝ็ๆๆธ้ฑผๆๆฐๅ้่ฏ",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"fish": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"README-ๅฐๅฆ็.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"dev": "tsup --watch",
|
|
18
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"git",
|
|
22
|
+
"cli",
|
|
23
|
+
"git-history",
|
|
24
|
+
"commit-analysis",
|
|
25
|
+
"developer-tools",
|
|
26
|
+
"productivity",
|
|
27
|
+
"humor",
|
|
28
|
+
"programmer-humor",
|
|
29
|
+
"git-stats",
|
|
30
|
+
"typescript",
|
|
31
|
+
"nodejs"
|
|
32
|
+
],
|
|
33
|
+
"author": "Wendy199804",
|
|
34
|
+
"license": "ISC",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "https://github.com/Wendy199804/git-fish-log.git"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"chalk": "^5.6.2",
|
|
41
|
+
"commander": "^15.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/node": "^22.10.2",
|
|
45
|
+
"tsup": "^8.3.5",
|
|
46
|
+
"typescript": "^5.7.2"
|
|
47
|
+
}
|
|
48
|
+
}
|