matterbridge 3.4.7-dev-20260104-6b10cee → 3.4.7-dev-20260112-a00b2bf

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 (167) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/README.md +5 -1
  3. package/dist/broadcastServer.d.ts +29 -0
  4. package/dist/broadcastServerTypes.d.ts +798 -0
  5. package/dist/cli.d.ts +6 -0
  6. package/dist/cliEmitter.d.ts +14 -0
  7. package/dist/cliHistory.d.ts +6 -0
  8. package/dist/clusters/export.d.ts +1 -0
  9. package/dist/deviceManager.d.ts +27 -0
  10. package/dist/devices/airConditioner.d.ts +23 -0
  11. package/dist/devices/batteryStorage.d.ts +5 -0
  12. package/dist/devices/cooktop.d.ts +6 -0
  13. package/dist/devices/dishwasher.d.ts +16 -0
  14. package/dist/devices/evse.d.ts +19 -0
  15. package/dist/devices/export.d.ts +16 -0
  16. package/dist/devices/extractorHood.d.ts +5 -0
  17. package/dist/devices/heatPump.d.ts +4 -0
  18. package/dist/devices/laundryDryer.d.ts +9 -0
  19. package/dist/devices/laundryWasher.d.ts +17 -0
  20. package/dist/devices/microwaveOven.d.ts +92 -0
  21. package/dist/devices/oven.d.ts +23 -0
  22. package/dist/devices/refrigerator.d.ts +18 -0
  23. package/dist/devices/roboticVacuumCleaner.d.ts +29 -0
  24. package/dist/devices/solarPower.d.ts +4 -0
  25. package/dist/devices/speaker.d.ts +8 -0
  26. package/dist/devices/temperatureControl.d.ts +145 -0
  27. package/dist/devices/waterHeater.d.ts +37 -0
  28. package/dist/dgram/coap.d.ts +34 -0
  29. package/dist/dgram/dgram.d.ts +45 -0
  30. package/dist/dgram/dgram.js +4 -1
  31. package/dist/dgram/mb_coap.d.ts +1 -0
  32. package/dist/dgram/mb_coap.js +1 -2
  33. package/dist/dgram/mb_mdns.d.ts +1 -0
  34. package/dist/dgram/mb_mdns.js +39 -50
  35. package/dist/dgram/mdns.d.ts +188 -0
  36. package/dist/dgram/multicast.d.ts +18 -0
  37. package/dist/dgram/unicast.d.ts +11 -0
  38. package/dist/frontend.d.ts +58 -0
  39. package/dist/frontendTypes.d.ts +472 -0
  40. package/dist/helpers.d.ts +5 -0
  41. package/dist/index.d.ts +11 -0
  42. package/dist/jestutils/export.d.ts +1 -0
  43. package/dist/jestutils/jestHelpers.d.ts +90 -0
  44. package/dist/logger/export.d.ts +1 -0
  45. package/dist/matter/behaviors.d.ts +1 -0
  46. package/dist/matter/clusters.d.ts +1 -0
  47. package/dist/matter/devices.d.ts +1 -0
  48. package/dist/matter/endpoints.d.ts +1 -0
  49. package/dist/matter/export.d.ts +4 -0
  50. package/dist/matter/types.d.ts +2 -0
  51. package/dist/matterNode.d.ts +84 -0
  52. package/dist/matterbridge.d.ts +152 -0
  53. package/dist/matterbridgeAccessoryPlatform.d.ts +5 -0
  54. package/dist/matterbridgeBehaviors.d.ts +2380 -0
  55. package/dist/matterbridgeDeviceTypes.d.ts +95 -0
  56. package/dist/matterbridgeDynamicPlatform.d.ts +5 -0
  57. package/dist/matterbridgeEndpoint.d.ts +175 -0
  58. package/dist/matterbridgeEndpointHelpers.d.ts +362 -0
  59. package/dist/matterbridgeEndpointTypes.d.ts +96 -0
  60. package/dist/matterbridgePlatform.d.ts +114 -0
  61. package/dist/matterbridgeTypes.d.ts +206 -0
  62. package/dist/pluginManager.d.ts +67 -0
  63. package/dist/shelly.d.ts +24 -0
  64. package/dist/storage/export.d.ts +1 -0
  65. package/dist/update.d.ts +9 -0
  66. package/dist/utils/colorUtils.d.ts +24 -0
  67. package/dist/utils/commandLine.d.ts +6 -0
  68. package/dist/utils/copyDirectory.d.ts +2 -0
  69. package/dist/utils/createDirectory.d.ts +2 -0
  70. package/dist/utils/createZip.d.ts +1 -0
  71. package/dist/utils/deepCopy.d.ts +1 -0
  72. package/dist/utils/deepEqual.d.ts +1 -0
  73. package/dist/utils/error.d.ts +3 -0
  74. package/dist/utils/export.d.ts +12 -0
  75. package/dist/utils/format.d.ts +4 -0
  76. package/dist/utils/hex.d.ts +4 -0
  77. package/dist/utils/inspector.d.ts +24 -0
  78. package/dist/utils/isValid.d.ts +10 -0
  79. package/dist/utils/network.d.ts +25 -0
  80. package/dist/utils/spawn.d.ts +1 -0
  81. package/dist/utils/tracker.d.ts +52 -0
  82. package/dist/utils/wait.d.ts +3 -0
  83. package/dist/workerGlobalPrefix.d.ts +1 -0
  84. package/dist/workerTypes.d.ts +27 -0
  85. package/dist/workers.d.ts +8 -0
  86. package/npm-shrinkwrap.json +904 -131
  87. package/package.json +9 -2
  88. package/packages/dgram/dist/coap.d.ts +34 -0
  89. package/packages/dgram/dist/coap.js +252 -0
  90. package/packages/dgram/dist/dgram.d.ts +45 -0
  91. package/packages/dgram/dist/dgram.js +255 -0
  92. package/packages/dgram/dist/export.d.ts +5 -0
  93. package/packages/dgram/dist/export.js +5 -0
  94. package/packages/dgram/dist/mdns.d.ts +188 -0
  95. package/packages/dgram/dist/mdns.js +702 -0
  96. package/packages/dgram/dist/multicast.d.ts +18 -0
  97. package/packages/dgram/dist/multicast.js +119 -0
  98. package/packages/dgram/dist/unicast.d.ts +11 -0
  99. package/packages/dgram/dist/unicast.js +40 -0
  100. package/packages/dgram/package.json +106 -0
  101. package/packages/jest-utils/LICENSE +202 -0
  102. package/packages/jest-utils/bmc-button.svg +22 -0
  103. package/packages/jest-utils/dist/export.d.ts +1 -0
  104. package/packages/jest-utils/dist/export.js +1 -0
  105. package/packages/jest-utils/matterbridge.svg +50 -0
  106. package/packages/{mb-lib-test → jest-utils}/package.json +12 -10
  107. package/packages/utils/LICENSE +202 -0
  108. package/packages/utils/bmc-button.svg +22 -0
  109. package/packages/utils/dist/colorUtils.d.ts +24 -0
  110. package/packages/utils/dist/colorUtils.js +187 -0
  111. package/packages/utils/dist/commandLine.d.ts +6 -0
  112. package/packages/utils/dist/commandLine.js +63 -0
  113. package/packages/utils/dist/copyDirectory.d.ts +2 -0
  114. package/packages/utils/dist/copyDirectory.js +39 -0
  115. package/packages/utils/dist/createDirectory.d.ts +2 -0
  116. package/packages/utils/dist/createDirectory.js +21 -0
  117. package/packages/utils/dist/createZip.d.ts +1 -0
  118. package/packages/utils/dist/createZip.js +69 -0
  119. package/packages/utils/dist/deepCopy.d.ts +1 -0
  120. package/packages/utils/dist/deepCopy.js +40 -0
  121. package/packages/utils/dist/deepEqual.d.ts +1 -0
  122. package/packages/utils/dist/deepEqual.js +58 -0
  123. package/packages/utils/dist/error.d.ts +3 -0
  124. package/packages/utils/dist/error.js +12 -0
  125. package/packages/utils/dist/export.d.ts +15 -0
  126. package/packages/utils/dist/export.js +15 -0
  127. package/packages/utils/dist/format.d.ts +4 -0
  128. package/packages/utils/dist/format.js +29 -0
  129. package/packages/utils/dist/githubVersion.d.ts +11 -0
  130. package/packages/utils/dist/githubVersion.js +37 -0
  131. package/packages/utils/dist/hex.d.ts +4 -0
  132. package/packages/utils/dist/hex.js +118 -0
  133. package/packages/utils/dist/inspector.d.ts +24 -0
  134. package/packages/utils/dist/inspector.js +200 -0
  135. package/packages/utils/dist/isValid.d.ts +10 -0
  136. package/packages/utils/dist/isValid.js +69 -0
  137. package/packages/utils/dist/network.d.ts +12 -0
  138. package/packages/utils/dist/network.js +105 -0
  139. package/packages/utils/dist/npmRoot.d.ts +1 -0
  140. package/packages/utils/dist/npmRoot.js +13 -0
  141. package/packages/utils/dist/npmVersion.d.ts +1 -0
  142. package/packages/utils/dist/npmVersion.js +43 -0
  143. package/packages/utils/dist/tracker.d.ts +52 -0
  144. package/packages/utils/dist/tracker.js +201 -0
  145. package/packages/utils/dist/wait.d.ts +3 -0
  146. package/packages/utils/dist/wait.js +73 -0
  147. package/packages/utils/matterbridge.svg +50 -0
  148. package/packages/utils/package.json +106 -0
  149. package/packages/vitest-utils/LICENSE +202 -0
  150. package/packages/vitest-utils/bmc-button.svg +22 -0
  151. package/packages/vitest-utils/dist/export.d.ts +1 -0
  152. package/packages/vitest-utils/dist/export.js +1 -0
  153. package/packages/vitest-utils/matterbridge.svg +50 -0
  154. package/packages/vitest-utils/package.json +108 -0
  155. package/reflector/Reflector.md +17 -8
  156. package/dist/dgram/mdnsReflectorClient.js +0 -176
  157. package/dist/dgram/mdnsReflectorServer.js +0 -301
  158. package/dist/dgram/mdnsReflectorTypes.js +0 -5
  159. package/packages/mb-lib-test/dist/module.d.ts +0 -2
  160. package/packages/mb-lib-test/dist/module.js +0 -2
  161. /package/packages/{mb-lib-test → dgram}/LICENSE +0 -0
  162. /package/packages/{mb-lib-test → dgram}/bmc-button.svg +0 -0
  163. /package/packages/{mb-lib-test → dgram}/matterbridge.svg +0 -0
  164. /package/packages/{mb-lib-test/dist/jestutils → jest-utils/dist}/jestHelpers.d.ts +0 -0
  165. /package/packages/{mb-lib-test/dist/jestutils → jest-utils/dist}/jestHelpers.js +0 -0
  166. /package/packages/{mb-lib-test/dist/vitestutils → vitest-utils/dist}/vitestHelpers.d.ts +0 -0
  167. /package/packages/{mb-lib-test/dist/vitestutils → vitest-utils/dist}/vitestHelpers.js +0 -0
