-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 950 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
44
45
46
{
"name": "@gramio/auto-retry",
"version": "0.0.3",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"type": "module",
"devDependencies": {
"@types/bun": "^1.1.6",
"gramio": "^0.0.46",
"pkgroll": "2.4.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"gramio": ">=0.0.39 <1.0.0"
},
"description": "Auto-retry plugin for GramIO",
"files": ["dist"],
"homepage": "https://github.com/gramiojs/auto-retry",
"keywords": [
"gramio",
"gramio-plugin",
"auto-retry",
"api",
"telegram",
"telegram-bot",
"telegram-bot-api"
],
"readme": "https://gramio.dev/plugins/official/auto-retry",
"scripts": {
"prepublishOnly": "bunx pkgroll",
"jsr": "bun scripts/release-jsr.ts"
}
}