forked from ArnabXD/TGVCBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 883 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 883 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
34
35
36
37
{
"name": "tgvcbot",
"version": "0.1.9",
"description": "Telegram Bot to Play Music in Voice Chat",
"main": "app.js",
"scripts": {
"dev": "nodemon src/app.ts",
"test": "tsc --noEmit",
"build": "tsc",
"start": "node build/app.js",
"prettier": "prettier --write **/*.ts"
},
"author": "ArnabXD <arnabxd@pm.me>",
"license": "ISC",
"devDependencies": {
"@grammyjs/types": "^2.2.6",
"@types/html-escaper": "^3.0.0",
"@types/node": "^15.12.4",
"@types/yt-search": "^2.3.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"axios": "^0.22.0",
"dotenv": "^10.0.0",
"envalid": "^7.2.1",
"gram-tgcalls": "^2.1.8",
"grammy": "^1.3.3",
"html-escaper": "^3.0.3",
"yt-search": "^2.10.1"
},
"engines": {
"node": ">=14.x"
}
}