-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "telegram-channel-downloader",
"version": "1.0.0",
"description": "scrap and download all media and message from telegram channel, group or a user",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js"
},
"nodemonConfig": {
"ignore": [
"config.json",
"./export/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhishekjnvk/telegram-channel-downloader.git"
},
"keywords": [
"telegram",
"node.js",
"scrapper"
],
"author": "abhishekjnvk",
"license": "ISC",
"bugs": {
"url": "https://github.com/abhishekjnvk/telegram-channel-downloader/issues"
},
"homepage": "https://github.com/abhishekjnvk/telegram-channel-downloader#readme",
"dependencies": {
"ejs": "^3.1.10",
"glob": "^11.0.0",
"inquirer": "^8.2.6",
"mime-db": "^1.52.0",
"telegram": "^2.21.2"
}
}