-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "chatgpt-telegram-node-bot",
"version": "1.0.0",
"description": "",
"type": "module",
"author": "DaWangRaoMing<dawangraoming@hotmail.com>",
"main": "index.js",
"scripts": {
"dev": "node --experimental-specifier-resolution=node --loader ts-node/esm src/main.ts --project tsconfig.json",
"build": "tsc",
"start": "node --experimental-specifier-resolution=node --loader ts-node/esm dist/main.js",
"start:pm2": "pm2 start npm --name chatgpt-telegram-bot -- start",
"run": "npm run build && npm run start",
"run:pm2": "npm run build && npm run start:pm2"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.11",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"chatgpt": "^2.0.5",
"dotenv": "^16.0.3",
"telegraf": "^4.11.2",
"zod": "^3.19.1"
},
"keywords": [
"openai",
"chatgpt",
"gpt",
"gpt3",
"gpt4",
"chatbot",
"chat",
"machine learning",
"conversation",
"conversational ai",
"ai",
"ml",
"bot",
"telegram"
]
}