-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.37 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
{
"name": "gramio",
"type": "module",
"version": "0.2.2",
"description": "Powerful, extensible and really type-safe Telegram Bot API framework",
"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"
}
}
},
"keywords": [
"telegram",
"telegram-bot",
"telegram-bot-api",
"bot",
"framework",
"types",
"client",
"webhook",
"long-polling"
],
"scripts": {
"type": "tsc --noEmit",
"lint": "bunx @biomejs/biome check ./src",
"lint:fix": "bun lint --apply",
"prepublishOnly": "bunx pkgroll",
"jsr": "bun scripts/release-jsr.ts",
"try-deno": "deno publish --unstable-sloppy-imports --dry-run --allow-slow-types --allow-dirty"
},
"author": "kravets",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.1.14",
"@types/debug": "^4.1.12",
"pkgroll": "^2.6.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@gramio/callback-data": "^0.0.3",
"@gramio/contexts": "^0.1.2",
"@gramio/files": "^0.1.2",
"@gramio/format": "^0.1.5",
"@gramio/keyboards": "^1.1.0",
"@gramio/types": "^8.2.0",
"debug": "^4.4.0",
"inspectable": "^3.0.2",
"middleware-io": "^2.8.1"
},
"files": ["dist"]
}