gramio 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-
[](https://core.telegram.org/bots/api)
|
|
6
6
|
[](https://www.npmjs.org/package/gramio)
|
|
7
7
|
[](https://jsr.io/@gramio/core)
|
|
8
8
|
[](https://jsr.io/@gramio/core)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
TypeScript/JavaScript Telegram Bot API Framework for create your bots with convenience!
|
|
13
13
|
|
|
14
|
-
✨ **Extensible** - Our plugin and hook system is awesome
|
|
14
|
+
✨ **Extensible** - Our [plugin](https://gramio.dev/plugins/) and [hook](https://gramio.dev/hooks/overview) system is awesome
|
|
15
15
|
|
|
16
16
|
🛡️ **Type-safe** - Written in TypeScript with love ❤️
|
|
17
17
|
|
|
@@ -24,7 +24,7 @@ TypeScript/JavaScript Telegram Bot API Framework for create your bots with conve
|
|
|
24
24
|
To create your new bot, you just need to write it to the console:
|
|
25
25
|
|
|
26
26
|
```bash [npm]
|
|
27
|
-
npm create gramio ./bot
|
|
27
|
+
npm create gramio@latest ./bot
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
and GramIO customize your project the way you want it!
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gramio",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"description": "Powerful, extensible and really type-safe Telegram Bot API framework",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -41,21 +41,24 @@
|
|
|
41
41
|
"license": "MIT",
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@biomejs/biome": "1.9.4",
|
|
44
|
-
"@types/bun": "^1.1.
|
|
44
|
+
"@types/bun": "^1.1.14",
|
|
45
45
|
"@types/debug": "^4.1.12",
|
|
46
46
|
"pkgroll": "^2.5.1",
|
|
47
|
-
"typescript": "^5.
|
|
47
|
+
"typescript": "^5.7.2"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@gramio/callback-data": "^0.0.3",
|
|
51
51
|
"@gramio/contexts": "^0.0.23",
|
|
52
52
|
"@gramio/files": "^0.1.0",
|
|
53
|
-
"@gramio/format": "^0.1.
|
|
53
|
+
"@gramio/format": "^0.1.5",
|
|
54
54
|
"@gramio/keyboards": "^1.0.0",
|
|
55
|
-
"@gramio/types": "^
|
|
55
|
+
"@gramio/types": "^8.0.6",
|
|
56
56
|
"debug": "^4.3.7",
|
|
57
57
|
"inspectable": "^3.0.2",
|
|
58
58
|
"middleware-io": "^2.8.1"
|
|
59
59
|
},
|
|
60
|
+
"overrides": {
|
|
61
|
+
"@gramio/types": "^8.0.6"
|
|
62
|
+
},
|
|
60
63
|
"files": ["dist"]
|
|
61
64
|
}
|