-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "yagpt-tg-bot-starter",
"version": "1.0.0",
"description": "Yandex GPT API telegram bot starter",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/theStrangeAdventurer/yandex-gpt-nodejs/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/theStrangeAdventurer/yandex-gpt-nodejs"
},
"keywords": [
"yandexGPT",
"yandexGptAPI",
"telegramBot",
"node",
"nodejs",
"nodejsTelegramBot",
"telegramWebApp",
"voiceGPTAssistant"
],
"engines": {
"node": ">=20.11"
},
"scripts": {
"webapp:deploy": "cd react-app && npm run build && cd .. && aws s3 cp --endpoint-url=https://storage.yandexcloud.net --recursive ./react-app/dist s3://$S3_BUCKET/",
"bot:dev": "NODE_ENV=development node --watch src/index.js",
"bot:start": "NODE_ENV=production node src/index.js",
"webapp:dev": "cd react-app && npm run dev"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/websocket": "^10.0.1",
"axios": "^1.6.8",
"form-data": "^4.0.0",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"fastify-https-redirect": "^1.0.4",
"fluent-ffmpeg": "^2.1.2",
"telegraf": "^4.16.3",
"ws": "^8.16.0"
},
"devDependencies": {
"vite-plugin-mkcert": "^1.17.5"
}
}