-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "url-shortener-bot",
"version": "1.0.0",
"description": "A URL Shortener bot for telegram, written in node js. It gives tiny.one, cutt.ly, 1pt.co, is.gd, da.gd, goolnk.com, chilp.it, clck.ru shorturl at once without any command. Just give it a URL and it will shorten it automatically.",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"dev": "nodemon bot.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bipuldey19/URL-Shortener-Bot-for-Telegram.git"
},
"keywords": [
"URL-Shortener",
"Shortener",
"telegrambot",
"url-shortener-bot-for-telegram"
],
"author": "Bipul Dey",
"license": "ISC",
"bugs": {
"url": "https://github.com/bipuldey19/URL-Shortener-Bot-for-Telegram/issues"
},
"homepage": "https://github.com/bipuldey19/URL-Shortener-Bot-for-Telegram#readme",
"dependencies": {
"axios": "^0.26.1",
"deshortify": "^1.0.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"telegraf": "^4.7.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}