-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
76 lines (76 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "whatsapp-web-bot",
"main": "src/index.ts",
"description": "WhatsApp Bot",
"version": "0.7.0",
"license": "MIT",
"keywords": [
"whatsapp",
"whatsapp-web",
"whatsapp-bot",
"whatsapp-api",
"whatsapp-multi-session",
"whatsapp-multi-device",
"api",
"bot",
"client",
"node",
"nodejs",
"typescript"
],
"bugs": {
"url": "https://github.com/caioagiani/whatsapp-bot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/caioagiani"
},
"author": {
"name": "Caio Agiani",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/caioagiani"
},
"contributors": [
{
"name": "Caio Agiani",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/caioagiani"
},
{
"name": "Pedro S. Lopez",
"email": "[email protected]",
"url": "https://github.com/pedroslopez"
},
{
"name": "Ranielly Ferreira",
"email": "[email protected]",
"url": "https://github.com/raniellyferreira"
}
],
"scripts": {
"lint": "eslint . --fix --ext .js",
"dev": "tsnd --respawn --transpile-only --ignore-watch node_modules -r dotenv/config src/index.ts"
},
"dependencies": {
"axios": "^0.27.0",
"mobizon-node": "^0.5.0",
"node-base64-image": "^2.0.1",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.17.1"
},
"devDependencies": {
"@types/node": "16.11.49",
"@types/qrcode": "1.4.3",
"@types/qrcode-terminal": "0.12.0",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"dotenv": "16.0.1",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-loader": "4.0.2",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"ts-node-dev": "2.0.0",
"typescript": "4.7.4"
}
}