This repository has been archived by the owner on Aug 21, 2022. It is now read-only.
forked from telegraf/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "telegraf",
"version": "4.4.2",
"description": "Modern Telegram Bot Framework",
"license": "MIT",
"author": "Vitaly Domnikov <[email protected]>",
"homepage": "https://telegraf.js.org",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/telegraf/telegraf.git"
},
"bugs": {
"url": "https://github.com/telegraf/telegraf/issues"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js"
},
"files": [
"bin/*",
"src/**/*.ts",
"lib/**/*.js",
"typings/**/*.d.ts",
"typings/**/*.d.ts.map"
],
"bin": {
"telegraf": "bin/telegraf"
},
"scripts": {
"prepare": "npm run --silent build",
"build": "tsc --build docs/examples",
"build:docs": "typedoc src/index.ts",
"pretest": "npm run build",
"test": "ava test/*",
"lint": "eslint .",
"checks": "npm test && npm run lint",
"refresh": "npm run clean && npm ci",
"clean": "git clean -fX .eslintcache docs/build/ lib/ typings/"
},
"type": "commonjs",
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
"types": "./typings/index.d.ts",
"dependencies": {
"abort-controller": "^3.0.0",
"debug": "^4.3.1",
"minimist": "^1.2.5",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.1",
"p-timeout": "^4.1.0",
"safe-compare": "^1.1.4",
"sandwich-stream": "^2.0.2",
"typegram": "^3.4.2"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.14.20",
"@types/node-fetch": "^2.5.7",
"@types/safe-compare": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"ava": "^3.15.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"prettier": "2.2.1",
"typedoc": "^0.22.1",
"typescript": "~4.4.2"
},
"keywords": [
"telegraf",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}