@yvhitxcel/opencode-remote 0.15.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.
Files changed (102) hide show
  1. package/README.md +82 -0
  2. package/bin/opencode-remote.js +70 -0
  3. package/bin/opencode-weixin.js +10 -0
  4. package/dist/AGENTS.md +20 -0
  5. package/dist/MEMORY.md +21 -0
  6. package/dist/bot-runner.js +180 -0
  7. package/dist/cli.js +256 -0
  8. package/dist/core/approval.js +95 -0
  9. package/dist/core/auth.js +119 -0
  10. package/dist/core/config.js +61 -0
  11. package/dist/core/notifications.js +134 -0
  12. package/dist/core/qiniu.js +267 -0
  13. package/dist/core/registry.js +86 -0
  14. package/dist/core/router.js +344 -0
  15. package/dist/core/session.js +403 -0
  16. package/dist/core/setup.js +418 -0
  17. package/dist/core/types.js +16 -0
  18. package/dist/feishu/adapter.js +72 -0
  19. package/dist/feishu/bot.js +168 -0
  20. package/dist/feishu/commands.js +601 -0
  21. package/dist/feishu/handler.js +380 -0
  22. package/dist/index.js +60 -0
  23. package/dist/opencode/client.js +823 -0
  24. package/dist/package-lock.json +762 -0
  25. package/dist/patch_spawn.js +28 -0
  26. package/dist/plugins/agents/acp/acp-adapter.js +42 -0
  27. package/dist/plugins/agents/claude-code/index.js +69 -0
  28. package/dist/plugins/agents/codex/index.js +44 -0
  29. package/dist/plugins/agents/copilot/index.js +44 -0
  30. package/dist/plugins/agents/opencode/index.js +66 -0
  31. package/dist/telegram/bot.js +288 -0
  32. package/dist/utils/message-split.js +38 -0
  33. package/dist/web/code-viewer.js +266 -0
  34. package/dist/weixin/adapter.js +135 -0
  35. package/dist/weixin/api.js +179 -0
  36. package/dist/weixin/bot.js +183 -0
  37. package/dist/weixin/commands.js +758 -0
  38. package/dist/weixin/handler.js +577 -0
  39. package/dist/weixin/node_modules/encodeurl/LICENSE +22 -0
  40. package/dist/weixin/node_modules/encodeurl/README.md +109 -0
  41. package/dist/weixin/node_modules/encodeurl/index.js +60 -0
  42. package/dist/weixin/node_modules/encodeurl/package.json +40 -0
  43. package/dist/weixin/node_modules/qiniu/.claude/settings.local.json +7 -0
  44. package/dist/weixin/node_modules/qiniu/.github/workflows/ci-test.yml +36 -0
  45. package/dist/weixin/node_modules/qiniu/.github/workflows/npm-publish.yml +20 -0
  46. package/dist/weixin/node_modules/qiniu/.github/workflows/version-check.yml +19 -0
  47. package/dist/weixin/node_modules/qiniu/.idea/MarsCodeWorkspaceAppSettings.xml +7 -0
  48. package/dist/weixin/node_modules/qiniu/.idea/codeStyles/Project.xml +44 -0
  49. package/dist/weixin/node_modules/qiniu/.idea/codeStyles/codeStyleConfig.xml +5 -0
  50. package/dist/weixin/node_modules/qiniu/.idea/git_toolbox_blame.xml +6 -0
  51. package/dist/weixin/node_modules/qiniu/.idea/inspectionProfiles/Project_Default.xml +6 -0
  52. package/dist/weixin/node_modules/qiniu/.idea/jsLibraryMappings.xml +6 -0
  53. package/dist/weixin/node_modules/qiniu/.idea/modules.xml +8 -0
  54. package/dist/weixin/node_modules/qiniu/.idea/nodejs-sdk.iml +12 -0
  55. package/dist/weixin/node_modules/qiniu/.idea/vcs.xml +6 -0
  56. package/dist/weixin/node_modules/qiniu/CHANGELOG.md +292 -0
  57. package/dist/weixin/node_modules/qiniu/README.md +56 -0
  58. package/dist/weixin/node_modules/qiniu/StorageResponseInterface.d.ts +239 -0
  59. package/dist/weixin/node_modules/qiniu/codecov.yml +28 -0
  60. package/dist/weixin/node_modules/qiniu/index.d.ts +1995 -0
  61. package/dist/weixin/node_modules/qiniu/index.js +32 -0
  62. package/dist/weixin/node_modules/qiniu/node_modules/encodeurl/HISTORY.md +14 -0
  63. package/dist/weixin/node_modules/qiniu/node_modules/encodeurl/LICENSE +22 -0
  64. package/dist/weixin/node_modules/qiniu/node_modules/encodeurl/README.md +128 -0
  65. package/dist/weixin/node_modules/qiniu/node_modules/encodeurl/index.js +60 -0
  66. package/dist/weixin/node_modules/qiniu/node_modules/encodeurl/package.json +40 -0
  67. package/dist/weixin/node_modules/qiniu/package.json +80 -0
  68. package/dist/weixin/node_modules/qiniu/qiniu/auth/digest.js +13 -0
  69. package/dist/weixin/node_modules/qiniu/qiniu/cdn.js +149 -0
  70. package/dist/weixin/node_modules/qiniu/qiniu/conf.js +254 -0
  71. package/dist/weixin/node_modules/qiniu/qiniu/fop.js +112 -0
  72. package/dist/weixin/node_modules/qiniu/qiniu/httpc/client.js +253 -0
  73. package/dist/weixin/node_modules/qiniu/qiniu/httpc/endpoint.js +66 -0
  74. package/dist/weixin/node_modules/qiniu/qiniu/httpc/endpointsProvider.js +27 -0
  75. package/dist/weixin/node_modules/qiniu/qiniu/httpc/endpointsRetryPolicy.js +76 -0
  76. package/dist/weixin/node_modules/qiniu/qiniu/httpc/middleware/base.js +31 -0
  77. package/dist/weixin/node_modules/qiniu/qiniu/httpc/middleware/index.js +9 -0
  78. package/dist/weixin/node_modules/qiniu/qiniu/httpc/middleware/qiniuAuth.js +53 -0
  79. package/dist/weixin/node_modules/qiniu/qiniu/httpc/middleware/retryDomains.js +101 -0
  80. package/dist/weixin/node_modules/qiniu/qiniu/httpc/middleware/ua.js +36 -0
  81. package/dist/weixin/node_modules/qiniu/qiniu/httpc/region.js +349 -0
  82. package/dist/weixin/node_modules/qiniu/qiniu/httpc/regionsProvider.js +788 -0
  83. package/dist/weixin/node_modules/qiniu/qiniu/httpc/regionsRetryPolicy.js +242 -0
  84. package/dist/weixin/node_modules/qiniu/qiniu/httpc/responseWrapper.js +40 -0
  85. package/dist/weixin/node_modules/qiniu/qiniu/retry/index.js +4 -0
  86. package/dist/weixin/node_modules/qiniu/qiniu/retry/retrier.js +99 -0
  87. package/dist/weixin/node_modules/qiniu/qiniu/retry/retryPolicy.js +55 -0
  88. package/dist/weixin/node_modules/qiniu/qiniu/rpc.js +237 -0
  89. package/dist/weixin/node_modules/qiniu/qiniu/rtc/app.js +123 -0
  90. package/dist/weixin/node_modules/qiniu/qiniu/rtc/credentials.js +57 -0
  91. package/dist/weixin/node_modules/qiniu/qiniu/rtc/room.js +118 -0
  92. package/dist/weixin/node_modules/qiniu/qiniu/rtc/util.js +16 -0
  93. package/dist/weixin/node_modules/qiniu/qiniu/sms/message.js +58 -0
  94. package/dist/weixin/node_modules/qiniu/qiniu/storage/form.js +442 -0
  95. package/dist/weixin/node_modules/qiniu/qiniu/storage/internal.js +214 -0
  96. package/dist/weixin/node_modules/qiniu/qiniu/storage/resume.js +1272 -0
  97. package/dist/weixin/node_modules/qiniu/qiniu/storage/rs.js +1764 -0
  98. package/dist/weixin/node_modules/qiniu/qiniu/util.js +382 -0
  99. package/dist/weixin/node_modules/qiniu/qiniu/zone.js +230 -0
  100. package/dist/weixin/node_modules/qiniu/tsconfig.json +112 -0
  101. package/dist/weixin/types.js +25 -0
  102. package/package.json +56 -0
