forked from TychoTheTaco/Twitch-Drops-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 949 Bytes
/
package.json
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
{
"name": "twitch_drops_bot",
"version": "1.0.0",
"description": "A Node.js bot for automatically collecting Twitch drops.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"compile": "tsc --pretty",
"compile:watch": "tsc --watch",
"build": "npm run clean && npm run compile",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"updateGames": "node dist/update_games.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"argparse": "^2.0.1",
"axios": "^0.21.4",
"cli-progress": "^3.9.1",
"dnscache": "^1.0.2",
"prompt": "^1.2.0",
"puppeteer": "^10.4.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"sorted-array-type": "^1.2.1",
"wait-notify": "^1.0.3",
"winston": "^3.3.3"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}