prostgles-server 4.2.133 → 4.2.135

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/dist/Auth/AuthHandler.d.ts +66 -0
  2. package/dist/Auth/AuthHandler.d.ts.map +1 -0
  3. package/dist/Auth/AuthHandler.js +425 -0
  4. package/dist/Auth/AuthHandler.js.map +1 -0
  5. package/dist/Auth/AuthTypes.d.ts +218 -0
  6. package/dist/Auth/AuthTypes.d.ts.map +1 -0
  7. package/dist/Auth/AuthTypes.js +3 -0
  8. package/dist/Auth/AuthTypes.js.map +1 -0
  9. package/dist/Auth/authInit.d.ts +3 -0
  10. package/dist/Auth/authInit.d.ts.map +1 -0
  11. package/dist/Auth/authInit.js +155 -0
  12. package/dist/Auth/authInit.js.map +1 -0
  13. package/dist/Auth/getSafeReturnURL.d.ts +2 -0
  14. package/dist/Auth/getSafeReturnURL.d.ts.map +1 -0
  15. package/dist/Auth/getSafeReturnURL.js +35 -0
  16. package/dist/Auth/getSafeReturnURL.js.map +1 -0
  17. package/dist/Auth/setAuthSignup.d.ts +5 -0
  18. package/dist/Auth/setAuthSignup.d.ts.map +1 -0
  19. package/dist/Auth/setAuthSignup.js +85 -0
  20. package/dist/Auth/setAuthSignup.js.map +1 -0
  21. package/dist/DboBuilder/DboBuilderTypes.d.ts +3 -3
  22. package/dist/DboBuilder/DboBuilderTypes.d.ts.map +1 -1
  23. package/dist/DboBuilder/DboBuilderTypes.js.map +1 -1
  24. package/dist/DboBuilder/QueryBuilder/getNewQuery.d.ts +1 -1
  25. package/dist/DboBuilder/ViewHandler/ViewHandler.d.ts +1 -1
  26. package/dist/DboBuilder/runSQL.d.ts +1 -1
  27. package/dist/FileManager/initFileManager.js +1 -1
  28. package/dist/FileManager/initFileManager.js.map +1 -1
  29. package/dist/Filtering.d.ts +1 -1
  30. package/dist/Prostgles.d.ts +1 -1
  31. package/dist/Prostgles.d.ts.map +1 -1
  32. package/dist/Prostgles.js +1 -1
  33. package/dist/Prostgles.js.map +1 -1
  34. package/dist/ProstglesTypes.d.ts +1 -1
  35. package/dist/ProstglesTypes.d.ts.map +1 -1
  36. package/dist/PubSubManager/PubSubManager.d.ts +1 -1
  37. package/dist/PubSubManager/PubSubManager.d.ts.map +1 -1
  38. package/dist/PubSubManager/PubSubManager.js +4 -3
  39. package/dist/PubSubManager/PubSubManager.js.map +1 -1
  40. package/dist/PublishParser/PublishParser.d.ts +2 -2
  41. package/dist/PublishParser/PublishParser.d.ts.map +1 -1
  42. package/dist/PublishParser/PublishParser.js.map +1 -1
  43. package/dist/PublishParser/getFileTableRules.d.ts +1 -1
  44. package/dist/PublishParser/getFileTableRules.d.ts.map +1 -1
  45. package/dist/PublishParser/getSchemaFromPublish.d.ts +1 -1
  46. package/dist/PublishParser/getSchemaFromPublish.d.ts.map +1 -1
  47. package/dist/PublishParser/getTableRulesWithoutFileTable.d.ts +1 -1
  48. package/dist/PublishParser/getTableRulesWithoutFileTable.d.ts.map +1 -1
  49. package/dist/PublishParser/publishTypesAndUtils.d.ts +1 -1
  50. package/dist/PublishParser/publishTypesAndUtils.d.ts.map +1 -1
  51. package/dist/PublishParser/publishTypesAndUtils.js.map +1 -1
  52. package/dist/RestApi.d.ts +1 -1
  53. package/dist/RestApi.d.ts.map +1 -1
  54. package/dist/RestApi.js +1 -1
  55. package/dist/RestApi.js.map +1 -1
  56. package/dist/SchemaWatch/SchemaWatch.d.ts.map +1 -1
  57. package/dist/SchemaWatch/SchemaWatch.js +5 -1
  58. package/dist/SchemaWatch/SchemaWatch.js.map +1 -1
  59. package/dist/index.d.ts +1 -1
  60. package/dist/index.d.ts.map +1 -1
  61. package/dist/initProstgles.js +1 -1
  62. package/dist/initProstgles.js.map +1 -1
  63. package/dist/runClientRequest.d.ts +1 -1
  64. package/dist/runClientRequest.d.ts.map +1 -1
  65. package/dist/runClientRequest.js +1 -1
  66. package/dist/runClientRequest.js.map +1 -1
  67. package/lib/Auth/AuthHandler.ts +474 -0
  68. package/lib/Auth/AuthTypes.ts +247 -0
  69. package/lib/Auth/authInit.ts +166 -0
  70. package/lib/Auth/getSafeReturnURL.ts +35 -0
  71. package/lib/Auth/setAuthSignup.ts +100 -0
  72. package/lib/DBSchemaBuilder.ts +1 -1
  73. package/lib/DboBuilder/DboBuilderTypes.ts +4 -3
  74. package/lib/FileManager/initFileManager.ts +1 -1
  75. package/lib/Prostgles.ts +2 -2
  76. package/lib/ProstglesTypes.ts +1 -1
  77. package/lib/PubSubManager/PubSubManager.ts +4 -3
  78. package/lib/PublishParser/PublishParser.ts +3 -3
  79. package/lib/PublishParser/getFileTableRules.ts +1 -1
  80. package/lib/PublishParser/getSchemaFromPublish.ts +1 -1
  81. package/lib/PublishParser/getTableRulesWithoutFileTable.ts +1 -1
  82. package/lib/PublishParser/publishTypesAndUtils.ts +1 -1
  83. package/lib/RestApi.ts +2 -1
  84. package/lib/SchemaWatch/SchemaWatch.ts +5 -1
  85. package/lib/index.ts +1 -1
  86. package/lib/initProstgles.ts +1 -1
  87. package/lib/runClientRequest.ts +3 -3
  88. package/package.json +14 -4
  89. package/tests/client/index.ts +9 -7
  90. package/tests/client/package-lock.json +2827 -143
  91. package/tests/client/package.json +1 -1
  92. package/tests/client/tsconfig.json +0 -6
  93. package/tests/clientFileTests.spec.ts +2 -3
  94. package/tests/clientOnlyQueries.spec.ts +2 -2
  95. package/tests/clientRestApi.spec.ts +2 -2
  96. package/tests/server/index.ts +1 -1
  97. package/tests/server/package-lock.json +62 -77
  98. package/tests/server/package.json +2 -2
  99. package/tests/server/tsconfig.json +1 -2
  100. package/tests/serverOnlyQueries.spec.ts +2 -2
  101. package/tsconfig.json +0 -1
  102. package/lib/AuthHandler.ts +0 -816
@@ -10,7 +10,7 @@
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "@types/node": "^20.9.2",
13
- "prostgles-client": "^4.0.138",
13
+ "prostgles-client": "^4.0.145",
14
14
  "prostgles-types": "^4.0.51",
15
15
  "socket.io-client": "^4.7.5"
16
16
  },
@@ -121,190 +121,2871 @@
121
121
  }
122
122
  },
