-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "@grammyjs/auto-retry",
"description": "grammY API transformer function to retry requests",
"version": "2.0.2",
"author": "KnorpelSenf",
"license": "MIT",
"engines": {
"node": ">=12.20.0 || >=14.13.1"
},
"homepage": "https://grammy.dev/plugins/auto-retry.html",
"repository": {
"type": "git",
"url": "git+https://github.com/grammyjs/auto-retry.git"
},
"bugs": {
"url": "https://github.com/grammyjs/auto-retry/issues"
},
"scripts": {
"build": "deno2node",
"prepare": "npm run build"
},
"dependencies": {
"debug": "^4.3.4"
},
"peerDependencies": {
"grammy": "^1.10.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^12.20.55",
"abort-controller": "^3.0.0",
"deno2node": "^1.11.0"
},
"files": [
"out/"
],
"main": "out/mod.js",
"type": "commonjs",
"exports": {
".": "./out/mod.js"
},
"keywords": [
"retry",
"bot",
"transformer",
"grammy",
"rate",
"flood",
"limit",
"broadcast"
]
}