@@ -1,18 +1,25 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.4.7-dev-20260104-6b10cee",
3
+ "version": "3.4.7-dev-20260112-a00b2bf",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.4.7-dev-20260104-6b10cee",
9
+ "version": "3.4.7-dev-20260112-a00b2bf",
10
10
  "license": "Apache-2.0",
11
11
  "workspaces": [
12
- "packages/*"
12
+ "packages/jest-utils",
13
+ "packages/vitest-utils",
14
+ "packages/utils",
15
+ "packages/dgram"
13
16
  ],
14
17
  "dependencies": {
15
18
  "@matter/main": "0.15.6",
19
+ "@matterbridge/dgram": "0.0.1",
20
+ "@matterbridge/jest-utils": "0.0.1",
21
+ "@matterbridge/utils": "0.0.1",
22
+ "@matterbridge/vitest-utils": "0.0.1",
16
23
  "archiver": "7.0.1",
17
24
  "express": "5.2.1",
18
25
  "glob": "13.0.0",
@@ -561,9 +568,9 @@
561
568
  }
562
569
  },
563
570
  "node_modules/@emnapi/core": {
564
- "version": "1.7.1",
565
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.7.1.tgz",
566
- "integrity": "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==",
571
+ "version": "1.8.1",
572
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.8.1.tgz",
573
+ "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==",
567
574
  "dev": true,
568
575
  "license": "MIT",
569
576
  "optional": true,
@@ -573,9 +580,9 @@
573
580
  }
574
581
  },
575
582
  "node_modules/@emnapi/runtime": {
576
- "version": "1.7.1",
577
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz",
578
- "integrity": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==",
583
+ "version": "1.8.1",
584
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
585
+ "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==",
579
586
  "dev": true,
580
587
  "license": "MIT",
581
588
  "optional": true,
@@ -2062,6 +2069,22 @@
2062
2069
  "@matter/model": "0.15.6"
2063
2070
  }
2064
2071
  },
2072
+ "node_modules/@matterbridge/dgram": {
2073
+ "resolved": "packages/dgram",
2074
+ "link": true
2075
+ },
2076
+ "node_modules/@matterbridge/jest-utils": {
2077
+ "resolved": "packages/jest-utils",
2078
+ "link": true
2079
+ },
2080
+ "node_modules/@matterbridge/utils": {
2081
+ "resolved": "packages/utils",
2082
+ "link": true
2083
+ },
2084
+ "node_modules/@matterbridge/vitest-utils": {
2085
+ "resolved": "packages/vitest-utils",
2086
+ "link": true
2087
+ },
2065
2088
  "node_modules/@napi-rs/wasm-runtime": {
2066
2089
  "version": "0.2.12",
2067
2090
  "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz",
@@ -2164,9 +2187,9 @@
2164
2187
  }
2165
2188
  },
2166
2189
  "node_modules/@rollup/rollup-android-arm-eabi": {
2167
- "version": "4.54.0",
2168
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.54.0.tgz",
2169
- "integrity": "sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==",
2190
+ "version": "4.55.1",
2191
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.55.1.tgz",
2192
+ "integrity": "sha512-9R0DM/ykwfGIlNu6+2U09ga0WXeZ9MRC2Ter8jnz8415VbuIykVuc6bhdrbORFZANDmTDvq26mJrEVTl8TdnDg==",
2170
2193
  "cpu": [
2171
2194
  "arm"
2172
2195
  ],
@@ -2178,9 +2201,9 @@
2178
2201
  ]
2179
2202
  },
2180
2203
  "node_modules/@rollup/rollup-android-arm64": {
2181
- "version": "4.54.0",
2182
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.54.0.tgz",
2183
- "integrity": "sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==",
2204
+ "version": "4.55.1",
2205
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.55.1.tgz",
2206
+ "integrity": "sha512-eFZCb1YUqhTysgW3sj/55du5cG57S7UTNtdMjCW7LwVcj3dTTcowCsC8p7uBdzKsZYa8J7IDE8lhMI+HX1vQvg==",
2184
2207
  "cpu": [
2185
2208
  "arm64"
2186
2209
  ],
@@ -2192,9 +2215,9 @@
2192
2215
  ]
2193
2216
  },
2194
2217
  "node_modules/@rollup/rollup-darwin-arm64": {
2195
- "version": "4.54.0",
2196
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.54.0.tgz",
2197
- "integrity": "sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==",
2218
+ "version": "4.55.1",
2219
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.55.1.tgz",
2220
+ "integrity": "sha512-p3grE2PHcQm2e8PSGZdzIhCKbMCw/xi9XvMPErPhwO17vxtvCN5FEA2mSLgmKlCjHGMQTP6phuQTYWUnKewwGg==",
2198
2221
  "cpu": [
2199
2222
  "arm64"
2200
2223
  ],
@@ -2206,9 +2229,9 @@
2206
2229
  ]
2207
2230
  },
2208
2231
  "node_modules/@rollup/rollup-darwin-x64": {
2209
- "version": "4.54.0",
2210
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.54.0.tgz",
2211
- "integrity": "sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==",
2232
+ "version": "4.55.1",
2233
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.55.1.tgz",
2234
+ "integrity": "sha512-rDUjG25C9qoTm+e02Esi+aqTKSBYwVTaoS1wxcN47/Luqef57Vgp96xNANwt5npq9GDxsH7kXxNkJVEsWEOEaQ==",
2212
2235
  "cpu": [
2213
2236
  "x64"
2214
2237
  ],
@@ -2220,9 +2243,9 @@
2220
2243
  ]
2221
2244
  },
2222
2245
  "node_modules/@rollup/rollup-freebsd-arm64": {
2223
- "version": "4.54.0",
2224
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.54.0.tgz",
2225
- "integrity": "sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==",
2246
+ "version": "4.55.1",
2247
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.55.1.tgz",
2248
+ "integrity": "sha512-+JiU7Jbp5cdxekIgdte0jfcu5oqw4GCKr6i3PJTlXTCU5H5Fvtkpbs4XJHRmWNXF+hKmn4v7ogI5OQPaupJgOg==",
2226
2249
  "cpu": [
2227
2250
  "arm64"
2228
2251
  ],
@@ -2234,9 +2257,9 @@
2234
2257
  ]
2235
2258
  },
2236
2259
  "node_modules/@rollup/rollup-freebsd-x64": {
2237
- "version": "4.54.0",
2238
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.54.0.tgz",
2239
- "integrity": "sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==",
2260
+ "version": "4.55.1",
2261
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.55.1.tgz",
2262
+ "integrity": "sha512-V5xC1tOVWtLLmr3YUk2f6EJK4qksksOYiz/TCsFHu/R+woubcLWdC9nZQmwjOAbmExBIVKsm1/wKmEy4z4u4Bw==",
2240
2263
  "cpu": [
2241
2264
  "x64"
2242
2265
  ],
@@ -2248,9 +2271,9 @@
2248
2271
  ]
2249
2272
  },
2250
2273
  "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
2251
- "version": "4.54.0",
2252
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.54.0.tgz",
2253
- "integrity": "sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==",
2274
+ "version": "4.55.1",
2275
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.55.1.tgz",
2276
+ "integrity": "sha512-Rn3n+FUk2J5VWx+ywrG/HGPTD9jXNbicRtTM11e/uorplArnXZYsVifnPPqNNP5BsO3roI4n8332ukpY/zN7rQ==",
2254
2277
  "cpu": [
2255
2278
  "arm"
2256
2279
  ],
@@ -2262,9 +2285,9 @@
2262
2285
  ]
2263
2286
  },
2264
2287
  "node_modules/@rollup/rollup-linux-arm-musleabihf": {
2265
- "version": "4.54.0",
2266
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.54.0.tgz",
2267
- "integrity": "sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==",
2288
+ "version": "4.55.1",
2289
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.55.1.tgz",
2290
+ "integrity": "sha512-grPNWydeKtc1aEdrJDWk4opD7nFtQbMmV7769hiAaYyUKCT1faPRm2av8CX1YJsZ4TLAZcg9gTR1KvEzoLjXkg==",
2268
2291
  "cpu": [
2269
2292
  "arm"
2270
2293
  ],
@@ -2276,9 +2299,9 @@
2276
2299
  ]
2277
2300
  },
