-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "bh-rewards-bot",
"version": "1.0.0",
"description": "farms twitch rewards from brawlhalla dev streams",
"type": "module",
"main": "index.js",
"dependencies": {
"@types/node-fetch": "^2.6.1",
"dotenv": "^16.0.1",
"node-fetch": "^3.2.4",
"puppeteer": "^13.6.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@types/node": "^17.0.25",
"@types/puppeteer": "^5.4.5",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0"
},
"scripts": {
"test": "test",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eichelb4rt/bh-rewards-bot.git"
},
"keywords": [
"brawlhalla",
"twitch",
"bot",
"rewards",
"codes",
"farmer"
],
"author": "eichelb4rt",
"license": "MIT",
"bugs": {
"url": "https://github.com/eichelb4rt/bh-rewards-bot/issues"
},
"homepage": "https://github.com/eichelb4rt/bh-rewards-bot#readme"
}