-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 982 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 982 Bytes
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
{
"name": "github-insights-cli",
"version": "1.0.0",
"description": "CLI tool to analyze GitHub repositories",
"main": "dist/index.js",
"bin": {
"github-insights": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "nodemon --exec ts-node src/index.ts",
"clean": "rm -rf dist",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"github",
"cli",
"analysis",
"typescript",
"node"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"axios": "^1.11.0",
"chalk": "^4.1.2",
"figlet": "^1.5.2",
"fs-extra": "^11.3.1",
"jspdf": "^2.5.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/jspdf": "^1.3.3",
"@types/node": "^24.2.1",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2"
}
}