-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 817 Bytes
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
{
"name": "tgvcbot",
"version": "0.1.5",
"description": "Telegram Bot to Play Music in Voice Chat",
"main": "app.js",
"scripts": {
"dev": "nodemon src/app.ts",
"session": "ts-node src/session.ts",
"test": "tsc --noEmit",
"build": "tsc",
"start": "node build/app.js"
},
"author": "ArnabXD <arnabxd@pm.me>",
"license": "ISC",
"devDependencies": {
"@types/html-escaper": "^3.0.0",
"@types/node": "^15.12.4",
"@types/yt-search": "^2.3.2",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"envalid": "^7.1.1",
"gram-tgcalls": "^1.3.7",
"html-escaper": "^3.0.3",
"telegraf": "^4.4.1",
"yt-search": "^2.10.0",
"ytdl-core-telegram": "^2.0.2"
}
}