-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.72 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
55
56
57
{
"name": "halbot",
"description": "Just another AI powered Telegram bot, which is simple design, easy to use, extendable and fun.",
"version": "1995.1.59",
"private": false,
"homepage": "https://github.com/Leask/halbot",
"type": "module",
"engines": {
"node": ">=20.x"
},
"main": "index.mjs",
"bin": {
"halbot": "bin/halbot.mjs"
},
"scripts": {
"start": "node bin/halbot.mjs",
"debug": "node --inspect --trace-warnings debug.mjs",
"test": "node --inspect --trace-warnings test.mjs",
"updep": "npx npm-check-updates -u && npm install",
"gitsync": "( git commit -am \"Released @ `date`\" || true ) && git pull && git push",
"build": "npm run updep && ( git commit -am 'update dependencies' || true )",
"pub": "npm run build && npm run gitsync",
"beta": "npm publish --tag beta"
},
"author": "Leask Wong <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Leask/halbot.git"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.1.2",
"@google-cloud/discoveryengine": "^2.5.3",
"@google/genai": "^1.44.0",
"@mozilla/readability": "^0.6.0",
"@resvg/resvg-js": "^2.6.2",
"fluent-ffmpeg": "^2.1.3",
"google-gax": "^5.0.6",
"ioredis": "^5.10.0",
"jsdom": "^28.1.0",
"lorem-ipsum": "^2.0.8",
"mime": "^4.1.0",
"mysql2": "^3.19.0",
"office-text-extractor": "^4.0.0",
"openai": "^6.27.0",
"parse-numeric-range": "^1.3.0",
"pg": "^8.20.0",
"pgvector": "^0.2.1",
"satori": "^0.25.0",
"telegraf": "^4.16.3",
"tellegram": "^1.1.18",
"tesseract.js": "^7.0.0",
"webjam": "^1995.3.11",
"youtube-transcript": "^1.2.1"
}
}