-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 783 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 783 Bytes
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
{
"name": "baileys-rest-bridge",
"version": "1.0.0",
"description": "Thin REST + webhook layer wrapping a Baileys WhatsApp socket",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch & node --watch dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/static": "^9.1.3",
"@hapi/boom": "^10.0.1",
"@whiskeysockets/baileys": "^6.7.18",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"pino": "^9.6.0",
"qrcode-terminal": "^0.12.0"
},
"devDependencies": {
"@types/node": "^22.13.1",
"@types/qrcode-terminal": "^0.12.2",
"pino-pretty": "^13.0.0",
"typescript": "^5.7.3"
}
}