-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.09 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "repochart",
"version": "0.0.8",
"description": "GitHub repository analytics · in your terminal",
"license": "MIT",
"repository": "arre-ankit/repochart",
"author": {
"name": "Ankit Kumar",
"email": "arre.ankit@gmail.com",
"url": "https://x.com/arre_ankit"
},
"keywords": [
"github",
"cli",
"analytics",
"stats",
"terminal",
"charts",
"stars",
"commits",
"contributors",
"languages",
"repository"
],
"files": [
"dist"
],
"bin": {
"repochart": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@napi-rs/canvas": "^0.1.57",
"clear-any-console": "^1.16.3",
"commander": "^12.1.0",
"figlet": "^1.8.0",
"ora": "^8.1.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^22.0.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"@napi-rs/canvas",
"esbuild"
]
}
}