2278
2301
  "node_modules/@rollup/rollup-linux-arm64-gnu": {
2279
- "version": "4.54.0",
2280
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.54.0.tgz",
2281
- "integrity": "sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==",
2302
+ "version": "4.55.1",
2303
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.55.1.tgz",
2304
+ "integrity": "sha512-a59mwd1k6x8tXKcUxSyISiquLwB5pX+fJW9TkWU46lCqD/GRDe9uDN31jrMmVP3feI3mhAdvcCClhV8V5MhJFQ==",
2282
2305
  "cpu": [
2283
2306
  "arm64"
2284
2307
  ],
@@ -2290,9 +2313,9 @@
2290
2313
  ]
2291
2314
  },
2292
2315
  "node_modules/@rollup/rollup-linux-arm64-musl": {
2293
- "version": "4.54.0",
2294
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.54.0.tgz",
2295
- "integrity": "sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==",
2316
+ "version": "4.55.1",
2317
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.55.1.tgz",
2318
+ "integrity": "sha512-puS1MEgWX5GsHSoiAsF0TYrpomdvkaXm0CofIMG5uVkP6IBV+ZO9xhC5YEN49nsgYo1DuuMquF9+7EDBVYu4uA==",
2296
2319
  "cpu": [
2297
2320
  "arm64"
2298
2321
  ],
@@ -2304,9 +2327,23 @@
2304
2327
  ]
2305
2328
  },
2306
2329
  "node_modules/@rollup/rollup-linux-loong64-gnu": {
2307
- "version": "4.54.0",
2308
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.54.0.tgz",
2309
- "integrity": "sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==",
2330
+ "version": "4.55.1",
2331
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.55.1.tgz",
2332
+ "integrity": "sha512-r3Wv40in+lTsULSb6nnoudVbARdOwb2u5fpeoOAZjFLznp6tDU8kd+GTHmJoqZ9lt6/Sys33KdIHUaQihFcu7g==",
2333
+ "cpu": [
2334
+ "loong64"
2335
+ ],
2336
+ "dev": true,
2337
+ "license": "MIT",
2338
+ "optional": true,
2339
+ "os": [
2340
+ "linux"
2341
+ ]
2342
+ },
2343
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
2344
+ "version": "4.55.1",
2345
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.55.1.tgz",
2346
+ "integrity": "sha512-MR8c0+UxAlB22Fq4R+aQSPBayvYa3+9DrwG/i1TKQXFYEaoW3B5b/rkSRIypcZDdWjWnpcvxbNaAJDcSbJU3Lw==",
2310
2347
  "cpu": [
2311
2348
  "loong64"
2312
2349
  ],
@@ -2318,9 +2355,23 @@
2318
2355
  ]
2319
2356
  },
2320
2357
  "node_modules/@rollup/rollup-linux-ppc64-gnu": {
2321
- "version": "4.54.0",
2322
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.54.0.tgz",
2323
- "integrity": "sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==",
2358
+ "version": "4.55.1",
2359
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.55.1.tgz",
2360
+ "integrity": "sha512-3KhoECe1BRlSYpMTeVrD4sh2Pw2xgt4jzNSZIIPLFEsnQn9gAnZagW9+VqDqAHgm1Xc77LzJOo2LdigS5qZ+gw==",
2361
+ "cpu": [
2362
+ "ppc64"
2363
+ ],
2364
+ "dev": true,
2365
+ "license": "MIT",
2366
+ "optional": true,
2367
+ "os": [
2368
+ "linux"
2369
+ ]
2370
+ },
2371
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
2372
+ "version": "4.55.1",
2373
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.55.1.tgz",
2374
+ "integrity": "sha512-ziR1OuZx0vdYZZ30vueNZTg73alF59DicYrPViG0NEgDVN8/Jl87zkAPu4u6VjZST2llgEUjaiNl9JM6HH1Vdw==",
2324
2375
  "cpu": [
2325
2376
  "ppc64"
2326
2377
  ],
@@ -2332,9 +2383,9 @@
2332
2383
  ]
2333
2384
  },
2334
2385
  "node_modules/@rollup/rollup-linux-riscv64-gnu": {
2335
- "version": "4.54.0",
2336
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.54.0.tgz",
2337
- "integrity": "sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==",
2386
+ "version": "4.55.1",
2387
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.55.1.tgz",
2388
+ "integrity": "sha512-uW0Y12ih2XJRERZ4jAfKamTyIHVMPQnTZcQjme2HMVDAHY4amf5u414OqNYC+x+LzRdRcnIG1YodLrrtA8xsxw==",
2338
2389
  "cpu": [
2339
2390
  "riscv64"
2340
2391
  ],
@@ -2346,9 +2397,9 @@
2346
2397
  ]
2347
2398
  },
2348
2399
  "node_modules/@rollup/rollup-linux-riscv64-musl": {
2349
- "version": "4.54.0",
2350
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.54.0.tgz",
2351
- "integrity": "sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==",
2400
+ "version": "4.55.1",
2401
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.55.1.tgz",
2402
+ "integrity": "sha512-u9yZ0jUkOED1BFrqu3BwMQoixvGHGZ+JhJNkNKY/hyoEgOwlqKb62qu+7UjbPSHYjiVy8kKJHvXKv5coH4wDeg==",
2352
2403
  "cpu": [
2353
2404
  "riscv64"
2354
2405
  ],
@@ -2360,9 +2411,9 @@
2360
2411
  ]
2361
2412
  },
2362
2413
  "node_modules/@rollup/rollup-linux-s390x-gnu": {
2363
- "version": "4.54.0",
2364
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.54.0.tgz",
2365
- "integrity": "sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==",
2414
+ "version": "4.55.1",
2415
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.55.1.tgz",
2416
+ "integrity": "sha512-/0PenBCmqM4ZUd0190j7J0UsQ/1nsi735iPRakO8iPciE7BQ495Y6msPzaOmvx0/pn+eJVVlZrNrSh4WSYLxNg==",
2366
2417
  "cpu": [
2367
2418
  "s390x"
2368
2419
  ],
@@ -2374,9 +2425,9 @@
2374
2425
  ]
2375
2426
  },
2376
2427
  "node_modules/@rollup/rollup-linux-x64-gnu": {
2377
- "version": "4.54.0",
2378
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.54.0.tgz",
2379
- "integrity": "sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==",
2428
+ "version": "4.55.1",
2429
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.55.1.tgz",
2430
+ "integrity": "sha512-a8G4wiQxQG2BAvo+gU6XrReRRqj+pLS2NGXKm8io19goR+K8lw269eTrPkSdDTALwMmJp4th2Uh0D8J9bEV1vg==",
2380
2431
  "cpu": [
2381
2432
  "x64"
2382
2433
  ],
@@ -2388,9 +2439,9 @@
2388
2439
  ]
2389
2440
  },
2390
2441
  "node_modules/@rollup/rollup-linux-x64-musl": {
2391
- "version": "4.54.0",
2392
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.54.0.tgz",
2393
- "integrity": "sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==",
2442
+ "version": "4.55.1",
2443
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.55.1.tgz",
2444
+ "integrity": "sha512-bD+zjpFrMpP/hqkfEcnjXWHMw5BIghGisOKPj+2NaNDuVT+8Ds4mPf3XcPHuat1tz89WRL+1wbcxKY3WSbiT7w==",
2394
2445
  "cpu": [
2395
2446
  "x64"
2396
2447
  ],
@@ -2401,10 +2452,24 @@
2401
2452
  "linux"
2402
2453
  ]
2403
2454
  },
2455
+ "node_modules/@rollup/rollup-openbsd-x64": {
2456
+ "version": "4.55.1",
2457
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.55.1.tgz",
2458
+ "integrity": "sha512-eLXw0dOiqE4QmvikfQ6yjgkg/xDM+MdU9YJuP4ySTibXU0oAvnEWXt7UDJmD4UkYialMfOGFPJnIHSe/kdzPxg==",
2459
+ "cpu": [
2460
+ "x64"
2461
+ ],
2462
+ "dev": true,
2463
+ "license": "MIT",
2464
+ "optional": true,
2465
+ "os": [
2466
+ "openbsd"
2467
+ ]
2468
+ },
2404
2469
  "node_modules/@rollup/rollup-openharmony-arm64": {
2405
- "version": "4.54.0",
2406
- "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.54.0.tgz",
2407
- "integrity": "sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==",
2470
+ "version": "4.55.1",
2471
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.55.1.tgz",
2472
+ "integrity": "sha512-xzm44KgEP11te3S2HCSyYf5zIzWmx3n8HDCc7EE59+lTcswEWNpvMLfd9uJvVX8LCg9QWG67Xt75AuHn4vgsXw==",
2408
2473
  "cpu": [
2409
2474
  "arm64"
2410
2475
  ],
@@ -2416,9 +2481,9 @@
2416
2481
  ]
2417
2482
  },
2418
2483
  "node_modules/@rollup/rollup-win32-arm64-msvc": {
2419
- "version": "4.54.0",
2420
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.54.0.tgz",
2421
- "integrity": "sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==",
2484
+ "version": "4.55.1",
2485
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.55.1.tgz",
2486
+ "integrity": "sha512-yR6Bl3tMC/gBok5cz/Qi0xYnVbIxGx5Fcf/ca0eB6/6JwOY+SRUcJfI0OpeTpPls7f194as62thCt/2BjxYN8g==",
2422
2487
  "cpu": [
2423
2488
  "arm64"
2424
2489
  ],
@@ -2430,9 +2495,9 @@
2430
2495
  ]
2431
2496
  },
