-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "@grammyjs/runner",
"description": "Scale grammY bots that use long polling",
"version": "2.0.3",
"author": "KnorpelSenf",
"license": "MIT",
"engines": {
"node": ">=12.20.0 || >=14.13.1"
},
"homepage": "https://grammy.dev/plugins/runner.html",
"repository": {
"type": "git",
"url": "https://github.com/grammyjs/runner"
},
"bugs": {
"url": "https://github.com/grammyjs/runner/issues"
},
"scripts": {
"prepare": "npm run build",
"build": "deno2node tsconfig.json"
},
"dependencies": {
"abort-controller": "^3.0.0"
},
"peerDependencies": {
"grammy": "^1.13.1"
},
"devDependencies": {
"@types/node": "^20.16.9",
"deno2node": "^1.7.1"
},
"files": [
"out/"
],
"main": "./out/mod.js",
"type": "commonjs",
"exports": {
".": "./out/mod.js"
},
"keywords": [
"grammy",
"telegram",
"bot",
"api",
"long",
"polling"
]
}