-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.67 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
47
48
49
50
51
52
53
54
{
"name": "node.js-chatgpt-bot",
"version": "2.0.1",
"description": "СhatGPT bot for telegram written on node.js",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rimraf build/",
"build": "npm run clean && tsc",
"start": "cross-env NODE_ENV=production node build/index.js",
"watch-ts": "tsc -w",
"serve-debug": "cross-env NODE_ENV=development nodemon --inspect build/index.js",
"dev": "concurrently -k -p \"[{name}]\" -n \"watch-ts,serve-debug\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BLazzeD21/Node.js-ChatGPT-Bot.git"
},
"keywords": [],
"author": "",
"license": "MIT License",
"bugs": {
"url": "https://github.com/BLazzeD21/Node.js-ChatGPT-Bot/issues"
},
"homepage": "https://github.com/BLazzeD21/Node.js-ChatGPT-Bot#readme",
"devDependencies": {
"@types/config": "^3.3.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@grammyjs/ratelimiter": "^1.2.0",
"@telegraf/session": "^2.0.0-beta.6",
"axios": "^1.6.0",
"config": "^3.3.9",
"copyfiles": "^2.4.1",
"fluent-ffmpeg": "^2.1.2",
"https-proxy-agent": "^7.0.2",
"openai": "^4.20.0",
"redis": "^4.6.10",
"request": "^2.88.2",
"rimraf": "^5.0.5",
"telegraf": "^4.12.2",
"telegraf-ratelimit": "^2.0.0"
}
}