123
123
  "node_modules/engine.io-client": {
124
- "version": "6.5.4",
125
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.4.tgz",
126
- "integrity": "sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==",
124
+ "version": "6.6.2",
125
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.2.tgz",
126
+ "integrity": "sha512-TAr+NKeoVTjEVW8P3iHguO1LO6RlUz9O5Y8o7EY0fU+gY1NYqas7NN3slpFtbXEsLMHk0h90fJMfKjRkQ0qUIw==",
127
+ "license": "MIT",
128
+ "dependencies": {
129
+ "@socket.io/component-emitter": "~3.1.0",
130
+ "debug": "~4.3.1",
131
+ "engine.io-parser": "~5.2.1",
132
+ "ws": "~8.17.1",
133
+ "xmlhttprequest-ssl": "~2.1.1"
134
+ }
135
+ },
136
+ "node_modules/engine.io-parser": {
137
+ "version": "5.2.3",
138
+ "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz",
139
+ "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==",
140
+ "license": "MIT",
141
+ "engines": {
142
+ "node": ">=10.0.0"
143
+ }
144
+ },
145
+ "node_modules/entities": {
146
+ "version": "4.5.0",
147
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
148
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
149
+ "dev": true,
150
+ "engines": {
151
+ "node": ">=0.12"
152
+ },
153
+ "funding": {
154
+ "url": "https://github.com/fb55/entities?sponsor=1"
155
+ }
156
+ },
157
+ "node_modules/form-data": {
158
+ "version": "4.0.0",
159
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
160
+ "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
161
+ "dev": true,
162
+ "dependencies": {
163
+ "asynckit": "^0.4.0",
164
+ "combined-stream": "^1.0.8",
165
+ "mime-types": "^2.1.12"
166
+ },
167
+ "engines": {
168
+ "node": ">= 6"
169
+ }
170
+ },
171
+ "node_modules/html-encoding-sniffer": {
172
+ "version": "4.0.0",
173
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
174
+ "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
175
+ "dev": true,
176
+ "dependencies": {
177
+ "whatwg-encoding": "^3.1.1"
178
+ },
179
+ "engines": {
180
+ "node": ">=18"
181
+ }
182
+ },
183
+ "node_modules/http-proxy-agent": {
184
+ "version": "7.0.2",
185
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
186
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
187
+ "dev": true,
188
+ "dependencies": {
189
+ "agent-base": "^7.1.0",
190
+ "debug": "^4.3.4"
191
+ },
192
+ "engines": {
193
+ "node": ">= 14"
194
+ }
195
+ },
196
+ "node_modules/https-proxy-agent": {
197
+ "version": "7.0.4",
198
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz",
199
+ "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==",
200
+ "dev": true,
201
+ "dependencies": {
202
+ "agent-base": "^7.0.2",
203
+ "debug": "4"
204
+ },
205
+ "engines": {
206
+ "node": ">= 14"
207
+ }
208
+ },
209
+ "node_modules/i": {
210
+ "version": "0.3.7",
211
+ "resolved": "https://registry.npmjs.org/i/-/i-0.3.7.tgz",
212
+ "integrity": "sha512-FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q==",
213
+ "engines": {
214
+ "node": ">=0.4"
215
+ }
216
+ },
217
+ "node_modules/iconv-lite": {
218
+ "version": "0.6.3",
219
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
220
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
221
+ "dev": true,
222
+ "dependencies": {
223
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
224
+ },
225
+ "engines": {
226
+ "node": ">=0.10.0"
227
+ }
228
+ },
229
+ "node_modules/is-potential-custom-element-name": {
230
+ "version": "1.0.1",
231
+ "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
232
+ "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
233
+ "dev": true
234
+ },
235
+ "node_modules/js-tokens": {
236
+ "version": "4.0.0",
237
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
238
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
239
+ "devOptional": true
240
+ },
241
+ "node_modules/jsdom": {
242
+ "version": "24.0.0",
243
+ "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz",
244
+ "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==",
245
+ "dev": true,
246
+ "dependencies": {
247
+ "cssstyle": "^4.0.1",
248
+ "data-urls": "^5.0.0",
249
+ "decimal.js": "^10.4.3",
250
+ "form-data": "^4.0.0",
251
+ "html-encoding-sniffer": "^4.0.0",
252
+ "http-proxy-agent": "^7.0.0",
253
+ "https-proxy-agent": "^7.0.2",
254
+ "is-potential-custom-element-name": "^1.0.1",
255
+ "nwsapi": "^2.2.7",
256
+ "parse5": "^7.1.2",
257
+ "rrweb-cssom": "^0.6.0",
258
+ "saxes": "^6.0.0",
259
+ "symbol-tree": "^3.2.4",
260
+ "tough-cookie": "^4.1.3",
261
+ "w3c-xmlserializer": "^5.0.0",
262
+ "webidl-conversions": "^7.0.0",
263
+ "whatwg-encoding": "^3.1.1",
264
+ "whatwg-mimetype": "^4.0.0",
265
+ "whatwg-url": "^14.0.0",
266
+ "ws": "^8.16.0",
267
+ "xml-name-validator": "^5.0.0"
268
+ },
269
+ "engines": {
270
+ "node": ">=18"
271
+ },
272
+ "peerDependencies": {
273
+ "canvas": "^2.11.2"
274
+ },
275
+ "peerDependenciesMeta": {
276
+ "canvas": {
277
+ "optional": true
278
+ }
279
+ }
280
+ },
281
+ "node_modules/loose-envify": {
282
+ "version": "1.4.0",
283
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
284
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
285
+ "devOptional": true,
286
+ "dependencies": {
287
+ "js-tokens": "^3.0.0 || ^4.0.0"
288
+ },
289
+ "bin": {
290
+ "loose-envify": "cli.js"
291
+ }
292
+ },
293
+ "node_modules/mime-db": {
294
+ "version": "1.52.0",
295
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
296
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
297
+ "dev": true,
298
+ "engines": {
299
+ "node": ">= 0.6"
300
+ }
301
+ },
302
+ "node_modules/mime-types": {
303
+ "version": "2.1.35",
304
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
305
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
306
+ "dev": true,
307
+ "dependencies": {
308
+ "mime-db": "1.52.0"
309
+ },
310
+ "engines": {
311
+ "node": ">= 0.6"
312
+ }
313
+ },
314
+ "node_modules/ms": {
315
+ "version": "2.1.2",
316
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
317
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
318
+ },
319
+ "node_modules/npm": {
320
+ "version": "10.9.1",
321
+ "resolved": "https://registry.npmjs.org/npm/-/npm-10.9.1.tgz",
322
+ "integrity": "sha512-yJUw03xLqjiv1D52oHeoS5qmOEC5hkJlhP1cWlSrCgshuxWVyFEEK3M3hLC0NwbTaklLTYrhoIanYsuNP5WUKg==",
323
+ "bundleDependencies": [
324
+ "@isaacs/string-locale-compare",
325
+ "@npmcli/arborist",
326
+ "@npmcli/config",
327
+ "@npmcli/fs",
328
+ "@npmcli/map-workspaces",
329
+ "@npmcli/package-json",
330
+ "@npmcli/promise-spawn",
331
+ "@npmcli/redact",
332
+ "@npmcli/run-script",
333
+ "@sigstore/tuf",
334
+ "abbrev",
335
+ "archy",
336
+ "cacache",
337
+ "chalk",
338
+ "ci-info",
339
+ "cli-columns",
340
+ "fastest-levenshtein",
341
+ "fs-minipass",
342
+ "glob",
343
+ "graceful-fs",
344
+ "hosted-git-info",
345
+ "ini",
346
+ "init-package-json",
347
+ "is-cidr",
348
+ "json-parse-even-better-errors",
349
+ "libnpmaccess",
350
+ "libnpmdiff",
351
+ "libnpmexec",
352
+ "libnpmfund",
353
+ "libnpmhook",
354
+ "libnpmorg",
355
+ "libnpmpack",
356
+ "libnpmpublish",
357
+ "libnpmsearch",
358
+ "libnpmteam",
359
+ "libnpmversion",
360
+ "make-fetch-happen",
361
+ "minimatch",
362
+ "minipass",
363
+ "minipass-pipeline",
364
+ "ms",
365
+ "node-gyp",
366
+ "nopt",
367
+ "normalize-package-data",
368
+ "npm-audit-report",
369
+ "npm-install-checks",
370
+ "npm-package-arg",
371
+ "npm-pick-manifest",
372
+ "npm-profile",
373
+ "npm-registry-fetch",
374
+ "npm-user-validate",
375
+ "p-map",
376
+ "pacote",
377
+ "parse-conflict-json",
378
+ "proc-log",
379
+ "qrcode-terminal",
380
+ "read",
381
+ "semver",
382
+ "spdx-expression-parse",
383
+ "ssri",
384
+ "supports-color",
385
+ "tar",
386
+ "text-table",
387
+ "tiny-relative-date",
388
+ "treeverse",
389
+ "validate-npm-package-name",
390
+ "which",
391
+ "write-file-atomic"
392
+ ],
393
+ "license": "Artistic-2.0",
394
+ "workspaces": [
395
+ "docs",
396
+ "smoke-tests",
397
+ "mock-globals",
398
+ "mock-registry",
399
+ "workspaces/*"
400
+ ],
401
+ "dependencies": {
402
+ "@isaacs/string-locale-compare": "^1.1.0",
403
+ "@npmcli/arborist": "^8.0.0",
404
+ "@npmcli/config": "^9.0.0",
405
+ "@npmcli/fs": "^4.0.0",
406
+ "@npmcli/map-workspaces": "^4.0.1",
407
+ "@npmcli/package-json": "^6.0.1",
408
+ "@npmcli/promise-spawn": "^8.0.2",
409
+ "@npmcli/redact": "^3.0.0",
410
+ "@npmcli/run-script": "^9.0.1",
411
+ "@sigstore/tuf": "^3.0.0",
412
+ "abbrev": "^3.0.0",
413
+ "archy": "~1.0.0",
414
+ "cacache": "^19.0.1",
415
+ "chalk": "^5.3.0",
416
+ "ci-info": "^4.1.0",
417
+ "cli-columns": "^4.0.0",
418
+ "fastest-levenshtein": "^1.0.16",
419
+ "fs-minipass": "^3.0.3",
420
+ "glob": "^10.4.5",
421
+ "graceful-fs": "^4.2.11",
422
+ "hosted-git-info": "^8.0.2",
423
+ "ini": "^5.0.0",
424
+ "init-package-json": "^7.0.1",
425
+ "is-cidr": "^5.1.0",
426
+ "json-parse-even-better-errors": "^4.0.0",
427
+ "libnpmaccess": "^9.0.0",
428
+ "libnpmdiff": "^7.0.0",
429
+ "libnpmexec": "^9.0.0",
430
+ "libnpmfund": "^6.0.0",
431
+ "libnpmhook": "^11.0.0",
432
+ "libnpmorg": "^7.0.0",
433
+ "libnpmpack": "^8.0.0",
434
+ "libnpmpublish": "^10.0.1",
435
+ "libnpmsearch": "^8.0.0",
436
+ "libnpmteam": "^7.0.0",
437
+ "libnpmversion": "^7.0.0",
438
+ "make-fetch-happen": "^14.0.3",
439
+ "minimatch": "^9.0.5",
440
+ "minipass": "^7.1.1",
441
+ "minipass-pipeline": "^1.2.4",
442
+ "ms": "^2.1.2",
443
+ "node-gyp": "^10.2.0",
444
+ "nopt": "^8.0.0",
445
+ "normalize-package-data": "^7.0.0",
446
+ "npm-audit-report": "^6.0.0",
447
+ "npm-install-checks": "^7.1.1",
448
+ "npm-package-arg": "^12.0.0",
449
+ "npm-pick-manifest": "^10.0.0",
450
+ "npm-profile": "^11.0.1",
451
+ "npm-registry-fetch": "^18.0.2",
452
+ "npm-user-validate": "^3.0.0",
453
+ "p-map": "^4.0.0",
454
+ "pacote": "^19.0.1",
455
+ "parse-conflict-json": "^4.0.0",
456
+ "proc-log": "^5.0.0",
457
+ "qrcode-terminal": "^0.12.0",
458
+ "read": "^4.0.0",
459
+ "semver": "^7.6.3",
460
+ "spdx-expression-parse": "^4.0.0",
461
+ "ssri": "^12.0.0",
462
+ "supports-color": "^9.4.0",
463
+ "tar": "^6.2.1",
464
+ "text-table": "~0.2.0",
465
+ "tiny-relative-date": "^1.3.0",
466
+ "treeverse": "^3.0.0",
467
+ "validate-npm-package-name": "^6.0.0",
468
+ "which": "^5.0.0",
469
+ "write-file-atomic": "^6.0.0"
470
+ },
471
+ "bin": {
472
+ "npm": "bin/npm-cli.js",
473
+ "npx": "bin/npx-cli.js"
474
+ },
475
+ "engines": {
476
+ "node": "^18.17.0 || >=20.5.0"
477
+ }
478
+ },
479
+ "node_modules/npm/node_modules/@isaacs/cliui": {
480
+ "version": "8.0.2",
481
+ "inBundle": true,
482
+ "license": "ISC",
483
+ "dependencies": {
484
+ "string-width": "^5.1.2",
485
+ "string-width-cjs": "npm:string-width@^4.2.0",
486
+ "strip-ansi": "^7.0.1",
487
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
488
+ "wrap-ansi": "^8.1.0",
489
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
490
+ },
491
+ "engines": {
492
+ "node": ">=12"
493
+ }
494
+ },
495
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": {
496
+ "version": "6.1.0",
497
+ "inBundle": true,
498
+ "license": "MIT",
499
+ "engines": {
500
+ "node": ">=12"
501
+ },
502
+ "funding": {
503
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
504
+ }
505
+ },
506
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": {
507
+ "version": "9.2.2",
508
+ "inBundle": true,
509
+ "license": "MIT"
510
+ },
511
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": {
512
+ "version": "5.1.2",
513
+ "inBundle": true,
514
+ "license": "MIT",
515
+ "dependencies": {
516
+ "eastasianwidth": "^0.2.0",
517
+ "emoji-regex": "^9.2.2",
518
+ "strip-ansi": "^7.0.1"
519
+ },
520
+ "engines": {
521
+ "node": ">=12"
522
+ },
523
+ "funding": {
524
+ "url": "https://github.com/sponsors/sindresorhus"
525
+ }
526
+ },
527
+ "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": {
528
+ "version": "7.1.0",
529
+ "inBundle": true,
530
+ "license": "MIT",
531
+ "dependencies": {
532
+ "ansi-regex": "^6.0.1"
533
+ },
534
+ "engines": {
535
+ "node": ">=12"
536
+ },
537
+ "funding": {
538
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
539
+ }
540
+ },
541
+ "node_modules/npm/node_modules/@isaacs/fs-minipass": {
542
+ "version": "4.0.1",
543
+ "inBundle": true,
544
+ "license": "ISC",
545
+ "dependencies": {
546
+ "minipass": "^7.0.4"
547
+ },
548
+ "engines": {
549
+ "node": ">=18.0.0"
550
+ }
551
+ },
552
+ "node_modules/npm/node_modules/@isaacs/string-locale-compare": {
553
+ "version": "1.1.0",
554
+ "inBundle": true,
555
+ "license": "ISC"
556
+ },
557
+ "node_modules/npm/node_modules/@npmcli/agent": {
558
+ "version": "3.0.0",
559
+ "inBundle": true,
560
+ "license": "ISC",
561
+ "dependencies": {
562
+ "agent-base": "^7.1.0",
563
+ "http-proxy-agent": "^7.0.0",
564
+ "https-proxy-agent": "^7.0.1",
565
+ "lru-cache": "^10.0.1",
566
+ "socks-proxy-agent": "^8.0.3"
567
+ },
568
+ "engines": {
569
+ "node": "^18.17.0 || >=20.5.0"
570
+ }
571
+ },
572
+ "node_modules/npm/node_modules/@npmcli/arborist": {
573
+ "version": "8.0.0",
574
+ "inBundle": true,
575
+ "license": "ISC",
576
+ "dependencies": {
577
+ "@isaacs/string-locale-compare": "^1.1.0",
578
+ "@npmcli/fs": "^4.0.0",
579
+ "@npmcli/installed-package-contents": "^3.0.0",
580
+ "@npmcli/map-workspaces": "^4.0.1",
581
+ "@npmcli/metavuln-calculator": "^8.0.0",
582
+ "@npmcli/name-from-folder": "^3.0.0",
583
+ "@npmcli/node-gyp": "^4.0.0",
584
+ "@npmcli/package-json": "^6.0.1",
585
+ "@npmcli/query": "^4.0.0",
586
+ "@npmcli/redact": "^3.0.0",
587
+ "@npmcli/run-script": "^9.0.1",
588
+ "bin-links": "^5.0.0",
589
+ "cacache": "^19.0.1",
590
+ "common-ancestor-path": "^1.0.1",
591
+ "hosted-git-info": "^8.0.0",
592
+ "json-parse-even-better-errors": "^4.0.0",
593
+ "json-stringify-nice": "^1.1.4",
594
+ "lru-cache": "^10.2.2",
595
+ "minimatch": "^9.0.4",
596
+ "nopt": "^8.0.0",
597
+ "npm-install-checks": "^7.1.0",
598
+ "npm-package-arg": "^12.0.0",
599
+ "npm-pick-manifest": "^10.0.0",
600
+ "npm-registry-fetch": "^18.0.1",
601
+ "pacote": "^19.0.0",
602
+ "parse-conflict-json": "^4.0.0",
603
+ "proc-log": "^5.0.0",
604
+ "proggy": "^3.0.0",
605
+ "promise-all-reject-late": "^1.0.0",
606
+ "promise-call-limit": "^3.0.1",
607
+ "read-package-json-fast": "^4.0.0",
608
+ "semver": "^7.3.7",
609
+ "ssri": "^12.0.0",
610
+ "treeverse": "^3.0.0",
611
+ "walk-up-path": "^3.0.1"
612
+ },
613
+ "bin": {
614
+ "arborist": "bin/index.js"
615
+ },
616
+ "engines": {
617
+ "node": "^18.17.0 || >=20.5.0"
618
+ }
619
+ },
620
+ "node_modules/npm/node_modules/@npmcli/config": {
621
+ "version": "9.0.0",
622
+ "inBundle": true,
623
+ "license": "ISC",
624
+ "dependencies": {
625
+ "@npmcli/map-workspaces": "^4.0.1",
626
+ "@npmcli/package-json": "^6.0.1",
627
+ "ci-info": "^4.0.0",
628
+ "ini": "^5.0.0",
629
+ "nopt": "^8.0.0",
630
+ "proc-log": "^5.0.0",
631
+ "semver": "^7.3.5",
632
+ "walk-up-path": "^3.0.1"
633
+ },
634
+ "engines": {
635
+ "node": "^18.17.0 || >=20.5.0"
636
+ }
637
+ },
638
+ "node_modules/npm/node_modules/@npmcli/fs": {
639
+ "version": "4.0.0",
640
+ "inBundle": true,
641
+ "license": "ISC",
642
+ "dependencies": {
643
+ "semver": "^7.3.5"
644
+ },
645
+ "engines": {
646
+ "node": "^18.17.0 || >=20.5.0"
647
+ }
648
+ },
649
+ "node_modules/npm/node_modules/@npmcli/git": {
650
+ "version": "6.0.1",
651
+ "inBundle": true,
652
+ "license": "ISC",
653
+ "dependencies": {
654
+ "@npmcli/promise-spawn": "^8.0.0",
655
+ "ini": "^5.0.0",
656
+ "lru-cache": "^10.0.1",
657
+ "npm-pick-manifest": "^10.0.0",
658
+ "proc-log": "^5.0.0",
659
+ "promise-inflight": "^1.0.1",
660
+ "promise-retry": "^2.0.1",
661
+ "semver": "^7.3.5",
662
+ "which": "^5.0.0"
663
+ },
664
+ "engines": {
665
+ "node": "^18.17.0 || >=20.5.0"
666
+ }
667
+ },
668
+ "node_modules/npm/node_modules/@npmcli/installed-package-contents": {
669
+ "version": "3.0.0",
670
+ "inBundle": true,
671
+ "license": "ISC",
672
+ "dependencies": {
673
+ "npm-bundled": "^4.0.0",
674
+ "npm-normalize-package-bin": "^4.0.0"
675
+ },
676
+ "bin": {
677
+ "installed-package-contents": "bin/index.js"
678
+ },
679
+ "engines": {
680
+ "node": "^18.17.0 || >=20.5.0"
681
+ }
682
+ },
683
+ "node_modules/npm/node_modules/@npmcli/map-workspaces": {
684
+ "version": "4.0.1",
685
+ "inBundle": true,
686
+ "license": "ISC",
687
+ "dependencies": {
688
+ "@npmcli/name-from-folder": "^3.0.0",
689
+ "@npmcli/package-json": "^6.0.0",
690
+ "glob": "^10.2.2",
691
+ "minimatch": "^9.0.0"
692
+ },
693
+ "engines": {
694
+ "node": "^18.17.0 || >=20.5.0"
695
+ }
696
+ },
697
+ "node_modules/npm/node_modules/@npmcli/metavuln-calculator": {
698
+ "version": "8.0.1",
699
+ "inBundle": true,
700
+ "license": "ISC",
701
+ "dependencies": {
702
+ "cacache": "^19.0.0",
703
+ "json-parse-even-better-errors": "^4.0.0",
704
+ "pacote": "^20.0.0",
705
+ "proc-log": "^5.0.0",
706
+ "semver": "^7.3.5"
707
+ },
708
+ "engines": {
709
+ "node": "^18.17.0 || >=20.5.0"
710
+ }
711
+ },
712
+ "node_modules/npm/node_modules/@npmcli/metavuln-calculator/node_modules/pacote": {
713
+ "version": "20.0.0",
714
+ "inBundle": true,
715
+ "license": "ISC",
716
+ "dependencies": {
717
+ "@npmcli/git": "^6.0.0",
718
+ "@npmcli/installed-package-contents": "^3.0.0",
719
+ "@npmcli/package-json": "^6.0.0",
720
+ "@npmcli/promise-spawn": "^8.0.0",
721
+ "@npmcli/run-script": "^9.0.0",
722
+ "cacache": "^19.0.0",
723
+ "fs-minipass": "^3.0.0",
724
+ "minipass": "^7.0.2",
725
+ "npm-package-arg": "^12.0.0",
726
+ "npm-packlist": "^9.0.0",
727
+ "npm-pick-manifest": "^10.0.0",
728
+ "npm-registry-fetch": "^18.0.0",
729
+ "proc-log": "^5.0.0",
730
+ "promise-retry": "^2.0.1",
731
+ "sigstore": "^3.0.0",
732
+ "ssri": "^12.0.0",
733
+ "tar": "^6.1.11"
734
+ },
735
+ "bin": {
736
+ "pacote": "bin/index.js"
737
+ },
738
+ "engines": {
739
+ "node": "^18.17.0 || >=20.5.0"
740
+ }
741
+ },
742
+ "node_modules/npm/node_modules/@npmcli/name-from-folder": {
743
+ "version": "3.0.0",
744
+ "inBundle": true,
745
+ "license": "ISC",
746
+ "engines": {
747
+ "node": "^18.17.0 || >=20.5.0"
748
+ }
749
+ },
750
+ "node_modules/npm/node_modules/@npmcli/node-gyp": {
751
+ "version": "4.0.0",
752
+ "inBundle": true,
753
+ "license": "ISC",
754
+ "engines": {
755
+ "node": "^18.17.0 || >=20.5.0"
756
+ }
757
+ },
758
+ "node_modules/npm/node_modules/@npmcli/package-json": {
759
+ "version": "6.0.1",
760
+ "inBundle": true,
761
+ "license": "ISC",
762
+ "dependencies": {
763
+ "@npmcli/git": "^6.0.0",
764
+ "glob": "^10.2.2",
765
+ "hosted-git-info": "^8.0.0",
766
+ "json-parse-even-better-errors": "^4.0.0",
767
+ "normalize-package-data": "^7.0.0",
768
+ "proc-log": "^5.0.0",
769
+ "semver": "^7.5.3"
770
+ },
771
+ "engines": {
772
+ "node": "^18.17.0 || >=20.5.0"
773
+ }
774
+ },
775
+ "node_modules/npm/node_modules/@npmcli/promise-spawn": {
776
+ "version": "8.0.2",
777
+ "inBundle": true,
778
+ "license": "ISC",
779
+ "dependencies": {
780
+ "which": "^5.0.0"
781
+ },
782
+ "engines": {
783
+ "node": "^18.17.0 || >=20.5.0"
784
+ }
785
+ },
786
+ "node_modules/npm/node_modules/@npmcli/query": {
787
+ "version": "4.0.0",
788
+ "inBundle": true,
789
+ "license": "ISC",
790
+ "dependencies": {
791
+ "postcss-selector-parser": "^6.1.2"
792
+ },
793
+ "engines": {
794
+ "node": "^18.17.0 || >=20.5.0"
795
+ }
796
+ },
797
+ "node_modules/npm/node_modules/@npmcli/redact": {
798
+ "version": "3.0.0",
799
+ "inBundle": true,
800
+ "license": "ISC",
801
+ "engines": {
802
+ "node": "^18.17.0 || >=20.5.0"
803
+ }
804
+ },
805
+ "node_modules/npm/node_modules/@npmcli/run-script": {
806
+ "version": "9.0.1",
807
+ "inBundle": true,
808
+ "license": "ISC",
809
+ "dependencies": {
810
+ "@npmcli/node-gyp": "^4.0.0",
811
+ "@npmcli/package-json": "^6.0.0",
812
+ "@npmcli/promise-spawn": "^8.0.0",
813
+ "node-gyp": "^10.0.0",
814
+ "proc-log": "^5.0.0",
815
+ "which": "^5.0.0"
816
+ },
817
+ "engines": {
818
+ "node": "^18.17.0 || >=20.5.0"
819
+ }
820
+ },
821
+ "node_modules/npm/node_modules/@pkgjs/parseargs": {
822
+ "version": "0.11.0",
823
+ "inBundle": true,
824
+ "license": "MIT",
825
+ "optional": true,
826
+ "engines": {
827
+ "node": ">=14"
828
+ }
829
+ },
830
+ "node_modules/npm/node_modules/@sigstore/protobuf-specs": {
831
+ "version": "0.3.2",
832
+ "inBundle": true,
833
+ "license": "Apache-2.0",
834
+ "engines": {
835
+ "node": "^16.14.0 || >=18.0.0"
836
+ }
837
+ },
838
+ "node_modules/npm/node_modules/@sigstore/tuf": {
839
+ "version": "3.0.0",
840
+ "inBundle": true,
841
+ "license": "Apache-2.0",
842
+ "dependencies": {
843
+ "@sigstore/protobuf-specs": "^0.3.2",
844
+ "tuf-js": "^3.0.1"
845
+ },
846
+ "engines": {
847
+ "node": "^18.17.0 || >=20.5.0"
848
+ }
849
+ },
850
+ "node_modules/npm/node_modules/@tufjs/canonical-json": {
851
+ "version": "2.0.0",
852
+ "inBundle": true,
853
+ "license": "MIT",
854
+ "engines": {
855
+ "node": "^16.14.0 || >=18.0.0"
856
+ }
857
+ },
858
+ "node_modules/npm/node_modules/abbrev": {
859
+ "version": "3.0.0",
860
+ "inBundle": true,
861
+ "license": "ISC",
862
+ "engines": {
863
+ "node": "^18.17.0 || >=20.5.0"
864
+ }
865
+ },
866
+ "node_modules/npm/node_modules/agent-base": {
867
+ "version": "7.1.1",
868
+ "inBundle": true,
869
+ "license": "MIT",
870
+ "dependencies": {
871
+ "debug": "^4.3.4"
872
+ },
873
+ "engines": {
874
+ "node": ">= 14"
875
+ }
876
+ },
877
+ "node_modules/npm/node_modules/aggregate-error": {
878
+ "version": "3.1.0",
879
+ "inBundle": true,
880
+ "license": "MIT",
881
+ "dependencies": {
882
+ "clean-stack": "^2.0.0",
883
+ "indent-string": "^4.0.0"
884
+ },
885
+ "engines": {
886
+ "node": ">=8"
887
+ }
888
+ },
889
+ "node_modules/npm/node_modules/ansi-regex": {
890
+ "version": "5.0.1",
891
+ "inBundle": true,
892
+ "license": "MIT",
893
+ "engines": {
894
+ "node": ">=8"
895
+ }
896
+ },
897
+ "node_modules/npm/node_modules/ansi-styles": {
898
+ "version": "6.2.1",
899
+ "inBundle": true,
900
+ "license": "MIT",
901
+ "engines": {
902
+ "node": ">=12"
903
+ },
904
+ "funding": {
905
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
906
+ }
907
+ },
908
+ "node_modules/npm/node_modules/aproba": {
909
+ "version": "2.0.0",
910
+ "inBundle": true,
911
+ "license": "ISC"
912
+ },
913
+ "node_modules/npm/node_modules/archy": {
914
+ "version": "1.0.0",
915
+ "inBundle": true,
916
+ "license": "MIT"
917
+ },
918
+ "node_modules/npm/node_modules/balanced-match": {
919
+ "version": "1.0.2",
920
+ "inBundle": true,
921
+ "license": "MIT"
922
+ },
923
+ "node_modules/npm/node_modules/bin-links": {
924
+ "version": "5.0.0",
925
+ "inBundle": true,
926
+ "license": "ISC",
927
+ "dependencies": {
928
+ "cmd-shim": "^7.0.0",
929
+ "npm-normalize-package-bin": "^4.0.0",
930
+ "proc-log": "^5.0.0",
931
+ "read-cmd-shim": "^5.0.0",
932
+ "write-file-atomic": "^6.0.0"
933
+ },
934
+ "engines": {
935
+ "node": "^18.17.0 || >=20.5.0"
936
+ }
937
+ },
938
+ "node_modules/npm/node_modules/binary-extensions": {
939
+ "version": "2.3.0",
940
+ "inBundle": true,
941
+ "license": "MIT",
942
+ "engines": {
943
+ "node": ">=8"
944
+ },
945
+ "funding": {
946
+ "url": "https://github.com/sponsors/sindresorhus"
947
+ }
948
+ },
949
+ "node_modules/npm/node_modules/brace-expansion": {
950
+ "version": "2.0.1",
951
+ "inBundle": true,
952
+ "license": "MIT",
953
+ "dependencies": {
954
+ "balanced-match": "^1.0.0"
955
+ }
956
+ },
957
+ "node_modules/npm/node_modules/cacache": {
958
+ "version": "19.0.1",
959
+ "inBundle": true,
960
+ "license": "ISC",
961
+ "dependencies": {
962
+ "@npmcli/fs": "^4.0.0",
963
+ "fs-minipass": "^3.0.0",
964
+ "glob": "^10.2.2",
965
+ "lru-cache": "^10.0.1",
966
+ "minipass": "^7.0.3",
967
+ "minipass-collect": "^2.0.1",
968
+ "minipass-flush": "^1.0.5",
969
+ "minipass-pipeline": "^1.2.4",
970
+ "p-map": "^7.0.2",
971
+ "ssri": "^12.0.0",
972
+ "tar": "^7.4.3",
973
+ "unique-filename": "^4.0.0"
974
+ },
975
+ "engines": {
976
+ "node": "^18.17.0 || >=20.5.0"
977
+ }
978
+ },
979
+ "node_modules/npm/node_modules/cacache/node_modules/chownr": {
980
+ "version": "3.0.0",
981
+ "inBundle": true,
982
+ "license": "BlueOak-1.0.0",
983
+ "engines": {
984
+ "node": ">=18"
985
+ }
986
+ },
987
+ "node_modules/npm/node_modules/cacache/node_modules/minizlib": {
988
+ "version": "3.0.1",
989
+ "inBundle": true,
990
+ "license": "MIT",
991
+ "dependencies": {
992
+ "minipass": "^7.0.4",
993
+ "rimraf": "^5.0.5"
994
+ },
995
+ "engines": {
996
+ "node": ">= 18"
997
+ }
998
+ },
999
+ "node_modules/npm/node_modules/cacache/node_modules/mkdirp": {
1000
+ "version": "3.0.1",
1001
+ "inBundle": true,
1002
+ "license": "MIT",
1003
+ "bin": {
1004
+ "mkdirp": "dist/cjs/src/bin.js"
1005
+ },
1006
+ "engines": {
1007
+ "node": ">=10"
1008
+ },
1009
+ "funding": {
1010
+ "url": "https://github.com/sponsors/isaacs"
1011
+ }
1012
+ },
1013
+ "node_modules/npm/node_modules/cacache/node_modules/p-map": {
1014
+ "version": "7.0.2",
1015
+ "inBundle": true,
1016
+ "license": "MIT",
1017
+ "engines": {
1018
+ "node": ">=18"
1019
+ },
1020
+ "funding": {
1021
+ "url": "https://github.com/sponsors/sindresorhus"
1022
+ }
1023
+ },
1024
+ "node_modules/npm/node_modules/cacache/node_modules/tar": {
1025
+ "version": "7.4.3",
1026
+ "inBundle": true,
1027
+ "license": "ISC",
1028
+ "dependencies": {
1029
+ "@isaacs/fs-minipass": "^4.0.0",
1030
+ "chownr": "^3.0.0",
1031
+ "minipass": "^7.1.2",
1032
+ "minizlib": "^3.0.1",
1033
+ "mkdirp": "^3.0.1",
1034
+ "yallist": "^5.0.0"
1035
+ },
1036
+ "engines": {
1037
+ "node": ">=18"
1038
+ }
1039
+ },
1040
+ "node_modules/npm/node_modules/cacache/node_modules/yallist": {
1041
+ "version": "5.0.0",
1042
+ "inBundle": true,
1043
+ "license": "BlueOak-1.0.0",
1044
+ "engines": {
1045
+ "node": ">=18"
1046
+ }
1047
+ },
1048
+ "node_modules/npm/node_modules/chalk": {
1049
+ "version": "5.3.0",
1050
+ "inBundle": true,
1051
+ "license": "MIT",
1052
+ "engines": {
1053
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
1054
+ },
1055
+ "funding": {
1056
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1057
+ }
1058
+ },
1059
+ "node_modules/npm/node_modules/chownr": {
1060
+ "version": "2.0.0",
1061
+ "inBundle": true,
1062
+ "license": "ISC",
1063
+ "engines": {
1064
+ "node": ">=10"
1065
+ }
1066
+ },
1067
+ "node_modules/npm/node_modules/ci-info": {
1068
+ "version": "4.1.0",
1069
+ "funding": [
1070
+ {
1071
+ "type": "github",
1072
+ "url": "https://github.com/sponsors/sibiraj-s"
1073
+ }
1074
+ ],
1075
+ "inBundle": true,
1076
+ "license": "MIT",
1077
+ "engines": {
1078
+ "node": ">=8"
1079
+ }
1080
+ },
1081
+ "node_modules/npm/node_modules/cidr-regex": {
1082
+ "version": "4.1.1",
1083
+ "inBundle": true,
1084
+ "license": "BSD-2-Clause",
1085
+ "dependencies": {
1086
+ "ip-regex": "^5.0.0"
1087
+ },
1088
+ "engines": {
1089
+ "node": ">=14"
1090
+ }
1091
+ },
1092
+ "node_modules/npm/node_modules/clean-stack": {
1093
+ "version": "2.2.0",
1094
+ "inBundle": true,
1095
+ "license": "MIT",
1096
+ "engines": {
1097
+ "node": ">=6"
1098
+ }
1099
+ },
1100
+ "node_modules/npm/node_modules/cli-columns": {
1101
+ "version": "4.0.0",
1102
+ "inBundle": true,
1103
+ "license": "MIT",
1104
+ "dependencies": {
1105
+ "string-width": "^4.2.3",
1106
+ "strip-ansi": "^6.0.1"
1107
+ },
1108
+ "engines": {
1109
+ "node": ">= 10"
1110
+ }
1111
+ },
1112
+ "node_modules/npm/node_modules/cmd-shim": {
1113
+ "version": "7.0.0",
1114
+ "inBundle": true,
1115
+ "license": "ISC",
1116
+ "engines": {
1117
+ "node": "^18.17.0 || >=20.5.0"
1118
+ }
1119
+ },
1120
+ "node_modules/npm/node_modules/color-convert": {
1121
+ "version": "2.0.1",
1122
+ "inBundle": true,
1123
+ "license": "MIT",
1124
+ "dependencies": {
1125
+ "color-name": "~1.1.4"
1126
+ },
1127
+ "engines": {
1128
+ "node": ">=7.0.0"
1129
+ }
1130
+ },
1131
+ "node_modules/npm/node_modules/color-name": {
1132
+ "version": "1.1.4",
1133
+ "inBundle": true,
1134
+ "license": "MIT"
1135
+ },
1136
+ "node_modules/npm/node_modules/common-ancestor-path": {
1137
+ "version": "1.0.1",
1138
+ "inBundle": true,
1139
+ "license": "ISC"
1140
+ },
1141
+ "node_modules/npm/node_modules/cross-spawn": {
1142
+ "version": "7.0.6",
1143
+ "inBundle": true,
1144
+ "license": "MIT",
1145
+ "dependencies": {
1146
+ "path-key": "^3.1.0",
1147
+ "shebang-command": "^2.0.0",
1148
+ "which": "^2.0.1"
1149
+ },
1150
+ "engines": {
1151
+ "node": ">= 8"
1152
+ }
1153
+ },
1154
+ "node_modules/npm/node_modules/cross-spawn/node_modules/which": {
1155
+ "version": "2.0.2",
1156
+ "inBundle": true,
1157
+ "license": "ISC",
1158
+ "dependencies": {
1159
+ "isexe": "^2.0.0"
1160
+ },
1161
+ "bin": {
1162
+ "node-which": "bin/node-which"
1163
+ },
1164
+ "engines": {
1165
+ "node": ">= 8"
1166
+ }
1167
+ },
1168
+ "node_modules/npm/node_modules/cssesc": {
1169
+ "version": "3.0.0",
1170
+ "inBundle": true,
1171
+ "license": "MIT",
1172
+ "bin": {
1173
+ "cssesc": "bin/cssesc"
1174
+ },
1175
+ "engines": {
1176
+ "node": ">=4"
1177
+ }
1178
+ },
1179
+ "node_modules/npm/node_modules/debug": {
1180
+ "version": "4.3.7",
1181
+ "inBundle": true,
1182
+ "license": "MIT",
1183
+ "dependencies": {
1184
+ "ms": "^2.1.3"
1185
+ },
1186
+ "engines": {
1187
+ "node": ">=6.0"
1188
+ },
1189
+ "peerDependenciesMeta": {
1190
+ "supports-color": {
1191
+ "optional": true
1192
+ }
1193
+ }
1194
+ },
1195
+ "node_modules/npm/node_modules/diff": {
1196
+ "version": "5.2.0",
1197
+ "inBundle": true,
1198
+ "license": "BSD-3-Clause",
1199
+ "engines": {
1200
+ "node": ">=0.3.1"
1201
+ }
1202
+ },
1203
+ "node_modules/npm/node_modules/eastasianwidth": {
1204
+ "version": "0.2.0",
1205
+ "inBundle": true,
1206
+ "license": "MIT"
1207
+ },
1208
+ "node_modules/npm/node_modules/emoji-regex": {
1209
+ "version": "8.0.0",
1210
+ "inBundle": true,
1211
+ "license": "MIT"
1212
+ },
1213
+ "node_modules/npm/node_modules/encoding": {
1214
+ "version": "0.1.13",
1215
+ "inBundle": true,
1216
+ "license": "MIT",
1217
+ "optional": true,
1218
+ "dependencies": {
1219
+ "iconv-lite": "^0.6.2"
1220
+ }
1221
+ },
1222
+ "node_modules/npm/node_modules/env-paths": {
1223
+ "version": "2.2.1",
1224
+ "inBundle": true,
1225
+ "license": "MIT",
1226
+ "engines": {
1227
+ "node": ">=6"
1228
+ }
1229
+ },
1230
+ "node_modules/npm/node_modules/err-code": {
1231
+ "version": "2.0.3",
1232
+ "inBundle": true,
1233
+ "license": "MIT"
1234
+ },
1235
+ "node_modules/npm/node_modules/exponential-backoff": {
1236
+ "version": "3.1.1",
1237
+ "inBundle": true,
1238
+ "license": "Apache-2.0"
1239
+ },
1240
+ "node_modules/npm/node_modules/fastest-levenshtein": {
1241
+ "version": "1.0.16",
1242
+ "inBundle": true,
1243
+ "license": "MIT",
1244
+ "engines": {
1245
+ "node": ">= 4.9.1"
1246
+ }
1247
+ },
1248
+ "node_modules/npm/node_modules/foreground-child": {
1249
+ "version": "3.3.0",
1250
+ "inBundle": true,
1251
+ "license": "ISC",
1252
+ "dependencies": {
1253
+ "cross-spawn": "^7.0.0",
1254
+ "signal-exit": "^4.0.1"
1255
+ },
1256
+ "engines": {
1257
+ "node": ">=14"
1258
+ },
1259
+ "funding": {
1260
+ "url": "https://github.com/sponsors/isaacs"
1261
+ }
1262
+ },
1263
+ "node_modules/npm/node_modules/fs-minipass": {
1264
+ "version": "3.0.3",
1265
+ "inBundle": true,
1266
+ "license": "ISC",
1267
+ "dependencies": {
1268
+ "minipass": "^7.0.3"
1269
+ },
1270
+ "engines": {
1271
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1272
+ }
1273
+ },
1274
+ "node_modules/npm/node_modules/glob": {
1275
+ "version": "10.4.5",
1276
+ "inBundle": true,
1277
+ "license": "ISC",
1278
+ "dependencies": {
1279
+ "foreground-child": "^3.1.0",
1280
+ "jackspeak": "^3.1.2",
1281
+ "minimatch": "^9.0.4",
1282
+ "minipass": "^7.1.2",
1283
+ "package-json-from-dist": "^1.0.0",
1284
+ "path-scurry": "^1.11.1"
1285
+ },
1286
+ "bin": {
1287
+ "glob": "dist/esm/bin.mjs"
1288
+ },
1289
+ "funding": {
1290
+ "url": "https://github.com/sponsors/isaacs"
1291
+ }
1292
+ },
1293
+ "node_modules/npm/node_modules/graceful-fs": {
1294
+ "version": "4.2.11",
1295
+ "inBundle": true,
1296
+ "license": "ISC"
1297
+ },
1298
+ "node_modules/npm/node_modules/hosted-git-info": {
1299
+ "version": "8.0.2",
1300
+ "inBundle": true,
1301
+ "license": "ISC",
1302
+ "dependencies": {
1303
+ "lru-cache": "^10.0.1"
1304
+ },
1305
+ "engines": {
1306
+ "node": "^18.17.0 || >=20.5.0"
1307
+ }
1308
+ },
1309
+ "node_modules/npm/node_modules/http-cache-semantics": {
1310
+ "version": "4.1.1",
1311
+ "inBundle": true,
1312
+ "license": "BSD-2-Clause"
1313
+ },
1314
+ "node_modules/npm/node_modules/http-proxy-agent": {
1315
+ "version": "7.0.2",
1316
+ "inBundle": true,
1317
+ "license": "MIT",
1318
+ "dependencies": {
1319
+ "agent-base": "^7.1.0",
1320
+ "debug": "^4.3.4"
1321
+ },
1322
+ "engines": {
1323
+ "node": ">= 14"
1324
+ }
1325
+ },
1326
+ "node_modules/npm/node_modules/https-proxy-agent": {
1327
+ "version": "7.0.5",
1328
+ "inBundle": true,
1329
+ "license": "MIT",
1330
+ "dependencies": {
1331
+ "agent-base": "^7.0.2",
1332
+ "debug": "4"
1333
+ },
1334
+ "engines": {
1335
+ "node": ">= 14"
1336
+ }
1337
+ },
1338
+ "node_modules/npm/node_modules/iconv-lite": {
1339
+ "version": "0.6.3",
1340
+ "inBundle": true,
1341
+ "license": "MIT",
1342
+ "optional": true,
1343
+ "dependencies": {
1344
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1345
+ },
1346
+ "engines": {
1347
+ "node": ">=0.10.0"
1348
+ }
1349
+ },
1350
+ "node_modules/npm/node_modules/ignore-walk": {
1351
+ "version": "7.0.0",
1352
+ "inBundle": true,
1353
+ "license": "ISC",
1354
+ "dependencies": {
1355
+ "minimatch": "^9.0.0"
1356
+ },
1357
+ "engines": {
1358
+ "node": "^18.17.0 || >=20.5.0"
1359
+ }
1360
+ },
1361
+ "node_modules/npm/node_modules/imurmurhash": {
1362
+ "version": "0.1.4",
1363
+ "inBundle": true,
1364
+ "license": "MIT",
1365
+ "engines": {
1366
+ "node": ">=0.8.19"
1367
+ }
1368
+ },
1369
+ "node_modules/npm/node_modules/indent-string": {
1370
+ "version": "4.0.0",
1371
+ "inBundle": true,
1372
+ "license": "MIT",
1373
+ "engines": {
1374
+ "node": ">=8"
1375
+ }
1376
+ },
1377
+ "node_modules/npm/node_modules/ini": {
1378
+ "version": "5.0.0",
1379
+ "inBundle": true,
1380
+ "license": "ISC",
1381
+ "engines": {
1382
+ "node": "^18.17.0 || >=20.5.0"
1383
+ }
1384
+ },
1385
+ "node_modules/npm/node_modules/init-package-json": {
1386
+ "version": "7.0.1",
1387
+ "inBundle": true,
1388
+ "license": "ISC",
1389
+ "dependencies": {
1390
+ "@npmcli/package-json": "^6.0.0",
1391
+ "npm-package-arg": "^12.0.0",
1392
+ "promzard": "^2.0.0",
1393
+ "read": "^4.0.0",
1394
+ "semver": "^7.3.5",
1395
+ "validate-npm-package-license": "^3.0.4",
1396
+ "validate-npm-package-name": "^6.0.0"
1397
+ },
1398
+ "engines": {
1399
+ "node": "^18.17.0 || >=20.5.0"
1400
+ }
1401
+ },
1402
+ "node_modules/npm/node_modules/ip-address": {
1403
+ "version": "9.0.5",
1404
+ "inBundle": true,
1405
+ "license": "MIT",
1406
+ "dependencies": {
1407
+ "jsbn": "1.1.0",
1408
+ "sprintf-js": "^1.1.3"
1409
+ },
1410
+ "engines": {
1411
+ "node": ">= 12"
1412
+ }
1413
+ },
1414
+ "node_modules/npm/node_modules/ip-regex": {
1415
+ "version": "5.0.0",
1416
+ "inBundle": true,
1417
+ "license": "MIT",
1418
+ "engines": {
1419
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1420
+ },
1421
+ "funding": {
1422
+ "url": "https://github.com/sponsors/sindresorhus"
1423
+ }
1424
+ },
1425
+ "node_modules/npm/node_modules/is-cidr": {
1426
+ "version": "5.1.0",
1427
+ "inBundle": true,
1428
+ "license": "BSD-2-Clause",
1429
+ "dependencies": {
1430
+ "cidr-regex": "^4.1.1"
1431
+ },
1432
+ "engines": {
1433
+ "node": ">=14"
1434
+ }
1435
+ },
1436
+ "node_modules/npm/node_modules/is-fullwidth-code-point": {
1437
+ "version": "3.0.0",
1438
+ "inBundle": true,
1439
+ "license": "MIT",
1440
+ "engines": {
1441
+ "node": ">=8"
1442
+ }
1443
+ },
1444
+ "node_modules/npm/node_modules/is-lambda": {
1445
+ "version": "1.0.1",
1446
+ "inBundle": true,
1447
+ "license": "MIT"
1448
+ },
1449
+ "node_modules/npm/node_modules/isexe": {
1450
+ "version": "2.0.0",
1451
+ "inBundle": true,
1452
+ "license": "ISC"
1453
+ },
1454
+ "node_modules/npm/node_modules/jackspeak": {
1455
+ "version": "3.4.3",
1456
+ "inBundle": true,
1457
+ "license": "BlueOak-1.0.0",
1458
+ "dependencies": {
1459
+ "@isaacs/cliui": "^8.0.2"
1460
+ },
1461
+ "funding": {
1462
+ "url": "https://github.com/sponsors/isaacs"
1463
+ },
1464
+ "optionalDependencies": {
1465
+ "@pkgjs/parseargs": "^0.11.0"
1466
+ }
1467
+ },
1468
+ "node_modules/npm/node_modules/jsbn": {
1469
+ "version": "1.1.0",
1470
+ "inBundle": true,
1471
+ "license": "MIT"
1472
+ },
1473
+ "node_modules/npm/node_modules/json-parse-even-better-errors": {
1474
+ "version": "4.0.0",
1475
+ "inBundle": true,
1476
+ "license": "MIT",
1477
+ "engines": {
1478
+ "node": "^18.17.0 || >=20.5.0"
1479
+ }
1480
+ },
1481
+ "node_modules/npm/node_modules/json-stringify-nice": {
1482
+ "version": "1.1.4",
1483
+ "inBundle": true,
1484
+ "license": "ISC",
1485
+ "funding": {
1486
+ "url": "https://github.com/sponsors/isaacs"
1487
+ }
1488
+ },
1489
+ "node_modules/npm/node_modules/jsonparse": {
1490
+ "version": "1.3.1",
1491
+ "engines": [
1492
+ "node >= 0.2.0"
1493
+ ],
1494
+ "inBundle": true,
1495
+ "license": "MIT"
1496
+ },
1497
+ "node_modules/npm/node_modules/just-diff": {
1498
+ "version": "6.0.2",
1499
+ "inBundle": true,
1500
+ "license": "MIT"
1501
+ },
1502
+ "node_modules/npm/node_modules/just-diff-apply": {
1503
+ "version": "5.5.0",
1504
+ "inBundle": true,
1505
+ "license": "MIT"
1506
+ },
1507
+ "node_modules/npm/node_modules/libnpmaccess": {
1508
+ "version": "9.0.0",
1509
+ "inBundle": true,
1510
+ "license": "ISC",
1511
+ "dependencies": {
1512
+ "npm-package-arg": "^12.0.0",
1513
+ "npm-registry-fetch": "^18.0.1"
1514
+ },
1515
+ "engines": {
1516
+ "node": "^18.17.0 || >=20.5.0"
1517
+ }
1518
+ },
1519
+ "node_modules/npm/node_modules/libnpmdiff": {
1520
+ "version": "7.0.0",
1521
+ "inBundle": true,
1522
+ "license": "ISC",
1523
+ "dependencies": {
1524
+ "@npmcli/arborist": "^8.0.0",
1525
+ "@npmcli/installed-package-contents": "^3.0.0",
1526
+ "binary-extensions": "^2.3.0",
1527
+ "diff": "^5.1.0",
1528
+ "minimatch": "^9.0.4",
1529
+ "npm-package-arg": "^12.0.0",
1530
+ "pacote": "^19.0.0",
1531
+ "tar": "^6.2.1"
1532
+ },
1533
+ "engines": {
1534
+ "node": "^18.17.0 || >=20.5.0"
1535
+ }
1536
+ },
1537
+ "node_modules/npm/node_modules/libnpmexec": {
1538
+ "version": "9.0.0",
1539
+ "inBundle": true,
1540
+ "license": "ISC",
1541
+ "dependencies": {
1542
+ "@npmcli/arborist": "^8.0.0",
1543
+ "@npmcli/run-script": "^9.0.1",
1544
+ "ci-info": "^4.0.0",
1545
+ "npm-package-arg": "^12.0.0",
1546
+ "pacote": "^19.0.0",
1547
+ "proc-log": "^5.0.0",
1548
+ "read": "^4.0.0",
1549
+ "read-package-json-fast": "^4.0.0",
1550
+ "semver": "^7.3.7",
1551
+ "walk-up-path": "^3.0.1"
1552
+ },
1553
+ "engines": {
1554
+ "node": "^18.17.0 || >=20.5.0"
1555
+ }
1556
+ },
1557
+ "node_modules/npm/node_modules/libnpmfund": {
1558
+ "version": "6.0.0",
1559
+ "inBundle": true,
1560
+ "license": "ISC",
1561
+ "dependencies": {
1562
+ "@npmcli/arborist": "^8.0.0"
1563
+ },
1564
+ "engines": {
1565
+ "node": "^18.17.0 || >=20.5.0"
1566
+ }
1567
+ },
1568
+ "node_modules/npm/node_modules/libnpmhook": {
1569
+ "version": "11.0.0",
1570
+ "inBundle": true,
1571
+ "license": "ISC",
1572
+ "dependencies": {
1573
+ "aproba": "^2.0.0",
1574
+ "npm-registry-fetch": "^18.0.1"
1575
+ },
1576
+ "engines": {
1577
+ "node": "^18.17.0 || >=20.5.0"
1578
+ }
1579
+ },
1580
+ "node_modules/npm/node_modules/libnpmorg": {
1581
+ "version": "7.0.0",
1582
+ "inBundle": true,
1583
+ "license": "ISC",
1584
+ "dependencies": {
1585
+ "aproba": "^2.0.0",
1586
+ "npm-registry-fetch": "^18.0.1"
1587
+ },
1588
+ "engines": {
1589
+ "node": "^18.17.0 || >=20.5.0"
1590
+ }
1591
+ },
1592
+ "node_modules/npm/node_modules/libnpmpack": {
1593
+ "version": "8.0.0",
1594
+ "inBundle": true,
1595
+ "license": "ISC",
1596
+ "dependencies": {
1597
+ "@npmcli/arborist": "^8.0.0",
1598
+ "@npmcli/run-script": "^9.0.1",
1599
+ "npm-package-arg": "^12.0.0",
1600
+ "pacote": "^19.0.0"
1601
+ },
1602
+ "engines": {
1603
+ "node": "^18.17.0 || >=20.5.0"
1604
+ }
1605
+ },
1606
+ "node_modules/npm/node_modules/libnpmpublish": {
1607
+ "version": "10.0.1",
1608
+ "inBundle": true,
1609
+ "license": "ISC",
1610
+ "dependencies": {
1611
+ "ci-info": "^4.0.0",
1612
+ "normalize-package-data": "^7.0.0",
1613
+ "npm-package-arg": "^12.0.0",
1614
+ "npm-registry-fetch": "^18.0.1",
1615
+ "proc-log": "^5.0.0",
1616
+ "semver": "^7.3.7",
1617
+ "sigstore": "^3.0.0",
1618
+ "ssri": "^12.0.0"
1619
+ },
1620
+ "engines": {
1621
+ "node": "^18.17.0 || >=20.5.0"
1622
+ }
1623
+ },
1624
+ "node_modules/npm/node_modules/libnpmsearch": {
1625
+ "version": "8.0.0",
1626
+ "inBundle": true,
1627
+ "license": "ISC",
1628
+ "dependencies": {
1629
+ "npm-registry-fetch": "^18.0.1"
1630
+ },
1631
+ "engines": {
1632
+ "node": "^18.17.0 || >=20.5.0"
1633
+ }
1634
+ },
1635
+ "node_modules/npm/node_modules/libnpmteam": {
1636
+ "version": "7.0.0",
1637
+ "inBundle": true,
1638
+ "license": "ISC",
1639
+ "dependencies": {
1640
+ "aproba": "^2.0.0",
1641
+ "npm-registry-fetch": "^18.0.1"
1642
+ },
1643
+ "engines": {
1644
+ "node": "^18.17.0 || >=20.5.0"
1645
+ }
1646
+ },
1647
+ "node_modules/npm/node_modules/libnpmversion": {
1648
+ "version": "7.0.0",
1649
+ "inBundle": true,
1650
+ "license": "ISC",
1651
+ "dependencies": {
1652
+ "@npmcli/git": "^6.0.1",
1653
+ "@npmcli/run-script": "^9.0.1",
1654
+ "json-parse-even-better-errors": "^4.0.0",
1655
+ "proc-log": "^5.0.0",
1656
+ "semver": "^7.3.7"
1657
+ },
1658
+ "engines": {
1659
+ "node": "^18.17.0 || >=20.5.0"
1660
+ }
1661
+ },
1662
+ "node_modules/npm/node_modules/lru-cache": {
1663
+ "version": "10.4.3",
1664
+ "inBundle": true,
1665
+ "license": "ISC"
1666
+ },
1667
+ "node_modules/npm/node_modules/make-fetch-happen": {
1668
+ "version": "14.0.3",
1669
+ "inBundle": true,
1670
+ "license": "ISC",
1671
+ "dependencies": {
1672
+ "@npmcli/agent": "^3.0.0",
1673
+ "cacache": "^19.0.1",
1674
+ "http-cache-semantics": "^4.1.1",
1675
+ "minipass": "^7.0.2",
1676
+ "minipass-fetch": "^4.0.0",
1677
+ "minipass-flush": "^1.0.5",
1678
+ "minipass-pipeline": "^1.2.4",
1679
+ "negotiator": "^1.0.0",
1680
+ "proc-log": "^5.0.0",
1681
+ "promise-retry": "^2.0.1",
1682
+ "ssri": "^12.0.0"
1683
+ },
1684
+ "engines": {
1685
+ "node": "^18.17.0 || >=20.5.0"
1686
+ }
1687
+ },
1688
+ "node_modules/npm/node_modules/make-fetch-happen/node_modules/negotiator": {
1689
+ "version": "1.0.0",
1690
+ "inBundle": true,
1691
+ "license": "MIT",
1692
+ "engines": {
1693
+ "node": ">= 0.6"
1694
+ }
1695
+ },
1696
+ "node_modules/npm/node_modules/minimatch": {
1697
+ "version": "9.0.5",
1698
+ "inBundle": true,
1699
+ "license": "ISC",
1700
+ "dependencies": {
1701
+ "brace-expansion": "^2.0.1"
1702
+ },
1703
+ "engines": {
1704
+ "node": ">=16 || 14 >=14.17"
1705
+ },
1706
+ "funding": {
1707
+ "url": "https://github.com/sponsors/isaacs"
1708
+ }
1709
+ },
1710
+ "node_modules/npm/node_modules/minipass": {
1711
+ "version": "7.1.2",
1712
+ "inBundle": true,
1713
+ "license": "ISC",
1714
+ "engines": {
1715
+ "node": ">=16 || 14 >=14.17"
1716
+ }
1717
+ },
1718
+ "node_modules/npm/node_modules/minipass-collect": {
1719
+ "version": "2.0.1",
1720
+ "inBundle": true,
1721
+ "license": "ISC",
1722
+ "dependencies": {
1723
+ "minipass": "^7.0.3"
1724
+ },
1725
+ "engines": {
1726
+ "node": ">=16 || 14 >=14.17"
1727
+ }
1728
+ },
1729
+ "node_modules/npm/node_modules/minipass-fetch": {
1730
+ "version": "4.0.0",
1731
+ "inBundle": true,
1732
+ "license": "MIT",
1733
+ "dependencies": {
1734
+ "minipass": "^7.0.3",
1735
+ "minipass-sized": "^1.0.3",
1736
+ "minizlib": "^3.0.1"
1737
+ },
1738
+ "engines": {
1739
+ "node": "^18.17.0 || >=20.5.0"
1740
+ },
1741
+ "optionalDependencies": {
1742
+ "encoding": "^0.1.13"
1743
+ }
1744
+ },
1745
+ "node_modules/npm/node_modules/minipass-fetch/node_modules/minizlib": {
1746
+ "version": "3.0.1",
1747
+ "inBundle": true,
1748
+ "license": "MIT",
1749
+ "dependencies": {
1750
+ "minipass": "^7.0.4",
1751
+ "rimraf": "^5.0.5"
1752
+ },
1753
+ "engines": {
1754
+ "node": ">= 18"
1755
+ }
1756
+ },
1757
+ "node_modules/npm/node_modules/minipass-flush": {
1758
+ "version": "1.0.5",
1759
+ "inBundle": true,
1760
+ "license": "ISC",
1761
+ "dependencies": {
1762
+ "minipass": "^3.0.0"
1763
+ },
1764
+ "engines": {
1765
+ "node": ">= 8"
1766
+ }
1767
+ },
1768
+ "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": {
1769
+ "version": "3.3.6",
1770
+ "inBundle": true,
1771
+ "license": "ISC",
1772
+ "dependencies": {
1773
+ "yallist": "^4.0.0"
1774
+ },
1775
+ "engines": {
1776
+ "node": ">=8"
1777
+ }
1778
+ },
1779
+ "node_modules/npm/node_modules/minipass-pipeline": {
1780
+ "version": "1.2.4",
1781
+ "inBundle": true,
1782
+ "license": "ISC",
1783
+ "dependencies": {
1784
+ "minipass": "^3.0.0"
1785
+ },
1786
+ "engines": {
1787
+ "node": ">=8"
1788
+ }
1789
+ },
1790
+ "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": {
1791
+ "version": "3.3.6",
1792
+ "inBundle": true,
1793
+ "license": "ISC",
1794
+ "dependencies": {
1795
+ "yallist": "^4.0.0"
1796
+ },
1797
+ "engines": {
1798
+ "node": ">=8"
1799
+ }
1800
+ },
1801
+ "node_modules/npm/node_modules/minipass-sized": {
1802
+ "version": "1.0.3",
1803
+ "inBundle": true,
1804
+ "license": "ISC",
1805
+ "dependencies": {
1806
+ "minipass": "^3.0.0"
1807
+ },
1808
+ "engines": {
1809
+ "node": ">=8"
1810
+ }
1811
+ },
1812
+ "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": {
1813
+ "version": "3.3.6",
1814
+ "inBundle": true,
1815
+ "license": "ISC",
1816
+ "dependencies": {
1817
+ "yallist": "^4.0.0"
1818
+ },
1819
+ "engines": {
1820
+ "node": ">=8"
1821
+ }
1822
+ },
1823
+ "node_modules/npm/node_modules/minizlib": {
1824
+ "version": "2.1.2",
1825
+ "inBundle": true,
1826
+ "license": "MIT",
1827
+ "dependencies": {
1828
+ "minipass": "^3.0.0",
1829
+ "yallist": "^4.0.0"
1830
+ },
1831
+ "engines": {
1832
+ "node": ">= 8"
1833
+ }
1834
+ },
1835
+ "node_modules/npm/node_modules/minizlib/node_modules/minipass": {
1836
+ "version": "3.3.6",
1837
+ "inBundle": true,
1838
+ "license": "ISC",
1839
+ "dependencies": {
1840
+ "yallist": "^4.0.0"
1841
+ },
1842
+ "engines": {
1843
+ "node": ">=8"
1844
+ }
1845
+ },
1846
+ "node_modules/npm/node_modules/mkdirp": {
1847
+ "version": "1.0.4",
1848
+ "inBundle": true,
1849
+ "license": "MIT",
1850
+ "bin": {
1851
+ "mkdirp": "bin/cmd.js"
1852
+ },
1853
+ "engines": {
1854
+ "node": ">=10"
1855
+ }
1856
+ },
1857
+ "node_modules/npm/node_modules/ms": {
1858
+ "version": "2.1.3",
1859
+ "inBundle": true,
1860
+ "license": "MIT"
1861
+ },
1862
+ "node_modules/npm/node_modules/mute-stream": {
1863
+ "version": "2.0.0",
1864
+ "inBundle": true,
1865
+ "license": "ISC",
1866
+ "engines": {
1867
+ "node": "^18.17.0 || >=20.5.0"
1868
+ }
1869
+ },
1870
+ "node_modules/npm/node_modules/negotiator": {
1871
+ "version": "0.6.4",
1872
+ "inBundle": true,
1873
+ "license": "MIT",
1874
+ "engines": {
1875
+ "node": ">= 0.6"
1876
+ }
1877
+ },
1878
+ "node_modules/npm/node_modules/node-gyp": {
1879
+ "version": "10.2.0",
1880
+ "inBundle": true,
1881
+ "license": "MIT",
1882
+ "dependencies": {
1883
+ "env-paths": "^2.2.0",
1884
+ "exponential-backoff": "^3.1.1",
1885
+ "glob": "^10.3.10",
1886
+ "graceful-fs": "^4.2.6",
1887
+ "make-fetch-happen": "^13.0.0",
1888
+ "nopt": "^7.0.0",
1889
+ "proc-log": "^4.1.0",
1890
+ "semver": "^7.3.5",
1891
+ "tar": "^6.2.1",
1892
+ "which": "^4.0.0"
1893
+ },
1894
+ "bin": {
1895
+ "node-gyp": "bin/node-gyp.js"
1896
+ },
1897
+ "engines": {
1898
+ "node": "^16.14.0 || >=18.0.0"
1899
+ }
1900
+ },
1901
+ "node_modules/npm/node_modules/node-gyp/node_modules/@npmcli/agent": {
1902
+ "version": "2.2.2",
1903
+ "inBundle": true,
1904
+ "license": "ISC",
1905
+ "dependencies": {
1906
+ "agent-base": "^7.1.0",
1907
+ "http-proxy-agent": "^7.0.0",
1908
+ "https-proxy-agent": "^7.0.1",
1909
+ "lru-cache": "^10.0.1",
1910
+ "socks-proxy-agent": "^8.0.3"
1911
+ },
1912
+ "engines": {
1913
+ "node": "^16.14.0 || >=18.0.0"
1914
+ }
1915
+ },
1916
+ "node_modules/npm/node_modules/node-gyp/node_modules/@npmcli/fs": {
1917
+ "version": "3.1.1",
1918
+ "inBundle": true,
1919
+ "license": "ISC",
1920
+ "dependencies": {
1921
+ "semver": "^7.3.5"
1922
+ },
1923
+ "engines": {
1924
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1925
+ }
1926
+ },
1927
+ "node_modules/npm/node_modules/node-gyp/node_modules/abbrev": {
1928
+ "version": "2.0.0",
1929
+ "inBundle": true,
1930
+ "license": "ISC",
1931
+ "engines": {
1932
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1933
+ }
1934
+ },
1935
+ "node_modules/npm/node_modules/node-gyp/node_modules/cacache": {
1936
+ "version": "18.0.4",
1937
+ "inBundle": true,
1938
+ "license": "ISC",
1939
+ "dependencies": {
1940
+ "@npmcli/fs": "^3.1.0",
1941
+ "fs-minipass": "^3.0.0",
1942
+ "glob": "^10.2.2",
1943
+ "lru-cache": "^10.0.1",
1944
+ "minipass": "^7.0.3",
1945
+ "minipass-collect": "^2.0.1",
1946
+ "minipass-flush": "^1.0.5",
1947
+ "minipass-pipeline": "^1.2.4",
1948
+ "p-map": "^4.0.0",
1949
+ "ssri": "^10.0.0",
1950
+ "tar": "^6.1.11",
1951
+ "unique-filename": "^3.0.0"
1952
+ },
1953
+ "engines": {
1954
+ "node": "^16.14.0 || >=18.0.0"
1955
+ }
1956
+ },
1957
+ "node_modules/npm/node_modules/node-gyp/node_modules/isexe": {
1958
+ "version": "3.1.1",
1959
+ "inBundle": true,
1960
+ "license": "ISC",
1961
+ "engines": {
1962
+ "node": ">=16"
1963
+ }
1964
+ },
1965
+ "node_modules/npm/node_modules/node-gyp/node_modules/make-fetch-happen": {
1966
+ "version": "13.0.1",
1967
+ "inBundle": true,
1968
+ "license": "ISC",
1969
+ "dependencies": {
1970
+ "@npmcli/agent": "^2.0.0",
1971
+ "cacache": "^18.0.0",
1972
+ "http-cache-semantics": "^4.1.1",
1973
+ "is-lambda": "^1.0.1",
1974
+ "minipass": "^7.0.2",
1975
+ "minipass-fetch": "^3.0.0",
1976
+ "minipass-flush": "^1.0.5",
1977
+ "minipass-pipeline": "^1.2.4",
1978
+ "negotiator": "^0.6.3",
1979
+ "proc-log": "^4.2.0",
1980
+ "promise-retry": "^2.0.1",
1981
+ "ssri": "^10.0.0"
1982
+ },
1983
+ "engines": {
1984
+ "node": "^16.14.0 || >=18.0.0"
1985
+ }
1986
+ },
1987
+ "node_modules/npm/node_modules/node-gyp/node_modules/minipass-fetch": {
1988
+ "version": "3.0.5",
1989
+ "inBundle": true,
1990
+ "license": "MIT",
1991
+ "dependencies": {
1992
+ "minipass": "^7.0.3",
1993
+ "minipass-sized": "^1.0.3",
1994
+ "minizlib": "^2.1.2"
1995
+ },
1996
+ "engines": {
1997
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
1998
+ },
1999
+ "optionalDependencies": {
2000
+ "encoding": "^0.1.13"
2001
+ }
2002
+ },
2003
+ "node_modules/npm/node_modules/node-gyp/node_modules/nopt": {
2004
+ "version": "7.2.1",
2005
+ "inBundle": true,
2006
+ "license": "ISC",
2007
+ "dependencies": {
2008
+ "abbrev": "^2.0.0"
2009
+ },
2010
+ "bin": {
2011
+ "nopt": "bin/nopt.js"
2012
+ },
2013
+ "engines": {
2014
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2015
+ }
2016
+ },
2017
+ "node_modules/npm/node_modules/node-gyp/node_modules/proc-log": {
2018
+ "version": "4.2.0",
2019
+ "inBundle": true,
2020
+ "license": "ISC",
2021
+ "engines": {
2022
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2023
+ }
2024
+ },
2025
+ "node_modules/npm/node_modules/node-gyp/node_modules/ssri": {
2026
+ "version": "10.0.6",
2027
+ "inBundle": true,
2028
+ "license": "ISC",
2029
+ "dependencies": {
2030
+ "minipass": "^7.0.3"
2031
+ },
2032
+ "engines": {
2033
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2034
+ }
2035
+ },
2036
+ "node_modules/npm/node_modules/node-gyp/node_modules/unique-filename": {
2037
+ "version": "3.0.0",
2038
+ "inBundle": true,
2039
+ "license": "ISC",
2040
+ "dependencies": {
2041
+ "unique-slug": "^4.0.0"
2042
+ },
2043
+ "engines": {
2044
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2045
+ }
2046
+ },
2047
+ "node_modules/npm/node_modules/node-gyp/node_modules/unique-slug": {
2048
+ "version": "4.0.0",
2049
+ "inBundle": true,
2050
+ "license": "ISC",
2051
+ "dependencies": {
2052
+ "imurmurhash": "^0.1.4"
2053
+ },
2054
+ "engines": {
2055
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2056
+ }
2057
+ },
2058
+ "node_modules/npm/node_modules/node-gyp/node_modules/which": {
2059
+ "version": "4.0.0",
2060
+ "inBundle": true,
2061
+ "license": "ISC",
2062
+ "dependencies": {
2063
+ "isexe": "^3.1.1"
2064
+ },
2065
+ "bin": {
2066
+ "node-which": "bin/which.js"
2067
+ },
2068
+ "engines": {
2069
+ "node": "^16.13.0 || >=18.0.0"
2070
+ }
2071
+ },
2072
+ "node_modules/npm/node_modules/nopt": {
2073
+ "version": "8.0.0",
2074
+ "inBundle": true,
2075
+ "license": "ISC",
2076
+ "dependencies": {
2077
+ "abbrev": "^2.0.0"
2078
+ },
2079
+ "bin": {
2080
+ "nopt": "bin/nopt.js"
2081
+ },
2082
+ "engines": {
2083
+ "node": "^18.17.0 || >=20.5.0"
2084
+ }
2085
+ },
2086
+ "node_modules/npm/node_modules/nopt/node_modules/abbrev": {
2087
+ "version": "2.0.0",
2088
+ "inBundle": true,
2089
+ "license": "ISC",
2090
+ "engines": {
2091
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2092
+ }
2093
+ },
2094
+ "node_modules/npm/node_modules/normalize-package-data": {
2095
+ "version": "7.0.0",
2096
+ "inBundle": true,
2097
+ "license": "BSD-2-Clause",
2098
+ "dependencies": {
2099
+ "hosted-git-info": "^8.0.0",
2100
+ "semver": "^7.3.5",
2101
+ "validate-npm-package-license": "^3.0.4"
2102
+ },
2103
+ "engines": {
2104
+ "node": "^18.17.0 || >=20.5.0"
2105
+ }
2106
+ },
2107
+ "node_modules/npm/node_modules/npm-audit-report": {
2108
+ "version": "6.0.0",
2109
+ "inBundle": true,
2110
+ "license": "ISC",
2111
+ "engines": {
2112
+ "node": "^18.17.0 || >=20.5.0"
2113
+ }
2114
+ },
2115
+ "node_modules/npm/node_modules/npm-bundled": {
2116
+ "version": "4.0.0",
2117
+ "inBundle": true,
2118
+ "license": "ISC",
2119
+ "dependencies": {
2120
+ "npm-normalize-package-bin": "^4.0.0"
2121
+ },
2122
+ "engines": {
2123
+ "node": "^18.17.0 || >=20.5.0"
2124
+ }
2125
+ },
2126
+ "node_modules/npm/node_modules/npm-install-checks": {
2127
+ "version": "7.1.1",
2128
+ "inBundle": true,
2129
+ "license": "BSD-2-Clause",
2130
+ "dependencies": {
2131
+ "semver": "^7.1.1"
2132
+ },
2133
+ "engines": {
2134
+ "node": "^18.17.0 || >=20.5.0"
2135
+ }
2136
+ },
2137
+ "node_modules/npm/node_modules/npm-normalize-package-bin": {
2138
+ "version": "4.0.0",
2139
+ "inBundle": true,
2140
+ "license": "ISC",
2141
+ "engines": {
2142
+ "node": "^18.17.0 || >=20.5.0"
2143
+ }
2144
+ },
2145
+ "node_modules/npm/node_modules/npm-package-arg": {
2146
+ "version": "12.0.0",
2147
+ "inBundle": true,
2148
+ "license": "ISC",
2149
+ "dependencies": {
2150
+ "hosted-git-info": "^8.0.0",
2151
+ "proc-log": "^5.0.0",
2152
+ "semver": "^7.3.5",
2153
+ "validate-npm-package-name": "^6.0.0"
2154
+ },
2155
+ "engines": {
2156
+ "node": "^18.17.0 || >=20.5.0"
2157
+ }
2158
+ },
2159
+ "node_modules/npm/node_modules/npm-packlist": {
2160
+ "version": "9.0.0",
2161
+ "inBundle": true,
2162
+ "license": "ISC",
2163
+ "dependencies": {
2164
+ "ignore-walk": "^7.0.0"
2165
+ },
2166
+ "engines": {
2167
+ "node": "^18.17.0 || >=20.5.0"
2168
+ }
2169
+ },
2170
+ "node_modules/npm/node_modules/npm-pick-manifest": {
2171
+ "version": "10.0.0",
2172
+ "inBundle": true,
2173
+ "license": "ISC",
2174
+ "dependencies": {
2175
+ "npm-install-checks": "^7.1.0",
2176
+ "npm-normalize-package-bin": "^4.0.0",
2177
+ "npm-package-arg": "^12.0.0",
2178
+ "semver": "^7.3.5"
2179
+ },
2180
+ "engines": {
2181
+ "node": "^18.17.0 || >=20.5.0"
2182
+ }
2183
+ },
2184
+ "node_modules/npm/node_modules/npm-profile": {
2185
+ "version": "11.0.1",
2186
+ "inBundle": true,
2187
+ "license": "ISC",
2188
+ "dependencies": {
2189
+ "npm-registry-fetch": "^18.0.0",
2190
+ "proc-log": "^5.0.0"
2191
+ },
2192
+ "engines": {
2193
+ "node": "^18.17.0 || >=20.5.0"
2194
+ }
2195
+ },
2196
+ "node_modules/npm/node_modules/npm-registry-fetch": {
2197
+ "version": "18.0.2",
2198
+ "inBundle": true,
2199
+ "license": "ISC",
2200
+ "dependencies": {
2201
+ "@npmcli/redact": "^3.0.0",
2202
+ "jsonparse": "^1.3.1",
2203
+ "make-fetch-happen": "^14.0.0",
2204
+ "minipass": "^7.0.2",
2205
+ "minipass-fetch": "^4.0.0",
2206
+ "minizlib": "^3.0.1",
2207
+ "npm-package-arg": "^12.0.0",
2208
+ "proc-log": "^5.0.0"
2209
+ },
2210
+ "engines": {
2211
+ "node": "^18.17.0 || >=20.5.0"
2212
+ }
2213
+ },
2214
+ "node_modules/npm/node_modules/npm-registry-fetch/node_modules/minizlib": {
2215
+ "version": "3.0.1",
2216
+ "inBundle": true,
2217
+ "license": "MIT",
2218
+ "dependencies": {
2219
+ "minipass": "^7.0.4",
2220
+ "rimraf": "^5.0.5"
2221
+ },
2222
+ "engines": {
2223
+ "node": ">= 18"
2224
+ }
2225
+ },
2226
+ "node_modules/npm/node_modules/npm-user-validate": {
2227
+ "version": "3.0.0",
2228
+ "inBundle": true,
2229
+ "license": "BSD-2-Clause",
2230
+ "engines": {
2231
+ "node": "^18.17.0 || >=20.5.0"
2232
+ }
2233
+ },
2234
+ "node_modules/npm/node_modules/p-map": {
2235
+ "version": "4.0.0",
2236
+ "inBundle": true,
2237
+ "license": "MIT",
2238
+ "dependencies": {
2239
+ "aggregate-error": "^3.0.0"
2240
+ },
2241
+ "engines": {
2242
+ "node": ">=10"
2243
+ },
2244
+ "funding": {
2245
+ "url": "https://github.com/sponsors/sindresorhus"
2246
+ }
2247
+ },
2248
+ "node_modules/npm/node_modules/package-json-from-dist": {
2249
+ "version": "1.0.1",
2250
+ "inBundle": true,
2251
+ "license": "BlueOak-1.0.0"
2252
+ },
2253
+ "node_modules/npm/node_modules/pacote": {
2254
+ "version": "19.0.1",
2255
+ "inBundle": true,
2256
+ "license": "ISC",
2257
+ "dependencies": {
2258
+ "@npmcli/git": "^6.0.0",
2259
+ "@npmcli/installed-package-contents": "^3.0.0",
2260
+ "@npmcli/package-json": "^6.0.0",
2261
+ "@npmcli/promise-spawn": "^8.0.0",
2262
+ "@npmcli/run-script": "^9.0.0",
2263
+ "cacache": "^19.0.0",
2264
+ "fs-minipass": "^3.0.0",
2265
+ "minipass": "^7.0.2",
2266
+ "npm-package-arg": "^12.0.0",
2267
+ "npm-packlist": "^9.0.0",
2268
+ "npm-pick-manifest": "^10.0.0",
2269
+ "npm-registry-fetch": "^18.0.0",
2270
+ "proc-log": "^5.0.0",
2271
+ "promise-retry": "^2.0.1",
2272
+ "sigstore": "^3.0.0",
2273
+ "ssri": "^12.0.0",
2274
+ "tar": "^6.1.11"
2275
+ },
2276
+ "bin": {
2277
+ "pacote": "bin/index.js"
2278
+ },
2279
+ "engines": {
2280
+ "node": "^18.17.0 || >=20.5.0"
2281
+ }
2282
+ },
2283
+ "node_modules/npm/node_modules/parse-conflict-json": {
2284
+ "version": "4.0.0",
2285
+ "inBundle": true,
2286
+ "license": "ISC",
2287
+ "dependencies": {
2288
+ "json-parse-even-better-errors": "^4.0.0",
2289
+ "just-diff": "^6.0.0",
2290
+ "just-diff-apply": "^5.2.0"
2291
+ },
2292
+ "engines": {
2293
+ "node": "^18.17.0 || >=20.5.0"
2294
+ }
2295
+ },
2296
+ "node_modules/npm/node_modules/path-key": {
2297
+ "version": "3.1.1",
2298
+ "inBundle": true,
2299
+ "license": "MIT",
2300
+ "engines": {
2301
+ "node": ">=8"
2302
+ }
2303
+ },
2304
+ "node_modules/npm/node_modules/path-scurry": {
2305
+ "version": "1.11.1",
2306
+ "inBundle": true,
2307
+ "license": "BlueOak-1.0.0",
2308
+ "dependencies": {
2309
+ "lru-cache": "^10.2.0",
2310
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
2311
+ },
2312
+ "engines": {
2313
+ "node": ">=16 || 14 >=14.18"
2314
+ },
2315
+ "funding": {
2316
+ "url": "https://github.com/sponsors/isaacs"
2317
+ }
2318
+ },
2319
+ "node_modules/npm/node_modules/postcss-selector-parser": {
2320
+ "version": "6.1.2",
2321
+ "inBundle": true,
2322
+ "license": "MIT",
2323
+ "dependencies": {
2324
+ "cssesc": "^3.0.0",
2325
+ "util-deprecate": "^1.0.2"
2326
+ },
2327
+ "engines": {
2328
+ "node": ">=4"
2329
+ }
2330
+ },
2331
+ "node_modules/npm/node_modules/proc-log": {
2332
+ "version": "5.0.0",
2333
+ "inBundle": true,
2334
+ "license": "ISC",
2335
+ "engines": {
2336
+ "node": "^18.17.0 || >=20.5.0"
2337
+ }
2338
+ },
2339
+ "node_modules/npm/node_modules/proggy": {
2340
+ "version": "3.0.0",
2341
+ "inBundle": true,
2342
+ "license": "ISC",
2343
+ "engines": {
2344
+ "node": "^18.17.0 || >=20.5.0"
2345
+ }
2346
+ },
2347
+ "node_modules/npm/node_modules/promise-all-reject-late": {
2348
+ "version": "1.0.1",
2349
+ "inBundle": true,
2350
+ "license": "ISC",
2351
+ "funding": {
2352
+ "url": "https://github.com/sponsors/isaacs"
2353
+ }
2354
+ },
2355
+ "node_modules/npm/node_modules/promise-call-limit": {
2356
+ "version": "3.0.2",
2357
+ "inBundle": true,
2358
+ "license": "ISC",
2359
+ "funding": {
2360
+ "url": "https://github.com/sponsors/isaacs"
2361
+ }
2362
+ },
2363
+ "node_modules/npm/node_modules/promise-inflight": {
2364
+ "version": "1.0.1",
2365
+ "inBundle": true,
2366
+ "license": "ISC"
2367
+ },
2368
+ "node_modules/npm/node_modules/promise-retry": {
2369
+ "version": "2.0.1",
2370
+ "inBundle": true,
2371
+ "license": "MIT",
2372
+ "dependencies": {
2373
+ "err-code": "^2.0.2",
2374
+ "retry": "^0.12.0"
2375
+ },
2376
+ "engines": {
2377
+ "node": ">=10"
2378
+ }
2379
+ },
2380
+ "node_modules/npm/node_modules/promzard": {
2381
+ "version": "2.0.0",
2382
+ "inBundle": true,
2383
+ "license": "ISC",
2384
+ "dependencies": {
2385
+ "read": "^4.0.0"
2386
+ },
2387
+ "engines": {
2388
+ "node": "^18.17.0 || >=20.5.0"
2389
+ }
2390
+ },
2391
+ "node_modules/npm/node_modules/qrcode-terminal": {
2392
+ "version": "0.12.0",
2393
+ "inBundle": true,
2394
+ "bin": {
2395
+ "qrcode-terminal": "bin/qrcode-terminal.js"
2396
+ }
2397
+ },
2398
+ "node_modules/npm/node_modules/read": {
2399
+ "version": "4.0.0",
2400
+ "inBundle": true,
2401
+ "license": "ISC",
2402
+ "dependencies": {
2403
+ "mute-stream": "^2.0.0"
2404
+ },
2405
+ "engines": {
2406
+ "node": "^18.17.0 || >=20.5.0"
2407
+ }
2408
+ },
2409
+ "node_modules/npm/node_modules/read-cmd-shim": {
2410
+ "version": "5.0.0",
2411
+ "inBundle": true,
2412
+ "license": "ISC",
2413
+ "engines": {
2414
+ "node": "^18.17.0 || >=20.5.0"
2415
+ }
2416
+ },
2417
+ "node_modules/npm/node_modules/read-package-json-fast": {
2418
+ "version": "4.0.0",
2419
+ "inBundle": true,
2420
+ "license": "ISC",
2421
+ "dependencies": {
2422
+ "json-parse-even-better-errors": "^4.0.0",
2423
+ "npm-normalize-package-bin": "^4.0.0"
2424
+ },
2425
+ "engines": {
2426
+ "node": "^18.17.0 || >=20.5.0"
2427
+ }
2428
+ },
2429
+ "node_modules/npm/node_modules/retry": {
2430
+ "version": "0.12.0",
2431
+ "inBundle": true,
2432
+ "license": "MIT",
2433
+ "engines": {
2434
+ "node": ">= 4"
2435
+ }
2436
+ },
2437
+ "node_modules/npm/node_modules/rimraf": {
2438
+ "version": "5.0.10",
2439
+ "inBundle": true,
2440
+ "license": "ISC",
2441
+ "dependencies": {
2442
+ "glob": "^10.3.7"
2443
+ },
2444
+ "bin": {
2445
+ "rimraf": "dist/esm/bin.mjs"
2446
+ },
2447
+ "funding": {
2448
+ "url": "https://github.com/sponsors/isaacs"
2449
+ }
2450
+ },
2451
+ "node_modules/npm/node_modules/safer-buffer": {
2452
+ "version": "2.1.2",
2453
+ "inBundle": true,
2454
+ "license": "MIT",
2455
+ "optional": true
2456
+ },
2457
+ "node_modules/npm/node_modules/semver": {
2458
+ "version": "7.6.3",
2459
+ "inBundle": true,
2460
+ "license": "ISC",
2461
+ "bin": {
2462
+ "semver": "bin/semver.js"
2463
+ },
2464
+ "engines": {
2465
+ "node": ">=10"
2466
+ }
2467
+ },
2468
+ "node_modules/npm/node_modules/shebang-command": {
2469
+ "version": "2.0.0",
2470
+ "inBundle": true,
2471
+ "license": "MIT",
2472
+ "dependencies": {
2473
+ "shebang-regex": "^3.0.0"
2474
+ },
2475
+ "engines": {
2476
+ "node": ">=8"
2477
+ }
2478
+ },
2479
+ "node_modules/npm/node_modules/shebang-regex": {
2480
+ "version": "3.0.0",
2481
+ "inBundle": true,
2482
+ "license": "MIT",
2483
+ "engines": {
2484
+ "node": ">=8"
2485
+ }
2486
+ },
2487
+ "node_modules/npm/node_modules/signal-exit": {
2488
+ "version": "4.1.0",
2489
+ "inBundle": true,
2490
+ "license": "ISC",
2491
+ "engines": {
2492
+ "node": ">=14"
2493
+ },
2494
+ "funding": {
2495
+ "url": "https://github.com/sponsors/isaacs"
2496
+ }
2497
+ },
2498
+ "node_modules/npm/node_modules/sigstore": {
2499
+ "version": "3.0.0",
2500
+ "inBundle": true,
2501
+ "license": "Apache-2.0",
2502
+ "dependencies": {
2503
+ "@sigstore/bundle": "^3.0.0",
2504
+ "@sigstore/core": "^2.0.0",
2505
+ "@sigstore/protobuf-specs": "^0.3.2",
2506
+ "@sigstore/sign": "^3.0.0",
2507
+ "@sigstore/tuf": "^3.0.0",
2508
+ "@sigstore/verify": "^2.0.0"
2509
+ },
2510
+ "engines": {
2511
+ "node": "^18.17.0 || >=20.5.0"
2512
+ }
2513
+ },
2514
+ "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/bundle": {
2515
+ "version": "3.0.0",
2516
+ "inBundle": true,
2517
+ "license": "Apache-2.0",
2518
+ "dependencies": {
2519
+ "@sigstore/protobuf-specs": "^0.3.2"
2520
+ },
2521
+ "engines": {
2522
+ "node": "^18.17.0 || >=20.5.0"
2523
+ }
2524
+ },
2525
+ "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/core": {
2526
+ "version": "2.0.0",
2527
+ "inBundle": true,
2528
+ "license": "Apache-2.0",
2529
+ "engines": {
2530
+ "node": "^18.17.0 || >=20.5.0"
2531
+ }
2532
+ },
2533
+ "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/sign": {
2534
+ "version": "3.0.0",
2535
+ "inBundle": true,
2536
+ "license": "Apache-2.0",
2537
+ "dependencies": {
2538
+ "@sigstore/bundle": "^3.0.0",
2539
+ "@sigstore/core": "^2.0.0",
2540
+ "@sigstore/protobuf-specs": "^0.3.2",
2541
+ "make-fetch-happen": "^14.0.1",
2542
+ "proc-log": "^5.0.0",
2543
+ "promise-retry": "^2.0.1"
2544
+ },
2545
+ "engines": {
2546
+ "node": "^18.17.0 || >=20.5.0"
2547
+ }
2548
+ },
2549
+ "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/verify": {
2550
+ "version": "2.0.0",
2551
+ "inBundle": true,
2552
+ "license": "Apache-2.0",
2553
+ "dependencies": {
2554
+ "@sigstore/bundle": "^3.0.0",
2555
+ "@sigstore/core": "^2.0.0",
2556
+ "@sigstore/protobuf-specs": "^0.3.2"
2557
+ },
2558
+ "engines": {
2559
+ "node": "^18.17.0 || >=20.5.0"
2560
+ }
2561
+ },
2562
+ "node_modules/npm/node_modules/smart-buffer": {
2563
+ "version": "4.2.0",
2564
+ "inBundle": true,
2565
+ "license": "MIT",
2566
+ "engines": {
2567
+ "node": ">= 6.0.0",
2568
+ "npm": ">= 3.0.0"
2569
+ }
2570
+ },
2571
+ "node_modules/npm/node_modules/socks": {
2572
+ "version": "2.8.3",
2573
+ "inBundle": true,
2574
+ "license": "MIT",
2575
+ "dependencies": {
2576
+ "ip-address": "^9.0.5",
2577
+ "smart-buffer": "^4.2.0"
2578
+ },
2579
+ "engines": {
2580
+ "node": ">= 10.0.0",
2581
+ "npm": ">= 3.0.0"
2582
+ }
2583
+ },
2584
+ "node_modules/npm/node_modules/socks-proxy-agent": {
2585
+ "version": "8.0.4",
2586
+ "inBundle": true,
2587
+ "license": "MIT",
2588
+ "dependencies": {
2589
+ "agent-base": "^7.1.1",
2590
+ "debug": "^4.3.4",
2591
+ "socks": "^2.8.3"
2592
+ },
2593
+ "engines": {
2594
+ "node": ">= 14"
2595
+ }
2596
+ },
2597
+ "node_modules/npm/node_modules/spdx-correct": {
2598
+ "version": "3.2.0",
2599
+ "inBundle": true,
2600
+ "license": "Apache-2.0",
2601
+ "dependencies": {
2602
+ "spdx-expression-parse": "^3.0.0",
2603
+ "spdx-license-ids": "^3.0.0"
2604
+ }
2605
+ },
2606
+ "node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse": {
2607
+ "version": "3.0.1",
2608
+ "inBundle": true,
2609
+ "license": "MIT",
2610
+ "dependencies": {
2611
+ "spdx-exceptions": "^2.1.0",
2612
+ "spdx-license-ids": "^3.0.0"
2613
+ }
2614
+ },
2615
+ "node_modules/npm/node_modules/spdx-exceptions": {
2616
+ "version": "2.5.0",
2617
+ "inBundle": true,
2618
+ "license": "CC-BY-3.0"
2619
+ },
2620
+ "node_modules/npm/node_modules/spdx-expression-parse": {
2621
+ "version": "4.0.0",
2622
+ "inBundle": true,
2623
+ "license": "MIT",
127
2624
  "dependencies": {
128
- "@socket.io/component-emitter": "~3.1.0",
129
- "debug": "~4.3.1",
130
- "engine.io-parser": "~5.2.1",
131
- "ws": "~8.17.1",
132
- "xmlhttprequest-ssl": "~2.0.0"
2625
+ "spdx-exceptions": "^2.1.0",
2626
+ "spdx-license-ids": "^3.0.0"
133
2627
  }
134
2628
  },
