-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 KB
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
42
43
44
45
46
{
"name": "luma-bot",
"version": "6.1.0",
"description": "Assistente de IA multi-provider para WhatsApp com arquitetura hexagonal, plugin system e personalidades dinâmicas.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"dashboard": "node dashboard/server.js",
"dashboard:dev": "nodemon dashboard/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"whatsapp",
"bot",
"sticker",
"converter"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google/genai": "^1.34.0",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"better-sqlite3": "^12.5.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"node-webpmux": "^3.2.1",
"openai": "^6.34.0",
"pino": "^10.0.0",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.32.6",
"ws": "^8.20.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
"nodemon": "^3.1.10",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18.0.0"
}
}