-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "whatsapp-chatgpt",
"version": "1.0.2",
"description": "This project is a WhatsApp bot that uses OpenAI's ChatGPT to respond to user inputs. It also includes a cron that you can setup to allow ChatGPT to generate messages and send to recipients at periodic intervals.",
"engines": {
"node": ">= 18.12 <19"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.13",
"@types/qrcode-terminal": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"pm2": "^5.3.1",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsutils": "^3.21.0",
"typescript": "^5.3.3"
},
"scripts": {
"dev": "npx nodemon src/main.ts",
"start": "npm run build && node build/src/main.js",
"start:prod": "pm2 start ecosystem.config.json --no-daemon",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "Emmanuel Yeboah <[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^16.4.1",
"openai": "^4.26.0",
"qrcode-terminal": "^0.12.0",
"tslib": "^2.6.2",
"whatsapp-web.js": "^1.23.0"
},
"volta": {
"node": "18.12.1"
},
"keywords": [
"openai",
"chatgpt",
"whatsapp bot",
"whatsapp",
"gpt",
"gpt3",
"gpt4",
"chatbot",
"chat",
"machine learning",
"conversation",
"conversational ai",
"ai",
"ml",
"bot",
"chatgpt",
"chatgpt whatsapp bot"
]
}