-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 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
72
73
74
75
76
77
78
{
"name": "telegram-gpt-bot",
"version": "2.0.0",
"description": "",
"main": "src/hennos.js",
"scripts": {
"clean": "rimraf ./build",
"build": "npm-run-all clean prisma:generate lint tsc:emit",
"validate": "npm-run-all lint tsc:noemit",
"tsc:emit": "tsc",
"tsc:noemit": "tsc --noEmit",
"lint": "eslint --fix .",
"start": "npm run migrate:deploy && node build/hennos.js",
"migrate:deploy": "prisma migrate deploy",
"migrate:reset": "prisma migrate reset",
"migrate:new": "prisma migrate dev --create-only",
"prisma:generate": "prisma generate",
"qdrant": "docker run -p 6333:6333 docker.io/qdrant/qdrant",
"test": "jest",
"dev": "npm-run-all build start"
},
"author": "Mark Repka",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.30.0",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.18.0",
"@google/generative-ai": "^0.21.0",
"@koa/router": "^12.0.1",
"@prisma/client": "^5.20.0",
"@qdrant/js-client-rest": "^1.11.0",
"axios": "^1.7.7",
"discord.js": "^14.16.2",
"dotenv": "^16.4.5",
"fluent-ffmpeg": "^2.1.3",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"llamaindex": "^0.4.6",
"mime-types": "^2.1.35",
"natural": "^8.0.1",
"node-cron": "^3.0.3",
"node-ical": "^0.18.0",
"node-telegram-bot-api": "^0.66.0",
"nodejs-whisper": "^0.1.18",
"ollama": "^0.5.11",
"openai": "^4.76.1",
"puppeteer": "^23.6.0",
"sqlite3": "^5.1.7",
"tiktoken": "^1.0.17",
"tmi.js": "^1.8.5",
"wav": "^1.0.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.27",
"@types/jest": "^29.5.14",
"@types/koa": "^2.15.0",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/node-telegram-bot-api": "^0.64.7",
"@types/tmi.js": "^1.8.6",
"@types/wav": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prisma": "^5.20.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}