返回 JoyAI-Echo
package.json
1 {
2 "name": "nanobot-whatsapp-bridge",
3 "version": "0.1.0",
4 "description": "WhatsApp bridge for nanobot using Baileys",
5 "type": "module",
6 "main": "dist/index.js",
7 "scripts": {
8 "build": "tsc",
9 "start": "node dist/index.js",
10 "dev": "tsc && node dist/index.js"
11 },
12 "dependencies": {
13 "@whiskeysockets/baileys": "7.0.0-rc.9",
14 "ws": "^8.17.1",
15 "qrcode-terminal": "^0.12.0",
16 "pino": "^9.0.0"
17 },
18 "devDependencies": {
19 "@types/node": "^20.14.0",
20 "@types/ws": "^8.5.10",
21 "typescript": "^5.4.0"
22 },
23 "engines": {
24 "node": ">=20.0.0"
25 }
26 }
27
27 lines JSON