-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1014 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
39
40
41
42
43
{
"name": "telegram-bot-mgmt-cli",
"version": "0.1.2",
"description": "Manage/configure your Telegram bot, execute some often-used commands",
"main": "src/index.js",
"scripts": {
"test": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danships/telegram-bot-mgmt-cli.git"
},
"files": [
"src",
"bin",
"README.MD"
],
"keywords": [
"telegram",
"bot",
"cli",
"command"
],
"prettier": "eslint-config-daangemist/.prettierrc",
"author": "debuggingdan (danships)",
"license": "MIT",
"bugs": {
"url": "https://github.com/danships/telegram-bot-mgmt-cli/issues"
},
"bin": {
"telegram-bot-mgmt-cli": "./bin/telegram-bot-mgmt-cli"
},
"homepage": "https://github.com/danships/telegram-bot-mgmt-cli#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"node-telegram-bot-api": "^0.66.0"
},
"devDependencies": {
"eslint-config-daangemist": "^1.2.2",
"prettier": "^3.3.3"
}
}