135
- "node_modules/engine.io-parser": {
136
- "version": "5.2.2",
137
- "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.2.tgz",
138
- "integrity": "sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==",
2629
+ "node_modules/npm/node_modules/spdx-license-ids": {
2630
+ "version": "3.0.20",
2631
+ "inBundle": true,
2632
+ "license": "CC0-1.0"
2633
+ },
2634
+ "node_modules/npm/node_modules/sprintf-js": {
2635
+ "version": "1.1.3",
2636
+ "inBundle": true,
2637
+ "license": "BSD-3-Clause"
2638
+ },
2639
+ "node_modules/npm/node_modules/ssri": {
2640
+ "version": "12.0.0",
2641
+ "inBundle": true,
2642
+ "license": "ISC",
2643
+ "dependencies": {
2644
+ "minipass": "^7.0.3"
2645
+ },
139
2646
  "engines": {
140
- "node": ">=10.0.0"
2647
+ "node": "^18.17.0 || >=20.5.0"
141
2648
  }
142
2649
  },
143
- "node_modules/entities": {
144
- "version": "4.5.0",
145
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
146
- "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
147
- "dev": true,
2650
+ "node_modules/npm/node_modules/string-width": {
2651
+ "version": "4.2.3",
2652
+ "inBundle": true,
2653
+ "license": "MIT",
2654
+ "dependencies": {
2655
+ "emoji-regex": "^8.0.0",
2656
+ "is-fullwidth-code-point": "^3.0.0",
2657
+ "strip-ansi": "^6.0.1"
2658
+ },
148
2659
  "engines": {
149
- "node": ">=0.12"
2660
+ "node": ">=8"
2661
+ }
2662
+ },
2663
+ "node_modules/npm/node_modules/string-width-cjs": {
2664
+ "name": "string-width",
2665
+ "version": "4.2.3",
2666
+ "inBundle": true,
2667
+ "license": "MIT",
2668
+ "dependencies": {
2669
+ "emoji-regex": "^8.0.0",
2670
+ "is-fullwidth-code-point": "^3.0.0",
2671
+ "strip-ansi": "^6.0.1"
150
2672
  },
151
- "funding": {
152
- "url": "https://github.com/fb55/entities?sponsor=1"
2673
+ "engines": {
2674
+ "node": ">=8"
153
2675
  }
154
2676
  },
155
- "node_modules/form-data": {
156
- "version": "4.0.0",
157
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
158
- "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
159
- "dev": true,
2677
+ "node_modules/npm/node_modules/strip-ansi": {
2678
+ "version": "6.0.1",
2679
+ "inBundle": true,
2680
+ "license": "MIT",
160
2681
  "dependencies": {
161
- "asynckit": "^0.4.0",
162
- "combined-stream": "^1.0.8",
163
- "mime-types": "^2.1.12"
2682
+ "ansi-regex": "^5.0.1"
164
2683
  },
165
2684
  "engines": {
166
- "node": ">= 6"
2685
+ "node": ">=8"
167
2686
  }
168
2687
  },
169
- "node_modules/html-encoding-sniffer": {
170
- "version": "4.0.0",
171
- "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
172
- "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
173
- "dev": true,
2688
+ "node_modules/npm/node_modules/strip-ansi-cjs": {
2689
+ "name": "strip-ansi",
2690
+ "version": "6.0.1",
2691
+ "inBundle": true,
2692
+ "license": "MIT",
174
2693
  "dependencies": {
175
- "whatwg-encoding": "^3.1.1"
2694
+ "ansi-regex": "^5.0.1"
176
2695
  },
177
2696
  "engines": {
178
- "node": ">=18"
2697
+ "node": ">=8"
179
2698
  }
180
2699
  },
181
- "node_modules/http-proxy-agent": {
182
- "version": "7.0.2",
183
- "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
184
- "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
185
- "dev": true,
2700
+ "node_modules/npm/node_modules/supports-color": {
2701
+ "version": "9.4.0",
2702
+ "inBundle": true,
2703
+ "license": "MIT",
2704
+ "engines": {
2705
+ "node": ">=12"
2706
+ },
2707
+ "funding": {
2708
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
2709
+ }
2710
+ },
2711
+ "node_modules/npm/node_modules/tar": {
2712
+ "version": "6.2.1",
2713
+ "inBundle": true,
2714
+ "license": "ISC",
186
2715
  "dependencies": {
187
- "agent-base": "^7.1.0",
188
- "debug": "^4.3.4"
2716
+ "chownr": "^2.0.0",
2717
+ "fs-minipass": "^2.0.0",
2718
+ "minipass": "^5.0.0",
2719
+ "minizlib": "^2.1.1",
2720
+ "mkdirp": "^1.0.3",
2721
+ "yallist": "^4.0.0"
189
2722
  },
190
2723
  "engines": {
191
- "node": ">= 14"
2724
+ "node": ">=10"
192
2725
  }
193
2726
  },
194
- "node_modules/https-proxy-agent": {
195
- "version": "7.0.4",
196
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz",
197
- "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==",
198
- "dev": true,
2727
+ "node_modules/npm/node_modules/tar/node_modules/fs-minipass": {
2728
+ "version": "2.1.0",
2729
+ "inBundle": true,
2730
+ "license": "ISC",
199
2731
  "dependencies": {
200
- "agent-base": "^7.0.2",
201
- "debug": "4"
2732
+ "minipass": "^3.0.0"
202
2733
  },
203
2734
  "engines": {
204
- "node": ">= 14"
2735
+ "node": ">= 8"
205
2736
  }
206
2737
  },
207
- "node_modules/iconv-lite": {
208
- "version": "0.6.3",
209
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
210
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
211
- "dev": true,
2738
+ "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": {
2739
+ "version": "3.3.6",
2740
+ "inBundle": true,
2741
+ "license": "ISC",
212
2742
  "dependencies": {
213
- "safer-buffer": ">= 2.1.2 < 3.0.0"
2743
+ "yallist": "^4.0.0"
214
2744
  },
215
2745
  "engines": {
216
- "node": ">=0.10.0"
2746
+ "node": ">=8"
217
2747
  }
218
2748
  },
219
- "node_modules/is-potential-custom-element-name": {
220
- "version": "1.0.1",
221
- "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
222
- "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
223
- "dev": true
2749
+ "node_modules/npm/node_modules/tar/node_modules/minipass": {
2750
+ "version": "5.0.0",
2751
+ "inBundle": true,
2752
+ "license": "ISC",
2753
+ "engines": {
2754
+ "node": ">=8"
2755
+ }
224
2756
  },
225
- "node_modules/js-tokens": {
226
- "version": "4.0.0",
227
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
228
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
229
- "devOptional": true
2757
+ "node_modules/npm/node_modules/text-table": {
2758
+ "version": "0.2.0",
2759
+ "inBundle": true,
2760
+ "license": "MIT"
230
2761
  },
231
- "node_modules/jsdom": {
232
- "version": "24.0.0",
233
- "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz",
234
- "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==",
235
- "dev": true,
2762
+ "node_modules/npm/node_modules/tiny-relative-date": {
2763
+ "version": "1.3.0",
2764
+ "inBundle": true,
2765
+ "license": "MIT"
2766
+ },
2767
+ "node_modules/npm/node_modules/treeverse": {
2768
+ "version": "3.0.0",
2769
+ "inBundle": true,
2770
+ "license": "ISC",
2771
+ "engines": {
2772
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2773
+ }
2774
+ },
2775
+ "node_modules/npm/node_modules/tuf-js": {
2776
+ "version": "3.0.1",
2777
+ "inBundle": true,
2778
+ "license": "MIT",
236
2779
  "dependencies": {
237
- "cssstyle": "^4.0.1",
238
- "data-urls": "^5.0.0",
239
- "decimal.js": "^10.4.3",
240
- "form-data": "^4.0.0",
241
- "html-encoding-sniffer": "^4.0.0",
242
- "http-proxy-agent": "^7.0.0",
243
- "https-proxy-agent": "^7.0.2",
244
- "is-potential-custom-element-name": "^1.0.1",
245
- "nwsapi": "^2.2.7",
246
- "parse5": "^7.1.2",
247
- "rrweb-cssom": "^0.6.0",
248
- "saxes": "^6.0.0",
249
- "symbol-tree": "^3.2.4",
250
- "tough-cookie": "^4.1.3",
251
- "w3c-xmlserializer": "^5.0.0",
252
- "webidl-conversions": "^7.0.0",
253
- "whatwg-encoding": "^3.1.1",
254
- "whatwg-mimetype": "^4.0.0",
255
- "whatwg-url": "^14.0.0",
256
- "ws": "^8.16.0",
257
- "xml-name-validator": "^5.0.0"
2780
+ "@tufjs/models": "3.0.1",
2781
+ "debug": "^4.3.6",
2782
+ "make-fetch-happen": "^14.0.1"
258
2783
  },
259
2784
  "engines": {
260
- "node": ">=18"
2785
+ "node": "^18.17.0 || >=20.5.0"
2786
+ }
2787
+ },
2788
+ "node_modules/npm/node_modules/tuf-js/node_modules/@tufjs/models": {
2789
+ "version": "3.0.1",
2790
+ "inBundle": true,
2791
+ "license": "MIT",
2792
+ "dependencies": {
2793
+ "@tufjs/canonical-json": "2.0.0",
2794
+ "minimatch": "^9.0.5"
261
2795
  },
262
- "peerDependencies": {
263
- "canvas": "^2.11.2"
2796
+ "engines": {
2797
+ "node": "^18.17.0 || >=20.5.0"
2798
+ }
2799
+ },
2800
+ "node_modules/npm/node_modules/unique-filename": {
2801
+ "version": "4.0.0",
2802
+ "inBundle": true,
2803
+ "license": "ISC",
2804
+ "dependencies": {
2805
+ "unique-slug": "^5.0.0"
264
2806
  },
265
- "peerDependenciesMeta": {
266
- "canvas": {
267
- "optional": true
268
- }
2807
+ "engines": {
2808
+ "node": "^18.17.0 || >=20.5.0"
269
2809
  }
270
2810
  },
271
- "node_modules/loose-envify": {
272
- "version": "1.4.0",
273
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
274
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
275
- "devOptional": true,
2811
+ "node_modules/npm/node_modules/unique-slug": {
2812
+ "version": "5.0.0",
2813
+ "inBundle": true,
2814
+ "license": "ISC",
276
2815
  "dependencies": {
277
- "js-tokens": "^3.0.0 || ^4.0.0"
2816
+ "imurmurhash": "^0.1.4"
2817
+ },
2818
+ "engines": {
2819
+ "node": "^18.17.0 || >=20.5.0"
2820
+ }
2821
+ },
2822
+ "node_modules/npm/node_modules/util-deprecate": {
2823
+ "version": "1.0.2",
2824
+ "inBundle": true,
2825
+ "license": "MIT"
2826
+ },
2827
+ "node_modules/npm/node_modules/validate-npm-package-license": {
2828
+ "version": "3.0.4",
2829
+ "inBundle": true,
2830
+ "license": "Apache-2.0",
2831
+ "dependencies": {
2832
+ "spdx-correct": "^3.0.0",
2833
+ "spdx-expression-parse": "^3.0.0"
2834
+ }
2835
+ },
2836
+ "node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": {
2837
+ "version": "3.0.1",
2838
+ "inBundle": true,
2839
+ "license": "MIT",
2840
+ "dependencies": {
2841
+ "spdx-exceptions": "^2.1.0",
2842
+ "spdx-license-ids": "^3.0.0"
2843
+ }
2844
+ },
2845
+ "node_modules/npm/node_modules/validate-npm-package-name": {
2846
+ "version": "6.0.0",
2847
+ "inBundle": true,
2848
+ "license": "ISC",
2849
+ "engines": {
2850
+ "node": "^18.17.0 || >=20.5.0"
2851
+ }
2852
+ },
2853
+ "node_modules/npm/node_modules/walk-up-path": {
2854
+ "version": "3.0.1",
2855
+ "inBundle": true,
2856
+ "license": "ISC"
2857
+ },
2858
+ "node_modules/npm/node_modules/which": {
2859
+ "version": "5.0.0",
2860
+ "inBundle": true,
2861
+ "license": "ISC",
2862
+ "dependencies": {
2863
+ "isexe": "^3.1.1"
278
2864
  },
279
2865
  "bin": {
280
- "loose-envify": "cli.js"
2866
+ "node-which": "bin/which.js"
2867
+ },
2868
+ "engines": {
2869
+ "node": "^18.17.0 || >=20.5.0"
281
2870
  }
282
2871
  },
283
- "node_modules/mime-db": {
284
- "version": "1.52.0",
285
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
286
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
287
- "dev": true,
2872
+ "node_modules/npm/node_modules/which/node_modules/isexe": {
2873
+ "version": "3.1.1",
2874
+ "inBundle": true,
2875
+ "license": "ISC",
288
2876
  "engines": {
289
- "node": ">= 0.6"
2877
+ "node": ">=16"
290
2878
  }
291
2879
  },
292
- "node_modules/mime-types": {
293
- "version": "2.1.35",
294
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
295
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
296
- "dev": true,
2880
+ "node_modules/npm/node_modules/wrap-ansi": {
2881
+ "version": "8.1.0",
2882
+ "inBundle": true,
2883
+ "license": "MIT",
297
2884
  "dependencies": {
298
- "mime-db": "1.52.0"
2885
+ "ansi-styles": "^6.1.0",
2886
+ "string-width": "^5.0.1",
2887
+ "strip-ansi": "^7.0.1"
299
2888
  },
300
2889
  "engines": {
301
- "node": ">= 0.6"
2890
+ "node": ">=12"
2891
+ },
2892
+ "funding": {
2893
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
302
2894
  }
303
2895
  },
304
- "node_modules/ms": {
305
- "version": "2.1.2",
306
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
307
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
2896
+ "node_modules/npm/node_modules/wrap-ansi-cjs": {
2897
+ "name": "wrap-ansi",
2898
+ "version": "7.0.0",
2899
+ "inBundle": true,
2900
+ "license": "MIT",
2901
+ "dependencies": {
2902
+ "ansi-styles": "^4.0.0",
2903
+ "string-width": "^4.1.0",
2904
+ "strip-ansi": "^6.0.0"
2905
+ },
2906
+ "engines": {
2907
+ "node": ">=10"
2908
+ },
2909
+ "funding": {
2910
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2911
+ }
2912
+ },
2913
+ "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
2914
+ "version": "4.3.0",
2915
+ "inBundle": true,
2916
+ "license": "MIT",
2917
+ "dependencies": {
2918
+ "color-convert": "^2.0.1"
2919
+ },
2920
+ "engines": {
2921
+ "node": ">=8"
2922
+ },
2923
+ "funding": {
2924
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
2925
+ }
2926
+ },
2927
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": {
2928
+ "version": "6.1.0",
2929
+ "inBundle": true,
2930
+ "license": "MIT",
2931
+ "engines": {
2932
+ "node": ">=12"
2933
+ },
2934
+ "funding": {
2935
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
2936
+ }
2937
+ },
2938
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": {
2939
+ "version": "9.2.2",
2940
+ "inBundle": true,
2941
+ "license": "MIT"
2942
+ },
2943
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": {
2944
+ "version": "5.1.2",
2945
+ "inBundle": true,
2946
+ "license": "MIT",
2947
+ "dependencies": {
2948
+ "eastasianwidth": "^0.2.0",
2949
+ "emoji-regex": "^9.2.2",
2950
+ "strip-ansi": "^7.0.1"
2951
+ },
2952
+ "engines": {
2953
+ "node": ">=12"
2954
+ },
2955
+ "funding": {
2956
+ "url": "https://github.com/sponsors/sindresorhus"
2957
+ }
2958
+ },
2959
+ "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": {
2960
+ "version": "7.1.0",
2961
+ "inBundle": true,
2962
+ "license": "MIT",
2963
+ "dependencies": {
2964
+ "ansi-regex": "^6.0.1"
2965
+ },
2966
+ "engines": {
2967
+ "node": ">=12"
2968
+ },
2969
+ "funding": {
2970
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
2971
+ }
2972
+ },
2973
+ "node_modules/npm/node_modules/write-file-atomic": {
2974
+ "version": "6.0.0",
2975
+ "inBundle": true,
2976
+ "license": "ISC",
2977
+ "dependencies": {
2978
+ "imurmurhash": "^0.1.4",
2979
+ "signal-exit": "^4.0.1"
2980
+ },
2981
+ "engines": {
2982
+ "node": "^18.17.0 || >=20.5.0"
2983
+ }
2984
+ },
2985
+ "node_modules/npm/node_modules/yallist": {
2986
+ "version": "4.0.0",
2987
+ "inBundle": true,
2988
+ "license": "ISC"
308
2989
  },
309
2990
  "node_modules/nwsapi": {
310
2991
  "version": "2.2.7",
@@ -325,16 +3006,18 @@
325
3006
  }
326
3007
  },
327
3008
  "node_modules/prostgles-client": {
328
- "version": "4.0.138",
329
- "resolved": "https://registry.npmjs.org/prostgles-client/-/prostgles-client-4.0.138.tgz",
330
- "integrity": "sha512-6CMRWxqtdLGnc916r1KFSrYB3NHPQyOF3+3zzcTS73DSRjJhMs/XdsqUho4okb62wBwuL8WiA1riJenR6ub51w==",
3009
+ "version": "4.0.145",
3010
+ "resolved": "https://registry.npmjs.org/prostgles-client/-/prostgles-client-4.0.145.tgz",
3011
+ "integrity": "sha512-74n5Ve52I8JTyFVTEN8hFjODL11KyyU/DG4g60ehh8XoBL5NnJUzs6iIx99kSPYMt6K0FOkZWMK8+IkBoiPaJg==",
331
3012
  "license": "MIT",
332
3013
  "dependencies": {
333
- "prostgles-types": "^4.0.89"
3014
+ "i": "^0.3.7",
3015
+ "npm": "^10.9.1",
3016
+ "prostgles-types": "^4.0.105"
334
3017
  },
335
3018
  "peerDependencies": {
336
3019
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
337
- "socket.io-client": "^4.7.0 || ^4.7.5"
3020
+ "socket.io-client": "^4.8.1"
338
3021
  },
339
3022
  "peerDependenciesMeta": {
340
3023
  "react": {
@@ -346,9 +3029,9 @@
346
3029
  }
347
3030
  },
348
3031
  "node_modules/prostgles-types": {
349
- "version": "4.0.89",
350
- "resolved": "https://registry.npmjs.org/prostgles-types/-/prostgles-types-4.0.89.tgz",
351
- "integrity": "sha512-xcKVyy98Bhwe7RTJPqmMvFkbkb1nVaiSlLXvtyqCFJmrtHboCxLkodgq9LBEPoGV6kgO9q1NyZPCZtznJ278RQ==",
3032
+ "version": "4.0.105",
3033
+ "resolved": "https://registry.npmjs.org/prostgles-types/-/prostgles-types-4.0.105.tgz",
3034
+ "integrity": "sha512-2/niprMVNzKlxjc9iGmSCwveIJqoOXJnvP1Bt6bVnHFZL4Z0iMA7XE5XMPOGAqS+fztA27V4w8Ov963rQqTOuw==",
352
3035
  "license": "MIT"
353
3036
  },
354
3037
  "node_modules/psl": {
@@ -437,13 +3120,14 @@
437
3120
  }
438
3121
  },
439
3122
  "node_modules/socket.io-client": {
440
- "version": "4.7.5",
441
- "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.5.tgz",
442
- "integrity": "sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==",
3123
+ "version": "4.8.1",
3124
+ "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.1.tgz",
3125
+ "integrity": "sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ==",
3126
+ "license": "MIT",
443
3127
  "dependencies": {
444
3128
  "@socket.io/component-emitter": "~3.1.0",
445
3129
  "debug": "~4.3.2",
446
- "engine.io-client": "~6.5.2",
3130
+ "engine.io-client": "~6.6.1",
447
3131
  "socket.io-parser": "~4.2.4"
448
3132
  },
449
3133
  "engines": {
@@ -623,9 +3307,9 @@
623
3307
  "dev": true
624
3308
  },
625
3309
  "node_modules/xmlhttprequest-ssl": {
626
- "version": "2.0.0",
627
- "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz",
628
- "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==",
3310
+ "version": "2.1.2",
3311
+ "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz",
3312
+ "integrity": "sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==",
629
3313
  "engines": {
630
3314
  "node": ">=0.4.0"
631
3315
  }