gimpact 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.
- package/LICENCE +21 -0
- package/README.md +22 -0
- package/dist/index.js +2061 -0
- package/package.json +38 -0
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gimpact",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Visualize Git contribution impact by developer",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"gimpact": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsup",
|
|
14
|
+
"dev": "tsup --watch",
|
|
15
|
+
"start": "node dist/index.js",
|
|
16
|
+
"lint": "biome lint ./src",
|
|
17
|
+
"format": "biome format --write ./src",
|
|
18
|
+
"check": "biome check --write ./src",
|
|
19
|
+
"type-check": "tsc --noEmit",
|
|
20
|
+
"preflight": "bun run check && bun run type-check && bun test && bun run build"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@biomejs/biome": "^2.3.10",
|
|
24
|
+
"@types/bun": "latest",
|
|
25
|
+
"@types/node": "^25.0.3",
|
|
26
|
+
"tsup": "^8.5.1"
|
|
27
|
+
},
|
|
28
|
+
"peerDependencies": {
|
|
29
|
+
"typescript": "^5.9.3"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@clack/prompts": "^0.11.0",
|
|
33
|
+
"chalk": "^5.6.2",
|
|
34
|
+
"cli-table3": "^0.6.5",
|
|
35
|
+
"commander": "^14.0.2",
|
|
36
|
+
"simple-git": "^3.30.0"
|
|
37
|
+
}
|
|
38
|
+
}
|