forked from Zaarrg/DropBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.78 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ttvdropbot-v2",
"version": "2.0.0",
"description": "Twitch Drop Bot",
"main": "index.js",
"scripts": {
"start": "node build/index.js --displayless",
"start:dev": "ts-node ./src/index.ts",
"build": "rimraf ./build && tsc",
"package": "rimraf ./package/TTVDropBot && npm run build && pkg -o ./package/TTVDropBot/TTVDropBot --config package.json -t node14-win-x64 ./build/index.js",
"packageforlinux": "rimraf ./package/TTVDropBot-linux && npm run build && pkg -o ./package/TTVDropBot-linux/TTVDropBot-linux-x64 --config package.json -t node14-linux-x64 ./build/index.js",
"start:production": "npm run build && node build/index.js",
"postinstall": "rimraf ./node_modules/puppeteer/.local-chromium"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zaarrg/TTVDropBot.git"
},
"engines": {
"node": "16.x"
},
"bin": {
"ttvdropbot": "./src/index.ts"
},
"author": "Zarg",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zaarrg/TTVDropBot/issues"
},
"homepage": "https://github.com/Zaarrg/TTVDropBot#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"@types/yargs": "^17.0.10",
"pkg": "^5.5.2",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@zaarrg/twitch-gql-ttvdropbot": "github:zaarrg/twitch-gql-ttvdropbot",
"axios": "^0.26.1",
"chalk": "^4.1.2",
"chrome-paths": "^1.0.1",
"express": "^4.18.1",
"inquirer": "^8.2.2",
"js-base64": "^3.7.2",
"puppeteer-core": "^17.1.3",
"retry-axios": "^2.6.0",
"wait-console-input": "^0.1.7",
"winston": "^3.7.2",
"yargs": "^17.4.1"
},
"pkg": {
"assets": [
"node_modules/puppeteer-core/**/*.*",
"node_modules/@zaarrg/**/*.*"
]
}
}