-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@fort-protocol/telebot",
"version": "0.2.0",
"description": "A program for telegram bot.",
"main": "dist/index.js",
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/FORT-Protocol/telebot.git"
},
"keywords": [
"telegram",
"bot"
],
"author": "FORT Protocol",
"license": "MIT",
"bugs": {
"url": "https://github.com/FORT-Protocol/telebot/issues"
},
"homepage": "https://github.com/FORT-Protocol/telebot#readme",
"bin": {
"telebot": "dist/index.js"
},
"dependencies": {
"axios-https-proxy-fix": "^0.17.1",
"chalk": "^5.0.1",
"commander": "^9.1.0",
"inquirer": "^8.2.2",
"limiter": "2.0.1"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"prettier": "2.6.1",
"typescript": "^4.6.3"
}
}