-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 901 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 901 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
{
"name": "dustbin_bot",
"version": "1.0.0",
"description": "A Telegram Bot Based On Dustbin API.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"dev": "ts-node index.ts",
"start": "node build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DustbinServer/DustbinBot.git"
},
"keywords": [
"typescript",
"dustbin",
"telegram"
],
"author": "Akash Pattnaik <akashpattnaik.github@gmail.com>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/DustbinServer/DustbinBot/issues"
},
"homepage": "https://github.com/DustbinServer/DustbinBot#readme",
"dependencies": {
"axios": "^0.25.0",
"telegraf": "^4.7.0"
},
"devDependencies": {
"@types/node": "^17.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}