-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "whatsapp-ai-bot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "vite-node ./src/index.ts",
"start": "npx yarn && npx yarn dev",
"format": "prettier --write ./src",
"test": "vite-node ./test/index.test.ts",
"test:baileys": "vite-node ./baileys/index.ts",
"build": "npx yarn"
},
"devDependencies": {
"@types/invariant": "^2.2.37",
"@types/node": "^18.14.0",
"@types/node-fetch": "^2.6.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vite-node": "^0.28.5"
},
"dependencies": {
"@google/generative-ai": "^0.17.1",
"@types/qrcode-terminal": "^0.12.0",
"@whiskeysockets/baileys": "^6.7.7",
"@whiskeysockets/libsignal-node": "github:WhiskeySockets/libsignal-node",
"dotenv": "^16.0.3",
"invariant": "^2.2.4",
"mongo-baileys": "^1.0.1",
"mongodb": "^6.8.0",
"openai": "^4.56.0",
"ora": "3.2.0",
"qrcode-terminal": "^0.12.0",
"stability-client": "^1.8.0",
"whatsapp-ai-bot": "file:"
}
}