-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.86 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
{
"name": "chat-gtp-telegram-bot",
"version": "1.0.0",
"description": "Chat GPT - Telegram bot + voice command",
"main": "./src",
"repository": {
"type": "git",
"url": "https://github.com/watscho/chat-gpt-telegram-bot"
},
"bugs": "https://github.com/watscho/chat-gpt-telegram-bot/issues",
"keywords": [
"telegram",
"bot",
"chat",
"gpt",
"chatgpt",
"voicebot",
"nodejs",
"openai"
],
"scripts": {
"start": "npm run rm:public && cross-env NODE_ENV=production ts-node --files -r tsconfig-paths/register ./src",
"watch": "npm run rm:public && cross-env ts-node-dev --files --respawn --inspect -r tsconfig-paths/register ./src",
"build": "npm run rm:public && cross-env NODE_ENV=production tsc && tsc-alias && npm run copy:files",
"rm:public": "rm -rf ./public",
"copy:files": "cp .env ./public/.env && cp -R ./src/templates ./public",
"lint": "eslint --debug ./src",
"lint:write": "eslint --debug ./src --fix",
"prettier": "prettier \"**/*.+(js|jsx|json|css|md)\"",
"prettier:write": "prettier --write \"**/*.+(js|jsx|json|css|md)\""
},
"author": "Watscho Aiwasov",
"license": "MIT",
"devDependencies": {
"@types/fluent-ffmpeg": "2.1.21",
"@types/node": "18.8.3",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"cross-env": "7.0.3",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-unicorn": "44.0.2",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"tsc-alias": "1.7.0",
"tsconfig-paths": "4.1.0",
"typescript": "4.8.4"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.1.0",
"dotenv": "16.0.3",
"fluent-ffmpeg": "2.1.2",
"openai": "3.2.1",
"telegraf": "4.12.2"
}
}