-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 878 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
{
"name": "whatsapp-bot-api",
"version": "1.0.0",
"description": "Whatsapp bot api",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "nodemon -q src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MohitPatel1/whatsapp-bot-api.git"
},
"keywords": [
"whatsapp"
],
"author": "Mohit",
"license": "ISC",
"bugs": {
"url": "https://github.com/MohitPatel1/whatsapp-bot-api/issues"
},
"homepage": "https://github.com/MohitPatel1/whatsapp-bot-api#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^18.15.11",
"nodemon": "^2.0.22",
"typescript": "^5.4.5"
},
"dependencies": {
"@bot-wa/bot-wa-baileys": "^1.1.3",
"dotenv": "^16.4.5",
"express": "^4.19.2"
}
}