2432
2497
  "node_modules/@rollup/rollup-win32-ia32-msvc": {
2433
- "version": "4.54.0",
2434
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.54.0.tgz",
2435
- "integrity": "sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==",
2498
+ "version": "4.55.1",
2499
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.55.1.tgz",
2500
+ "integrity": "sha512-3fZBidchE0eY0oFZBnekYCfg+5wAB0mbpCBuofh5mZuzIU/4jIVkbESmd2dOsFNS78b53CYv3OAtwqkZZmU5nA==",
2436
2501
  "cpu": [
2437
2502
  "ia32"
2438
2503
  ],
@@ -2444,9 +2509,9 @@
2444
2509
  ]
2445
2510
  },
2446
2511
  "node_modules/@rollup/rollup-win32-x64-gnu": {
2447
- "version": "4.54.0",
2448
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.54.0.tgz",
2449
- "integrity": "sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==",
2512
+ "version": "4.55.1",
2513
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.55.1.tgz",
2514
+ "integrity": "sha512-xGGY5pXj69IxKb4yv/POoocPy/qmEGhimy/FoTpTSVju3FYXUQQMFCaZZXJVidsmGxRioZAwpThl/4zX41gRKg==",
2450
2515
  "cpu": [
2451
2516
  "x64"
2452
2517
  ],
@@ -2458,9 +2523,9 @@
2458
2523
  ]
2459
2524
  },
2460
2525
  "node_modules/@rollup/rollup-win32-x64-msvc": {
2461
- "version": "4.54.0",
2462
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.54.0.tgz",
2463
- "integrity": "sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==",
2526
+ "version": "4.55.1",
2527
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.55.1.tgz",
2528
+ "integrity": "sha512-SPEpaL6DX4rmcXtnhdrQYgzQ5W2uW3SCJch88lB2zImhJRhIIK44fkUrgIV/Q8yUNfw5oyZ5vkeQsZLhCb06lw==",
2464
2529
  "cpu": [
2465
2530
  "x64"
2466
2531
  ],
@@ -2479,9 +2544,9 @@
2479
2544
  "license": "MIT"
2480
2545
  },
2481
2546
  "node_modules/@sinclair/typebox": {
2482
- "version": "0.34.46",
2483
- "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.46.tgz",
2484
- "integrity": "sha512-kiW7CtS/NkdvTUjkjUJo7d5JsFfbJ14YjdhDk9KoEgK6nFjKNXZPrX0jfLA8ZlET4cFLHxOZ/0vFKOP+bOxIOQ==",
2547
+ "version": "0.34.47",
2548
+ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.47.tgz",
2549
+ "integrity": "sha512-ZGIBQ+XDvO5JQku9wmwtabcVTHJsgSWAHYtVuM9pBNNR5E88v6Jcj/llpmsjivig5X8A8HHOb4/mbEKPS5EvAw==",
2485
2550
  "dev": true,
2486
2551
  "license": "MIT"
2487
2552
  },
@@ -2721,6 +2786,160 @@
2721
2786
  "typescript": ">=4.8.4 <6.0.0"
2722
2787
  }
2723
2788
  },
2789
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/project-service": {
2790
+ "version": "8.51.0",
2791
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.51.0.tgz",
2792
+ "integrity": "sha512-Luv/GafO07Z7HpiI7qeEW5NW8HUtZI/fo/kE0YbtQEFpJRUuR0ajcWfCE5bnMvL7QQFrmT/odMe8QZww8X2nfQ==",
2793
+ "dev": true,
2794
+ "license": "MIT",
2795
+ "dependencies": {
2796
+ "@typescript-eslint/tsconfig-utils": "^8.51.0",
2797
+ "@typescript-eslint/types": "^8.51.0",
2798
+ "debug": "^4.3.4"
2799
+ },
2800
+ "engines": {
2801
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2802
+ },
2803
+ "funding": {
2804
+ "type": "opencollective",
2805
+ "url": "https://opencollective.com/typescript-eslint"
2806
+ },
2807
+ "peerDependencies": {
2808
+ "typescript": ">=4.8.4 <6.0.0"
2809
+ }
2810
+ },
2811
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": {
2812
+ "version": "8.51.0",
2813
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.51.0.tgz",
2814
+ "integrity": "sha512-JhhJDVwsSx4hiOEQPeajGhCWgBMBwVkxC/Pet53EpBVs7zHHtayKefw1jtPaNRXpI9RA2uocdmpdfE7T+NrizA==",
2815
+ "dev": true,
2816
+ "license": "MIT",
2817
+ "dependencies": {
2818
+ "@typescript-eslint/types": "8.51.0",
2819
+ "@typescript-eslint/visitor-keys": "8.51.0"
2820
+ },
2821
+ "engines": {
2822
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2823
+ },
2824
+ "funding": {
2825
+ "type": "opencollective",
2826
+ "url": "https://opencollective.com/typescript-eslint"
2827
+ }
2828
+ },
2829
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/tsconfig-utils": {
2830
+ "version": "8.51.0",
2831
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.51.0.tgz",
2832
+ "integrity": "sha512-Qi5bSy/vuHeWyir2C8u/uqGMIlIDu8fuiYWv48ZGlZ/k+PRPHtaAu7erpc7p5bzw2WNNSniuxoMSO4Ar6V9OXw==",
2833
+ "dev": true,
2834
+ "license": "MIT",
2835
+ "engines": {
2836
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2837
+ },
2838
+ "funding": {
2839
+ "type": "opencollective",
2840
+ "url": "https://opencollective.com/typescript-eslint"
2841
+ },
2842
+ "peerDependencies": {
2843
+ "typescript": ">=4.8.4 <6.0.0"
2844
+ }
2845
+ },
2846
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types": {
2847
+ "version": "8.51.0",
2848
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.51.0.tgz",
2849
+ "integrity": "sha512-TizAvWYFM6sSscmEakjY3sPqGwxZRSywSsPEiuZF6d5GmGD9Gvlsv0f6N8FvAAA0CD06l3rIcWNbsN1e5F/9Ag==",
2850
+ "dev": true,
2851
+ "license": "MIT",
2852
+ "engines": {
2853
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2854
+ },
2855
+ "funding": {
2856
+ "type": "opencollective",
2857
+ "url": "https://opencollective.com/typescript-eslint"
2858
+ }
2859
+ },
2860
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": {
2861
+ "version": "8.51.0",
2862
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.51.0.tgz",
2863
+ "integrity": "sha512-1qNjGqFRmlq0VW5iVlcyHBbCjPB7y6SxpBkrbhNWMy/65ZoncXCEPJxkRZL8McrseNH6lFhaxCIaX+vBuFnRng==",
2864
+ "dev": true,
2865
+ "license": "MIT",
2866
+ "dependencies": {
2867
+ "@typescript-eslint/project-service": "8.51.0",
2868
+ "@typescript-eslint/tsconfig-utils": "8.51.0",
2869
+ "@typescript-eslint/types": "8.51.0",
2870
+ "@typescript-eslint/visitor-keys": "8.51.0",
2871
+ "debug": "^4.3.4",
2872
+ "minimatch": "^9.0.4",
2873
+ "semver": "^7.6.0",
2874
+ "tinyglobby": "^0.2.15",
2875
+ "ts-api-utils": "^2.2.0"
2876
+ },
2877
+ "engines": {
2878
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2879
+ },
2880
+ "funding": {
2881
+ "type": "opencollective",
2882
+ "url": "https://opencollective.com/typescript-eslint"
2883
+ },
2884
+ "peerDependencies": {
2885
+ "typescript": ">=4.8.4 <6.0.0"
2886
+ }
2887
+ },
2888
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": {
2889
+ "version": "8.51.0",
2890
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.51.0.tgz",
2891
+ "integrity": "sha512-11rZYxSe0zabiKaCP2QAwRf/dnmgFgvTmeDTtZvUvXG3UuAdg/GU02NExmmIXzz3vLGgMdtrIosI84jITQOxUA==",
2892
+ "dev": true,
2893
+ "license": "MIT",
2894
+ "dependencies": {
2895
+ "@eslint-community/eslint-utils": "^4.7.0",
2896
+ "@typescript-eslint/scope-manager": "8.51.0",
2897
+ "@typescript-eslint/types": "8.51.0",
2898
+ "@typescript-eslint/typescript-estree": "8.51.0"
2899
+ },
2900
+ "engines": {
2901
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2902
+ },
2903
+ "funding": {
2904
+ "type": "opencollective",
2905
+ "url": "https://opencollective.com/typescript-eslint"
2906
+ },
2907
+ "peerDependencies": {
2908
+ "eslint": "^8.57.0 || ^9.0.0",
2909
+ "typescript": ">=4.8.4 <6.0.0"
2910
+ }
2911
+ },
2912
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": {
2913
+ "version": "8.51.0",
2914
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
2915
+ "integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
2916
+ "dev": true,
2917
+ "license": "MIT",
2918
+ "dependencies": {
2919
+ "@typescript-eslint/types": "8.51.0",
2920
+ "eslint-visitor-keys": "^4.2.1"
2921
+ },
2922
+ "engines": {
2923
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2924
+ },
2925
+ "funding": {
2926
+ "type": "opencollective",
2927
+ "url": "https://opencollective.com/typescript-eslint"
2928
+ }
2929
+ },
2930
+ "node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-visitor-keys": {
2931
+ "version": "4.2.1",
2932
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
2933
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
2934
+ "dev": true,
2935
+ "license": "Apache-2.0",
2936
+ "engines": {
2937
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2938
+ },
2939
+ "funding": {
2940
+ "url": "https://opencollective.com/eslint"
2941
+ }
2942
+ },
2724
2943
  "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
2725
2944
  "version": "7.0.5",
2726
2945
  "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
@@ -2756,7 +2975,7 @@
2756
2975
  "typescript": ">=4.8.4 <6.0.0"
2757
2976
  }
2758
2977
  },