@@ -0,0 +1,762 @@
1
+ {
2
+ "name": "dist",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "dependencies": {
8
+ "@larksuiteoapi/node-sdk": "^1.60.0",
9
+ "@opencode-ai/sdk": "^1.3.17",
10
+ "grammy": "^1.42.0",
11
+ "undici": "^8.1.0"
12
+ }
13
+ },
14
+ "node_modules/@grammyjs/types": {
15
+ "version": "3.26.0",
16
+ "resolved": "https://registry.npmmirror.com/@grammyjs/types/-/types-3.26.0.tgz",
17
+ "integrity": "sha512-jlnyfxfev/2o68HlvAGRocAXgdPPX5QabG7jZlbqC2r9DZyWBfzTlg+nu3O3Fy4EhgLWu28hZ/8wr7DsNamP9A==",
18
+ "license": "MIT"
19
+ },
20
+ "node_modules/@larksuiteoapi/node-sdk": {
21
+ "version": "1.60.0",
22
+ "resolved": "https://registry.npmmirror.com/@larksuiteoapi/node-sdk/-/node-sdk-1.60.0.tgz",
23
+ "integrity": "sha512-MS1eXx7K6HHIyIcCBkJLb21okoa8ZatUGQWZaCCUePm6a37RWFmT6ZKlKvHxAanSX26wNuNlwP0RhgscsE+T6g==",
24
+ "license": "MIT",
25
+ "dependencies": {
26
+ "axios": "~1.13.3",
27
+ "lodash.identity": "^3.0.0",
28
+ "lodash.merge": "^4.6.2",
29
+ "lodash.pickby": "^4.6.0",
30
+ "protobufjs": "^7.2.6",
31
+ "qs": "^6.14.2",
32
+ "ws": "^8.19.0"
33
+ }
34
+ },
35
+ "node_modules/@opencode-ai/sdk": {
36
+ "version": "1.3.17",
37
+ "resolved": "https://registry.npmjs.org/@opencode-ai/sdk/-/sdk-1.3.17.tgz",
38
+ "integrity": "sha512-2+MGgu7wynqTBwxezR01VAGhILXlpcHDY/pF7SWB87WOgLt3kD55HjKHNj6PWxyY8n575AZolR95VUC3gtwfmA==",
39
+ "license": "MIT",
40
+ "dependencies": {
41
+ "cross-spawn": "7.0.6"
42
+ }
43
+ },
44
+ "node_modules/@protobufjs/aspromise": {
45
+ "version": "1.1.2",
46
+ "resolved": "https://registry.npmmirror.com/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
47
+ "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
48
+ "license": "BSD-3-Clause"
49
+ },
50
+ "node_modules/@protobufjs/base64": {
51
+ "version": "1.1.2",
52
+ "resolved": "https://registry.npmmirror.com/@protobufjs/base64/-/base64-1.1.2.tgz",
53
+ "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
54
+ "license": "BSD-3-Clause"
55
+ },
56
+ "node_modules/@protobufjs/codegen": {
57
+ "version": "2.0.4",
58
+ "resolved": "https://registry.npmmirror.com/@protobufjs/codegen/-/codegen-2.0.4.tgz",
59
+ "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==",
60
+ "license": "BSD-3-Clause"
61
+ },
62
+ "node_modules/@protobufjs/eventemitter": {
63
+ "version": "1.1.0",
64
+ "resolved": "https://registry.npmmirror.com/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
65
+ "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
66
+ "license": "BSD-3-Clause"
67
+ },
68
+ "node_modules/@protobufjs/fetch": {
69
+ "version": "1.1.0",
70
+ "resolved": "https://registry.npmmirror.com/@protobufjs/fetch/-/fetch-1.1.0.tgz",
71
+ "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
72
+ "license": "BSD-3-Clause",
73
+ "dependencies": {
74
+ "@protobufjs/aspromise": "^1.1.1",
75
+ "@protobufjs/inquire": "^1.1.0"
76
+ }
77
+ },
78
+ "node_modules/@protobufjs/float": {
79
+ "version": "1.0.2",
80
+ "resolved": "https://registry.npmmirror.com/@protobufjs/float/-/float-1.0.2.tgz",
81
+ "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
82
+ "license": "BSD-3-Clause"
83
+ },
84
+ "node_modules/@protobufjs/inquire": {
85
+ "version": "1.1.0",
86
+ "resolved": "https://registry.npmmirror.com/@protobufjs/inquire/-/inquire-1.1.0.tgz",
87
+ "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==",
88
+ "license": "BSD-3-Clause"
89
+ },
90
+ "node_modules/@protobufjs/path": {
91
+ "version": "1.1.2",
92
+ "resolved": "https://registry.npmmirror.com/@protobufjs/path/-/path-1.1.2.tgz",
93
+ "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
94
+ "license": "BSD-3-Clause"
95
+ },
96
+ "node_modules/@protobufjs/pool": {
97
+ "version": "1.1.0",
98
+ "resolved": "https://registry.npmmirror.com/@protobufjs/pool/-/pool-1.1.0.tgz",
99
+ "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
100
+ "license": "BSD-3-Clause"
101
+ },
102
+ "node_modules/@protobufjs/utf8": {
103
+ "version": "1.1.0",
104
+ "resolved": "https://registry.npmmirror.com/@protobufjs/utf8/-/utf8-1.1.0.tgz",
105
+ "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
106
+ "license": "BSD-3-Clause"
107
+ },
108
+ "node_modules/@types/node": {
109
+ "version": "25.6.0",
110
+ "resolved": "https://registry.npmmirror.com/@types/node/-/node-25.6.0.tgz",
111
+ "integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==",
112
+ "license": "MIT",
113
+ "dependencies": {
114
+ "undici-types": "~7.19.0"
115
+ }
116
+ },
117
+ "node_modules/abort-controller": {
118
+ "version": "3.0.0",
119
+ "resolved": "https://registry.npmmirror.com/abort-controller/-/abort-controller-3.0.0.tgz",
120
+ "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
121
+ "license": "MIT",
122
+ "dependencies": {
123
+ "event-target-shim": "^5.0.0"
124
+ },
125
+ "engines": {
126
+ "node": ">=6.5"
127
+ }
128
+ },
129
+ "node_modules/asynckit": {
130
+ "version": "0.4.0",
131
+ "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz",
132
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
133
+ "license": "MIT"
134
+ },
135
+ "node_modules/axios": {
136
+ "version": "1.13.6",
137
+ "resolved": "https://registry.npmmirror.com/axios/-/axios-1.13.6.tgz",
138
+ "integrity": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==",
139
+ "license": "MIT",
140
+ "dependencies": {
141
+ "follow-redirects": "^1.15.11",
142
+ "form-data": "^4.0.5",
143
+ "proxy-from-env": "^1.1.0"
144
+ }
145
+ },
146
+ "node_modules/call-bind-apply-helpers": {
147
+ "version": "1.0.2",
148
+ "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
149
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
150
+ "license": "MIT",
151
+ "dependencies": {
152
+ "es-errors": "^1.3.0",
153
+ "function-bind": "^1.1.2"
154
+ },
155
+ "engines": {
156
+ "node": ">= 0.4"
157
+ }
158
+ },
159
+ "node_modules/call-bound": {
160
+ "version": "1.0.4",
161
+ "resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.4.tgz",
162
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
163
+ "license": "MIT",
164
+ "dependencies": {
165
+ "call-bind-apply-helpers": "^1.0.2",
166
+ "get-intrinsic": "^1.3.0"
167
+ },
168
+ "engines": {
169
+ "node": ">= 0.4"
170
+ },
171
+ "funding": {
172
+ "url": "https://github.com/sponsors/ljharb"
173
+ }
174
+ },
175
+ "node_modules/combined-stream": {
176
+ "version": "1.0.8",
177
+ "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz",
178
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
179
+ "license": "MIT",
180
+ "dependencies": {
181
+ "delayed-stream": "~1.0.0"
182
+ },
183
+ "engines": {
184
+ "node": ">= 0.8"
185
+ }
186
+ },
187
+ "node_modules/cross-spawn": {
188
+ "version": "7.0.6",
189
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
190
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
191
+ "license": "MIT",
192
+ "dependencies": {
193
+ "path-key": "^3.1.0",
194
+ "shebang-command": "^2.0.0",
195
+ "which": "^2.0.1"
196
+ },
197
+ "engines": {
198
+ "node": ">= 8"
199
+ }
200
+ },
201
+ "node_modules/debug": {
202
+ "version": "4.4.3",
203
+ "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz",
204
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
205
+ "license": "MIT",
206
+ "dependencies": {
207
+ "ms": "^2.1.3"
208
+ },
209
+ "engines": {
210
+ "node": ">=6.0"
211
+ },
212
+ "peerDependenciesMeta": {
213
+ "supports-color": {
214
+ "optional": true
215
+ }
216
+ }
217
+ },
218
+ "node_modules/delayed-stream": {
219
+ "version": "1.0.0",
220
+ "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz",
221
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
222
+ "license": "MIT",
223
+ "engines": {
224
+ "node": ">=0.4.0"
225
+ }
226
+ },
227
+ "node_modules/dunder-proto": {
228
+ "version": "1.0.1",
229
+ "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz",
230
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
231
+ "license": "MIT",
232
+ "dependencies": {
233
+ "call-bind-apply-helpers": "^1.0.1",
234
+ "es-errors": "^1.3.0",
235
+ "gopd": "^1.2.0"
236
+ },
237
+ "engines": {
238
+ "node": ">= 0.4"
239
+ }
240
+ },
241
+ "node_modules/es-define-property": {
242
+ "version": "1.0.1",
243
+ "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz",
244
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
245
+ "license": "MIT",
246
+ "engines": {
247
+ "node": ">= 0.4"
248
+ }
249
+ },
250
+ "node_modules/es-errors": {
251
+ "version": "1.3.0",
252
+ "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz",
253
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
254
+ "license": "MIT",
255
+ "engines": {
256
+ "node": ">= 0.4"
257
+ }
258
+ },
259
+ "node_modules/es-object-atoms": {
260
+ "version": "1.1.1",
261
+ "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
262
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
263
+ "license": "MIT",
264
+ "dependencies": {
265
+ "es-errors": "^1.3.0"
266
+ },
267
+ "engines": {
268
+ "node": ">= 0.4"
269
+ }
270
+ },
271
+ "node_modules/es-set-tostringtag": {
272
+ "version": "2.1.0",
273
+ "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
274
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
275
+ "license": "MIT",
276
+ "dependencies": {
277
+ "es-errors": "^1.3.0",
278
+ "get-intrinsic": "^1.2.6",
279
+ "has-tostringtag": "^1.0.2",
280
+ "hasown": "^2.0.2"
281
+ },
282
+ "engines": {
283
+ "node": ">= 0.4"
284
+ }
285
+ },
286
+ "node_modules/event-target-shim": {
287
+ "version": "5.0.1",
288
+ "resolved": "https://registry.npmmirror.com/event-target-shim/-/event-target-shim-5.0.1.tgz",
289
+ "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
290
+ "license": "MIT",
291
+ "engines": {
292
+ "node": ">=6"
293
+ }
294
+ },
295
+ "node_modules/follow-redirects": {
296
+ "version": "1.16.0",
297
+ "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.16.0.tgz",
298
+ "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
299
+ "funding": [
300
+ {
301
+ "type": "individual",
302
+ "url": "https://github.com/sponsors/RubenVerborgh"
303
+ }
304
+ ],
305
+ "license": "MIT",
306
+ "engines": {
307
+ "node": ">=4.0"
308
+ },
309
+ "peerDependenciesMeta": {
310
+ "debug": {
311
+ "optional": true
312
+ }
313
+ }
314
+ },
315
+ "node_modules/form-data": {
316
+ "version": "4.0.5",
317
+ "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.5.tgz",
318
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
319
+ "license": "MIT",
320
+ "dependencies": {
321
+ "asynckit": "^0.4.0",
322
+ "combined-stream": "^1.0.8",
323
+ "es-set-tostringtag": "^2.1.0",
324
+ "hasown": "^2.0.2",
325
+ "mime-types": "^2.1.12"
326
+ },
327
+ "engines": {
328
+ "node": ">= 6"
329
+ }
330
+ },
331
+ "node_modules/function-bind": {
332
+ "version": "1.1.2",
333
+ "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz",
334
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
335
+ "license": "MIT",
336
+ "funding": {
337
+ "url": "https://github.com/sponsors/ljharb"
338
+ }
339
+ },
340
+ "node_modules/get-intrinsic": {
341
+ "version": "1.3.0",
342
+ "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
343
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
344
+ "license": "MIT",
345
+ "dependencies": {
346
+ "call-bind-apply-helpers": "^1.0.2",
347
+ "es-define-property": "^1.0.1",
348
+ "es-errors": "^1.3.0",
349
+ "es-object-atoms": "^1.1.1",
350
+ "function-bind": "^1.1.2",
351
+ "get-proto": "^1.0.1",
352
+ "gopd": "^1.2.0",
353
+ "has-symbols": "^1.1.0",
354
+ "hasown": "^2.0.2",
355
+ "math-intrinsics": "^1.1.0"
356
+ },
357
+ "engines": {
358
+ "node": ">= 0.4"
359
+ },
360
+ "funding": {
361
+ "url": "https://github.com/sponsors/ljharb"
362
+ }
363
+ },
364
+ "node_modules/get-proto": {
365
+ "version": "1.0.1",
366
+ "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz",
367
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
368
+ "license": "MIT",
369
+ "dependencies": {
370
+ "dunder-proto": "^1.0.1",
371
+ "es-object-atoms": "^1.0.0"
372
+ },
373
+ "engines": {
374
+ "node": ">= 0.4"
375
+ }
376
+ },
377
+ "node_modules/gopd": {
378
+ "version": "1.2.0",
379
+ "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz",
380
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
381
+ "license": "MIT",
382
+ "engines": {
383
+ "node": ">= 0.4"
384
+ },
385
+ "funding": {
386
+ "url": "https://github.com/sponsors/ljharb"
387
+ }
388
+ },
389
+ "node_modules/grammy": {
390
+ "version": "1.42.0",
391
+ "resolved": "https://registry.npmmirror.com/grammy/-/grammy-1.42.0.tgz",
392
+ "integrity": "sha512-1AdCge+AkjSdp2FwfICSFnVbl8Mq3KVHJDy+DgTI9+D6keJ0zWALPRKas5jv/8psiCzL4N2cEOcGW7O45Kn39g==",
393
+ "license": "MIT",
394
+ "dependencies": {
395
+ "@grammyjs/types": "3.26.0",
396
+ "abort-controller": "^3.0.0",
397
+ "debug": "^4.4.3",
398
+ "node-fetch": "^2.7.0"
399
+ },
400
+ "engines": {
401
+ "node": "^12.20.0 || >=14.13.1"
402
+ }
403
+ },
404
+ "node_modules/has-symbols": {
405
+ "version": "1.1.0",
406
+ "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz",
407
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
408
+ "license": "MIT",
409
+ "engines": {
410
+ "node": ">= 0.4"
411
+ },
412
+ "funding": {
413
+ "url": "https://github.com/sponsors/ljharb"
414
+ }
415
+ },
416
+ "node_modules/has-tostringtag": {
417
+ "version": "1.0.2",
418
+ "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
419
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
420
+ "license": "MIT",
421
+ "dependencies": {
422
+ "has-symbols": "^1.0.3"
423
+ },
424
+ "engines": {
425
+ "node": ">= 0.4"
426
+ },
427
+ "funding": {
428
+ "url": "https://github.com/sponsors/ljharb"
429
+ }
430
+ },
431
+ "node_modules/hasown": {
432
+ "version": "2.0.2",
433
+ "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz",
434
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
435
+ "license": "MIT",
436
+ "dependencies": {
437
+ "function-bind": "^1.1.2"
438
+ },
439
+ "engines": {
440
+ "node": ">= 0.4"
441
+ }
442
+ },
443
+ "node_modules/isexe": {
444
+ "version": "2.0.0",
445
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
446
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
447
+ "license": "ISC"
448
+ },
449
+ "node_modules/lodash.identity": {
450
+ "version": "3.0.0",
451
+ "resolved": "https://registry.npmmirror.com/lodash.identity/-/lodash.identity-3.0.0.tgz",
452
+ "integrity": "sha512-AupTIzdLQxJS5wIYUQlgGyk2XRTfGXA+MCghDHqZk0pzUNYvd3EESS6dkChNauNYVIutcb0dfHw1ri9Q1yPV8Q==",
453
+ "license": "MIT"
454
+ },
455
+ "node_modules/lodash.merge": {
456
+ "version": "4.6.2",
457
+ "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz",
458
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
459
+ "license": "MIT"
460
+ },
461
+ "node_modules/lodash.pickby": {
462
+ "version": "4.6.0",
463
+ "resolved": "https://registry.npmmirror.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz",
464
+ "integrity": "sha512-AZV+GsS/6ckvPOVQPXSiFFacKvKB4kOQu6ynt9wz0F3LO4R9Ij4K1ddYsIytDpSgLz88JHd9P+oaLeej5/Sl7Q==",
465
+ "license": "MIT"
466
+ },
467
+ "node_modules/long": {
468
+ "version": "5.3.2",
469
+ "resolved": "https://registry.npmmirror.com/long/-/long-5.3.2.tgz",
470
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
471
+ "license": "Apache-2.0"
472
+ },
473
+ "node_modules/math-intrinsics": {
474
+ "version": "1.1.0",
475
+ "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
476
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
477
+ "license": "MIT",
478
+ "engines": {
479
+ "node": ">= 0.4"
480
+ }
481
+ },
482
+ "node_modules/mime-db": {
483
+ "version": "1.52.0",
484
+ "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz",
485
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
486
+ "license": "MIT",
487
+ "engines": {
488
+ "node": ">= 0.6"
489
+ }
490
+ },
491
+ "node_modules/mime-types": {
492
+ "version": "2.1.35",
493
+ "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz",
494
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
495
+ "license": "MIT",
496
+ "dependencies": {
497
+ "mime-db": "1.52.0"
498
+ },
499
+ "engines": {
500
+ "node": ">= 0.6"
501
+ }
502
+ },
503
+ "node_modules/ms": {
504
+ "version": "2.1.3",
505
+ "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz",
506
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
507
+ "license": "MIT"
508
+ },
509
+ "node_modules/node-fetch": {
510
+ "version": "2.7.0",
511
+ "resolved": "https://registry.npmmirror.com/node-fetch/-/node-fetch-2.7.0.tgz",
512
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
513
+ "license": "MIT",
514
+ "dependencies": {
515
+ "whatwg-url": "^5.0.0"
516
+ },
517
+ "engines": {
518
+ "node": "4.x || >=6.0.0"
519
+ },
520
+ "peerDependencies": {
521
+ "encoding": "^0.1.0"
522
+ },
523
+ "peerDependenciesMeta": {
524
+ "encoding": {
525
+ "optional": true
526
+ }
527
+ }
528
+ },
529
+ "node_modules/object-inspect": {
530
+ "version": "1.13.4",
531
+ "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.4.tgz",
532
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
533
+ "license": "MIT",
534
+ "engines": {
535
+ "node": ">= 0.4"
536
+ },
537
+ "funding": {
538
+ "url": "https://github.com/sponsors/ljharb"
539
+ }
540
+ },
541
+ "node_modules/path-key": {
542
+ "version": "3.1.1",
543
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
544
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
545
+ "license": "MIT",
546
+ "engines": {
547
+ "node": ">=8"
548
+ }
549
+ },
550
+ "node_modules/protobufjs": {
551
+ "version": "7.5.4",
552
+ "resolved": "https://registry.npmmirror.com/protobufjs/-/protobufjs-7.5.4.tgz",
553
+ "integrity": "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==",
554
+ "hasInstallScript": true,
555
+ "license": "BSD-3-Clause",
556
+ "dependencies": {
557
+ "@protobufjs/aspromise": "^1.1.2",
558
+ "@protobufjs/base64": "^1.1.2",
559
+ "@protobufjs/codegen": "^2.0.4",
560
+ "@protobufjs/eventemitter": "^1.1.0",
561
+ "@protobufjs/fetch": "^1.1.0",
562
+ "@protobufjs/float": "^1.0.2",
563
+ "@protobufjs/inquire": "^1.1.0",
564
+ "@protobufjs/path": "^1.1.2",
565
+ "@protobufjs/pool": "^1.1.0",
566
+ "@protobufjs/utf8": "^1.1.0",
567
+ "@types/node": ">=13.7.0",
568
+ "long": "^5.0.0"
569
+ },
570
+ "engines": {
571
+ "node": ">=12.0.0"
572
+ }
573
+ },
574
+ "node_modules/proxy-from-env": {
575
+ "version": "1.1.0",
576
+ "resolved": "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
577
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
578
+ "license": "MIT"
579
+ },
580
+ "node_modules/qs": {
581
+ "version": "6.15.1",
582
+ "resolved": "https://registry.npmmirror.com/qs/-/qs-6.15.1.tgz",
583
+ "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==",
584
+ "license": "BSD-3-Clause",
585
+ "dependencies": {
586
+ "side-channel": "^1.1.0"
587
+ },
588
+ "engines": {
589
+ "node": ">=0.6"
590
+ },
591
+ "funding": {
592
+ "url": "https://github.com/sponsors/ljharb"
593
+ }
594
+ },
595
+ "node_modules/shebang-command": {
596
+ "version": "2.0.0",
597
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
598
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
599
+ "license": "MIT",
600
+ "dependencies": {
601
+ "shebang-regex": "^3.0.0"
602
+ },
603
+ "engines": {
604
+ "node": ">=8"
605
+ }
606
+ },
607
+ "node_modules/shebang-regex": {
608
+ "version": "3.0.0",
609
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
610
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
611
+ "license": "MIT",
612
+ "engines": {
613
+ "node": ">=8"
614
+ }
615
+ },
616
+ "node_modules/side-channel": {
617
+ "version": "1.1.0",
618
+ "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz",
619
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
620
+ "license": "MIT",
621
+ "dependencies": {
622
+ "es-errors": "^1.3.0",
623
+ "object-inspect": "^1.13.3",
624
+ "side-channel-list": "^1.0.0",
625
+ "side-channel-map": "^1.0.1",
626
+ "side-channel-weakmap": "^1.0.2"
627
+ },
628
+ "engines": {
629
+ "node": ">= 0.4"
630
+ },
631
+ "funding": {
632
+ "url": "https://github.com/sponsors/ljharb"
633
+ }
634
+ },
635
+ "node_modules/side-channel-list": {
636
+ "version": "1.0.1",
637
+ "resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.1.tgz",
638
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
639
+ "license": "MIT",
640
+ "dependencies": {
641
+ "es-errors": "^1.3.0",
642
+ "object-inspect": "^1.13.4"
643
+ },
644
+ "engines": {
645
+ "node": ">= 0.4"
646
+ },
647
+ "funding": {
648
+ "url": "https://github.com/sponsors/ljharb"
649
+ }
650
+ },
651
+ "node_modules/side-channel-map": {
652
+ "version": "1.0.1",
653
+ "resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz",
654
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
655
+ "license": "MIT",
656
+ "dependencies": {
657
+ "call-bound": "^1.0.2",
658
+ "es-errors": "^1.3.0",
659
+ "get-intrinsic": "^1.2.5",
660
+ "object-inspect": "^1.13.3"
661
+ },
662
+ "engines": {
663
+ "node": ">= 0.4"
664
+ },
665
+ "funding": {
666
+ "url": "https://github.com/sponsors/ljharb"
667
+ }
668
+ },
669
+ "node_modules/side-channel-weakmap": {
670
+ "version": "1.0.2",
671
+ "resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
672
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
673
+ "license": "MIT",
674
+ "dependencies": {
675
+ "call-bound": "^1.0.2",
676
+ "es-errors": "^1.3.0",
677
+ "get-intrinsic": "^1.2.5",
678
+ "object-inspect": "^1.13.3",
679
+ "side-channel-map": "^1.0.1"
680
+ },
681
+ "engines": {
682
+ "node": ">= 0.4"
683
+ },
684
+ "funding": {
685
+ "url": "https://github.com/sponsors/ljharb"
686
+ }
687
+ },
688
+ "node_modules/tr46": {
689
+ "version": "0.0.3",
690
+ "resolved": "https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz",
691
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
692
+ "license": "MIT"
693
+ },
694
+ "node_modules/undici": {
695
+ "version": "8.1.0",
696
+ "resolved": "https://registry.npmmirror.com/undici/-/undici-8.1.0.tgz",
697
+ "integrity": "sha512-E9MkTS4xXLnRPYqxH2e6Hr2/49e7WFDKczKcCaFH4VaZs2iNvHMqeIkyUAD9vM8kujy9TjVrRlQ5KkdEJxB2pw==",
698
+ "license": "MIT",
699
+ "engines": {
700
+ "node": ">=22.19.0"
701
+ }
702
+ },
703
+ "node_modules/undici-types": {
704
+ "version": "7.19.2",
705
+ "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.19.2.tgz",
706
+ "integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==",
707
+ "license": "MIT"
708
+ },
709
+ "node_modules/webidl-conversions": {
710
+ "version": "3.0.1",
711
+ "resolved": "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
712
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
713
+ "license": "BSD-2-Clause"
714
+ },
715
+ "node_modules/whatwg-url": {
716
+ "version": "5.0.0",
717
+ "resolved": "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz",
718
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
719
+ "license": "MIT",
720
+ "dependencies": {
721
+ "tr46": "~0.0.3",
722
+ "webidl-conversions": "^3.0.0"
723
+ }
724
+ },
725
+ "node_modules/which": {
726
+ "version": "2.0.2",
727
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
728
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
729
+ "license": "ISC",
730
+ "dependencies": {
731
+ "isexe": "^2.0.0"
732
+ },
733
+ "bin": {
734
+ "node-which": "bin/node-which"
735
+ },
736
+ "engines": {
737
+ "node": ">= 8"
738
+ }
739
+ },
740
+ "node_modules/ws": {
741
+ "version": "8.20.0",
742
+ "resolved": "https://registry.npmmirror.com/ws/-/ws-8.20.0.tgz",
743
+ "integrity": "sha512-sAt8BhgNbzCtgGbt2OxmpuryO63ZoDk/sqaB/znQm94T4fCEsy/yV+7CdC1kJhOU9lboAEU7R3kquuycDoibVA==",
744
+ "license": "MIT",
745
+ "engines": {
746
+ "node": ">=10.0.0"
747
+ },
748
+ "peerDependencies": {
749
+ "bufferutil": "^4.0.1",
750
+ "utf-8-validate": ">=5.0.2"
751
+ },
752
+ "peerDependenciesMeta": {
753
+ "bufferutil": {
754
+ "optional": true
755
+ },
756
+ "utf-8-validate": {
757
+ "optional": true
758
+ }
759
+ }
760
+ }
761
+ }
762
+ }