forked from andresayac/baileys-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "baileys-api",
"description": "Simple RESTful WhatsApp API",
"private": true,
"main": "app.js",
"type": "module",
"scripts": {
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ookamiiixd/baileys-api.git"
},
"author": "ookamiiixd <[email protected]>",
"bugs": {
"url": "https://github.com/ookamiiixd/baileys-api/issues"
},
"homepage": "https://github.com/ookamiiixd/baileys-api#readme",
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"@whiskeysockets/baileys": "^6.7.9",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"node-cache": "^5.1.2",
"node-cleanup": "^2.1.2",
"pino": "^9.5.0",
"qrcode": "^1.5.4"
},
"devDependencies": {
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.46.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
}
}