2759
- "node_modules/@typescript-eslint/project-service": {
2978
+ "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/project-service": {
2760
2979
  "version": "8.51.0",
2761
2980
  "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.51.0.tgz",
2762
2981
  "integrity": "sha512-Luv/GafO07Z7HpiI7qeEW5NW8HUtZI/fo/kE0YbtQEFpJRUuR0ajcWfCE5bnMvL7QQFrmT/odMe8QZww8X2nfQ==",
@@ -2778,7 +2997,7 @@
2778
2997
  "typescript": ">=4.8.4 <6.0.0"
2779
2998
  }
2780
2999
  },
2781
- "node_modules/@typescript-eslint/scope-manager": {
3000
+ "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": {
2782
3001
  "version": "8.51.0",
2783
3002
  "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.51.0.tgz",
2784
3003
  "integrity": "sha512-JhhJDVwsSx4hiOEQPeajGhCWgBMBwVkxC/Pet53EpBVs7zHHtayKefw1jtPaNRXpI9RA2uocdmpdfE7T+NrizA==",
@@ -2796,7 +3015,7 @@
2796
3015
  "url": "https://opencollective.com/typescript-eslint"
2797
3016
  }
2798
3017
  },
2799
- "node_modules/@typescript-eslint/tsconfig-utils": {
3018
+ "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/tsconfig-utils": {
2800
3019
  "version": "8.51.0",
2801
3020
  "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.51.0.tgz",
2802
3021
  "integrity": "sha512-Qi5bSy/vuHeWyir2C8u/uqGMIlIDu8fuiYWv48ZGlZ/k+PRPHtaAu7erpc7p5bzw2WNNSniuxoMSO4Ar6V9OXw==",
@@ -2813,6 +3032,136 @@
2813
3032
  "typescript": ">=4.8.4 <6.0.0"
2814
3033
  }
2815
3034
  },
3035
+ "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": {
3036
+ "version": "8.51.0",
3037
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.51.0.tgz",
3038
+ "integrity": "sha512-TizAvWYFM6sSscmEakjY3sPqGwxZRSywSsPEiuZF6d5GmGD9Gvlsv0f6N8FvAAA0CD06l3rIcWNbsN1e5F/9Ag==",
3039
+ "dev": true,
3040
+ "license": "MIT",
3041
+ "engines": {
3042
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3043
+ },
3044
+ "funding": {
3045
+ "type": "opencollective",
3046
+ "url": "https://opencollective.com/typescript-eslint"
3047
+ }
3048
+ },
3049
+ "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": {
3050
+ "version": "8.51.0",
3051
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.51.0.tgz",
3052
+ "integrity": "sha512-1qNjGqFRmlq0VW5iVlcyHBbCjPB7y6SxpBkrbhNWMy/65ZoncXCEPJxkRZL8McrseNH6lFhaxCIaX+vBuFnRng==",
3053
+ "dev": true,
3054
+ "license": "MIT",
3055
+ "dependencies": {
3056
+ "@typescript-eslint/project-service": "8.51.0",
3057
+ "@typescript-eslint/tsconfig-utils": "8.51.0",
3058
+ "@typescript-eslint/types": "8.51.0",
3059
+ "@typescript-eslint/visitor-keys": "8.51.0",
3060
+ "debug": "^4.3.4",
3061
+ "minimatch": "^9.0.4",
3062
+ "semver": "^7.6.0",
3063
+ "tinyglobby": "^0.2.15",
3064
+ "ts-api-utils": "^2.2.0"
3065
+ },
3066
+ "engines": {
3067
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3068
+ },
3069
+ "funding": {
3070
+ "type": "opencollective",
3071
+ "url": "https://opencollective.com/typescript-eslint"
3072
+ },
3073
+ "peerDependencies": {
3074
+ "typescript": ">=4.8.4 <6.0.0"
3075
+ }
3076
+ },
3077
+ "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": {
3078
+ "version": "8.51.0",
3079
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
3080
+ "integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
3081
+ "dev": true,
3082
+ "license": "MIT",
3083
+ "dependencies": {
3084
+ "@typescript-eslint/types": "8.51.0",
3085
+ "eslint-visitor-keys": "^4.2.1"
3086
+ },
3087
+ "engines": {
3088
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3089
+ },
3090
+ "funding": {
3091
+ "type": "opencollective",
3092
+ "url": "https://opencollective.com/typescript-eslint"
3093
+ }
3094
+ },
3095
+ "node_modules/@typescript-eslint/parser/node_modules/eslint-visitor-keys": {
3096
+ "version": "4.2.1",
3097
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
3098
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
3099
+ "dev": true,
3100
+ "license": "Apache-2.0",
3101
+ "engines": {
3102
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3103
+ },
3104
+ "funding": {
3105
+ "url": "https://opencollective.com/eslint"
3106
+ }
3107
+ },
3108
+ "node_modules/@typescript-eslint/project-service": {
3109
+ "version": "8.52.0",
3110
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.52.0.tgz",
3111
+ "integrity": "sha512-xD0MfdSdEmeFa3OmVqonHi+Cciab96ls1UhIF/qX/O/gPu5KXD0bY9lu33jj04fjzrXHcuvjBcBC+D3SNSadaw==",
3112
+ "dev": true,
3113
+ "license": "MIT",
3114
+ "dependencies": {
3115
+ "@typescript-eslint/tsconfig-utils": "^8.52.0",
3116
+ "@typescript-eslint/types": "^8.52.0",
3117
+ "debug": "^4.4.3"
3118
+ },
3119
+ "engines": {
3120
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3121
+ },
3122
+ "funding": {
3123
+ "type": "opencollective",
3124
+ "url": "https://opencollective.com/typescript-eslint"
3125
+ },
3126
+ "peerDependencies": {
3127
+ "typescript": ">=4.8.4 <6.0.0"
3128
+ }
3129
+ },
3130
+ "node_modules/@typescript-eslint/scope-manager": {
3131
+ "version": "8.52.0",
3132
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.52.0.tgz",
3133
+ "integrity": "sha512-ixxqmmCcc1Nf8S0mS0TkJ/3LKcC8mruYJPOU6Ia2F/zUUR4pApW7LzrpU3JmtePbRUTes9bEqRc1Gg4iyRnDzA==",
3134
+ "dev": true,
3135
+ "license": "MIT",
3136
+ "dependencies": {
3137
+ "@typescript-eslint/types": "8.52.0",
3138
+ "@typescript-eslint/visitor-keys": "8.52.0"
3139
+ },
3140
+ "engines": {
3141
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3142
+ },
3143
+ "funding": {
3144
+ "type": "opencollective",
3145
+ "url": "https://opencollective.com/typescript-eslint"
3146
+ }
3147
+ },
3148
+ "node_modules/@typescript-eslint/tsconfig-utils": {
3149
+ "version": "8.52.0",
3150
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.52.0.tgz",
3151
+ "integrity": "sha512-jl+8fzr/SdzdxWJznq5nvoI7qn2tNYV/ZBAEcaFMVXf+K6jmXvAFrgo/+5rxgnL152f//pDEAYAhhBAZGrVfwg==",
3152
+ "dev": true,
3153
+ "license": "MIT",
3154
+ "engines": {
3155
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3156
+ },
3157
+ "funding": {
3158
+ "type": "opencollective",
3159
+ "url": "https://opencollective.com/typescript-eslint"
3160
+ },
3161
+ "peerDependencies": {
3162
+ "typescript": ">=4.8.4 <6.0.0"
3163
+ }
3164
+ },
2816
3165
  "node_modules/@typescript-eslint/type-utils": {
2817
3166
  "version": "8.51.0",
2818
3167
  "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.51.0.tgz",
@@ -2838,7 +3187,64 @@
2838
3187
  "typescript": ">=4.8.4 <6.0.0"
2839
3188
  }
2840
3189
  },
2841
- "node_modules/@typescript-eslint/types": {
3190
+ "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/project-service": {
3191
+ "version": "8.51.0",
3192
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.51.0.tgz",
3193
+ "integrity": "sha512-Luv/GafO07Z7HpiI7qeEW5NW8HUtZI/fo/kE0YbtQEFpJRUuR0ajcWfCE5bnMvL7QQFrmT/odMe8QZww8X2nfQ==",
3194
+ "dev": true,
3195
+ "license": "MIT",
3196
+ "dependencies": {
3197
+ "@typescript-eslint/tsconfig-utils": "^8.51.0",
3198
+ "@typescript-eslint/types": "^8.51.0",
3199
+ "debug": "^4.3.4"
3200
+ },
3201
+ "engines": {
3202
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3203
+ },
3204
+ "funding": {
3205
+ "type": "opencollective",
3206
+ "url": "https://opencollective.com/typescript-eslint"
3207
+ },
3208
+ "peerDependencies": {
3209
+ "typescript": ">=4.8.4 <6.0.0"
3210
+ }
3211
+ },
3212
+ "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/scope-manager": {
3213
+ "version": "8.51.0",
3214
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.51.0.tgz",
3215
+ "integrity": "sha512-JhhJDVwsSx4hiOEQPeajGhCWgBMBwVkxC/Pet53EpBVs7zHHtayKefw1jtPaNRXpI9RA2uocdmpdfE7T+NrizA==",
3216
+ "dev": true,
3217
+ "license": "MIT",
3218
+ "dependencies": {
3219
+ "@typescript-eslint/types": "8.51.0",
3220
+ "@typescript-eslint/visitor-keys": "8.51.0"
3221
+ },
3222
+ "engines": {
3223
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3224
+ },
3225
+ "funding": {
3226
+ "type": "opencollective",
3227
+ "url": "https://opencollective.com/typescript-eslint"
3228
+ }
3229
+ },
3230
+ "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/tsconfig-utils": {
3231
+ "version": "8.51.0",
3232
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.51.0.tgz",
3233
+ "integrity": "sha512-Qi5bSy/vuHeWyir2C8u/uqGMIlIDu8fuiYWv48ZGlZ/k+PRPHtaAu7erpc7p5bzw2WNNSniuxoMSO4Ar6V9OXw==",
3234
+ "dev": true,
3235
+ "license": "MIT",
3236
+ "engines": {
3237
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3238
+ },
3239
+ "funding": {
3240
+ "type": "opencollective",
3241
+ "url": "https://opencollective.com/typescript-eslint"
3242
+ },
3243
+ "peerDependencies": {
3244
+ "typescript": ">=4.8.4 <6.0.0"
3245
+ }
3246
+ },
3247
+ "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": {
2842
3248
  "version": "8.51.0",
2843
3249
  "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.51.0.tgz",
2844
3250
  "integrity": "sha512-TizAvWYFM6sSscmEakjY3sPqGwxZRSywSsPEiuZF6d5GmGD9Gvlsv0f6N8FvAAA0CD06l3rIcWNbsN1e5F/9Ag==",
@@ -2852,7 +3258,7 @@
2852
3258
  "url": "https://opencollective.com/typescript-eslint"
2853
3259
  }
2854
3260
  },
