matterbridge 3.4.7-dev-20260104-6b10cee → 3.4.7-dev-20260112-bd9e311
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -4
- package/README.md +5 -1
- package/dist/broadcastServer.d.ts +29 -0
- package/dist/broadcastServerTypes.d.ts +798 -0
- package/dist/cli.d.ts +6 -0
- package/dist/cliEmitter.d.ts +14 -0
- package/dist/cliHistory.d.ts +6 -0
- package/dist/clusters/export.d.ts +1 -0
- package/dist/deviceManager.d.ts +27 -0
- package/dist/devices/airConditioner.d.ts +23 -0
- package/dist/devices/batteryStorage.d.ts +5 -0
- package/dist/devices/cooktop.d.ts +6 -0
- package/dist/devices/dishwasher.d.ts +16 -0
- package/dist/devices/evse.d.ts +19 -0
- package/dist/devices/export.d.ts +16 -0
- package/dist/devices/extractorHood.d.ts +5 -0
- package/dist/devices/heatPump.d.ts +4 -0
- package/dist/devices/laundryDryer.d.ts +9 -0
- package/dist/devices/laundryWasher.d.ts +17 -0
- package/dist/devices/microwaveOven.d.ts +92 -0
- package/dist/devices/oven.d.ts +23 -0
- package/dist/devices/refrigerator.d.ts +18 -0
- package/dist/devices/roboticVacuumCleaner.d.ts +29 -0
- package/dist/devices/solarPower.d.ts +4 -0
- package/dist/devices/speaker.d.ts +8 -0
- package/dist/devices/temperatureControl.d.ts +145 -0
- package/dist/devices/waterHeater.d.ts +37 -0
- package/dist/dgram/coap.d.ts +34 -0
- package/dist/dgram/dgram.d.ts +45 -0
- package/dist/dgram/dgram.js +5 -2
- package/dist/dgram/mb_coap.d.ts +1 -0
- package/dist/dgram/mb_coap.js +1 -2
- package/dist/dgram/mb_mdns.d.ts +1 -0
- package/dist/dgram/mb_mdns.js +39 -50
- package/dist/dgram/mdns.d.ts +188 -0
- package/dist/dgram/multicast.d.ts +18 -0
- package/dist/dgram/unicast.d.ts +11 -0
- package/dist/frontend.d.ts +58 -0
- package/dist/frontendTypes.d.ts +472 -0
- package/dist/helpers.d.ts +5 -0
- package/dist/index.d.ts +11 -0
- package/dist/jestutils/export.d.ts +1 -0
- package/dist/jestutils/jestHelpers.d.ts +90 -0
- package/dist/logger/export.d.ts +1 -0
- package/dist/matter/behaviors.d.ts +1 -0
- package/dist/matter/clusters.d.ts +1 -0
- package/dist/matter/devices.d.ts +1 -0
- package/dist/matter/endpoints.d.ts +1 -0
- package/dist/matter/export.d.ts +4 -0
- package/dist/matter/types.d.ts +2 -0
- package/dist/matterNode.d.ts +84 -0
- package/dist/matterbridge.d.ts +152 -0
- package/dist/matterbridgeAccessoryPlatform.d.ts +5 -0
- package/dist/matterbridgeBehaviors.d.ts +2380 -0
- package/dist/matterbridgeDeviceTypes.d.ts +95 -0
- package/dist/matterbridgeDynamicPlatform.d.ts +5 -0
- package/dist/matterbridgeEndpoint.d.ts +175 -0
- package/dist/matterbridgeEndpointHelpers.d.ts +362 -0
- package/dist/matterbridgeEndpointTypes.d.ts +96 -0
- package/dist/matterbridgePlatform.d.ts +114 -0
- package/dist/matterbridgeTypes.d.ts +206 -0
- package/dist/pluginManager.d.ts +67 -0
- package/dist/shelly.d.ts +24 -0
- package/dist/storage/export.d.ts +1 -0
- package/dist/update.d.ts +9 -0
- package/dist/utils/colorUtils.d.ts +24 -0
- package/dist/utils/commandLine.d.ts +6 -0
- package/dist/utils/copyDirectory.d.ts +2 -0
- package/dist/utils/createDirectory.d.ts +2 -0
- package/dist/utils/createZip.d.ts +1 -0
- package/dist/utils/deepCopy.d.ts +1 -0
- package/dist/utils/deepEqual.d.ts +1 -0
- package/dist/utils/error.d.ts +3 -0
- package/dist/utils/export.d.ts +12 -0
- package/dist/utils/format.d.ts +4 -0
- package/dist/utils/hex.d.ts +4 -0
- package/dist/utils/inspector.d.ts +24 -0
- package/dist/utils/isValid.d.ts +10 -0
- package/dist/utils/network.d.ts +25 -0
- package/dist/utils/spawn.d.ts +1 -0
- package/dist/utils/tracker.d.ts +52 -0
- package/dist/utils/wait.d.ts +3 -0
- package/dist/workerGlobalPrefix.d.ts +1 -0
- package/dist/workerTypes.d.ts +27 -0
- package/dist/workers.d.ts +8 -0
- package/npm-shrinkwrap.json +1109 -330
- package/package.json +9 -2
- package/packages/dgram/dist/coap.d.ts +34 -0
- package/packages/dgram/dist/coap.js +252 -0
- package/packages/dgram/dist/dgram.d.ts +45 -0
- package/packages/dgram/dist/dgram.js +255 -0
- package/packages/dgram/dist/export.d.ts +5 -0
- package/packages/dgram/dist/export.js +5 -0
- package/packages/dgram/dist/mdns.d.ts +188 -0
- package/packages/dgram/dist/mdns.js +702 -0
- package/packages/dgram/dist/multicast.d.ts +18 -0
- package/packages/dgram/dist/multicast.js +119 -0
- package/packages/dgram/dist/unicast.d.ts +11 -0
- package/packages/dgram/dist/unicast.js +40 -0
- package/packages/dgram/package.json +110 -0
- package/packages/jest-utils/LICENSE +202 -0
- package/packages/jest-utils/bmc-button.svg +22 -0
- package/packages/jest-utils/dist/export.d.ts +1 -0
- package/packages/jest-utils/dist/export.js +1 -0
- package/packages/jest-utils/matterbridge.svg +50 -0
- package/packages/{mb-lib-test → jest-utils}/package.json +18 -15
- package/packages/utils/LICENSE +202 -0
- package/packages/utils/bmc-button.svg +22 -0
- package/packages/utils/dist/colorUtils.d.ts +24 -0
- package/packages/utils/dist/colorUtils.js +187 -0
- package/packages/utils/dist/commandLine.d.ts +6 -0
- package/packages/utils/dist/commandLine.js +63 -0
- package/packages/utils/dist/copyDirectory.d.ts +2 -0
- package/packages/utils/dist/copyDirectory.js +39 -0
- package/packages/utils/dist/createDirectory.d.ts +2 -0
- package/packages/utils/dist/createDirectory.js +21 -0
- package/packages/utils/dist/createZip.d.ts +1 -0
- package/packages/utils/dist/createZip.js +69 -0
- package/packages/utils/dist/deepCopy.d.ts +1 -0
- package/packages/utils/dist/deepCopy.js +40 -0
- package/packages/utils/dist/deepEqual.d.ts +1 -0
- package/packages/utils/dist/deepEqual.js +58 -0
- package/packages/utils/dist/error.d.ts +3 -0
- package/packages/utils/dist/error.js +12 -0
- package/packages/utils/dist/export.d.ts +15 -0
- package/packages/utils/dist/export.js +15 -0
- package/packages/utils/dist/format.d.ts +4 -0
- package/packages/utils/dist/format.js +29 -0
- package/packages/utils/dist/githubVersion.d.ts +11 -0
- package/packages/utils/dist/githubVersion.js +37 -0
- package/packages/utils/dist/hex.d.ts +4 -0
- package/packages/utils/dist/hex.js +118 -0
- package/packages/utils/dist/inspector.d.ts +24 -0
- package/packages/utils/dist/inspector.js +200 -0
- package/packages/utils/dist/isValid.d.ts +10 -0
- package/packages/utils/dist/isValid.js +69 -0
- package/packages/utils/dist/network.d.ts +12 -0
- package/packages/utils/dist/network.js +105 -0
- package/packages/utils/dist/npmRoot.d.ts +1 -0
- package/packages/utils/dist/npmRoot.js +13 -0
- package/packages/utils/dist/npmVersion.d.ts +1 -0
- package/packages/utils/dist/npmVersion.js +43 -0
- package/packages/utils/dist/tracker.d.ts +52 -0
- package/packages/utils/dist/tracker.js +201 -0
- package/packages/utils/dist/wait.d.ts +3 -0
- package/packages/utils/dist/wait.js +73 -0
- package/packages/utils/matterbridge.svg +50 -0
- package/packages/utils/package.json +110 -0
- package/packages/vitest-utils/LICENSE +202 -0
- package/packages/vitest-utils/bmc-button.svg +22 -0
- package/packages/vitest-utils/dist/export.d.ts +1 -0
- package/packages/vitest-utils/dist/export.js +1 -0
- package/packages/vitest-utils/matterbridge.svg +50 -0
- package/packages/vitest-utils/package.json +109 -0
- package/dist/dgram/mdnsReflectorClient.js +0 -176
- package/dist/dgram/mdnsReflectorServer.js +0 -301
- package/dist/dgram/mdnsReflectorTypes.js +0 -5
- package/packages/mb-lib-test/dist/module.d.ts +0 -2
- package/packages/mb-lib-test/dist/module.js +0 -2
- package/reflector/DockerDesktopSetup.png +0 -0
- package/reflector/Reflector.md +0 -158
- package/reflector/ReflectorClient.png +0 -0
- package/reflector/ReflectorServer.png +0 -0
- package/reflector/docker-compose.yml +0 -32
- package/reflector/mDnsPacket.png +0 -0
- /package/packages/{mb-lib-test → dgram}/LICENSE +0 -0
- /package/packages/{mb-lib-test → dgram}/bmc-button.svg +0 -0
- /package/packages/{mb-lib-test → dgram}/matterbridge.svg +0 -0
- /package/packages/{mb-lib-test/dist/jestutils → jest-utils/dist}/jestHelpers.d.ts +0 -0
- /package/packages/{mb-lib-test/dist/jestutils → jest-utils/dist}/jestHelpers.js +0 -0
- /package/packages/{mb-lib-test/dist/vitestutils → vitest-utils/dist}/vitestHelpers.d.ts +0 -0
- /package/packages/{mb-lib-test/dist/vitestutils → vitest-utils/dist}/vitestHelpers.js +0 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,18 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "matterbridge",
|
|
3
|
-
"version": "3.4.7-dev-
|
|
3
|
+
"version": "3.4.7-dev-20260112-bd9e311",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "matterbridge",
|
|
9
|
-
"version": "3.4.7-dev-
|
|
9
|
+
"version": "3.4.7-dev-20260112-bd9e311",
|
|
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.2",
|
|
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.
|
|
565
|
-
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.
|
|
566
|
-
"integrity": "sha512-
|
|
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.
|
|
577
|
-
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.
|
|
578
|
-
"integrity": "sha512-
|
|
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.
|
|
2168
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.
|
|
2169
|
-
"integrity": "sha512-
|
|
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.
|
|
2182
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.
|
|
2183
|
-
"integrity": "sha512-
|
|
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.
|
|
2196
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.
|
|
2197
|
-
"integrity": "sha512-
|
|
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.
|
|
2210
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.
|
|
2211
|
-
"integrity": "sha512-
|
|
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.
|
|
2224
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.
|
|
2225
|
-
"integrity": "sha512
|
|
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.
|
|
2238
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.
|
|
2239
|
-
"integrity": "sha512-
|
|
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.
|
|
2252
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.
|
|
2253
|
-
"integrity": "sha512-
|
|
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.
|
|
2266
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.
|
|
2267
|
-
"integrity": "sha512
|
|
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.
|
|
2280
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.
|
|
2281
|
-
"integrity": "sha512-
|
|
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.
|
|
2294
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.
|
|
2295
|
-
"integrity": "sha512-
|
|
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.
|
|
2308
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.
|
|
2309
|
-
"integrity": "sha512-
|
|
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.
|
|
2322
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.
|
|
2323
|
-
"integrity": "sha512-
|
|
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.
|
|
2336
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.
|
|
2337
|
-
"integrity": "sha512-
|
|
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.
|
|
2350
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.
|
|
2351
|
-
"integrity": "sha512-
|
|
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.
|
|
2364
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.
|
|
2365
|
-
"integrity": "sha512
|
|
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.
|
|
2378
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.
|
|
2379
|
-
"integrity": "sha512-
|
|
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.
|
|
2392
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.
|
|
2393
|
-
"integrity": "sha512-
|
|
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.
|
|
2406
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.
|
|
2407
|
-
"integrity": "sha512-
|
|
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.
|
|
2420
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.
|
|
2421
|
-
"integrity": "sha512-
|
|
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.
|
|
2434
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.
|
|
2435
|
-
"integrity": "sha512-
|
|
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.
|
|
2448
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.
|
|
2449
|
-
"integrity": "sha512-
|
|
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.
|
|
2462
|
-
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.
|
|
2463
|
-
"integrity": "sha512-
|
|
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.
|
|
2483
|
-
"resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.
|
|
2484
|
-
"integrity": "sha512-
|
|
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,42 +2786,7 @@
|
|
|
2721
2786
|
"typescript": ">=4.8.4 <6.0.0"
|
|
2722
2787
|
}
|
|
2723
2788
|
},
|
|
2724
|
-
"node_modules/@typescript-eslint/eslint-plugin/node_modules/
|
|
2725
|
-
"version": "7.0.5",
|
|
2726
|
-
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
|
|
2727
|
-
"integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
|
|
2728
|
-
"dev": true,
|
|
2729
|
-
"license": "MIT",
|
|
2730
|
-
"engines": {
|
|
2731
|
-
"node": ">= 4"
|
|
2732
|
-
}
|
|
2733
|
-
},
|
|
2734
|
-
"node_modules/@typescript-eslint/parser": {
|
|
2735
|
-
"version": "8.51.0",
|
|
2736
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.51.0.tgz",
|
|
2737
|
-
"integrity": "sha512-3xP4XzzDNQOIqBMWogftkwxhg5oMKApqY0BAflmLZiFYHqyhSOxv/cd/zPQLTcCXr4AkaKb25joocY0BD1WC6A==",
|
|
2738
|
-
"dev": true,
|
|
2739
|
-
"license": "MIT",
|
|
2740
|
-
"dependencies": {
|
|
2741
|
-
"@typescript-eslint/scope-manager": "8.51.0",
|
|
2742
|
-
"@typescript-eslint/types": "8.51.0",
|
|
2743
|
-
"@typescript-eslint/typescript-estree": "8.51.0",
|
|
2744
|
-
"@typescript-eslint/visitor-keys": "8.51.0",
|
|
2745
|
-
"debug": "^4.3.4"
|
|
2746
|
-
},
|
|
2747
|
-
"engines": {
|
|
2748
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2749
|
-
},
|
|
2750
|
-
"funding": {
|
|
2751
|
-
"type": "opencollective",
|
|
2752
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2753
|
-
},
|
|
2754
|
-
"peerDependencies": {
|
|
2755
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
2756
|
-
"typescript": ">=4.8.4 <6.0.0"
|
|
2757
|
-
}
|
|
2758
|
-
},
|
|
2759
|
-
"node_modules/@typescript-eslint/project-service": {
|
|
2789
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/project-service": {
|
|
2760
2790
|
"version": "8.51.0",
|
|
2761
2791
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.51.0.tgz",
|
|
2762
2792
|
"integrity": "sha512-Luv/GafO07Z7HpiI7qeEW5NW8HUtZI/fo/kE0YbtQEFpJRUuR0ajcWfCE5bnMvL7QQFrmT/odMe8QZww8X2nfQ==",
|
|
@@ -2778,7 +2808,7 @@
|
|
|
2778
2808
|
"typescript": ">=4.8.4 <6.0.0"
|
|
2779
2809
|
}
|
|
2780
2810
|
},
|
|
2781
|
-
"node_modules/@typescript-eslint/scope-manager": {
|
|
2811
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager": {
|
|
2782
2812
|
"version": "8.51.0",
|
|
2783
2813
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.51.0.tgz",
|
|
2784
2814
|
"integrity": "sha512-JhhJDVwsSx4hiOEQPeajGhCWgBMBwVkxC/Pet53EpBVs7zHHtayKefw1jtPaNRXpI9RA2uocdmpdfE7T+NrizA==",
|
|
@@ -2796,7 +2826,7 @@
|
|
|
2796
2826
|
"url": "https://opencollective.com/typescript-eslint"
|
|
2797
2827
|
}
|
|
2798
2828
|
},
|
|
2799
|
-
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
2829
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/tsconfig-utils": {
|
|
2800
2830
|
"version": "8.51.0",
|
|
2801
2831
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.51.0.tgz",
|
|
2802
2832
|
"integrity": "sha512-Qi5bSy/vuHeWyir2C8u/uqGMIlIDu8fuiYWv48ZGlZ/k+PRPHtaAu7erpc7p5bzw2WNNSniuxoMSO4Ar6V9OXw==",
|
|
@@ -2813,32 +2843,7 @@
|
|
|
2813
2843
|
"typescript": ">=4.8.4 <6.0.0"
|
|
2814
2844
|
}
|
|
2815
2845
|
},
|
|
2816
|
-
"node_modules/@typescript-eslint/
|
|
2817
|
-
"version": "8.51.0",
|
|
2818
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.51.0.tgz",
|
|
2819
|
-
"integrity": "sha512-0XVtYzxnobc9K0VU7wRWg1yiUrw4oQzexCG2V2IDxxCxhqBMSMbjB+6o91A+Uc0GWtgjCa3Y8bi7hwI0Tu4n5Q==",
|
|
2820
|
-
"dev": true,
|
|
2821
|
-
"license": "MIT",
|
|
2822
|
-
"dependencies": {
|
|
2823
|
-
"@typescript-eslint/types": "8.51.0",
|
|
2824
|
-
"@typescript-eslint/typescript-estree": "8.51.0",
|
|
2825
|
-
"@typescript-eslint/utils": "8.51.0",
|
|
2826
|
-
"debug": "^4.3.4",
|
|
2827
|
-
"ts-api-utils": "^2.2.0"
|
|
2828
|
-
},
|
|
2829
|
-
"engines": {
|
|
2830
|
-
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2831
|
-
},
|
|
2832
|
-
"funding": {
|
|
2833
|
-
"type": "opencollective",
|
|
2834
|
-
"url": "https://opencollective.com/typescript-eslint"
|
|
2835
|
-
},
|
|
2836
|
-
"peerDependencies": {
|
|
2837
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
2838
|
-
"typescript": ">=4.8.4 <6.0.0"
|
|
2839
|
-
}
|
|
2840
|
-
},
|
|
2841
|
-
"node_modules/@typescript-eslint/types": {
|
|
2846
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types": {
|
|
2842
2847
|
"version": "8.51.0",
|
|
2843
2848
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.51.0.tgz",
|
|
2844
2849
|
"integrity": "sha512-TizAvWYFM6sSscmEakjY3sPqGwxZRSywSsPEiuZF6d5GmGD9Gvlsv0f6N8FvAAA0CD06l3rIcWNbsN1e5F/9Ag==",
|
|
@@ -2852,7 +2857,7 @@
|
|
|
2852
2857
|
"url": "https://opencollective.com/typescript-eslint"
|
|
2853
2858
|
}
|
|
2854
2859
|
},
|
|
2855
|
-
"node_modules/@typescript-eslint/typescript-estree": {
|
|
2860
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree": {
|
|
2856
2861
|
"version": "8.51.0",
|
|
2857
2862
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.51.0.tgz",
|
|
2858
2863
|
"integrity": "sha512-1qNjGqFRmlq0VW5iVlcyHBbCjPB7y6SxpBkrbhNWMy/65ZoncXCEPJxkRZL8McrseNH6lFhaxCIaX+vBuFnRng==",
|
|
@@ -2880,7 +2885,7 @@
|
|
|
2880
2885
|
"typescript": ">=4.8.4 <6.0.0"
|
|
2881
2886
|
}
|
|
2882
2887
|
},
|
|
2883
|
-
"node_modules/@typescript-eslint/utils": {
|
|
2888
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": {
|
|
2884
2889
|
"version": "8.51.0",
|
|
2885
2890
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.51.0.tgz",
|
|
2886
2891
|
"integrity": "sha512-11rZYxSe0zabiKaCP2QAwRf/dnmgFgvTmeDTtZvUvXG3UuAdg/GU02NExmmIXzz3vLGgMdtrIosI84jITQOxUA==",
|
|
@@ -2904,7 +2909,7 @@
|
|
|
2904
2909
|
"typescript": ">=4.8.4 <6.0.0"
|
|
2905
2910
|
}
|
|
2906
2911
|
},
|
|
2907
|
-
"node_modules/@typescript-eslint/visitor-keys": {
|
|
2912
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys": {
|
|
2908
2913
|
"version": "8.51.0",
|
|
2909
2914
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
|
|
2910
2915
|
"integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
|
|
@@ -2922,7 +2927,7 @@
|
|
|
2922
2927
|
"url": "https://opencollective.com/typescript-eslint"
|
|
2923
2928
|
}
|
|
2924
2929
|
},
|
|
2925
|
-
"node_modules/@typescript-eslint/
|
|
2930
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-visitor-keys": {
|
|
2926
2931
|
"version": "4.2.1",
|
|
2927
2932
|
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
|
|
2928
2933
|
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
|
@@ -2935,90 +2940,588 @@
|
|
|
2935
2940
|
"url": "https://opencollective.com/eslint"
|
|
2936
2941
|
}
|
|
2937
2942
|
},
|
|
2938
|
-
"node_modules/@
|
|
2939
|
-
"version": "
|
|
2940
|
-
"resolved": "https://registry.npmjs.org
|
|
2941
|
-
"integrity": "sha512-
|
|
2942
|
-
"dev": true,
|
|
2943
|
-
"license": "ISC"
|
|
2944
|
-
},
|
|
2945
|
-
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
|
|
2946
|
-
"version": "1.11.1",
|
|
2947
|
-
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz",
|
|
2948
|
-
"integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==",
|
|
2949
|
-
"cpu": [
|
|
2950
|
-
"arm"
|
|
2951
|
-
],
|
|
2943
|
+
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
2944
|
+
"version": "7.0.5",
|
|
2945
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
|
|
2946
|
+
"integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
|
|
2952
2947
|
"dev": true,
|
|
2953
2948
|
"license": "MIT",
|
|
2954
|
-
"
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
]
|
|
2949
|
+
"engines": {
|
|
2950
|
+
"node": ">= 4"
|
|
2951
|
+
}
|
|
2958
2952
|
},
|
|
2959
|
-
"node_modules/@
|
|
2960
|
-
"version": "
|
|
2961
|
-
"resolved": "https://registry.npmjs.org/@
|
|
2962
|
-
"integrity": "sha512-
|
|
2963
|
-
"cpu": [
|
|
2964
|
-
"arm64"
|
|
2965
|
-
],
|
|
2953
|
+
"node_modules/@typescript-eslint/parser": {
|
|
2954
|
+
"version": "8.51.0",
|
|
2955
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.51.0.tgz",
|
|
2956
|
+
"integrity": "sha512-3xP4XzzDNQOIqBMWogftkwxhg5oMKApqY0BAflmLZiFYHqyhSOxv/cd/zPQLTcCXr4AkaKb25joocY0BD1WC6A==",
|
|
2966
2957
|
"dev": true,
|
|
2967
2958
|
"license": "MIT",
|
|
2968
|
-
"
|
|
2969
|
-
|
|
2970
|
-
"
|
|
2971
|
-
|
|
2959
|
+
"dependencies": {
|
|
2960
|
+
"@typescript-eslint/scope-manager": "8.51.0",
|
|
2961
|
+
"@typescript-eslint/types": "8.51.0",
|
|
2962
|
+
"@typescript-eslint/typescript-estree": "8.51.0",
|
|
2963
|
+
"@typescript-eslint/visitor-keys": "8.51.0",
|
|
2964
|
+
"debug": "^4.3.4"
|
|
2965
|
+
},
|
|
2966
|
+
"engines": {
|
|
2967
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2968
|
+
},
|
|
2969
|
+
"funding": {
|
|
2970
|
+
"type": "opencollective",
|
|
2971
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
2972
|
+
},
|
|
2973
|
+
"peerDependencies": {
|
|
2974
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
2975
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
2976
|
+
}
|
|
2972
2977
|
},
|
|
2973
|
-
"node_modules/@
|
|
2974
|
-
"version": "
|
|
2975
|
-
"resolved": "https://registry.npmjs.org/@
|
|
2976
|
-
"integrity": "sha512-
|
|
2977
|
-
"cpu": [
|
|
2978
|
-
"arm64"
|
|
2979
|
-
],
|
|
2978
|
+
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/project-service": {
|
|
2979
|
+
"version": "8.51.0",
|
|
2980
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.51.0.tgz",
|
|
2981
|
+
"integrity": "sha512-Luv/GafO07Z7HpiI7qeEW5NW8HUtZI/fo/kE0YbtQEFpJRUuR0ajcWfCE5bnMvL7QQFrmT/odMe8QZww8X2nfQ==",
|
|
2980
2982
|
"dev": true,
|
|
2981
2983
|
"license": "MIT",
|
|
2982
|
-
"
|
|
2983
|
-
|
|
2984
|
-
"
|
|
2985
|
-
|
|
2984
|
+
"dependencies": {
|
|
2985
|
+
"@typescript-eslint/tsconfig-utils": "^8.51.0",
|
|
2986
|
+
"@typescript-eslint/types": "^8.51.0",
|
|
2987
|
+
"debug": "^4.3.4"
|
|
2988
|
+
},
|
|
2989
|
+
"engines": {
|
|
2990
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
2991
|
+
},
|
|
2992
|
+
"funding": {
|
|
2993
|
+
"type": "opencollective",
|
|
2994
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
2995
|
+
},
|
|
2996
|
+
"peerDependencies": {
|
|
2997
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
2998
|
+
}
|
|
2986
2999
|
},
|
|
2987
|
-
"node_modules/@
|
|
2988
|
-
"version": "
|
|
2989
|
-
"resolved": "https://registry.npmjs.org/@
|
|
2990
|
-
"integrity": "sha512-
|
|
2991
|
-
"cpu": [
|
|
2992
|
-
"x64"
|
|
2993
|
-
],
|
|
3000
|
+
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": {
|
|
3001
|
+
"version": "8.51.0",
|
|
3002
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.51.0.tgz",
|
|
3003
|
+
"integrity": "sha512-JhhJDVwsSx4hiOEQPeajGhCWgBMBwVkxC/Pet53EpBVs7zHHtayKefw1jtPaNRXpI9RA2uocdmpdfE7T+NrizA==",
|
|
2994
3004
|
"dev": true,
|
|
2995
3005
|
"license": "MIT",
|
|
2996
|
-
"
|
|
2997
|
-
|
|
2998
|
-
"
|
|
2999
|
-
|
|
3006
|
+
"dependencies": {
|
|
3007
|
+
"@typescript-eslint/types": "8.51.0",
|
|
3008
|
+
"@typescript-eslint/visitor-keys": "8.51.0"
|
|
3009
|
+
},
|
|
3010
|
+
"engines": {
|
|
3011
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3012
|
+
},
|
|
3013
|
+
"funding": {
|
|
3014
|
+
"type": "opencollective",
|
|
3015
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
3016
|
+
}
|
|
3000
3017
|
},
|
|
3001
|
-
"node_modules/@
|
|
3002
|
-
"version": "
|
|
3003
|
-
"resolved": "https://registry.npmjs.org/@
|
|
3004
|
-
"integrity": "sha512-
|
|
3005
|
-
"cpu": [
|
|
3006
|
-
"x64"
|
|
3007
|
-
],
|
|
3018
|
+
"node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/tsconfig-utils": {
|
|
3019
|
+
"version": "8.51.0",
|
|
3020
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.51.0.tgz",
|
|
3021
|
+
"integrity": "sha512-Qi5bSy/vuHeWyir2C8u/uqGMIlIDu8fuiYWv48ZGlZ/k+PRPHtaAu7erpc7p5bzw2WNNSniuxoMSO4Ar6V9OXw==",
|
|
3008
3022
|
"dev": true,
|
|
3009
3023
|
"license": "MIT",
|
|
3010
|
-
"
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3024
|
+
"engines": {
|
|
3025
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3026
|
+
},
|
|
3027
|
+
"funding": {
|
|
3028
|
+
"type": "opencollective",
|
|
3029
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
3030
|
+
},
|
|
3031
|
+
"peerDependencies": {
|
|
3032
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
3033
|
+
}
|
|
3014
3034
|
},
|
|
3015
|
-
"node_modules/@
|
|
3016
|
-
"version": "
|
|
3017
|
-
"resolved": "https://registry.npmjs.org/@
|
|
3018
|
-
"integrity": "sha512-
|
|
3019
|
-
"
|
|
3020
|
-
|
|
3021
|
-
|
|
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
|
+
},
|
|
3165
|
+
"node_modules/@typescript-eslint/type-utils": {
|
|
3166
|
+
"version": "8.51.0",
|
|
3167
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.51.0.tgz",
|
|
3168
|
+
"integrity": "sha512-0XVtYzxnobc9K0VU7wRWg1yiUrw4oQzexCG2V2IDxxCxhqBMSMbjB+6o91A+Uc0GWtgjCa3Y8bi7hwI0Tu4n5Q==",
|
|
3169
|
+
"dev": true,
|
|
3170
|
+
"license": "MIT",
|
|
3171
|
+
"dependencies": {
|
|
3172
|
+
"@typescript-eslint/types": "8.51.0",
|
|
3173
|
+
"@typescript-eslint/typescript-estree": "8.51.0",
|
|
3174
|
+
"@typescript-eslint/utils": "8.51.0",
|
|
3175
|
+
"debug": "^4.3.4",
|
|
3176
|
+
"ts-api-utils": "^2.2.0"
|
|
3177
|
+
},
|
|
3178
|
+
"engines": {
|
|
3179
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3180
|
+
},
|
|
3181
|
+
"funding": {
|
|
3182
|
+
"type": "opencollective",
|
|
3183
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
3184
|
+
},
|
|
3185
|
+
"peerDependencies": {
|
|
3186
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
3187
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
3188
|
+
}
|
|
3189
|
+
},
|
|
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": {
|
|
3248
|
+
"version": "8.51.0",
|
|
3249
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.51.0.tgz",
|
|
3250
|
+
"integrity": "sha512-TizAvWYFM6sSscmEakjY3sPqGwxZRSywSsPEiuZF6d5GmGD9Gvlsv0f6N8FvAAA0CD06l3rIcWNbsN1e5F/9Ag==",
|
|
3251
|
+
"dev": true,
|
|
3252
|
+
"license": "MIT",
|
|
3253
|
+
"engines": {
|
|
3254
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3255
|
+
},
|
|
3256
|
+
"funding": {
|
|
3257
|
+
"type": "opencollective",
|
|
3258
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
3259
|
+
}
|
|
3260
|
+
},
|
|
3261
|
+
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": {
|
|
3262
|
+
"version": "8.51.0",
|
|
3263
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.51.0.tgz",
|
|
3264
|
+
"integrity": "sha512-1qNjGqFRmlq0VW5iVlcyHBbCjPB7y6SxpBkrbhNWMy/65ZoncXCEPJxkRZL8McrseNH6lFhaxCIaX+vBuFnRng==",
|
|
3265
|
+
"dev": true,
|
|
3266
|
+
"license": "MIT",
|
|
3267
|
+
"dependencies": {
|
|
3268
|
+
"@typescript-eslint/project-service": "8.51.0",
|
|
3269
|
+
"@typescript-eslint/tsconfig-utils": "8.51.0",
|
|
3270
|
+
"@typescript-eslint/types": "8.51.0",
|
|
3271
|
+
"@typescript-eslint/visitor-keys": "8.51.0",
|
|
3272
|
+
"debug": "^4.3.4",
|
|
3273
|
+
"minimatch": "^9.0.4",
|
|
3274
|
+
"semver": "^7.6.0",
|
|
3275
|
+
"tinyglobby": "^0.2.15",
|
|
3276
|
+
"ts-api-utils": "^2.2.0"
|
|
3277
|
+
},
|
|
3278
|
+
"engines": {
|
|
3279
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3280
|
+
},
|
|
3281
|
+
"funding": {
|
|
3282
|
+
"type": "opencollective",
|
|
3283
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
3284
|
+
},
|
|
3285
|
+
"peerDependencies": {
|
|
3286
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
3287
|
+
}
|
|
3288
|
+
},
|
|
3289
|
+
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": {
|
|
3290
|
+
"version": "8.51.0",
|
|
3291
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.51.0.tgz",
|
|
3292
|
+
"integrity": "sha512-11rZYxSe0zabiKaCP2QAwRf/dnmgFgvTmeDTtZvUvXG3UuAdg/GU02NExmmIXzz3vLGgMdtrIosI84jITQOxUA==",
|
|
3293
|
+
"dev": true,
|
|
3294
|
+
"license": "MIT",
|
|
3295
|
+
"dependencies": {
|
|
3296
|
+
"@eslint-community/eslint-utils": "^4.7.0",
|
|
3297
|
+
"@typescript-eslint/scope-manager": "8.51.0",
|
|
3298
|
+
"@typescript-eslint/types": "8.51.0",
|
|
3299
|
+
"@typescript-eslint/typescript-estree": "8.51.0"
|
|
3300
|
+
},
|
|
3301
|
+
"engines": {
|
|
3302
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3303
|
+
},
|
|
3304
|
+
"funding": {
|
|
3305
|
+
"type": "opencollective",
|
|
3306
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
3307
|
+
},
|
|
3308
|
+
"peerDependencies": {
|
|
3309
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
3310
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
3311
|
+
}
|
|
3312
|
+
},
|
|
3313
|
+
"node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": {
|
|
3314
|
+
"version": "8.51.0",
|
|
3315
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
|
|
3316
|
+
"integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
|
|
3317
|
+
"dev": true,
|
|
3318
|
+
"license": "MIT",
|
|
3319
|
+
"dependencies": {
|
|
3320
|
+
"@typescript-eslint/types": "8.51.0",
|
|
3321
|
+
"eslint-visitor-keys": "^4.2.1"
|
|
3322
|
+
},
|
|
3323
|
+
"engines": {
|
|
3324
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3325
|
+
},
|
|
3326
|
+
"funding": {
|
|
3327
|
+
"type": "opencollective",
|
|
3328
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
3329
|
+
}
|
|
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
|
+
},
|
|
3428
|
+
"node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
|
|
3429
|
+
"version": "4.2.1",
|
|
3430
|
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
|
|
3431
|
+
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
|
3432
|
+
"dev": true,
|
|
3433
|
+
"license": "Apache-2.0",
|
|
3434
|
+
"engines": {
|
|
3435
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
3436
|
+
},
|
|
3437
|
+
"funding": {
|
|
3438
|
+
"url": "https://opencollective.com/eslint"
|
|
3439
|
+
}
|
|
3440
|
+
},
|
|
3441
|
+
"node_modules/@ungap/structured-clone": {
|
|
3442
|
+
"version": "1.3.0",
|
|
3443
|
+
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
|
|
3444
|
+
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
|
|
3445
|
+
"dev": true,
|
|
3446
|
+
"license": "ISC"
|
|
3447
|
+
},
|
|
3448
|
+
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
|
|
3449
|
+
"version": "1.11.1",
|
|
3450
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz",
|
|
3451
|
+
"integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==",
|
|
3452
|
+
"cpu": [
|
|
3453
|
+
"arm"
|
|
3454
|
+
],
|
|
3455
|
+
"dev": true,
|
|
3456
|
+
"license": "MIT",
|
|
3457
|
+
"optional": true,
|
|
3458
|
+
"os": [
|
|
3459
|
+
"android"
|
|
3460
|
+
]
|
|
3461
|
+
},
|
|
3462
|
+
"node_modules/@unrs/resolver-binding-android-arm64": {
|
|
3463
|
+
"version": "1.11.1",
|
|
3464
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz",
|
|
3465
|
+
"integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==",
|
|
3466
|
+
"cpu": [
|
|
3467
|
+
"arm64"
|
|
3468
|
+
],
|
|
3469
|
+
"dev": true,
|
|
3470
|
+
"license": "MIT",
|
|
3471
|
+
"optional": true,
|
|
3472
|
+
"os": [
|
|
3473
|
+
"android"
|
|
3474
|
+
]
|
|
3475
|
+
},
|
|
3476
|
+
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
|
3477
|
+
"version": "1.11.1",
|
|
3478
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz",
|
|
3479
|
+
"integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==",
|
|
3480
|
+
"cpu": [
|
|
3481
|
+
"arm64"
|
|
3482
|
+
],
|
|
3483
|
+
"dev": true,
|
|
3484
|
+
"license": "MIT",
|
|
3485
|
+
"optional": true,
|
|
3486
|
+
"os": [
|
|
3487
|
+
"darwin"
|
|
3488
|
+
]
|
|
3489
|
+
},
|
|
3490
|
+
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
|
3491
|
+
"version": "1.11.1",
|
|
3492
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz",
|
|
3493
|
+
"integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==",
|
|
3494
|
+
"cpu": [
|
|
3495
|
+
"x64"
|
|
3496
|
+
],
|
|
3497
|
+
"dev": true,
|
|
3498
|
+
"license": "MIT",
|
|
3499
|
+
"optional": true,
|
|
3500
|
+
"os": [
|
|
3501
|
+
"darwin"
|
|
3502
|
+
]
|
|
3503
|
+
},
|
|
3504
|
+
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
|
3505
|
+
"version": "1.11.1",
|
|
3506
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz",
|
|
3507
|
+
"integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==",
|
|
3508
|
+
"cpu": [
|
|
3509
|
+
"x64"
|
|
3510
|
+
],
|
|
3511
|
+
"dev": true,
|
|
3512
|
+
"license": "MIT",
|
|
3513
|
+
"optional": true,
|
|
3514
|
+
"os": [
|
|
3515
|
+
"freebsd"
|
|
3516
|
+
]
|
|
3517
|
+
},
|
|
3518
|
+
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
|
3519
|
+
"version": "1.11.1",
|
|
3520
|
+
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz",
|
|
3521
|
+
"integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==",
|
|
3522
|
+
"cpu": [
|
|
3523
|
+
"arm"
|
|
3524
|
+
],
|
|
3022
3525
|
"dev": true,
|
|
3023
3526
|
"license": "MIT",
|
|
3024
3527
|
"optional": true,
|
|
@@ -3931,9 +4434,9 @@
|
|
|
3931
4434
|
"license": "MIT"
|
|
3932
4435
|
},
|
|
3933
4436
|
"node_modules/baseline-browser-mapping": {
|
|
3934
|
-
"version": "2.9.
|
|
3935
|
-
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.
|
|
3936
|
-
"integrity": "sha512-
|
|
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.
|
|
3945
|
-
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.
|
|
3946
|
-
"integrity": "sha512-
|
|
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.
|
|
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.
|
|
4175
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
4176
|
-
"integrity": "sha512-
|
|
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.
|
|
6347
|
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.
|
|
6348
|
-
"integrity": "sha512-
|
|
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.
|
|
9272
|
-
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.
|
|
9273
|
-
"integrity": "sha512-
|
|
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.
|
|
9288
|
-
"@rollup/rollup-android-arm64": "4.
|
|
9289
|
-
"@rollup/rollup-darwin-arm64": "4.
|
|
9290
|
-
"@rollup/rollup-darwin-x64": "4.
|
|
9291
|
-
"@rollup/rollup-freebsd-arm64": "4.
|
|
9292
|
-
"@rollup/rollup-freebsd-x64": "4.
|
|
9293
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.
|
|
9294
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.
|
|
9295
|
-
"@rollup/rollup-linux-arm64-gnu": "4.
|
|
9296
|
-
"@rollup/rollup-linux-arm64-musl": "4.
|
|
9297
|
-
"@rollup/rollup-linux-loong64-gnu": "4.
|
|
9298
|
-
"@rollup/rollup-linux-
|
|
9299
|
-
"@rollup/rollup-linux-
|
|
9300
|
-
"@rollup/rollup-linux-
|
|
9301
|
-
"@rollup/rollup-linux-
|
|
9302
|
-
"@rollup/rollup-linux-
|
|
9303
|
-
"@rollup/rollup-linux-
|
|
9304
|
-
"@rollup/rollup-
|
|
9305
|
-
"@rollup/rollup-
|
|
9306
|
-
"@rollup/rollup-
|
|
9307
|
-
"@rollup/rollup-
|
|
9308
|
-
"@rollup/rollup-win32-
|
|
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
|
},
|
|
@@ -10619,108 +11121,253 @@
|
|
|
10619
11121
|
"dev": true,
|
|
10620
11122
|
"license": "MIT",
|
|
10621
11123
|
"dependencies": {
|
|
10622
|
-
"call-bound": "^1.0.3",
|
|
10623
|
-
"es-errors": "^1.3.0",
|
|
10624
|
-
"is-typed-array": "^1.1.14"
|
|
11124
|
+
"call-bound": "^1.0.3",
|
|
11125
|
+
"es-errors": "^1.3.0",
|
|
11126
|
+
"is-typed-array": "^1.1.14"
|
|
11127
|
+
},
|
|
11128
|
+
"engines": {
|
|
11129
|
+
"node": ">= 0.4"
|
|
11130
|
+
}
|
|
11131
|
+
},
|
|
11132
|
+
"node_modules/typed-array-byte-length": {
|
|
11133
|
+
"version": "1.0.3",
|
|
11134
|
+
"resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
|
|
11135
|
+
"integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
|
|
11136
|
+
"dev": true,
|
|
11137
|
+
"license": "MIT",
|
|
11138
|
+
"dependencies": {
|
|
11139
|
+
"call-bind": "^1.0.8",
|
|
11140
|
+
"for-each": "^0.3.3",
|
|
11141
|
+
"gopd": "^1.2.0",
|
|
11142
|
+
"has-proto": "^1.2.0",
|
|
11143
|
+
"is-typed-array": "^1.1.14"
|
|
11144
|
+
},
|
|
11145
|
+
"engines": {
|
|
11146
|
+
"node": ">= 0.4"
|
|
11147
|
+
},
|
|
11148
|
+
"funding": {
|
|
11149
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
11150
|
+
}
|
|
11151
|
+
},
|
|
11152
|
+
"node_modules/typed-array-byte-offset": {
|
|
11153
|
+
"version": "1.0.4",
|
|
11154
|
+
"resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
|
|
11155
|
+
"integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
|
|
11156
|
+
"dev": true,
|
|
11157
|
+
"license": "MIT",
|
|
11158
|
+
"dependencies": {
|
|
11159
|
+
"available-typed-arrays": "^1.0.7",
|
|
11160
|
+
"call-bind": "^1.0.8",
|
|
11161
|
+
"for-each": "^0.3.3",
|
|
11162
|
+
"gopd": "^1.2.0",
|
|
11163
|
+
"has-proto": "^1.2.0",
|
|
11164
|
+
"is-typed-array": "^1.1.15",
|
|
11165
|
+
"reflect.getprototypeof": "^1.0.9"
|
|
11166
|
+
},
|
|
11167
|
+
"engines": {
|
|
11168
|
+
"node": ">= 0.4"
|
|
11169
|
+
},
|
|
11170
|
+
"funding": {
|
|
11171
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
11172
|
+
}
|
|
11173
|
+
},
|
|
11174
|
+
"node_modules/typed-array-length": {
|
|
11175
|
+
"version": "1.0.7",
|
|
11176
|
+
"resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
|
|
11177
|
+
"integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
|
|
11178
|
+
"dev": true,
|
|
11179
|
+
"license": "MIT",
|
|
11180
|
+
"dependencies": {
|
|
11181
|
+
"call-bind": "^1.0.7",
|
|
11182
|
+
"for-each": "^0.3.3",
|
|
11183
|
+
"gopd": "^1.0.1",
|
|
11184
|
+
"is-typed-array": "^1.1.13",
|
|
11185
|
+
"possible-typed-array-names": "^1.0.0",
|
|
11186
|
+
"reflect.getprototypeof": "^1.0.6"
|
|
11187
|
+
},
|
|
11188
|
+
"engines": {
|
|
11189
|
+
"node": ">= 0.4"
|
|
11190
|
+
},
|
|
11191
|
+
"funding": {
|
|
11192
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
11193
|
+
}
|
|
11194
|
+
},
|
|
11195
|
+
"node_modules/typedarray": {
|
|
11196
|
+
"version": "0.0.6",
|
|
11197
|
+
"resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
|
|
11198
|
+
"integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
|
|
11199
|
+
"license": "MIT"
|
|
11200
|
+
},
|
|
11201
|
+
"node_modules/typescript": {
|
|
11202
|
+
"version": "5.9.3",
|
|
11203
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
11204
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
11205
|
+
"dev": true,
|
|
11206
|
+
"license": "Apache-2.0",
|
|
11207
|
+
"bin": {
|
|
11208
|
+
"tsc": "bin/tsc",
|
|
11209
|
+
"tsserver": "bin/tsserver"
|
|
11210
|
+
},
|
|
11211
|
+
"engines": {
|
|
11212
|
+
"node": ">=14.17"
|
|
11213
|
+
}
|
|
11214
|
+
},
|
|
11215
|
+
"node_modules/typescript-eslint": {
|
|
11216
|
+
"version": "8.51.0",
|
|
11217
|
+
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.51.0.tgz",
|
|
11218
|
+
"integrity": "sha512-jh8ZuM5oEh2PSdyQG9YAEM1TCGuWenLSuSUhf/irbVUNW9O5FhbFVONviN2TgMTBnUmyHv7E56rYnfLZK6TkiA==",
|
|
11219
|
+
"dev": true,
|
|
11220
|
+
"license": "MIT",
|
|
11221
|
+
"dependencies": {
|
|
11222
|
+
"@typescript-eslint/eslint-plugin": "8.51.0",
|
|
11223
|
+
"@typescript-eslint/parser": "8.51.0",
|
|
11224
|
+
"@typescript-eslint/typescript-estree": "8.51.0",
|
|
11225
|
+
"@typescript-eslint/utils": "8.51.0"
|
|
11226
|
+
},
|
|
11227
|
+
"engines": {
|
|
11228
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
11229
|
+
},
|
|
11230
|
+
"funding": {
|
|
11231
|
+
"type": "opencollective",
|
|
11232
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
11233
|
+
},
|
|
11234
|
+
"peerDependencies": {
|
|
11235
|
+
"eslint": "^8.57.0 || ^9.0.0",
|
|
11236
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
11237
|
+
}
|
|
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"
|
|
10625
11270
|
},
|
|
10626
11271
|
"engines": {
|
|
10627
|
-
"node": "
|
|
11272
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
11273
|
+
},
|
|
11274
|
+
"funding": {
|
|
11275
|
+
"type": "opencollective",
|
|
11276
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
10628
11277
|
}
|
|
10629
11278
|
},
|
|
10630
|
-
"node_modules/
|
|
10631
|
-
"version": "
|
|
10632
|
-
"resolved": "https://registry.npmjs.org/
|
|
10633
|
-
"integrity": "sha512-
|
|
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==",
|
|
10634
11283
|
"dev": true,
|
|
10635
11284
|
"license": "MIT",
|
|
10636
|
-
"dependencies": {
|
|
10637
|
-
"call-bind": "^1.0.8",
|
|
10638
|
-
"for-each": "^0.3.3",
|
|
10639
|
-
"gopd": "^1.2.0",
|
|
10640
|
-
"has-proto": "^1.2.0",
|
|
10641
|
-
"is-typed-array": "^1.1.14"
|
|
10642
|
-
},
|
|
10643
11285
|
"engines": {
|
|
10644
|
-
"node": "
|
|
11286
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
10645
11287
|
},
|
|
10646
11288
|
"funding": {
|
|
10647
|
-
"
|
|
11289
|
+
"type": "opencollective",
|
|
11290
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
11291
|
+
},
|
|
11292
|
+
"peerDependencies": {
|
|
11293
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
10648
11294
|
}
|
|
10649
11295
|
},
|
|
10650
|
-
"node_modules/
|
|
10651
|
-
"version": "
|
|
10652
|
-
"resolved": "https://registry.npmjs.org/
|
|
10653
|
-
"integrity": "sha512-
|
|
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==",
|
|
10654
11300
|
"dev": true,
|
|
10655
11301
|
"license": "MIT",
|
|
10656
|
-
"dependencies": {
|
|
10657
|
-
"available-typed-arrays": "^1.0.7",
|
|
10658
|
-
"call-bind": "^1.0.8",
|
|
10659
|
-
"for-each": "^0.3.3",
|
|
10660
|
-
"gopd": "^1.2.0",
|
|
10661
|
-
"has-proto": "^1.2.0",
|
|
10662
|
-
"is-typed-array": "^1.1.15",
|
|
10663
|
-
"reflect.getprototypeof": "^1.0.9"
|
|
10664
|
-
},
|
|
10665
11302
|
"engines": {
|
|
10666
|
-
"node": "
|
|
11303
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
10667
11304
|
},
|
|
10668
11305
|
"funding": {
|
|
10669
|
-
"
|
|
11306
|
+
"type": "opencollective",
|
|
11307
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
10670
11308
|
}
|
|
10671
11309
|
},
|
|
10672
|
-
"node_modules/
|
|
10673
|
-
"version": "
|
|
10674
|
-
"resolved": "https://registry.npmjs.org/
|
|
10675
|
-
"integrity": "sha512-
|
|
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==",
|
|
10676
11314
|
"dev": true,
|
|
10677
11315
|
"license": "MIT",
|
|
10678
11316
|
"dependencies": {
|
|
10679
|
-
"
|
|
10680
|
-
"
|
|
10681
|
-
"
|
|
10682
|
-
"
|
|
10683
|
-
"
|
|
10684
|
-
"
|
|
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"
|
|
10685
11326
|
},
|
|
10686
11327
|
"engines": {
|
|
10687
|
-
"node": "
|
|
11328
|
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
10688
11329
|
},
|
|
10689
11330
|
"funding": {
|
|
10690
|
-
"
|
|
11331
|
+
"type": "opencollective",
|
|
11332
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
11333
|
+
},
|
|
11334
|
+
"peerDependencies": {
|
|
11335
|
+
"typescript": ">=4.8.4 <6.0.0"
|
|
10691
11336
|
}
|
|
10692
11337
|
},
|
|
10693
|
-
"node_modules/
|
|
10694
|
-
"version": "
|
|
10695
|
-
"resolved": "https://registry.npmjs.org/
|
|
10696
|
-
"integrity": "sha512
|
|
10697
|
-
"license": "MIT"
|
|
10698
|
-
},
|
|
10699
|
-
"node_modules/typescript": {
|
|
10700
|
-
"version": "5.9.3",
|
|
10701
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
10702
|
-
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
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==",
|
|
10703
11342
|
"dev": true,
|
|
10704
|
-
"license": "
|
|
10705
|
-
"
|
|
10706
|
-
"
|
|
10707
|
-
"
|
|
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"
|
|
10708
11349
|
},
|
|
10709
11350
|
"engines": {
|
|
10710
|
-
"node": ">=
|
|
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"
|
|
10711
11360
|
}
|
|
10712
11361
|
},
|
|
10713
|
-
"node_modules/typescript-eslint": {
|
|
11362
|
+
"node_modules/typescript-eslint/node_modules/@typescript-eslint/visitor-keys": {
|
|
10714
11363
|
"version": "8.51.0",
|
|
10715
|
-
"resolved": "https://registry.npmjs.org
|
|
10716
|
-
"integrity": "sha512-
|
|
11364
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.51.0.tgz",
|
|
11365
|
+
"integrity": "sha512-mM/JRQOzhVN1ykejrvwnBRV3+7yTKK8tVANVN3o1O0t0v7o+jqdVu9crPy5Y9dov15TJk/FTIgoUGHrTOVL3Zg==",
|
|
10717
11366
|
"dev": true,
|
|
10718
11367
|
"license": "MIT",
|
|
10719
11368
|
"dependencies": {
|
|
10720
|
-
"@typescript-eslint/
|
|
10721
|
-
"
|
|
10722
|
-
"@typescript-eslint/typescript-estree": "8.51.0",
|
|
10723
|
-
"@typescript-eslint/utils": "8.51.0"
|
|
11369
|
+
"@typescript-eslint/types": "8.51.0",
|
|
11370
|
+
"eslint-visitor-keys": "^4.2.1"
|
|
10724
11371
|
},
|
|
10725
11372
|
"engines": {
|
|
10726
11373
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -10728,10 +11375,19 @@
|
|
|
10728
11375
|
"funding": {
|
|
10729
11376
|
"type": "opencollective",
|
|
10730
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"
|
|
10731
11388
|
},
|
|
10732
|
-
"
|
|
10733
|
-
"
|
|
10734
|
-
"typescript": ">=4.8.4 <6.0.0"
|
|
11389
|
+
"funding": {
|
|
11390
|
+
"url": "https://opencollective.com/eslint"
|
|
10735
11391
|
}
|
|
10736
11392
|
},
|
|
10737
11393
|
"node_modules/uglify-js": {
|
|
@@ -10890,9 +11546,9 @@
|
|
|
10890
11546
|
}
|
|
10891
11547
|
},
|
|
10892
11548
|
"node_modules/vite": {
|
|
10893
|
-
"version": "7.3.
|
|
10894
|
-
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.
|
|
10895
|
-
"integrity": "sha512-
|
|
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,130 @@
|
|
|
11405
12061
|
"node": ">= 14"
|
|
11406
12062
|
}
|
|
11407
12063
|
},
|
|
11408
|
-
"packages/
|
|
12064
|
+
"packages/dgram": {
|
|
12065
|
+
"name": "@matterbridge/dgram",
|
|
12066
|
+
"version": "0.0.2",
|
|
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
|
+
"engines": {
|
|
12098
|
+
"node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
12099
|
+
},
|
|
12100
|
+
"funding": {
|
|
12101
|
+
"type": "buymeacoffee",
|
|
12102
|
+
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
12103
|
+
}
|
|
12104
|
+
},
|
|
12105
|
+
"packages/jest-utils": {
|
|
12106
|
+
"name": "@matterbridge/jest-utils",
|
|
12107
|
+
"version": "0.0.1",
|
|
12108
|
+
"license": "Apache-2.0",
|
|
12109
|
+
"dependencies": {
|
|
12110
|
+
"node-ansi-logger": "3.1.1"
|
|
12111
|
+
},
|
|
12112
|
+
"devDependencies": {
|
|
12113
|
+
"@eslint/js": "9.39.2",
|
|
12114
|
+
"@jest/globals": "30.2.0",
|
|
12115
|
+
"@types/jest": "30.0.0",
|
|
12116
|
+
"@types/node": "25.0.3",
|
|
12117
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
12118
|
+
"@vitest/eslint-plugin": "1.6.5",
|
|
12119
|
+
"cross-env": "10.1.0",
|
|
12120
|
+
"eslint": "9.39.2",
|
|
12121
|
+
"eslint-config-prettier": "10.1.8",
|
|
12122
|
+
"eslint-plugin-import": "2.32.0",
|
|
12123
|
+
"eslint-plugin-jest": "29.12.1",
|
|
12124
|
+
"eslint-plugin-jsdoc": "61.5.0",
|
|
12125
|
+
"eslint-plugin-n": "17.23.1",
|
|
12126
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
12127
|
+
"eslint-plugin-promise": "7.2.1",
|
|
12128
|
+
"jest": "30.2.0",
|
|
12129
|
+
"npm-check-updates": "19.2.1",
|
|
12130
|
+
"prettier": "3.7.4",
|
|
12131
|
+
"shx": "0.4.0",
|
|
12132
|
+
"ts-jest": "29.4.6",
|
|
12133
|
+
"typescript": "5.9.3",
|
|
12134
|
+
"typescript-eslint": "8.51.0",
|
|
12135
|
+
"vitest": "4.0.16"
|
|
12136
|
+
},
|
|
12137
|
+
"engines": {
|
|
12138
|
+
"node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
12139
|
+
},
|
|
12140
|
+
"funding": {
|
|
12141
|
+
"type": "buymeacoffee",
|
|
12142
|
+
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
12143
|
+
}
|
|
12144
|
+
},
|
|
12145
|
+
"packages/utils": {
|
|
12146
|
+
"name": "@matterbridge/utils",
|
|
12147
|
+
"version": "0.0.1",
|
|
12148
|
+
"license": "Apache-2.0",
|
|
12149
|
+
"dependencies": {
|
|
12150
|
+
"@matterbridge/jest-utils": "0.0.1",
|
|
12151
|
+
"node-ansi-logger": "3.1.1"
|
|
12152
|
+
},
|
|
12153
|
+
"devDependencies": {
|
|
12154
|
+
"@eslint/js": "9.39.2",
|
|
12155
|
+
"@jest/globals": "30.2.0",
|
|
12156
|
+
"@types/jest": "30.0.0",
|
|
12157
|
+
"@types/node": "25.0.3",
|
|
12158
|
+
"@vitest/coverage-v8": "4.0.16",
|
|
12159
|
+
"@vitest/eslint-plugin": "1.6.5",
|
|
12160
|
+
"cross-env": "10.1.0",
|
|
12161
|
+
"eslint": "9.39.2",
|
|
12162
|
+
"eslint-config-prettier": "10.1.8",
|
|
12163
|
+
"eslint-plugin-import": "2.32.0",
|
|
12164
|
+
"eslint-plugin-jest": "29.12.1",
|
|
12165
|
+
"eslint-plugin-jsdoc": "61.5.0",
|
|
12166
|
+
"eslint-plugin-n": "17.23.1",
|
|
12167
|
+
"eslint-plugin-prettier": "5.5.4",
|
|
12168
|
+
"eslint-plugin-promise": "7.2.1",
|
|
12169
|
+
"jest": "30.2.0",
|
|
12170
|
+
"npm-check-updates": "19.2.1",
|
|
12171
|
+
"prettier": "3.7.4",
|
|
12172
|
+
"shx": "0.4.0",
|
|
12173
|
+
"ts-jest": "29.4.6",
|
|
12174
|
+
"typescript": "5.9.3",
|
|
12175
|
+
"typescript-eslint": "8.51.0",
|
|
12176
|
+
"vitest": "4.0.16"
|
|
12177
|
+
},
|
|
12178
|
+
"engines": {
|
|
12179
|
+
"node": ">=20.0.0 <21.0.0 || >=22.0.0 <23.0.0 || >=24.0.0 <25.0.0"
|
|
12180
|
+
},
|
|
12181
|
+
"funding": {
|
|
12182
|
+
"type": "buymeacoffee",
|
|
12183
|
+
"url": "https://www.buymeacoffee.com/luligugithub"
|
|
12184
|
+
}
|
|
12185
|
+
},
|
|
12186
|
+
"packages/vitest-utils": {
|
|
12187
|
+
"name": "@matterbridge/vitest-utils",
|
|
11409
12188
|
"version": "0.0.1",
|
|
11410
12189
|
"license": "Apache-2.0",
|
|
11411
12190
|
"dependencies": {
|