-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 820 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
{
"name": "whatsapp-audio-transcriptor-bot",
"version": "1.0.0",
"description": "A client and bot capable of transcripting received audios, using whatsapp-web.js",
"main": "index.js",
"repository": "https://github.com/EnzoRobaina/whatsapp-audio-transcriptor-bot",
"author": "EnzoRobaina",
"license": "MIT",
"private": false,
"dependencies": {
"dotenv": "^16.0.3",
"qrcode": "^1.5.1",
"qrcode-terminal": "^0.12.0",
"whatsapp-web.js": "^1.17.1",
"ws": "^8.9.0"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"@types/qrcode": "^1.5.0",
"@types/qrcode-terminal": "^0.12.0",
"@types/ws": "^8.5.3",
"eslint": "^8.25.0",
"gts": "^3.1.1",
"typescript": "^4.8.4"
},
"scripts": {
"build": "tsc",
"start": "tsc && node build/index.js"
}
}