2855
- "node_modules/@typescript-eslint/typescript-estree": {
3261
+ "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": {
2856
3262
  "version": "8.51.0",
2857
3263
  "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.51.0.tgz",
2858
3264
  "integrity": "sha512-1qNjGqFRmlq0VW5iVlcyHBbCjPB7y6SxpBkrbhNWMy/65ZoncXCEPJxkRZL8McrseNH6lFhaxCIaX+vBuFnRng==",
@@ -2880,7 +3286,7 @@
2880
3286
  "typescript": ">=4.8.4 <6.0.0"
2881
3287
  }
2882
3288
  },
2883
- "node_modules/@typescript-eslint/utils": {
3289
+ "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": {
2884
3290
  "version": "8.51.0",
2885
3291
  "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.51.0.tgz",
2886
3292
  "integrity": "sha512-11rZYxSe0zabiKaCP2QAwRf/dnmgFgvTmeDTtZvUvXG3UuAdg/GU02NExmmIXzz3vLGgMdtrIosI84jITQOxUA==",
@@ -2904,7 +3310,7 @@
2904
3310
  "typescript": ">=4.8.4 <6.0.0"
2905
3311
  }
2906
3312
  },
2907
- "node_modules/@typescript-eslint/visitor-keys": {
3313
+ "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": {
2908
3314
  "version": "8.51.0",
2909
3315
  "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
2910
3316
  "integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
@@ -2922,6 +3328,103 @@
2922
3328
  "url": "https://opencollective.com/typescript-eslint"
2923
3329
  }
2924
3330
  },
3331
+ "node_modules/@typescript-eslint/type-utils/node_modules/eslint-visitor-keys": {
3332
+ "version": "4.2.1",
3333
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
3334
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
3335
+ "dev": true,
3336
+ "license": "Apache-2.0",
3337
+ "engines": {
3338
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3339
+ },
3340
+ "funding": {
3341
+ "url": "https://opencollective.com/eslint"
3342
+ }
3343
+ },
3344
+ "node_modules/@typescript-eslint/types": {
3345
+ "version": "8.52.0",
3346
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.52.0.tgz",
3347
+ "integrity": "sha512-LWQV1V4q9V4cT4H5JCIx3481iIFxH1UkVk+ZkGGAV1ZGcjGI9IoFOfg3O6ywz8QqCDEp7Inlg6kovMofsNRaGg==",
3348
+ "dev": true,
3349
+ "license": "MIT",
3350
+ "engines": {
3351
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3352
+ },
3353
+ "funding": {
3354
+ "type": "opencollective",
3355
+ "url": "https://opencollective.com/typescript-eslint"
3356
+ }
3357
+ },
3358
+ "node_modules/@typescript-eslint/typescript-estree": {
3359
+ "version": "8.52.0",
3360
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.52.0.tgz",
3361
+ "integrity": "sha512-XP3LClsCc0FsTK5/frGjolyADTh3QmsLp6nKd476xNI9CsSsLnmn4f0jrzNoAulmxlmNIpeXuHYeEQv61Q6qeQ==",
3362
+ "dev": true,
3363
+ "license": "MIT",
3364
+ "dependencies": {
3365
+ "@typescript-eslint/project-service": "8.52.0",
3366
+ "@typescript-eslint/tsconfig-utils": "8.52.0",
3367
+ "@typescript-eslint/types": "8.52.0",
3368
+ "@typescript-eslint/visitor-keys": "8.52.0",
3369
+ "debug": "^4.4.3",
3370
+ "minimatch": "^9.0.5",
3371
+ "semver": "^7.7.3",
3372
+ "tinyglobby": "^0.2.15",
3373
+ "ts-api-utils": "^2.4.0"
3374
+ },
3375
+ "engines": {
3376
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3377
+ },
3378
+ "funding": {
3379
+ "type": "opencollective",
3380
+ "url": "https://opencollective.com/typescript-eslint"
3381
+ },
3382
+ "peerDependencies": {
3383
+ "typescript": ">=4.8.4 <6.0.0"
3384
+ }
3385
+ },
3386
+ "node_modules/@typescript-eslint/utils": {
3387
+ "version": "8.52.0",
3388
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.52.0.tgz",
3389
+ "integrity": "sha512-wYndVMWkweqHpEpwPhwqE2lnD2DxC6WVLupU/DOt/0/v+/+iQbbzO3jOHjmBMnhu0DgLULvOaU4h4pwHYi2oRQ==",
3390
+ "dev": true,
3391
+ "license": "MIT",
3392
+ "dependencies": {
3393
+ "@eslint-community/eslint-utils": "^4.9.1",
3394
+ "@typescript-eslint/scope-manager": "8.52.0",
3395
+ "@typescript-eslint/types": "8.52.0",
3396
+ "@typescript-eslint/typescript-estree": "8.52.0"
3397
+ },
3398
+ "engines": {
3399
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3400
+ },
3401
+ "funding": {
3402
+ "type": "opencollective",
3403
+ "url": "https://opencollective.com/typescript-eslint"
3404
+ },
3405
+ "peerDependencies": {
3406
+ "eslint": "^8.57.0 || ^9.0.0",
3407
+ "typescript": ">=4.8.4 <6.0.0"
3408
+ }
3409
+ },
3410
+ "node_modules/@typescript-eslint/visitor-keys": {
3411
+ "version": "8.52.0",
3412
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.52.0.tgz",
3413
+ "integrity": "sha512-ink3/Zofus34nmBsPjow63FP5M7IGff0RKAgqR6+CFpdk22M7aLwC9gOcLGYqr7MczLPzZVERW9hRog3O4n1sQ==",
3414
+ "dev": true,
3415
+ "license": "MIT",
3416
+ "dependencies": {
3417
+ "@typescript-eslint/types": "8.52.0",
3418
+ "eslint-visitor-keys": "^4.2.1"
3419
+ },
3420
+ "engines": {
3421
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
3422
+ },
3423
+ "funding": {
3424
+ "type": "opencollective",
3425
+ "url": "https://opencollective.com/typescript-eslint"
3426
+ }
3427
+ },
2925
3428
  "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
2926
3429
  "version": "4.2.1",
2927
3430
  "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
@@ -3931,9 +4434,9 @@
3931
4434
  "license": "MIT"
3932
4435
  },
3933
4436
  "node_modules/baseline-browser-mapping": {
3934
- "version": "2.9.11",
3935
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.11.tgz",
3936
- "integrity": "sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==",
4437
+ "version": "2.9.14",
4438
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.14.tgz",
4439
+ "integrity": "sha512-B0xUquLkiGLgHhpPBqvl7GWegWBUNuujQ6kXd/r1U38ElPT6Ok8KZ8e+FpUGEc2ZoRQUzq/aUnaKFc/svWUGSg==",
3937
4440
  "dev": true,
3938
4441
  "license": "Apache-2.0",
3939
4442
  "bin": {
@@ -3941,9 +4444,9 @@
3941
4444
  }
3942
4445
  },
3943
4446
  "node_modules/body-parser": {
3944
- "version": "2.2.1",
3945
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.1.tgz",
3946
- "integrity": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==",
4447
+ "version": "2.2.2",
4448
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.2.tgz",
4449
+ "integrity": "sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==",
3947
4450
  "license": "MIT",
3948
4451
  "dependencies": {
3949
4452
  "bytes": "^3.1.2",
@@ -3952,7 +4455,7 @@
3952
4455
  "http-errors": "^2.0.0",
3953
4456
  "iconv-lite": "^0.7.0",
3954
4457
  "on-finished": "^2.4.1",
3955
- "qs": "^6.14.0",
4458
+ "qs": "^6.14.1",
3956
4459
  "raw-body": "^3.0.1",
3957
4460
  "type-is": "^2.0.1"
3958
4461
  },
@@ -4171,9 +4674,9 @@
4171
4674
  }
4172
4675
  },
