@adriangalilea/utils 0.5.0 → 0.7.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adriangalilea/utils",
3
- "version": "0.5.0",
4
- "description": "TypeScript utilities - logger, currency, formatter, and more",
3
+ "version": "0.7.0",
4
+ "description": "TypeScript utilities - logger, currency, formatter, GramIO bot plugins, and more",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "type": "module",
@@ -27,6 +27,26 @@
27
27
  "./currency": {
28
28
  "types": "./dist/universal/currency/index.d.ts",
29
29
  "default": "./dist/universal/currency/index.js"
30
+ },
31
+ "./bot": {
32
+ "types": "./dist/bot/index.d.ts",
33
+ "default": "./dist/bot/index.js"
34
+ },
35
+ "./bot/access-control": {
36
+ "types": "./dist/bot/access-control.d.ts",
37
+ "default": "./dist/bot/access-control.js"
38
+ },
39
+ "./bot/coalesce": {
40
+ "types": "./dist/bot/coalesce.d.ts",
41
+ "default": "./dist/bot/coalesce.js"
42
+ },
43
+ "./bot/kit": {
44
+ "types": "./dist/bot/kit.d.ts",
45
+ "default": "./dist/bot/kit.js"
46
+ },
47
+ "./bot/llm-stream": {
48
+ "types": "./dist/bot/llm-stream.d.ts",
49
+ "default": "./dist/bot/llm-stream.js"
30
50
  }
31
51
  },
32
52
  "files": [
@@ -54,13 +74,42 @@
54
74
  "author": "Adrian Galilea <adriangalilea@gmail.com>",
55
75
  "license": "MIT",
56
76
  "devDependencies": {
77
+ "@gramio/format": "^0.8.0",
78
+ "@gramio/session": "^0.2.0",
79
+ "@gramio/storage": "^2.0.1",
57
80
  "@types/node": "^24.3.0",
81
+ "gramio": "^0.10.0",
82
+ "marked": "^15.0.11",
58
83
  "tsx": "^4.20.4",
59
84
  "typescript": "^5.9.2"
60
85
  },
61
86
  "dependencies": {
62
87
  "chalk": "^5.6.0"
63
88
  },
89
+ "peerDependencies": {
90
+ "@gramio/format": ">=0.8.0",
91
+ "@gramio/session": ">=0.2.0",
92
+ "@gramio/storage": ">=2.0.0",
93
+ "gramio": ">=0.10.0",
94
+ "marked": ">=12"
95
+ },
96
+ "peerDependenciesMeta": {
97
+ "@gramio/format": {
98
+ "optional": true
99
+ },
100
+ "@gramio/session": {
101
+ "optional": true
102
+ },
103
+ "@gramio/storage": {
104
+ "optional": true
105
+ },
106
+ "gramio": {
107
+ "optional": true
108
+ },
109
+ "marked": {
110
+ "optional": true
111
+ }
112
+ },
64
113
  "publishConfig": {
65
114
  "access": "public",
66
115
  "registry": "https://registry.npmjs.org/"