forked from Zain-ul-din/whatsapp-ai-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 877 Bytes
/
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
{
"name": "whatsapp-ai-bot",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "vite-node ./src/index.ts",
"start": "vite-node ./src/index.ts",
"format": "prettier --write ./src",
"test": "vite-node ./test/index.test.ts",
"build": "npx yarn"
},
"devDependencies": {
"@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.1.2",
"@types/qrcode-terminal": "^0.12.0",
"chatgpt": "^5.2.2",
"dotenv": "^16.0.3",
"openai": "^3.1.0",
"ora": "3.2.0",
"qrcode-terminal": "^0.12.0",
"stability-client": "^1.8.0",
"whatsapp-web.js": "^1.23.0"
}
}