4173
4676
  "node_modules/caniuse-lite": {
4174
- "version": "1.0.30001762",
4175
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001762.tgz",
4176
- "integrity": "sha512-PxZwGNvH7Ak8WX5iXzoK1KPZttBXNPuaOvI2ZYU7NrlM+d9Ov+TUvlLOBNGzVXAntMSMMlJPd+jY6ovrVjSmUw==",
4677
+ "version": "1.0.30001764",
4678
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001764.tgz",
4679
+ "integrity": "sha512-9JGuzl2M+vPL+pz70gtMF9sHdMFbY9FJaQBi186cHKH3pSzDvzoUJUPV6fqiKIMyXbud9ZLg4F3Yza1vJ1+93g==",
4177
4680
  "dev": true,
4178
4681
  "funding": [
4179
4682
  {
@@ -6343,9 +6846,9 @@
6343
6846
  }
6344
6847
  },
6345
6848
  "node_modules/iconv-lite": {
6346
- "version": "0.7.1",
6347
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.1.tgz",
6348
- "integrity": "sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw==",
6849
+ "version": "0.7.2",
6850
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
6851
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
6349
6852
  "license": "MIT",
6350
6853
  "dependencies": {
6351
6854
  "safer-buffer": ">= 2.1.2 < 3.0.0"
@@ -7988,10 +8491,6 @@
7988
8491
  "node": ">= 0.4"
7989
8492
  }
7990
8493
  },
7991
- "node_modules/mb-lib-test": {
7992
- "resolved": "packages/mb-lib-test",
7993
- "link": true
7994
- },
7995
8494
  "node_modules/media-typer": {
7996
8495
  "version": "1.1.0",
7997
8496
  "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
@@ -9268,9 +9767,9 @@
9268
9767
  }
9269
9768
  },
9270
9769
  "node_modules/rollup": {
9271
- "version": "4.54.0",
9272
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.54.0.tgz",
9273
- "integrity": "sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==",
9770
+ "version": "4.55.1",
9771
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.55.1.tgz",
9772
+ "integrity": "sha512-wDv/Ht1BNHB4upNbK74s9usvl7hObDnvVzknxqY/E/O3X6rW1U1rV1aENEfJ54eFZDTNo7zv1f5N4edCluH7+A==",
9274
9773
  "dev": true,
9275
9774
  "license": "MIT",
9276
9775
  "dependencies": {
@@ -9284,28 +9783,31 @@
9284
9783
  "npm": ">=8.0.0"
9285
9784
  },
9286
9785
  "optionalDependencies": {
9287
- "@rollup/rollup-android-arm-eabi": "4.54.0",
9288
- "@rollup/rollup-android-arm64": "4.54.0",
9289
- "@rollup/rollup-darwin-arm64": "4.54.0",
9290
- "@rollup/rollup-darwin-x64": "4.54.0",
9291
- "@rollup/rollup-freebsd-arm64": "4.54.0",
9292
- "@rollup/rollup-freebsd-x64": "4.54.0",
9293
- "@rollup/rollup-linux-arm-gnueabihf": "4.54.0",
9294
- "@rollup/rollup-linux-arm-musleabihf": "4.54.0",
9295
- "@rollup/rollup-linux-arm64-gnu": "4.54.0",
9296
- "@rollup/rollup-linux-arm64-musl": "4.54.0",
9297
- "@rollup/rollup-linux-loong64-gnu": "4.54.0",
9298
- "@rollup/rollup-linux-ppc64-gnu": "4.54.0",
9299
- "@rollup/rollup-linux-riscv64-gnu": "4.54.0",
9300
- "@rollup/rollup-linux-riscv64-musl": "4.54.0",
9301
- "@rollup/rollup-linux-s390x-gnu": "4.54.0",
9302
- "@rollup/rollup-linux-x64-gnu": "4.54.0",
9303
- "@rollup/rollup-linux-x64-musl": "4.54.0",
9304
- "@rollup/rollup-openharmony-arm64": "4.54.0",
9305
- "@rollup/rollup-win32-arm64-msvc": "4.54.0",
9306
- "@rollup/rollup-win32-ia32-msvc": "4.54.0",
9307
- "@rollup/rollup-win32-x64-gnu": "4.54.0",
9308
- "@rollup/rollup-win32-x64-msvc": "4.54.0",
9786
+ "@rollup/rollup-android-arm-eabi": "4.55.1",
9787
+ "@rollup/rollup-android-arm64": "4.55.1",
9788
+ "@rollup/rollup-darwin-arm64": "4.55.1",
9789
+ "@rollup/rollup-darwin-x64": "4.55.1",
9790
+ "@rollup/rollup-freebsd-arm64": "4.55.1",
9791
+ "@rollup/rollup-freebsd-x64": "4.55.1",
9792
+ "@rollup/rollup-linux-arm-gnueabihf": "4.55.1",
9793
+ "@rollup/rollup-linux-arm-musleabihf": "4.55.1",
9794
+ "@rollup/rollup-linux-arm64-gnu": "4.55.1",
9795
+ "@rollup/rollup-linux-arm64-musl": "4.55.1",
9796
+ "@rollup/rollup-linux-loong64-gnu": "4.55.1",
9797
+ "@rollup/rollup-linux-loong64-musl": "4.55.1",
9798
+ "@rollup/rollup-linux-ppc64-gnu": "4.55.1",
9799
+ "@rollup/rollup-linux-ppc64-musl": "4.55.1",
9800
+ "@rollup/rollup-linux-riscv64-gnu": "4.55.1",
9801
+ "@rollup/rollup-linux-riscv64-musl": "4.55.1",
9802
+ "@rollup/rollup-linux-s390x-gnu": "4.55.1",
9803
+ "@rollup/rollup-linux-x64-gnu": "4.55.1",
9804
+ "@rollup/rollup-linux-x64-musl": "4.55.1",
9805
+ "@rollup/rollup-openbsd-x64": "4.55.1",
9806
+ "@rollup/rollup-openharmony-arm64": "4.55.1",
9807
+ "@rollup/rollup-win32-arm64-msvc": "4.55.1",
9808
+ "@rollup/rollup-win32-ia32-msvc": "4.55.1",
9809
+ "@rollup/rollup-win32-x64-gnu": "4.55.1",
9810
+ "@rollup/rollup-win32-x64-msvc": "4.55.1",
9309
9811
  "fsevents": "~2.3.2"
9310
9812
  }
9311
9813
  },
@@ -10734,6 +11236,160 @@
10734
11236
  "typescript": ">=4.8.4 <6.0.0"
10735
11237
  }
10736
11238
  },
11239
+ "node_modules/typescript-eslint/node_modules/@typescript-eslint/project-service": {
11240
+ "version": "8.51.0",
11241
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.51.0.tgz",
11242
+ "integrity": "sha512-Luv/GafO07Z7HpiI7qeEW5NW8HUtZI/fo/kE0YbtQEFpJRUuR0ajcWfCE5bnMvL7QQFrmT/odMe8QZww8X2nfQ==",
11243
+ "dev": true,
11244
+ "license": "MIT",
11245
+ "dependencies": {
11246
+ "@typescript-eslint/tsconfig-utils": "^8.51.0",
11247
+ "@typescript-eslint/types": "^8.51.0",
11248
+ "debug": "^4.3.4"
11249
+ },
11250
+ "engines": {
11251
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11252
+ },
11253
+ "funding": {
11254
+ "type": "opencollective",
11255
+ "url": "https://opencollective.com/typescript-eslint"
11256
+ },
11257
+ "peerDependencies": {
11258
+ "typescript": ">=4.8.4 <6.0.0"
11259
+ }
11260
+ },
11261
+ "node_modules/typescript-eslint/node_modules/@typescript-eslint/scope-manager": {
11262
+ "version": "8.51.0",
11263
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.51.0.tgz",
11264
+ "integrity": "sha512-JhhJDVwsSx4hiOEQPeajGhCWgBMBwVkxC/Pet53EpBVs7zHHtayKefw1jtPaNRXpI9RA2uocdmpdfE7T+NrizA==",
11265
+ "dev": true,
11266
+ "license": "MIT",
11267
+ "dependencies": {
11268
+ "@typescript-eslint/types": "8.51.0",
11269
+ "@typescript-eslint/visitor-keys": "8.51.0"
11270
+ },
11271
+ "engines": {
11272
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11273
+ },
11274
+ "funding": {
11275
+ "type": "opencollective",
11276
+ "url": "https://opencollective.com/typescript-eslint"
11277
+ }
11278
+ },
11279
+ "node_modules/typescript-eslint/node_modules/@typescript-eslint/tsconfig-utils": {
11280
+ "version": "8.51.0",
11281
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.51.0.tgz",
11282
+ "integrity": "sha512-Qi5bSy/vuHeWyir2C8u/uqGMIlIDu8fuiYWv48ZGlZ/k+PRPHtaAu7erpc7p5bzw2WNNSniuxoMSO4Ar6V9OXw==",
11283
+ "dev": true,
11284
+ "license": "MIT",
11285
+ "engines": {
11286
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11287
+ },
11288
+ "funding": {
11289
+ "type": "opencollective",
11290
+ "url": "https://opencollective.com/typescript-eslint"
11291
+ },
11292
+ "peerDependencies": {
11293
+ "typescript": ">=4.8.4 <6.0.0"
11294
+ }
11295
+ },
11296
+ "node_modules/typescript-eslint/node_modules/@typescript-eslint/types": {
11297
+ "version": "8.51.0",
11298
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.51.0.tgz",
11299
+ "integrity": "sha512-TizAvWYFM6sSscmEakjY3sPqGwxZRSywSsPEiuZF6d5GmGD9Gvlsv0f6N8FvAAA0CD06l3rIcWNbsN1e5F/9Ag==",
11300
+ "dev": true,
11301
+ "license": "MIT",
11302
+ "engines": {
11303
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11304
+ },
11305
+ "funding": {
11306
+ "type": "opencollective",
11307
+ "url": "https://opencollective.com/typescript-eslint"
11308
+ }
11309
+ },
11310
+ "node_modules/typescript-eslint/node_modules/@typescript-eslint/typescript-estree": {
11311
+ "version": "8.51.0",
11312
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.51.0.tgz",
11313
+ "integrity": "sha512-1qNjGqFRmlq0VW5iVlcyHBbCjPB7y6SxpBkrbhNWMy/65ZoncXCEPJxkRZL8McrseNH6lFhaxCIaX+vBuFnRng==",
11314
+ "dev": true,
11315
+ "license": "MIT",
11316
+ "dependencies": {
11317
+ "@typescript-eslint/project-service": "8.51.0",
11318
+ "@typescript-eslint/tsconfig-utils": "8.51.0",
11319
+ "@typescript-eslint/types": "8.51.0",
11320
+ "@typescript-eslint/visitor-keys": "8.51.0",
11321
+ "debug": "^4.3.4",
11322
+ "minimatch": "^9.0.4",
11323
+ "semver": "^7.6.0",
11324
+ "tinyglobby": "^0.2.15",
11325
+ "ts-api-utils": "^2.2.0"
11326
+ },
11327
+ "engines": {
11328
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11329
+ },
11330
+ "funding": {
11331
+ "type": "opencollective",
11332
+ "url": "https://opencollective.com/typescript-eslint"
11333
+ },
11334
+ "peerDependencies": {
11335
+ "typescript": ">=4.8.4 <6.0.0"
11336
+ }
11337
+ },
11338
+ "node_modules/typescript-eslint/node_modules/@typescript-eslint/utils": {
11339
+ "version": "8.51.0",
11340
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.51.0.tgz",
11341
+ "integrity": "sha512-11rZYxSe0zabiKaCP2QAwRf/dnmgFgvTmeDTtZvUvXG3UuAdg/GU02NExmmIXzz3vLGgMdtrIosI84jITQOxUA==",
11342
+ "dev": true,
11343
+ "license": "MIT",
11344
+ "dependencies": {
11345
+ "@eslint-community/eslint-utils": "^4.7.0",
11346
+ "@typescript-eslint/scope-manager": "8.51.0",
11347
+ "@typescript-eslint/types": "8.51.0",
11348
+ "@typescript-eslint/typescript-estree": "8.51.0"
11349
+ },
11350
+ "engines": {
11351
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11352
+ },
11353
+ "funding": {
11354
+ "type": "opencollective",
11355
+ "url": "https://opencollective.com/typescript-eslint"
11356
+ },
11357
+ "peerDependencies": {
11358
+ "eslint": "^8.57.0 || ^9.0.0",
11359
+ "typescript": ">=4.8.4 <6.0.0"
11360
+ }
11361
+ },
11362
+ "node_modules/typescript-eslint/node_modules/@typescript-eslint/visitor-keys": {
11363
+ "version": "8.51.0",
11364
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
11365
+ "integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
11366
+ "dev": true,
11367
+ "license": "MIT",
11368
+ "dependencies": {
11369
+ "@typescript-eslint/types": "8.51.0",
11370
+ "eslint-visitor-keys": "^4.2.1"
11371
+ },
11372
+ "engines": {
11373
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11374
+ },
11375
+ "funding": {
11376
+ "type": "opencollective",
11377
+ "url": "https://opencollective.com/typescript-eslint"
11378
+ }
11379
+ },
11380
+ "node_modules/typescript-eslint/node_modules/eslint-visitor-keys": {
11381
+ "version": "4.2.1",
11382
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
11383
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
11384
+ "dev": true,
11385
+ "license": "Apache-2.0",
11386
+ "engines": {
11387
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
11388
+ },
11389
+ "funding": {
11390
+ "url": "https://opencollective.com/eslint"
11391
+ }
11392
+ },
10737
11393
  "node_modules/uglify-js": {
10738
11394
  "version": "3.19.3",
10739
11395
  "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz",
@@ -10890,9 +11546,9 @@
10890
11546
  }
