-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "@gramio/keyboards",
"version": "1.1.0",
"description": "Framework-agnostic Telegram bot keyboard builder with many cool features!",
"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",
"homepage": "https://github.com/gramiojs/keyboards",
"readme": "https://gramio.dev/keyboards/overview",
"scripts": {
"prepublishOnly": "bun test && bunx pkgroll"
},
"keywords": [
"gramio",
"telegram",
"telegram-keyboard",
"keyboard",
"inline-keyboard",
"keyboard-builder",
"telegram-bot-api",
"grammy",
"telegraf",
"node-telegram-bot-api",
"puregram",
"inline-query"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.1.14",
"pkgroll": "^2.6.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@gramio/types": "^8.2.0"
},
"license": "MIT",
"files": ["dist"]
}