-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 878 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 878 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
{
"name": "gitjarvis",
"version": "1.0.0",
"description": "Weekly top trending GitHub projects — auto-cloned, built, and deployed for the world to use.",
"type": "module",
"main": "gitjarvis.js",
"bin": {
"gitjarvis": "./gitjarvis.js"
},
"scripts": {
"start": "node gitjarvis.js",
"fetch": "node gitjarvis.js fetch",
"install-projects": "node gitjarvis.js install",
"deploy": "node gitjarvis.js deploy",
"dashboard": "node dashboard/server.js",
"weekly": "node gitjarvis.js weekly"
},
"dependencies": {
"axios": "^1.7.0",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"commander": "^12.0.0",
"dotenv": "^16.4.0",
"express": "^4.19.0",
"node-ssh": "^13.2.1",
"ora": "^8.0.0",
"p-limit": "^6.1.0",
"simple-git": "^3.27.0"
},
"engines": {
"node": ">=18.0.0"
},
"license": "AGPL-3.0"
}