forked from vasani-arpit/WBOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 890 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
36
37
38
39
40
41
42
43
44
{
"name": "wbot",
"version": "1.0.0",
"description": "A simple whatsapp reply bot using puppeteer.",
"main": "src/index.js",
"scripts": {
"app": "node src/index.js",
"pack": "pkg ."
},
"bin": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vasani-arpit/WBOT"
},
"keywords": [
"whatsapp",
"bot",
"automation"
],
"private": true,
"pkg": {
"scripts": "src/**/*.js",
"targets": [
"win",
"linux",
"macos"
]
},
"author": "Arpit Vasani",
"license": "ISC",
"bugs": {
"url": "https://github.com/vasani-arpit/WBOT/issues"
},
"homepage": "https://github.com/vasani-arpit/WBOT#readme",
"dependencies": {
"cli-progress": "^2.1.1",
"ora": "^3.0.0",
"puppeteer": "^1.11.0",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"pkg": "^4.3.5"
}
}