10891
11547
  },
10892
11548
  "node_modules/vite": {
10893
- "version": "7.3.0",
10894
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.0.tgz",
10895
- "integrity": "sha512-dZwN5L1VlUBewiP6H9s2+B3e3Jg96D0vzN+Ry73sOefebhYr9f94wwkMNN/9ouoU8pV1BqA1d1zGk8928cx0rg==",
11549
+ "version": "7.3.1",
11550
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
11551
+ "integrity": "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==",
10896
11552
  "dev": true,
10897
11553
  "license": "MIT",
10898
11554
  "dependencies": {
@@ -11405,7 +12061,124 @@
11405
12061
  "node": ">= 14"
11406
12062
  }
11407
12063
  },
11408
- "packages/mb-lib-test": {
12064
+ "packages/dgram": {
12065
+ "name": "@matterbridge/dgram",
12066
+ "version": "0.0.1",
12067
+ "license": "Apache-2.0",
12068
+ "dependencies": {
12069
+ "@matterbridge/jest-utils": "0.0.1",
12070
+ "node-ansi-logger": "3.1.1"
12071
+ },
12072
+ "devDependencies": {
12073
+ "@eslint/js": "9.39.2",
12074
+ "@jest/globals": "30.2.0",
12075
+ "@types/jest": "30.0.0",
12076
+ "@types/node": "25.0.3",
12077
+ "@vitest/coverage-v8": "4.0.16",
12078
+ "@vitest/eslint-plugin": "1.6.5",
12079
+ "cross-env": "10.1.0",
12080
+ "eslint": "9.39.2",
12081
+ "eslint-config-prettier": "10.1.8",
12082
+ "eslint-plugin-import": "2.32.0",
12083
+ "eslint-plugin-jest": "29.12.1",
12084
+ "eslint-plugin-jsdoc": "61.5.0",
12085
+ "eslint-plugin-n": "17.23.1",
12086
+ "eslint-plugin-prettier": "5.5.4",
12087
+ "eslint-plugin-promise": "7.2.1",
12088
+ "jest": "30.2.0",
12089
+ "npm-check-updates": "19.2.1",
12090
+ "prettier": "3.7.4",
12091
+ "shx": "0.4.0",
12092
+ "ts-jest": "29.4.6",
12093
+ "typescript": "5.9.3",
12094
+ "typescript-eslint": "8.51.0",
12095
+ "vitest": "4.0.16"
12096
+ },
12097
+ "funding": {
12098
+ "type": "buymeacoffee",
12099
+ "url": "https://www.buymeacoffee.com/luligugithub"
12100
+ }
12101
+ },
12102
+ "packages/jest-utils": {
12103
+ "name": "@matterbridge/jest-utils",
12104
+ "version": "0.0.1",
12105
+ "license": "Apache-2.0",
12106
+ "dependencies": {
12107
+ "node-ansi-logger": "3.1.1"
12108
+ },
12109
+ "devDependencies": {
12110
+ "@eslint/js": "9.39.2",
12111
+ "@jest/globals": "30.2.0",
12112
+ "@types/jest": "30.0.0",
12113
+ "@types/node": "25.0.3",
12114
+ "@vitest/coverage-v8": "4.0.16",
12115
+ "@vitest/eslint-plugin": "1.6.5",
12116
+ "cross-env": "10.1.0",
12117
+ "eslint": "9.39.2",
12118
+ "eslint-config-prettier": "10.1.8",
12119
+ "eslint-plugin-import": "2.32.0",
12120
+ "eslint-plugin-jest": "29.12.1",
12121
+ "eslint-plugin-jsdoc": "61.5.0",
12122
+ "eslint-plugin-n": "17.23.1",
12123
+ "eslint-plugin-prettier": "5.5.4",
12124
+ "eslint-plugin-promise": "7.2.1",
12125
+ "jest": "30.2.0",
12126
+ "npm-check-updates": "19.2.1",
12127
+ "prettier": "3.7.4",
12128
+ "shx": "0.4.0",
12129
+ "ts-jest": "29.4.6",
12130
+ "typescript": "5.9.3",
12131
+ "typescript-eslint": "8.51.0",
12132
+ "vitest": "4.0.16"
12133
+ },
12134
+ "engines": {
12135
+ "node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
12136
+ },
12137
+ "funding": {
12138
+ "type": "buymeacoffee",
12139
+ "url": "https://www.buymeacoffee.com/luligugithub"
12140
+ }
12141
+ },
12142
+ "packages/utils": {
12143
+ "name": "@matterbridge/utils",
12144
+ "version": "0.0.1",
12145
+ "license": "Apache-2.0",
12146
+ "dependencies": {
12147
+ "@matterbridge/jest-utils": "0.0.1",
12148
+ "node-ansi-logger": "3.1.1"
12149
+ },
12150
+ "devDependencies": {
12151
+ "@eslint/js": "9.39.2",
12152
+ "@jest/globals": "30.2.0",
12153
+ "@types/jest": "30.0.0",
12154
+ "@types/node": "25.0.3",
12155
+ "@vitest/coverage-v8": "4.0.16",
12156
+ "@vitest/eslint-plugin": "1.6.5",
12157
+ "cross-env": "10.1.0",
12158
+ "eslint": "9.39.2",
12159
+ "eslint-config-prettier": "10.1.8",
12160
+ "eslint-plugin-import": "2.32.0",
12161
+ "eslint-plugin-jest": "29.12.1",
12162
+ "eslint-plugin-jsdoc": "61.5.0",
12163
+ "eslint-plugin-n": "17.23.1",
12164
+ "eslint-plugin-prettier": "5.5.4",
12165
+ "eslint-plugin-promise": "7.2.1",
12166
+ "jest": "30.2.0",
12167
+ "npm-check-updates": "19.2.1",
12168
+ "prettier": "3.7.4",
12169
+ "shx": "0.4.0",
12170
+ "ts-jest": "29.4.6",
12171
+ "typescript": "5.9.3",
12172
+ "typescript-eslint": "8.51.0",
12173
+ "vitest": "4.0.16"
12174
+ },
12175
+ "funding": {
12176
+ "type": "buymeacoffee",
12177
+ "url": "https://www.buymeacoffee.com/luligugithub"
12178
+ }
12179
+ },
12180
+ "packages/vitest-utils": {
12181
+ "name": "@matterbridge/vitest-utils",
11409
12182
  "version": "0.0.1",
11410
12183
  "license": "Apache-2.0",
11411
12184
  "dependencies": {