@wavemaker/app-rn-runtime 11.14.2-rc.6311 → 11.15.0-1.246
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/actions/notification-action.js +1 -0
- package/actions/notification-action.js.map +1 -1
- package/components/basic/bottomsheet/bottomsheet.component.js +58 -23
- package/components/basic/bottomsheet/bottomsheet.component.js.map +1 -1
- package/components/basic/button/button.component.js +56 -7
- package/components/basic/button/button.component.js.map +1 -1
- package/components/basic/button/button.styles.js +0 -1
- package/components/basic/button/button.styles.js.map +1 -1
- package/components/basic/message/message.component.js +1 -1
- package/components/basic/message/message.component.js.map +1 -1
- package/components/basic/message/message.props.js +1 -0
- package/components/basic/message/message.props.js.map +1 -1
- package/components/basic/picture/picture.component.js +2 -2
- package/components/basic/picture/picture.component.js.map +1 -1
- package/components/chart/bar-chart/bar-chart.component.js +13 -2
- package/components/chart/bar-chart/bar-chart.component.js.map +1 -1
- package/components/chart/bar-chart/bar-chart.props.js +1 -0
- package/components/chart/bar-chart/bar-chart.props.js.map +1 -1
- package/components/container/accordion/accordion.component.js +10 -3
- package/components/container/accordion/accordion.component.js.map +1 -1
- package/components/container/accordion/accordion.styles.js +6 -2
- package/components/container/accordion/accordion.styles.js.map +1 -1
- package/components/container/container.component.js +132 -50
- package/components/container/container.component.js.map +1 -1
- package/components/container/container.props.js +1 -0
- package/components/container/container.props.js.map +1 -1
- package/components/container/panel/panel.component.js +8 -1
- package/components/container/panel/panel.component.js.map +1 -1
- package/components/container/panel/panel.props.js +2 -0
- package/components/container/panel/panel.props.js.map +1 -1
- package/components/container/tile/tile.component.js +3 -0
- package/components/container/tile/tile.component.js.map +1 -1
- package/components/container/wizard/wizard.component.js +1 -1
- package/components/container/wizard/wizard.component.js.map +1 -1
- package/components/container/wizard/wizard.props.js +1 -0
- package/components/container/wizard/wizard.props.js.map +1 -1
- package/components/container/wizard/wizard.styles.js +0 -13
- package/components/container/wizard/wizard.styles.js.map +1 -1
- package/components/data/form/form-body/form-body.component.js +2 -1
- package/components/data/form/form-body/form-body.component.js.map +1 -1
- package/components/data/form/form-footer/form-footer.component.js +2 -1
- package/components/data/form/form-footer/form-footer.component.js.map +1 -1
- package/components/input/chips/chips.component.js +2 -2
- package/components/input/chips/chips.component.js.map +1 -1
- package/components/input/chips/chips.styles.js +1 -0
- package/components/input/chips/chips.styles.js.map +1 -1
- package/components/input/currency/currency.component.js +3 -1
- package/components/input/currency/currency.component.js.map +1 -1
- package/components/input/epoch/base-datetime.component.js +3 -1
- package/components/input/epoch/base-datetime.component.js.map +1 -1
- package/components/input/number/number.component.js +2 -1
- package/components/input/number/number.component.js.map +1 -1
- package/components/input/select/select.component.js +76 -35
- package/components/input/select/select.component.js.map +1 -1
- package/components/input/text/text.component.js +2 -1
- package/components/input/text/text.component.js.map +1 -1
- package/components/input/textarea/textarea.component.js +2 -1
- package/components/input/textarea/textarea.component.js.map +1 -1
- package/components/input/toggle/toggle.component.js +12 -4
- package/components/input/toggle/toggle.component.js.map +1 -1
- package/components/input/toggle/toggle.props.js +5 -0
- package/components/input/toggle/toggle.props.js.map +1 -1
- package/components/navigation/popover/popover.component.js +5 -1
- package/components/navigation/popover/popover.component.js.map +1 -1
- package/core/advanced-promise-rejection-tracker.js +208 -0
- package/core/advanced-promise-rejection-tracker.js.map +1 -0
- package/core/base.component.js +8 -3
- package/core/base.component.js.map +1 -1
- package/core/components/error-fallback/error-fallback.component.js +50 -18
- package/core/components/error-fallback/error-fallback.component.js.map +1 -1
- package/core/components/error-fallback/error-fallback.styles.js +4 -1
- package/core/components/error-fallback/error-fallback.styles.js.map +1 -1
- package/core/error-boundary.component.js +17 -1
- package/core/error-boundary.component.js.map +1 -1
- package/core/fixed-view.component.js +19 -2
- package/core/fixed-view.component.js.map +1 -1
- package/core/global-error-handler.service.js +103 -0
- package/core/global-error-handler.service.js.map +1 -0
- package/core/tappable.component.js +7 -4
- package/core/tappable.component.js.map +1 -1
- package/core/toast.service.js.map +1 -1
- package/npm-shrinkwrap.json +1126 -1347
- package/package-lock.json +1126 -1347
- package/package.json +2 -2
- package/runtime/App.js +124 -13
- package/runtime/App.js.map +1 -1
- package/runtime/base-page.component.js +11 -2
- package/runtime/base-page.component.js.map +1 -1
- package/runtime/navigator/drawer.navigator.js +1 -0
- package/runtime/navigator/drawer.navigator.js.map +1 -1
- package/runtime/services/device/camera-service.js +31 -20
- package/runtime/services/device/camera-service.js.map +1 -1
- package/styles/theme.js +17 -3
- package/styles/theme.js.map +1 -1
- package/styles/theme.variables.js +2 -0
- package/styles/theme.variables.js.map +1 -1
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker/app-rn-runtime",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.15.0-1.246",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker/app-rn-runtime",
|
|
9
|
-
"version": "11.
|
|
9
|
+
"version": "11.15.0-1.246",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@expo/vector-icons": "15.0.2",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@react-navigation/drawer": "7.5.8",
|
|
21
21
|
"@react-navigation/native": "7.1.18",
|
|
22
22
|
"@react-navigation/stack": "7.4.8",
|
|
23
|
-
"@wavemaker/variables": "11.
|
|
23
|
+
"@wavemaker/variables": "11.15.0-1.246",
|
|
24
24
|
"axios": "1.8.3",
|
|
25
25
|
"color": "4.2.3",
|
|
26
26
|
"colorjs.io": "^0.5.2",
|
|
@@ -147,11 +147,11 @@
|
|
|
147
147
|
}
|
|
148
148
|
},
|
|
149
149
|
"node_modules/@babel/code-frame": {
|
|
150
|
-
"version": "7.
|
|
151
|
-
"integrity": "sha512-
|
|
150
|
+
"version": "7.29.0",
|
|
151
|
+
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
|
|
152
152
|
"license": "MIT",
|
|
153
153
|
"dependencies": {
|
|
154
|
-
"@babel/helper-validator-identifier": "^7.
|
|
154
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
155
155
|
"js-tokens": "^4.0.0",
|
|
156
156
|
"picocolors": "^1.1.1"
|
|
157
157
|
},
|
|
@@ -160,8 +160,8 @@
|
|
|
160
160
|
}
|
|
161
161
|
},
|
|
162
162
|
"node_modules/@babel/compat-data": {
|
|
163
|
-
"version": "7.
|
|
164
|
-
"integrity": "sha512-
|
|
163
|
+
"version": "7.29.0",
|
|
164
|
+
"integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
|
|
165
165
|
"license": "MIT",
|
|
166
166
|
"engines": {
|
|
167
167
|
"node": ">=6.9.0"
|
|
@@ -197,8 +197,8 @@
|
|
|
197
197
|
}
|
|
198
198
|
},
|
|
199
199
|
"node_modules/@babel/eslint-parser": {
|
|
200
|
-
"version": "7.28.
|
|
201
|
-
"integrity": "sha512-
|
|
200
|
+
"version": "7.28.6",
|
|
201
|
+
"integrity": "sha512-QGmsKi2PBO/MHSQk+AAgA9R6OHQr+VqnniFE0eMWZcVcfBZoA2dKn2hUsl3Csg/Plt9opRUWdY7//VXsrIlEiA==",
|
|
202
202
|
"dev": true,
|
|
203
203
|
"license": "MIT",
|
|
204
204
|
"dependencies": {
|
|
@@ -215,12 +215,12 @@
|
|
|
215
215
|
}
|
|
216
216
|
},
|
|
217
217
|
"node_modules/@babel/generator": {
|
|
218
|
-
"version": "7.
|
|
219
|
-
"integrity": "sha512-
|
|
218
|
+
"version": "7.29.1",
|
|
219
|
+
"integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
|
|
220
220
|
"license": "MIT",
|
|
221
221
|
"dependencies": {
|
|
222
|
-
"@babel/parser": "^7.
|
|
223
|
-
"@babel/types": "^7.
|
|
222
|
+
"@babel/parser": "^7.29.0",
|
|
223
|
+
"@babel/types": "^7.29.0",
|
|
224
224
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
225
225
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
226
226
|
"jsesc": "^3.0.2"
|
|
@@ -241,11 +241,11 @@
|
|
|
241
241
|
}
|
|
242
242
|
},
|
|
243
243
|
"node_modules/@babel/helper-compilation-targets": {
|
|
244
|
-
"version": "7.
|
|
245
|
-
"integrity": "sha512-
|
|
244
|
+
"version": "7.28.6",
|
|
245
|
+
"integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
|
|
246
246
|
"license": "MIT",
|
|
247
247
|
"dependencies": {
|
|
248
|
-
"@babel/compat-data": "^7.
|
|
248
|
+
"@babel/compat-data": "^7.28.6",
|
|
249
249
|
"@babel/helper-validator-option": "^7.27.1",
|
|
250
250
|
"browserslist": "^4.24.0",
|
|
251
251
|
"lru-cache": "^5.1.1",
|
|
@@ -256,16 +256,16 @@
|
|
|
256
256
|
}
|
|
257
257
|
},
|
|
258
258
|
"node_modules/@babel/helper-create-class-features-plugin": {
|
|
259
|
-
"version": "7.28.
|
|
260
|
-
"integrity": "sha512-
|
|
259
|
+
"version": "7.28.6",
|
|
260
|
+
"integrity": "sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==",
|
|
261
261
|
"license": "MIT",
|
|
262
262
|
"dependencies": {
|
|
263
263
|
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
264
264
|
"@babel/helper-member-expression-to-functions": "^7.28.5",
|
|
265
265
|
"@babel/helper-optimise-call-expression": "^7.27.1",
|
|
266
|
-
"@babel/helper-replace-supers": "^7.
|
|
266
|
+
"@babel/helper-replace-supers": "^7.28.6",
|
|
267
267
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
|
|
268
|
-
"@babel/traverse": "^7.28.
|
|
268
|
+
"@babel/traverse": "^7.28.6",
|
|
269
269
|
"semver": "^6.3.1"
|
|
270
270
|
},
|
|
271
271
|
"engines": {
|
|
@@ -292,15 +292,15 @@
|
|
|
292
292
|
}
|
|
293
293
|
},
|
|
294
294
|
"node_modules/@babel/helper-define-polyfill-provider": {
|
|
295
|
-
"version": "0.6.
|
|
296
|
-
"integrity": "sha512-
|
|
295
|
+
"version": "0.6.6",
|
|
296
|
+
"integrity": "sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==",
|
|
297
297
|
"license": "MIT",
|
|
298
298
|
"dependencies": {
|
|
299
|
-
"@babel/helper-compilation-targets": "^7.
|
|
300
|
-
"@babel/helper-plugin-utils": "^7.
|
|
301
|
-
"debug": "^4.4.
|
|
299
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
300
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
301
|
+
"debug": "^4.4.3",
|
|
302
302
|
"lodash.debounce": "^4.0.8",
|
|
303
|
-
"resolve": "^1.22.
|
|
303
|
+
"resolve": "^1.22.11"
|
|
304
304
|
},
|
|
305
305
|
"peerDependencies": {
|
|
306
306
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
@@ -339,25 +339,25 @@
|
|
|
339
339
|
}
|
|
340
340
|
},
|
|
341
341
|
"node_modules/@babel/helper-module-imports": {
|
|
342
|
-
"version": "7.
|
|
343
|
-
"integrity": "sha512-
|
|
342
|
+
"version": "7.28.6",
|
|
343
|
+
"integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
|
|
344
344
|
"license": "MIT",
|
|
345
345
|
"dependencies": {
|
|
346
|
-
"@babel/traverse": "^7.
|
|
347
|
-
"@babel/types": "^7.
|
|
346
|
+
"@babel/traverse": "^7.28.6",
|
|
347
|
+
"@babel/types": "^7.28.6"
|
|
348
348
|
},
|
|
349
349
|
"engines": {
|
|
350
350
|
"node": ">=6.9.0"
|
|
351
351
|
}
|
|
352
352
|
},
|
|
353
353
|
"node_modules/@babel/helper-module-transforms": {
|
|
354
|
-
"version": "7.28.
|
|
355
|
-
"integrity": "sha512-
|
|
354
|
+
"version": "7.28.6",
|
|
355
|
+
"integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
|
|
356
356
|
"license": "MIT",
|
|
357
357
|
"dependencies": {
|
|
358
|
-
"@babel/helper-module-imports": "^7.
|
|
359
|
-
"@babel/helper-validator-identifier": "^7.
|
|
360
|
-
"@babel/traverse": "^7.28.
|
|
358
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
359
|
+
"@babel/helper-validator-identifier": "^7.28.5",
|
|
360
|
+
"@babel/traverse": "^7.28.6"
|
|
361
361
|
},
|
|
362
362
|
"engines": {
|
|
363
363
|
"node": ">=6.9.0"
|
|
@@ -378,8 +378,8 @@
|
|
|
378
378
|
}
|
|
379
379
|
},
|
|
380
380
|
"node_modules/@babel/helper-plugin-utils": {
|
|
381
|
-
"version": "7.
|
|
382
|
-
"integrity": "sha512-
|
|
381
|
+
"version": "7.28.6",
|
|
382
|
+
"integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==",
|
|
383
383
|
"license": "MIT",
|
|
384
384
|
"engines": {
|
|
385
385
|
"node": ">=6.9.0"
|
|
@@ -402,13 +402,13 @@
|
|
|
402
402
|
}
|
|
403
403
|
},
|
|
404
404
|
"node_modules/@babel/helper-replace-supers": {
|
|
405
|
-
"version": "7.
|
|
406
|
-
"integrity": "sha512-
|
|
405
|
+
"version": "7.28.6",
|
|
406
|
+
"integrity": "sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==",
|
|
407
407
|
"license": "MIT",
|
|
408
408
|
"dependencies": {
|
|
409
|
-
"@babel/helper-member-expression-to-functions": "^7.
|
|
409
|
+
"@babel/helper-member-expression-to-functions": "^7.28.5",
|
|
410
410
|
"@babel/helper-optimise-call-expression": "^7.27.1",
|
|
411
|
-
"@babel/traverse": "^7.
|
|
411
|
+
"@babel/traverse": "^7.28.6"
|
|
412
412
|
},
|
|
413
413
|
"engines": {
|
|
414
414
|
"node": ">=6.9.0"
|
|
@@ -454,25 +454,25 @@
|
|
|
454
454
|
}
|
|
455
455
|
},
|
|
456
456
|
"node_modules/@babel/helper-wrap-function": {
|
|
457
|
-
"version": "7.28.
|
|
458
|
-
"integrity": "sha512-
|
|
457
|
+
"version": "7.28.6",
|
|
458
|
+
"integrity": "sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==",
|
|
459
459
|
"license": "MIT",
|
|
460
460
|
"dependencies": {
|
|
461
|
-
"@babel/template": "^7.
|
|
462
|
-
"@babel/traverse": "^7.28.
|
|
463
|
-
"@babel/types": "^7.28.
|
|
461
|
+
"@babel/template": "^7.28.6",
|
|
462
|
+
"@babel/traverse": "^7.28.6",
|
|
463
|
+
"@babel/types": "^7.28.6"
|
|
464
464
|
},
|
|
465
465
|
"engines": {
|
|
466
466
|
"node": ">=6.9.0"
|
|
467
467
|
}
|
|
468
468
|
},
|
|
469
469
|
"node_modules/@babel/helpers": {
|
|
470
|
-
"version": "7.28.
|
|
471
|
-
"integrity": "sha512-
|
|
470
|
+
"version": "7.28.6",
|
|
471
|
+
"integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
|
|
472
472
|
"license": "MIT",
|
|
473
473
|
"dependencies": {
|
|
474
|
-
"@babel/template": "^7.
|
|
475
|
-
"@babel/types": "^7.28.
|
|
474
|
+
"@babel/template": "^7.28.6",
|
|
475
|
+
"@babel/types": "^7.28.6"
|
|
476
476
|
},
|
|
477
477
|
"engines": {
|
|
478
478
|
"node": ">=6.9.0"
|
|
@@ -557,11 +557,11 @@
|
|
|
557
557
|
}
|
|
558
558
|
},
|
|
559
559
|
"node_modules/@babel/parser": {
|
|
560
|
-
"version": "7.
|
|
561
|
-
"integrity": "sha512-
|
|
560
|
+
"version": "7.29.0",
|
|
561
|
+
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
|
|
562
562
|
"license": "MIT",
|
|
563
563
|
"dependencies": {
|
|
564
|
-
"@babel/types": "^7.
|
|
564
|
+
"@babel/types": "^7.29.0"
|
|
565
565
|
},
|
|
566
566
|
"bin": {
|
|
567
567
|
"parser": "bin/babel-parser.js"
|
|
@@ -619,13 +619,13 @@
|
|
|
619
619
|
}
|
|
620
620
|
},
|
|
621
621
|
"node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
|
|
622
|
-
"version": "7.28.
|
|
623
|
-
"integrity": "sha512-
|
|
622
|
+
"version": "7.28.6",
|
|
623
|
+
"integrity": "sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==",
|
|
624
624
|
"dev": true,
|
|
625
625
|
"license": "MIT",
|
|
626
626
|
"dependencies": {
|
|
627
|
-
"@babel/helper-plugin-utils": "^7.
|
|
628
|
-
"@babel/traverse": "^7.28.
|
|
627
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
628
|
+
"@babel/traverse": "^7.28.6"
|
|
629
629
|
},
|
|
630
630
|
"engines": {
|
|
631
631
|
"node": ">=6.9.0"
|
|
@@ -671,14 +671,14 @@
|
|
|
671
671
|
}
|
|
672
672
|
},
|
|
673
673
|
"node_modules/@babel/plugin-proposal-decorators": {
|
|
674
|
-
"version": "7.
|
|
675
|
-
"integrity": "sha512-
|
|
674
|
+
"version": "7.29.0",
|
|
675
|
+
"integrity": "sha512-CVBVv3VY/XRMxRYq5dwr2DS7/MvqPm23cOCjbwNnVrfOqcWlnefua1uUs0sjdKOGjvPUG633o07uWzJq4oI6dA==",
|
|
676
676
|
"license": "MIT",
|
|
677
677
|
"peer": true,
|
|
678
678
|
"dependencies": {
|
|
679
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
680
|
-
"@babel/helper-plugin-utils": "^7.
|
|
681
|
-
"@babel/plugin-syntax-decorators": "^7.
|
|
679
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
680
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
681
|
+
"@babel/plugin-syntax-decorators": "^7.28.6"
|
|
682
682
|
},
|
|
683
683
|
"engines": {
|
|
684
684
|
"node": ">=6.9.0"
|
|
@@ -850,12 +850,12 @@
|
|
|
850
850
|
}
|
|
851
851
|
},
|
|
852
852
|
"node_modules/@babel/plugin-syntax-decorators": {
|
|
853
|
-
"version": "7.
|
|
854
|
-
"integrity": "sha512-
|
|
853
|
+
"version": "7.28.6",
|
|
854
|
+
"integrity": "sha512-71EYI0ONURHJBL4rSFXnITXqXrrY8q4P0q006DPfN+Rk+ASM+++IBXem/ruokgBZR8YNEWZ8R6B+rCb8VcUTqA==",
|
|
855
855
|
"license": "MIT",
|
|
856
856
|
"peer": true,
|
|
857
857
|
"dependencies": {
|
|
858
|
-
"@babel/helper-plugin-utils": "^7.
|
|
858
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
859
859
|
},
|
|
860
860
|
"engines": {
|
|
861
861
|
"node": ">=6.9.0"
|
|
@@ -876,11 +876,11 @@
|
|
|
876
876
|
}
|
|
877
877
|
},
|
|
878
878
|
"node_modules/@babel/plugin-syntax-export-default-from": {
|
|
879
|
-
"version": "7.
|
|
880
|
-
"integrity": "sha512-
|
|
879
|
+
"version": "7.28.6",
|
|
880
|
+
"integrity": "sha512-Svlx1fjJFnNz0LZeUaybRukSxZI3KkpApUmIRzEdXC5k8ErTOz0OD0kNrICi5Vc3GlpP5ZCeRyRO+mfWTSz+iQ==",
|
|
881
881
|
"license": "MIT",
|
|
882
882
|
"dependencies": {
|
|
883
|
-
"@babel/helper-plugin-utils": "^7.
|
|
883
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
884
884
|
},
|
|
885
885
|
"engines": {
|
|
886
886
|
"node": ">=6.9.0"
|
|
@@ -902,11 +902,11 @@
|
|
|
902
902
|
}
|
|
903
903
|
},
|
|
904
904
|
"node_modules/@babel/plugin-syntax-flow": {
|
|
905
|
-
"version": "7.
|
|
906
|
-
"integrity": "sha512-
|
|
905
|
+
"version": "7.28.6",
|
|
906
|
+
"integrity": "sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==",
|
|
907
907
|
"license": "MIT",
|
|
908
908
|
"dependencies": {
|
|
909
|
-
"@babel/helper-plugin-utils": "^7.
|
|
909
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
910
910
|
},
|
|
911
911
|
"engines": {
|
|
912
912
|
"node": ">=6.9.0"
|
|
@@ -916,12 +916,12 @@
|
|
|
916
916
|
}
|
|
917
917
|
},
|
|
918
918
|
"node_modules/@babel/plugin-syntax-import-assertions": {
|
|
919
|
-
"version": "7.
|
|
920
|
-
"integrity": "sha512-
|
|
919
|
+
"version": "7.28.6",
|
|
920
|
+
"integrity": "sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==",
|
|
921
921
|
"dev": true,
|
|
922
922
|
"license": "MIT",
|
|
923
923
|
"dependencies": {
|
|
924
|
-
"@babel/helper-plugin-utils": "^7.
|
|
924
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
925
925
|
},
|
|
926
926
|
"engines": {
|
|
927
927
|
"node": ">=6.9.0"
|
|
@@ -931,11 +931,11 @@
|
|
|
931
931
|
}
|
|
932
932
|
},
|
|
933
933
|
"node_modules/@babel/plugin-syntax-import-attributes": {
|
|
934
|
-
"version": "7.
|
|
935
|
-
"integrity": "sha512-
|
|
934
|
+
"version": "7.28.6",
|
|
935
|
+
"integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==",
|
|
936
936
|
"license": "MIT",
|
|
937
937
|
"dependencies": {
|
|
938
|
-
"@babel/helper-plugin-utils": "^7.
|
|
938
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
939
939
|
},
|
|
940
940
|
"engines": {
|
|
941
941
|
"node": ">=6.9.0"
|
|
@@ -967,11 +967,11 @@
|
|
|
967
967
|
}
|
|
968
968
|
},
|
|
969
969
|
"node_modules/@babel/plugin-syntax-jsx": {
|
|
970
|
-
"version": "7.
|
|
971
|
-
"integrity": "sha512-
|
|
970
|
+
"version": "7.28.6",
|
|
971
|
+
"integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==",
|
|
972
972
|
"license": "MIT",
|
|
973
973
|
"dependencies": {
|
|
974
|
-
"@babel/helper-plugin-utils": "^7.
|
|
974
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
975
975
|
},
|
|
976
976
|
"engines": {
|
|
977
977
|
"node": ">=6.9.0"
|
|
@@ -1075,11 +1075,11 @@
|
|
|
1075
1075
|
}
|
|
1076
1076
|
},
|
|
1077
1077
|
"node_modules/@babel/plugin-syntax-typescript": {
|
|
1078
|
-
"version": "7.
|
|
1079
|
-
"integrity": "sha512
|
|
1078
|
+
"version": "7.28.6",
|
|
1079
|
+
"integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==",
|
|
1080
1080
|
"license": "MIT",
|
|
1081
1081
|
"dependencies": {
|
|
1082
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1082
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1083
1083
|
},
|
|
1084
1084
|
"engines": {
|
|
1085
1085
|
"node": ">=6.9.0"
|
|
@@ -1119,13 +1119,13 @@
|
|
|
1119
1119
|
}
|
|
1120
1120
|
},
|
|
1121
1121
|
"node_modules/@babel/plugin-transform-async-generator-functions": {
|
|
1122
|
-
"version": "7.
|
|
1123
|
-
"integrity": "sha512-
|
|
1122
|
+
"version": "7.29.0",
|
|
1123
|
+
"integrity": "sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==",
|
|
1124
1124
|
"license": "MIT",
|
|
1125
1125
|
"dependencies": {
|
|
1126
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1126
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1127
1127
|
"@babel/helper-remap-async-to-generator": "^7.27.1",
|
|
1128
|
-
"@babel/traverse": "^7.
|
|
1128
|
+
"@babel/traverse": "^7.29.0"
|
|
1129
1129
|
},
|
|
1130
1130
|
"engines": {
|
|
1131
1131
|
"node": ">=6.9.0"
|
|
@@ -1135,12 +1135,12 @@
|
|
|
1135
1135
|
}
|
|
1136
1136
|
},
|
|
1137
1137
|
"node_modules/@babel/plugin-transform-async-to-generator": {
|
|
1138
|
-
"version": "7.
|
|
1139
|
-
"integrity": "sha512-
|
|
1138
|
+
"version": "7.28.6",
|
|
1139
|
+
"integrity": "sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==",
|
|
1140
1140
|
"license": "MIT",
|
|
1141
1141
|
"dependencies": {
|
|
1142
|
-
"@babel/helper-module-imports": "^7.
|
|
1143
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1142
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
1143
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1144
1144
|
"@babel/helper-remap-async-to-generator": "^7.27.1"
|
|
1145
1145
|
},
|
|
1146
1146
|
"engines": {
|
|
@@ -1166,11 +1166,11 @@
|
|
|
1166
1166
|
}
|
|
1167
1167
|
},
|
|
1168
1168
|
"node_modules/@babel/plugin-transform-block-scoping": {
|
|
1169
|
-
"version": "7.28.
|
|
1170
|
-
"integrity": "sha512-
|
|
1169
|
+
"version": "7.28.6",
|
|
1170
|
+
"integrity": "sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==",
|
|
1171
1171
|
"license": "MIT",
|
|
1172
1172
|
"dependencies": {
|
|
1173
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1173
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1174
1174
|
},
|
|
1175
1175
|
"engines": {
|
|
1176
1176
|
"node": ">=6.9.0"
|
|
@@ -1180,12 +1180,12 @@
|
|
|
1180
1180
|
}
|
|
1181
1181
|
},
|
|
1182
1182
|
"node_modules/@babel/plugin-transform-class-properties": {
|
|
1183
|
-
"version": "7.
|
|
1184
|
-
"integrity": "sha512-
|
|
1183
|
+
"version": "7.28.6",
|
|
1184
|
+
"integrity": "sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==",
|
|
1185
1185
|
"license": "MIT",
|
|
1186
1186
|
"dependencies": {
|
|
1187
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
1188
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1187
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
1188
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1189
1189
|
},
|
|
1190
1190
|
"engines": {
|
|
1191
1191
|
"node": ">=6.9.0"
|
|
@@ -1211,16 +1211,16 @@
|
|
|
1211
1211
|
}
|
|
1212
1212
|
},
|
|
1213
1213
|
"node_modules/@babel/plugin-transform-classes": {
|
|
1214
|
-
"version": "7.28.
|
|
1215
|
-
"integrity": "sha512-
|
|
1214
|
+
"version": "7.28.6",
|
|
1215
|
+
"integrity": "sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==",
|
|
1216
1216
|
"license": "MIT",
|
|
1217
1217
|
"dependencies": {
|
|
1218
1218
|
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1219
|
-
"@babel/helper-compilation-targets": "^7.
|
|
1219
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
1220
1220
|
"@babel/helper-globals": "^7.28.0",
|
|
1221
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1222
|
-
"@babel/helper-replace-supers": "^7.
|
|
1223
|
-
"@babel/traverse": "^7.28.
|
|
1221
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1222
|
+
"@babel/helper-replace-supers": "^7.28.6",
|
|
1223
|
+
"@babel/traverse": "^7.28.6"
|
|
1224
1224
|
},
|
|
1225
1225
|
"engines": {
|
|
1226
1226
|
"node": ">=6.9.0"
|
|
@@ -1230,12 +1230,12 @@
|
|
|
1230
1230
|
}
|
|
1231
1231
|
},
|
|
1232
1232
|
"node_modules/@babel/plugin-transform-computed-properties": {
|
|
1233
|
-
"version": "7.
|
|
1234
|
-
"integrity": "sha512-
|
|
1233
|
+
"version": "7.28.6",
|
|
1234
|
+
"integrity": "sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==",
|
|
1235
1235
|
"license": "MIT",
|
|
1236
1236
|
"dependencies": {
|
|
1237
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1238
|
-
"@babel/template": "^7.
|
|
1237
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1238
|
+
"@babel/template": "^7.28.6"
|
|
1239
1239
|
},
|
|
1240
1240
|
"engines": {
|
|
1241
1241
|
"node": ">=6.9.0"
|
|
@@ -1260,13 +1260,13 @@
|
|
|
1260
1260
|
}
|
|
1261
1261
|
},
|
|
1262
1262
|
"node_modules/@babel/plugin-transform-dotall-regex": {
|
|
1263
|
-
"version": "7.
|
|
1264
|
-
"integrity": "sha512-
|
|
1263
|
+
"version": "7.28.6",
|
|
1264
|
+
"integrity": "sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==",
|
|
1265
1265
|
"dev": true,
|
|
1266
1266
|
"license": "MIT",
|
|
1267
1267
|
"dependencies": {
|
|
1268
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1269
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1268
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1269
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1270
1270
|
},
|
|
1271
1271
|
"engines": {
|
|
1272
1272
|
"node": ">=6.9.0"
|
|
@@ -1306,12 +1306,12 @@
|
|
|
1306
1306
|
}
|
|
1307
1307
|
},
|
|
1308
1308
|
"node_modules/@babel/plugin-transform-exponentiation-operator": {
|
|
1309
|
-
"version": "7.28.
|
|
1310
|
-
"integrity": "sha512-
|
|
1309
|
+
"version": "7.28.6",
|
|
1310
|
+
"integrity": "sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==",
|
|
1311
1311
|
"dev": true,
|
|
1312
1312
|
"license": "MIT",
|
|
1313
1313
|
"dependencies": {
|
|
1314
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1314
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1315
1315
|
},
|
|
1316
1316
|
"engines": {
|
|
1317
1317
|
"node": ">=6.9.0"
|
|
@@ -1381,12 +1381,12 @@
|
|
|
1381
1381
|
}
|
|
1382
1382
|
},
|
|
1383
1383
|
"node_modules/@babel/plugin-transform-json-strings": {
|
|
1384
|
-
"version": "7.
|
|
1385
|
-
"integrity": "sha512-
|
|
1384
|
+
"version": "7.28.6",
|
|
1385
|
+
"integrity": "sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==",
|
|
1386
1386
|
"dev": true,
|
|
1387
1387
|
"license": "MIT",
|
|
1388
1388
|
"dependencies": {
|
|
1389
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1389
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1390
1390
|
},
|
|
1391
1391
|
"engines": {
|
|
1392
1392
|
"node": ">=6.9.0"
|
|
@@ -1410,11 +1410,11 @@
|
|
|
1410
1410
|
}
|
|
1411
1411
|
},
|
|
1412
1412
|
"node_modules/@babel/plugin-transform-logical-assignment-operators": {
|
|
1413
|
-
"version": "7.28.
|
|
1414
|
-
"integrity": "sha512
|
|
1413
|
+
"version": "7.28.6",
|
|
1414
|
+
"integrity": "sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==",
|
|
1415
1415
|
"license": "MIT",
|
|
1416
1416
|
"dependencies": {
|
|
1417
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1417
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1418
1418
|
},
|
|
1419
1419
|
"engines": {
|
|
1420
1420
|
"node": ">=6.9.0"
|
|
@@ -1455,12 +1455,12 @@
|
|
|
1455
1455
|
}
|
|
1456
1456
|
},
|
|
1457
1457
|
"node_modules/@babel/plugin-transform-modules-commonjs": {
|
|
1458
|
-
"version": "7.
|
|
1459
|
-
"integrity": "sha512-
|
|
1458
|
+
"version": "7.28.6",
|
|
1459
|
+
"integrity": "sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==",
|
|
1460
1460
|
"license": "MIT",
|
|
1461
1461
|
"dependencies": {
|
|
1462
|
-
"@babel/helper-module-transforms": "^7.
|
|
1463
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1462
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
1463
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1464
1464
|
},
|
|
1465
1465
|
"engines": {
|
|
1466
1466
|
"node": ">=6.9.0"
|
|
@@ -1470,15 +1470,15 @@
|
|
|
1470
1470
|
}
|
|
1471
1471
|
},
|
|
1472
1472
|
"node_modules/@babel/plugin-transform-modules-systemjs": {
|
|
1473
|
-
"version": "7.
|
|
1474
|
-
"integrity": "sha512-
|
|
1473
|
+
"version": "7.29.0",
|
|
1474
|
+
"integrity": "sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==",
|
|
1475
1475
|
"dev": true,
|
|
1476
1476
|
"license": "MIT",
|
|
1477
1477
|
"dependencies": {
|
|
1478
|
-
"@babel/helper-module-transforms": "^7.28.
|
|
1479
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1478
|
+
"@babel/helper-module-transforms": "^7.28.6",
|
|
1479
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1480
1480
|
"@babel/helper-validator-identifier": "^7.28.5",
|
|
1481
|
-
"@babel/traverse": "^7.
|
|
1481
|
+
"@babel/traverse": "^7.29.0"
|
|
1482
1482
|
},
|
|
1483
1483
|
"engines": {
|
|
1484
1484
|
"node": ">=6.9.0"
|
|
@@ -1504,12 +1504,12 @@
|
|
|
1504
1504
|
}
|
|
1505
1505
|
},
|
|
1506
1506
|
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
|
|
1507
|
-
"version": "7.
|
|
1508
|
-
"integrity": "sha512-
|
|
1507
|
+
"version": "7.29.0",
|
|
1508
|
+
"integrity": "sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==",
|
|
1509
1509
|
"license": "MIT",
|
|
1510
1510
|
"dependencies": {
|
|
1511
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1512
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1511
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1512
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1513
1513
|
},
|
|
1514
1514
|
"engines": {
|
|
1515
1515
|
"node": ">=6.9.0"
|
|
@@ -1534,11 +1534,11 @@
|
|
|
1534
1534
|
}
|
|
1535
1535
|
},
|
|
1536
1536
|
"node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
|
|
1537
|
-
"version": "7.
|
|
1538
|
-
"integrity": "sha512-
|
|
1537
|
+
"version": "7.28.6",
|
|
1538
|
+
"integrity": "sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==",
|
|
1539
1539
|
"license": "MIT",
|
|
1540
1540
|
"dependencies": {
|
|
1541
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1541
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1542
1542
|
},
|
|
1543
1543
|
"engines": {
|
|
1544
1544
|
"node": ">=6.9.0"
|
|
@@ -1548,11 +1548,11 @@
|
|
|
1548
1548
|
}
|
|
1549
1549
|
},
|
|
1550
1550
|
"node_modules/@babel/plugin-transform-numeric-separator": {
|
|
1551
|
-
"version": "7.
|
|
1552
|
-
"integrity": "sha512-
|
|
1551
|
+
"version": "7.28.6",
|
|
1552
|
+
"integrity": "sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==",
|
|
1553
1553
|
"license": "MIT",
|
|
1554
1554
|
"dependencies": {
|
|
1555
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1555
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1556
1556
|
},
|
|
1557
1557
|
"engines": {
|
|
1558
1558
|
"node": ">=6.9.0"
|
|
@@ -1562,15 +1562,15 @@
|
|
|
1562
1562
|
}
|
|
1563
1563
|
},
|
|
1564
1564
|
"node_modules/@babel/plugin-transform-object-rest-spread": {
|
|
1565
|
-
"version": "7.28.
|
|
1566
|
-
"integrity": "sha512-
|
|
1565
|
+
"version": "7.28.6",
|
|
1566
|
+
"integrity": "sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==",
|
|
1567
1567
|
"license": "MIT",
|
|
1568
1568
|
"dependencies": {
|
|
1569
|
-
"@babel/helper-compilation-targets": "^7.
|
|
1570
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1571
|
-
"@babel/plugin-transform-destructuring": "^7.28.
|
|
1569
|
+
"@babel/helper-compilation-targets": "^7.28.6",
|
|
1570
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1571
|
+
"@babel/plugin-transform-destructuring": "^7.28.5",
|
|
1572
1572
|
"@babel/plugin-transform-parameters": "^7.27.7",
|
|
1573
|
-
"@babel/traverse": "^7.28.
|
|
1573
|
+
"@babel/traverse": "^7.28.6"
|
|
1574
1574
|
},
|
|
1575
1575
|
"engines": {
|
|
1576
1576
|
"node": ">=6.9.0"
|
|
@@ -1596,11 +1596,11 @@
|
|
|
1596
1596
|
}
|
|
1597
1597
|
},
|
|
1598
1598
|
"node_modules/@babel/plugin-transform-optional-catch-binding": {
|
|
1599
|
-
"version": "7.
|
|
1600
|
-
"integrity": "sha512-
|
|
1599
|
+
"version": "7.28.6",
|
|
1600
|
+
"integrity": "sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==",
|
|
1601
1601
|
"license": "MIT",
|
|
1602
1602
|
"dependencies": {
|
|
1603
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1603
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1604
1604
|
},
|
|
1605
1605
|
"engines": {
|
|
1606
1606
|
"node": ">=6.9.0"
|
|
@@ -1610,11 +1610,11 @@
|
|
|
1610
1610
|
}
|
|
1611
1611
|
},
|
|
1612
1612
|
"node_modules/@babel/plugin-transform-optional-chaining": {
|
|
1613
|
-
"version": "7.28.
|
|
1614
|
-
"integrity": "sha512-
|
|
1613
|
+
"version": "7.28.6",
|
|
1614
|
+
"integrity": "sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==",
|
|
1615
1615
|
"license": "MIT",
|
|
1616
1616
|
"dependencies": {
|
|
1617
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1617
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1618
1618
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"
|
|
1619
1619
|
},
|
|
1620
1620
|
"engines": {
|
|
@@ -1639,12 +1639,12 @@
|
|
|
1639
1639
|
}
|
|
1640
1640
|
},
|
|
1641
1641
|
"node_modules/@babel/plugin-transform-private-methods": {
|
|
1642
|
-
"version": "7.
|
|
1643
|
-
"integrity": "sha512-
|
|
1642
|
+
"version": "7.28.6",
|
|
1643
|
+
"integrity": "sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==",
|
|
1644
1644
|
"license": "MIT",
|
|
1645
1645
|
"dependencies": {
|
|
1646
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
1647
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1646
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
1647
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1648
1648
|
},
|
|
1649
1649
|
"engines": {
|
|
1650
1650
|
"node": ">=6.9.0"
|
|
@@ -1654,13 +1654,13 @@
|
|
|
1654
1654
|
}
|
|
1655
1655
|
},
|
|
1656
1656
|
"node_modules/@babel/plugin-transform-private-property-in-object": {
|
|
1657
|
-
"version": "7.
|
|
1658
|
-
"integrity": "sha512-
|
|
1657
|
+
"version": "7.28.6",
|
|
1658
|
+
"integrity": "sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==",
|
|
1659
1659
|
"license": "MIT",
|
|
1660
1660
|
"dependencies": {
|
|
1661
|
-
"@babel/helper-annotate-as-pure": "^7.27.
|
|
1662
|
-
"@babel/helper-create-class-features-plugin": "^7.
|
|
1663
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1661
|
+
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1662
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
1663
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1664
1664
|
},
|
|
1665
1665
|
"engines": {
|
|
1666
1666
|
"node": ">=6.9.0"
|
|
@@ -1699,15 +1699,15 @@
|
|
|
1699
1699
|
}
|
|
1700
1700
|
},
|
|
1701
1701
|
"node_modules/@babel/plugin-transform-react-jsx": {
|
|
1702
|
-
"version": "7.
|
|
1703
|
-
"integrity": "sha512-
|
|
1702
|
+
"version": "7.28.6",
|
|
1703
|
+
"integrity": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==",
|
|
1704
1704
|
"license": "MIT",
|
|
1705
1705
|
"dependencies": {
|
|
1706
|
-
"@babel/helper-annotate-as-pure": "^7.27.
|
|
1707
|
-
"@babel/helper-module-imports": "^7.
|
|
1708
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1709
|
-
"@babel/plugin-syntax-jsx": "^7.
|
|
1710
|
-
"@babel/types": "^7.
|
|
1706
|
+
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1707
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
1708
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1709
|
+
"@babel/plugin-syntax-jsx": "^7.28.6",
|
|
1710
|
+
"@babel/types": "^7.28.6"
|
|
1711
1711
|
},
|
|
1712
1712
|
"engines": {
|
|
1713
1713
|
"node": ">=6.9.0"
|
|
@@ -1774,11 +1774,11 @@
|
|
|
1774
1774
|
}
|
|
1775
1775
|
},
|
|
1776
1776
|
"node_modules/@babel/plugin-transform-regenerator": {
|
|
1777
|
-
"version": "7.
|
|
1778
|
-
"integrity": "sha512
|
|
1777
|
+
"version": "7.29.0",
|
|
1778
|
+
"integrity": "sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==",
|
|
1779
1779
|
"license": "MIT",
|
|
1780
1780
|
"dependencies": {
|
|
1781
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1781
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1782
1782
|
},
|
|
1783
1783
|
"engines": {
|
|
1784
1784
|
"node": ">=6.9.0"
|
|
@@ -1803,12 +1803,12 @@
|
|
|
1803
1803
|
}
|
|
1804
1804
|
},
|
|
1805
1805
|
"node_modules/@babel/plugin-transform-runtime": {
|
|
1806
|
-
"version": "7.
|
|
1807
|
-
"integrity": "sha512-
|
|
1806
|
+
"version": "7.29.0",
|
|
1807
|
+
"integrity": "sha512-jlaRT5dJtMaMCV6fAuLbsQMSwz/QkvaHOHOSXRitGGwSpR1blCY4KUKoyP2tYO8vJcqYe8cEj96cqSztv3uF9w==",
|
|
1808
1808
|
"license": "MIT",
|
|
1809
1809
|
"dependencies": {
|
|
1810
|
-
"@babel/helper-module-imports": "^7.
|
|
1811
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1810
|
+
"@babel/helper-module-imports": "^7.28.6",
|
|
1811
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1812
1812
|
"babel-plugin-polyfill-corejs2": "^0.4.14",
|
|
1813
1813
|
"babel-plugin-polyfill-corejs3": "^0.13.0",
|
|
1814
1814
|
"babel-plugin-polyfill-regenerator": "^0.6.5",
|
|
@@ -1848,11 +1848,11 @@
|
|
|
1848
1848
|
}
|
|
1849
1849
|
},
|
|
1850
1850
|
"node_modules/@babel/plugin-transform-spread": {
|
|
1851
|
-
"version": "7.
|
|
1852
|
-
"integrity": "sha512-
|
|
1851
|
+
"version": "7.28.6",
|
|
1852
|
+
"integrity": "sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==",
|
|
1853
1853
|
"license": "MIT",
|
|
1854
1854
|
"dependencies": {
|
|
1855
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1855
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1856
1856
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"
|
|
1857
1857
|
},
|
|
1858
1858
|
"engines": {
|
|
@@ -1906,15 +1906,15 @@
|
|
|
1906
1906
|
}
|
|
1907
1907
|
},
|
|
1908
1908
|
"node_modules/@babel/plugin-transform-typescript": {
|
|
1909
|
-
"version": "7.28.
|
|
1910
|
-
"integrity": "sha512-
|
|
1909
|
+
"version": "7.28.6",
|
|
1910
|
+
"integrity": "sha512-0YWL2RFxOqEm9Efk5PvreamxPME8OyY0wM5wh5lHjF+VtVhdneCWGzZeSqzOfiobVqQaNCd2z0tQvnI9DaPWPw==",
|
|
1911
1911
|
"license": "MIT",
|
|
1912
1912
|
"dependencies": {
|
|
1913
1913
|
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
1914
|
-
"@babel/helper-create-class-features-plugin": "^7.28.
|
|
1915
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1914
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
1915
|
+
"@babel/helper-plugin-utils": "^7.28.6",
|
|
1916
1916
|
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
|
|
1917
|
-
"@babel/plugin-syntax-typescript": "^7.
|
|
1917
|
+
"@babel/plugin-syntax-typescript": "^7.28.6"
|
|
1918
1918
|
},
|
|
1919
1919
|
"engines": {
|
|
1920
1920
|
"node": ">=6.9.0"
|
|
@@ -1939,13 +1939,13 @@
|
|
|
1939
1939
|
}
|
|
1940
1940
|
},
|
|
1941
1941
|
"node_modules/@babel/plugin-transform-unicode-property-regex": {
|
|
1942
|
-
"version": "7.
|
|
1943
|
-
"integrity": "sha512-
|
|
1942
|
+
"version": "7.28.6",
|
|
1943
|
+
"integrity": "sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==",
|
|
1944
1944
|
"dev": true,
|
|
1945
1945
|
"license": "MIT",
|
|
1946
1946
|
"dependencies": {
|
|
1947
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1948
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1947
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1948
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1949
1949
|
},
|
|
1950
1950
|
"engines": {
|
|
1951
1951
|
"node": ">=6.9.0"
|
|
@@ -1970,13 +1970,13 @@
|
|
|
1970
1970
|
}
|
|
1971
1971
|
},
|
|
1972
1972
|
"node_modules/@babel/plugin-transform-unicode-sets-regex": {
|
|
1973
|
-
"version": "7.
|
|
1974
|
-
"integrity": "sha512
|
|
1973
|
+
"version": "7.28.6",
|
|
1974
|
+
"integrity": "sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==",
|
|
1975
1975
|
"dev": true,
|
|
1976
1976
|
"license": "MIT",
|
|
1977
1977
|
"dependencies": {
|
|
1978
|
-
"@babel/helper-create-regexp-features-plugin": "^7.
|
|
1979
|
-
"@babel/helper-plugin-utils": "^7.
|
|
1978
|
+
"@babel/helper-create-regexp-features-plugin": "^7.28.5",
|
|
1979
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
1980
1980
|
},
|
|
1981
1981
|
"engines": {
|
|
1982
1982
|
"node": ">=6.9.0"
|
|
@@ -2149,48 +2149,48 @@
|
|
|
2149
2149
|
}
|
|
2150
2150
|
},
|
|
2151
2151
|
"node_modules/@babel/runtime": {
|
|
2152
|
-
"version": "7.28.
|
|
2153
|
-
"integrity": "sha512-
|
|
2152
|
+
"version": "7.28.6",
|
|
2153
|
+
"integrity": "sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==",
|
|
2154
2154
|
"license": "MIT",
|
|
2155
2155
|
"engines": {
|
|
2156
2156
|
"node": ">=6.9.0"
|
|
2157
2157
|
}
|
|
2158
2158
|
},
|
|
2159
2159
|
"node_modules/@babel/runtime-corejs3": {
|
|
2160
|
-
"version": "7.
|
|
2161
|
-
"integrity": "sha512-
|
|
2160
|
+
"version": "7.29.0",
|
|
2161
|
+
"integrity": "sha512-TgUkdp71C9pIbBcHudc+gXZnihEDOjUAmXO1VO4HHGES7QLZcShR0stfKIxLSNIYx2fqhmJChOjm/wkF8wv4gA==",
|
|
2162
2162
|
"license": "MIT",
|
|
2163
2163
|
"dependencies": {
|
|
2164
|
-
"core-js-pure": "^3.
|
|
2164
|
+
"core-js-pure": "^3.48.0"
|
|
2165
2165
|
},
|
|
2166
2166
|
"engines": {
|
|
2167
2167
|
"node": ">=6.9.0"
|
|
2168
2168
|
}
|
|
2169
2169
|
},
|
|
2170
2170
|
"node_modules/@babel/template": {
|
|
2171
|
-
"version": "7.
|
|
2172
|
-
"integrity": "sha512-
|
|
2171
|
+
"version": "7.28.6",
|
|
2172
|
+
"integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
|
|
2173
2173
|
"license": "MIT",
|
|
2174
2174
|
"dependencies": {
|
|
2175
|
-
"@babel/code-frame": "^7.
|
|
2176
|
-
"@babel/parser": "^7.
|
|
2177
|
-
"@babel/types": "^7.
|
|
2175
|
+
"@babel/code-frame": "^7.28.6",
|
|
2176
|
+
"@babel/parser": "^7.28.6",
|
|
2177
|
+
"@babel/types": "^7.28.6"
|
|
2178
2178
|
},
|
|
2179
2179
|
"engines": {
|
|
2180
2180
|
"node": ">=6.9.0"
|
|
2181
2181
|
}
|
|
2182
2182
|
},
|
|
2183
2183
|
"node_modules/@babel/traverse": {
|
|
2184
|
-
"version": "7.
|
|
2185
|
-
"integrity": "sha512-
|
|
2184
|
+
"version": "7.29.0",
|
|
2185
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
2186
2186
|
"license": "MIT",
|
|
2187
2187
|
"dependencies": {
|
|
2188
|
-
"@babel/code-frame": "^7.
|
|
2189
|
-
"@babel/generator": "^7.
|
|
2188
|
+
"@babel/code-frame": "^7.29.0",
|
|
2189
|
+
"@babel/generator": "^7.29.0",
|
|
2190
2190
|
"@babel/helper-globals": "^7.28.0",
|
|
2191
|
-
"@babel/parser": "^7.
|
|
2192
|
-
"@babel/template": "^7.
|
|
2193
|
-
"@babel/types": "^7.
|
|
2191
|
+
"@babel/parser": "^7.29.0",
|
|
2192
|
+
"@babel/template": "^7.28.6",
|
|
2193
|
+
"@babel/types": "^7.29.0",
|
|
2194
2194
|
"debug": "^4.3.1"
|
|
2195
2195
|
},
|
|
2196
2196
|
"engines": {
|
|
@@ -2199,16 +2199,16 @@
|
|
|
2199
2199
|
},
|
|
2200
2200
|
"node_modules/@babel/traverse--for-generate-function-map": {
|
|
2201
2201
|
"name": "@babel/traverse",
|
|
2202
|
-
"version": "7.
|
|
2203
|
-
"integrity": "sha512-
|
|
2202
|
+
"version": "7.29.0",
|
|
2203
|
+
"integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
|
|
2204
2204
|
"license": "MIT",
|
|
2205
2205
|
"dependencies": {
|
|
2206
|
-
"@babel/code-frame": "^7.
|
|
2207
|
-
"@babel/generator": "^7.
|
|
2206
|
+
"@babel/code-frame": "^7.29.0",
|
|
2207
|
+
"@babel/generator": "^7.29.0",
|
|
2208
2208
|
"@babel/helper-globals": "^7.28.0",
|
|
2209
|
-
"@babel/parser": "^7.
|
|
2210
|
-
"@babel/template": "^7.
|
|
2211
|
-
"@babel/types": "^7.
|
|
2209
|
+
"@babel/parser": "^7.29.0",
|
|
2210
|
+
"@babel/template": "^7.28.6",
|
|
2211
|
+
"@babel/types": "^7.29.0",
|
|
2212
2212
|
"debug": "^4.3.1"
|
|
2213
2213
|
},
|
|
2214
2214
|
"engines": {
|
|
@@ -2216,8 +2216,8 @@
|
|
|
2216
2216
|
}
|
|
2217
2217
|
},
|
|
2218
2218
|
"node_modules/@babel/types": {
|
|
2219
|
-
"version": "7.
|
|
2220
|
-
"integrity": "sha512-
|
|
2219
|
+
"version": "7.29.0",
|
|
2220
|
+
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
|
|
2221
2221
|
"license": "MIT",
|
|
2222
2222
|
"dependencies": {
|
|
2223
2223
|
"@babel/helper-string-parser": "^7.27.1",
|
|
@@ -2274,21 +2274,6 @@
|
|
|
2274
2274
|
"node": ">=v18"
|
|
2275
2275
|
}
|
|
2276
2276
|
},
|
|
2277
|
-
"node_modules/@commitlint/cli/node_modules/ansi-styles": {
|
|
2278
|
-
"version": "4.3.0",
|
|
2279
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
2280
|
-
"dev": true,
|
|
2281
|
-
"license": "MIT",
|
|
2282
|
-
"dependencies": {
|
|
2283
|
-
"color-convert": "^2.0.1"
|
|
2284
|
-
},
|
|
2285
|
-
"engines": {
|
|
2286
|
-
"node": ">=8"
|
|
2287
|
-
},
|
|
2288
|
-
"funding": {
|
|
2289
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
2290
|
-
}
|
|
2291
|
-
},
|
|
2292
2277
|
"node_modules/@commitlint/cli/node_modules/cliui": {
|
|
2293
2278
|
"version": "8.0.1",
|
|
2294
2279
|
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
|
|
@@ -2303,43 +2288,6 @@
|
|
|
2303
2288
|
"node": ">=12"
|
|
2304
2289
|
}
|
|
2305
2290
|
},
|
|
2306
|
-
"node_modules/@commitlint/cli/node_modules/emoji-regex": {
|
|
2307
|
-
"version": "8.0.0",
|
|
2308
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
2309
|
-
"dev": true,
|
|
2310
|
-
"license": "MIT"
|
|
2311
|
-
},
|
|
2312
|
-
"node_modules/@commitlint/cli/node_modules/string-width": {
|
|
2313
|
-
"version": "4.2.3",
|
|
2314
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
2315
|
-
"dev": true,
|
|
2316
|
-
"license": "MIT",
|
|
2317
|
-
"dependencies": {
|
|
2318
|
-
"emoji-regex": "^8.0.0",
|
|
2319
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
2320
|
-
"strip-ansi": "^6.0.1"
|
|
2321
|
-
},
|
|
2322
|
-
"engines": {
|
|
2323
|
-
"node": ">=8"
|
|
2324
|
-
}
|
|
2325
|
-
},
|
|
2326
|
-
"node_modules/@commitlint/cli/node_modules/wrap-ansi": {
|
|
2327
|
-
"version": "7.0.0",
|
|
2328
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
2329
|
-
"dev": true,
|
|
2330
|
-
"license": "MIT",
|
|
2331
|
-
"dependencies": {
|
|
2332
|
-
"ansi-styles": "^4.0.0",
|
|
2333
|
-
"string-width": "^4.1.0",
|
|
2334
|
-
"strip-ansi": "^6.0.0"
|
|
2335
|
-
},
|
|
2336
|
-
"engines": {
|
|
2337
|
-
"node": ">=10"
|
|
2338
|
-
},
|
|
2339
|
-
"funding": {
|
|
2340
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
2341
|
-
}
|
|
2342
|
-
},
|
|
2343
2291
|
"node_modules/@commitlint/cli/node_modules/yargs": {
|
|
2344
2292
|
"version": "17.7.2",
|
|
2345
2293
|
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
|
|
@@ -2446,8 +2394,8 @@
|
|
|
2446
2394
|
}
|
|
2447
2395
|
},
|
|
2448
2396
|
"node_modules/@commitlint/is-ignored/node_modules/semver": {
|
|
2449
|
-
"version": "7.7.
|
|
2450
|
-
"integrity": "sha512-
|
|
2397
|
+
"version": "7.7.4",
|
|
2398
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
2451
2399
|
"dev": true,
|
|
2452
2400
|
"license": "ISC",
|
|
2453
2401
|
"bin": {
|
|
@@ -2693,8 +2641,8 @@
|
|
|
2693
2641
|
}
|
|
2694
2642
|
},
|
|
2695
2643
|
"node_modules/@eslint-community/eslint-utils": {
|
|
2696
|
-
"version": "4.9.
|
|
2697
|
-
"integrity": "sha512-
|
|
2644
|
+
"version": "4.9.1",
|
|
2645
|
+
"integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
|
|
2698
2646
|
"dev": true,
|
|
2699
2647
|
"license": "MIT",
|
|
2700
2648
|
"dependencies": {
|
|
@@ -2732,8 +2680,8 @@
|
|
|
2732
2680
|
}
|
|
2733
2681
|
},
|
|
2734
2682
|
"node_modules/@eslint/eslintrc": {
|
|
2735
|
-
"version": "3.3.
|
|
2736
|
-
"integrity": "sha512-
|
|
2683
|
+
"version": "3.3.3",
|
|
2684
|
+
"integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==",
|
|
2737
2685
|
"dev": true,
|
|
2738
2686
|
"license": "MIT",
|
|
2739
2687
|
"dependencies": {
|
|
@@ -2743,7 +2691,7 @@
|
|
|
2743
2691
|
"globals": "^14.0.0",
|
|
2744
2692
|
"ignore": "^5.2.0",
|
|
2745
2693
|
"import-fresh": "^3.2.1",
|
|
2746
|
-
"js-yaml": "^4.1.
|
|
2694
|
+
"js-yaml": "^4.1.1",
|
|
2747
2695
|
"minimatch": "^3.1.2",
|
|
2748
2696
|
"strip-json-comments": "^3.1.1"
|
|
2749
2697
|
},
|
|
@@ -2816,48 +2764,47 @@
|
|
|
2816
2764
|
}
|
|
2817
2765
|
},
|
|
2818
2766
|
"node_modules/@expo/code-signing-certificates": {
|
|
2819
|
-
"version": "0.0.
|
|
2820
|
-
"integrity": "sha512-
|
|
2767
|
+
"version": "0.0.6",
|
|
2768
|
+
"integrity": "sha512-iNe0puxwBNEcuua9gmTGzq+SuMDa0iATai1FlFTMHJ/vUmKvN/V//drXoLJkVb5i5H3iE/n/qIJxyoBnXouD0w==",
|
|
2821
2769
|
"license": "MIT",
|
|
2822
2770
|
"peer": true,
|
|
2823
2771
|
"dependencies": {
|
|
2824
|
-
"node-forge": "^1.
|
|
2825
|
-
"nullthrows": "^1.1.1"
|
|
2772
|
+
"node-forge": "^1.3.3"
|
|
2826
2773
|
}
|
|
2827
2774
|
},
|
|
2828
2775
|
"node_modules/@expo/config": {
|
|
2829
|
-
"version": "12.0.
|
|
2830
|
-
"integrity": "sha512-
|
|
2776
|
+
"version": "12.0.13",
|
|
2777
|
+
"integrity": "sha512-Cu52arBa4vSaupIWsF0h7F/Cg//N374nYb7HAxV0I4KceKA7x2UXpYaHOL7EEYYvp7tZdThBjvGpVmr8ScIvaQ==",
|
|
2831
2778
|
"license": "MIT",
|
|
2832
2779
|
"dependencies": {
|
|
2833
2780
|
"@babel/code-frame": "~7.10.4",
|
|
2834
|
-
"@expo/config-plugins": "~54.0.
|
|
2835
|
-
"@expo/config-types": "^54.0.
|
|
2836
|
-
"@expo/json-file": "^10.0.
|
|
2781
|
+
"@expo/config-plugins": "~54.0.4",
|
|
2782
|
+
"@expo/config-types": "^54.0.10",
|
|
2783
|
+
"@expo/json-file": "^10.0.8",
|
|
2837
2784
|
"deepmerge": "^4.3.1",
|
|
2838
2785
|
"getenv": "^2.0.0",
|
|
2839
|
-
"glob": "^
|
|
2786
|
+
"glob": "^13.0.0",
|
|
2840
2787
|
"require-from-string": "^2.0.2",
|
|
2841
2788
|
"resolve-from": "^5.0.0",
|
|
2842
2789
|
"resolve-workspace-root": "^2.0.0",
|
|
2843
2790
|
"semver": "^7.6.0",
|
|
2844
2791
|
"slugify": "^1.3.4",
|
|
2845
|
-
"sucrase": "3.35.
|
|
2792
|
+
"sucrase": "~3.35.1"
|
|
2846
2793
|
}
|
|
2847
2794
|
},
|
|
2848
2795
|
"node_modules/@expo/config-plugins": {
|
|
2849
|
-
"version": "54.0.
|
|
2850
|
-
"integrity": "sha512-
|
|
2796
|
+
"version": "54.0.4",
|
|
2797
|
+
"integrity": "sha512-g2yXGICdoOw5i3LkQSDxl2Q5AlQCrG7oniu0pCPPO+UxGb7He4AFqSvPSy8HpRUj55io17hT62FTjYRD+d6j3Q==",
|
|
2851
2798
|
"license": "MIT",
|
|
2852
2799
|
"dependencies": {
|
|
2853
|
-
"@expo/config-types": "^54.0.
|
|
2854
|
-
"@expo/json-file": "~10.0.
|
|
2855
|
-
"@expo/plist": "^0.4.
|
|
2800
|
+
"@expo/config-types": "^54.0.10",
|
|
2801
|
+
"@expo/json-file": "~10.0.8",
|
|
2802
|
+
"@expo/plist": "^0.4.8",
|
|
2856
2803
|
"@expo/sdk-runtime-versions": "^1.0.0",
|
|
2857
2804
|
"chalk": "^4.1.2",
|
|
2858
2805
|
"debug": "^4.3.5",
|
|
2859
2806
|
"getenv": "^2.0.0",
|
|
2860
|
-
"glob": "^
|
|
2807
|
+
"glob": "^13.0.0",
|
|
2861
2808
|
"resolve-from": "^5.0.0",
|
|
2862
2809
|
"semver": "^7.5.4",
|
|
2863
2810
|
"slash": "^3.0.0",
|
|
@@ -2896,8 +2843,8 @@
|
|
|
2896
2843
|
}
|
|
2897
2844
|
},
|
|
2898
2845
|
"node_modules/@expo/config-plugins/node_modules/semver": {
|
|
2899
|
-
"version": "7.7.
|
|
2900
|
-
"integrity": "sha512-
|
|
2846
|
+
"version": "7.7.4",
|
|
2847
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
2901
2848
|
"license": "ISC",
|
|
2902
2849
|
"bin": {
|
|
2903
2850
|
"semver": "bin/semver.js"
|
|
@@ -2907,8 +2854,8 @@
|
|
|
2907
2854
|
}
|
|
2908
2855
|
},
|
|
2909
2856
|
"node_modules/@expo/config-types": {
|
|
2910
|
-
"version": "54.0.
|
|
2911
|
-
"integrity": "sha512
|
|
2857
|
+
"version": "54.0.10",
|
|
2858
|
+
"integrity": "sha512-/J16SC2an1LdtCZ67xhSkGXpALYUVUNyZws7v+PVsFZxClYehDSoKLqyRaGkpHlYrCc08bS0RF5E0JV6g50psA==",
|
|
2912
2859
|
"license": "MIT"
|
|
2913
2860
|
},
|
|
2914
2861
|
"node_modules/@expo/config/node_modules/@babel/code-frame": {
|
|
@@ -2920,8 +2867,8 @@
|
|
|
2920
2867
|
}
|
|
2921
2868
|
},
|
|
2922
2869
|
"node_modules/@expo/config/node_modules/semver": {
|
|
2923
|
-
"version": "7.7.
|
|
2924
|
-
"integrity": "sha512-
|
|
2870
|
+
"version": "7.7.4",
|
|
2871
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
2925
2872
|
"license": "ISC",
|
|
2926
2873
|
"bin": {
|
|
2927
2874
|
"semver": "bin/semver.js"
|
|
@@ -2931,14 +2878,13 @@
|
|
|
2931
2878
|
}
|
|
2932
2879
|
},
|
|
2933
2880
|
"node_modules/@expo/devcert": {
|
|
2934
|
-
"version": "1.2.
|
|
2935
|
-
"integrity": "sha512-
|
|
2881
|
+
"version": "1.2.1",
|
|
2882
|
+
"integrity": "sha512-qC4eaxmKMTmJC2ahwyui6ud8f3W60Ss7pMkpBq40Hu3zyiAaugPXnZ24145U7K36qO9UHdZUVxsCvIpz2RYYCA==",
|
|
2936
2883
|
"license": "MIT",
|
|
2937
2884
|
"peer": true,
|
|
2938
2885
|
"dependencies": {
|
|
2939
2886
|
"@expo/sudo-prompt": "^9.3.1",
|
|
2940
|
-
"debug": "^3.1.0"
|
|
2941
|
-
"glob": "^10.4.2"
|
|
2887
|
+
"debug": "^3.1.0"
|
|
2942
2888
|
}
|
|
2943
2889
|
},
|
|
2944
2890
|
"node_modules/@expo/devcert/node_modules/debug": {
|
|
@@ -2951,8 +2897,8 @@
|
|
|
2951
2897
|
}
|
|
2952
2898
|
},
|
|
2953
2899
|
"node_modules/@expo/devtools": {
|
|
2954
|
-
"version": "0.1.
|
|
2955
|
-
"integrity": "sha512-
|
|
2900
|
+
"version": "0.1.8",
|
|
2901
|
+
"integrity": "sha512-SVLxbuanDjJPgc0sy3EfXUMLb/tXzp6XIHkhtPVmTWJAp+FOr6+5SeiCfJrCzZFet0Ifyke2vX3sFcKwEvCXwQ==",
|
|
2956
2902
|
"license": "MIT",
|
|
2957
2903
|
"peer": true,
|
|
2958
2904
|
"dependencies": {
|
|
@@ -3003,8 +2949,8 @@
|
|
|
3003
2949
|
}
|
|
3004
2950
|
},
|
|
3005
2951
|
"node_modules/@expo/env": {
|
|
3006
|
-
"version": "2.0.
|
|
3007
|
-
"integrity": "sha512-
|
|
2952
|
+
"version": "2.0.8",
|
|
2953
|
+
"integrity": "sha512-5VQD6GT8HIMRaSaB5JFtOXuvfDVU80YtZIuUT/GDhUF782usIXY13Tn3IdDz1Tm/lqA9qnRZQ1BF4t7LlvdJPA==",
|
|
3008
2954
|
"license": "MIT",
|
|
3009
2955
|
"peer": true,
|
|
3010
2956
|
"dependencies": {
|
|
@@ -3047,8 +2993,8 @@
|
|
|
3047
2993
|
}
|
|
3048
2994
|
},
|
|
3049
2995
|
"node_modules/@expo/fingerprint": {
|
|
3050
|
-
"version": "0.15.
|
|
3051
|
-
"integrity": "sha512-
|
|
2996
|
+
"version": "0.15.4",
|
|
2997
|
+
"integrity": "sha512-eYlxcrGdR2/j2M6pEDXo9zU9KXXF1vhP+V+Tl+lyY+bU8lnzrN6c637mz6Ye3em2ANy8hhUR03Raf8VsT9Ogng==",
|
|
3052
2998
|
"license": "MIT",
|
|
3053
2999
|
"peer": true,
|
|
3054
3000
|
"dependencies": {
|
|
@@ -3057,7 +3003,7 @@
|
|
|
3057
3003
|
"chalk": "^4.1.2",
|
|
3058
3004
|
"debug": "^4.3.4",
|
|
3059
3005
|
"getenv": "^2.0.0",
|
|
3060
|
-
"glob": "^
|
|
3006
|
+
"glob": "^13.0.0",
|
|
3061
3007
|
"ignore": "^5.3.1",
|
|
3062
3008
|
"minimatch": "^9.0.0",
|
|
3063
3009
|
"p-limit": "^3.1.0",
|
|
@@ -3124,8 +3070,8 @@
|
|
|
3124
3070
|
}
|
|
3125
3071
|
},
|
|
3126
3072
|
"node_modules/@expo/fingerprint/node_modules/semver": {
|
|
3127
|
-
"version": "7.7.
|
|
3128
|
-
"integrity": "sha512-
|
|
3073
|
+
"version": "7.7.4",
|
|
3074
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
3129
3075
|
"license": "ISC",
|
|
3130
3076
|
"peer": true,
|
|
3131
3077
|
"bin": {
|
|
@@ -3136,8 +3082,8 @@
|
|
|
3136
3082
|
}
|
|
3137
3083
|
},
|
|
3138
3084
|
"node_modules/@expo/image-utils": {
|
|
3139
|
-
"version": "0.8.
|
|
3140
|
-
"integrity": "sha512-
|
|
3085
|
+
"version": "0.8.8",
|
|
3086
|
+
"integrity": "sha512-HHHaG4J4nKjTtVa1GG9PCh763xlETScfEyNxxOvfTRr8IKPJckjTyqSLEtdJoFNJ1vqiABEjW7tqGhqGibZLeA==",
|
|
3141
3087
|
"license": "MIT",
|
|
3142
3088
|
"dependencies": {
|
|
3143
3089
|
"@expo/spawn-async": "^1.7.2",
|
|
@@ -3182,8 +3128,8 @@
|
|
|
3182
3128
|
}
|
|
3183
3129
|
},
|
|
3184
3130
|
"node_modules/@expo/image-utils/node_modules/semver": {
|
|
3185
|
-
"version": "7.7.
|
|
3186
|
-
"integrity": "sha512-
|
|
3131
|
+
"version": "7.7.4",
|
|
3132
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
3187
3133
|
"license": "ISC",
|
|
3188
3134
|
"bin": {
|
|
3189
3135
|
"semver": "bin/semver.js"
|
|
@@ -3193,8 +3139,8 @@
|
|
|
3193
3139
|
}
|
|
3194
3140
|
},
|
|
3195
3141
|
"node_modules/@expo/json-file": {
|
|
3196
|
-
"version": "10.0.
|
|
3197
|
-
"integrity": "sha512-
|
|
3142
|
+
"version": "10.0.8",
|
|
3143
|
+
"integrity": "sha512-9LOTh1PgKizD1VXfGQ88LtDH0lRwq9lsTb4aichWTWSWqy3Ugfkhfm3BhzBIkJJfQQ5iJu3m/BoRlEIjoCGcnQ==",
|
|
3198
3144
|
"license": "MIT",
|
|
3199
3145
|
"dependencies": {
|
|
3200
3146
|
"@babel/code-frame": "~7.10.4",
|
|
@@ -3209,58 +3155,41 @@
|
|
|
3209
3155
|
"@babel/highlight": "^7.10.4"
|
|
3210
3156
|
}
|
|
3211
3157
|
},
|
|
3212
|
-
"node_modules/@expo/mcp-tunnel": {
|
|
3213
|
-
"version": "0.1.0",
|
|
3214
|
-
"integrity": "sha512-rJ6hl0GnIZj9+ssaJvFsC7fwyrmndcGz+RGFzu+0gnlm78X01957yjtHgjcmnQAgL5hWEOR6pkT0ijY5nU5AWw==",
|
|
3215
|
-
"license": "MIT",
|
|
3216
|
-
"peer": true,
|
|
3217
|
-
"dependencies": {
|
|
3218
|
-
"ws": "^8.18.3",
|
|
3219
|
-
"zod": "^3.25.76",
|
|
3220
|
-
"zod-to-json-schema": "^3.24.6"
|
|
3221
|
-
},
|
|
3222
|
-
"peerDependencies": {
|
|
3223
|
-
"@modelcontextprotocol/sdk": "^1.13.2"
|
|
3224
|
-
},
|
|
3225
|
-
"peerDependenciesMeta": {
|
|
3226
|
-
"@modelcontextprotocol/sdk": {
|
|
3227
|
-
"optional": true
|
|
3228
|
-
}
|
|
3229
|
-
}
|
|
3230
|
-
},
|
|
3231
3158
|
"node_modules/@expo/metro": {
|
|
3232
|
-
"version": "54.
|
|
3233
|
-
"integrity": "sha512-
|
|
3159
|
+
"version": "54.2.0",
|
|
3160
|
+
"integrity": "sha512-h68TNZPGsk6swMmLm9nRSnE2UXm48rWwgcbtAHVMikXvbxdS41NDHHeqg1rcQ9AbznDRp6SQVC2MVpDnsRKU1w==",
|
|
3234
3161
|
"license": "MIT",
|
|
3235
3162
|
"peer": true,
|
|
3236
3163
|
"dependencies": {
|
|
3237
|
-
"metro": "0.83.
|
|
3238
|
-
"metro-babel-transformer": "0.83.
|
|
3239
|
-
"metro-cache": "0.83.
|
|
3240
|
-
"metro-cache-key": "0.83.
|
|
3241
|
-
"metro-config": "0.83.
|
|
3242
|
-
"metro-core": "0.83.
|
|
3243
|
-
"metro-file-map": "0.83.
|
|
3244
|
-
"metro-
|
|
3245
|
-
"metro-
|
|
3246
|
-
"metro-
|
|
3247
|
-
"metro-
|
|
3248
|
-
"metro-
|
|
3164
|
+
"metro": "0.83.3",
|
|
3165
|
+
"metro-babel-transformer": "0.83.3",
|
|
3166
|
+
"metro-cache": "0.83.3",
|
|
3167
|
+
"metro-cache-key": "0.83.3",
|
|
3168
|
+
"metro-config": "0.83.3",
|
|
3169
|
+
"metro-core": "0.83.3",
|
|
3170
|
+
"metro-file-map": "0.83.3",
|
|
3171
|
+
"metro-minify-terser": "0.83.3",
|
|
3172
|
+
"metro-resolver": "0.83.3",
|
|
3173
|
+
"metro-runtime": "0.83.3",
|
|
3174
|
+
"metro-source-map": "0.83.3",
|
|
3175
|
+
"metro-symbolicate": "0.83.3",
|
|
3176
|
+
"metro-transform-plugins": "0.83.3",
|
|
3177
|
+
"metro-transform-worker": "0.83.3"
|
|
3249
3178
|
}
|
|
3250
3179
|
},
|
|
3251
3180
|
"node_modules/@expo/metro-config": {
|
|
3252
|
-
"version": "54.0.
|
|
3253
|
-
"integrity": "sha512-
|
|
3181
|
+
"version": "54.0.14",
|
|
3182
|
+
"integrity": "sha512-hxpLyDfOR4L23tJ9W1IbJJsG7k4lv2sotohBm/kTYyiG+pe1SYCAWsRmgk+H42o/wWf/HQjE5k45S5TomGLxNA==",
|
|
3254
3183
|
"license": "MIT",
|
|
3255
3184
|
"peer": true,
|
|
3256
3185
|
"dependencies": {
|
|
3257
3186
|
"@babel/code-frame": "^7.20.0",
|
|
3258
3187
|
"@babel/core": "^7.20.0",
|
|
3259
3188
|
"@babel/generator": "^7.20.5",
|
|
3260
|
-
"@expo/config": "~12.0.
|
|
3261
|
-
"@expo/env": "~2.0.
|
|
3262
|
-
"@expo/json-file": "~10.0.
|
|
3263
|
-
"@expo/metro": "~54.
|
|
3189
|
+
"@expo/config": "~12.0.13",
|
|
3190
|
+
"@expo/env": "~2.0.8",
|
|
3191
|
+
"@expo/json-file": "~10.0.8",
|
|
3192
|
+
"@expo/metro": "~54.2.0",
|
|
3264
3193
|
"@expo/spawn-async": "^1.7.2",
|
|
3265
3194
|
"browserslist": "^4.25.0",
|
|
3266
3195
|
"chalk": "^4.1.0",
|
|
@@ -3268,7 +3197,7 @@
|
|
|
3268
3197
|
"dotenv": "~16.4.5",
|
|
3269
3198
|
"dotenv-expand": "~11.0.6",
|
|
3270
3199
|
"getenv": "^2.0.0",
|
|
3271
|
-
"glob": "^
|
|
3200
|
+
"glob": "^13.0.0",
|
|
3272
3201
|
"hermes-parser": "^0.29.1",
|
|
3273
3202
|
"jsc-safe-url": "^0.2.4",
|
|
3274
3203
|
"lightningcss": "^1.30.1",
|
|
@@ -3341,8 +3270,8 @@
|
|
|
3341
3270
|
}
|
|
3342
3271
|
},
|
|
3343
3272
|
"node_modules/@expo/osascript": {
|
|
3344
|
-
"version": "2.3.
|
|
3345
|
-
"integrity": "sha512
|
|
3273
|
+
"version": "2.3.8",
|
|
3274
|
+
"integrity": "sha512-/TuOZvSG7Nn0I8c+FcEaoHeBO07yu6vwDgk7rZVvAXoeAK5rkA09jRyjYsZo+0tMEFaToBeywA6pj50Mb3ny9w==",
|
|
3346
3275
|
"license": "MIT",
|
|
3347
3276
|
"peer": true,
|
|
3348
3277
|
"dependencies": {
|
|
@@ -3354,12 +3283,12 @@
|
|
|
3354
3283
|
}
|
|
3355
3284
|
},
|
|
3356
3285
|
"node_modules/@expo/package-manager": {
|
|
3357
|
-
"version": "1.9.
|
|
3358
|
-
"integrity": "sha512-
|
|
3286
|
+
"version": "1.9.10",
|
|
3287
|
+
"integrity": "sha512-axJm+NOj3jVxep49va/+L3KkF3YW/dkV+RwzqUJedZrv4LeTqOG4rhrCaCPXHTvLqCTDKu6j0Xyd28N7mnxsGA==",
|
|
3359
3288
|
"license": "MIT",
|
|
3360
3289
|
"peer": true,
|
|
3361
3290
|
"dependencies": {
|
|
3362
|
-
"@expo/json-file": "^10.0.
|
|
3291
|
+
"@expo/json-file": "^10.0.8",
|
|
3363
3292
|
"@expo/spawn-async": "^1.7.2",
|
|
3364
3293
|
"chalk": "^4.0.0",
|
|
3365
3294
|
"npm-package-arg": "^11.0.0",
|
|
@@ -3613,8 +3542,8 @@
|
|
|
3613
3542
|
}
|
|
3614
3543
|
},
|
|
3615
3544
|
"node_modules/@expo/plist": {
|
|
3616
|
-
"version": "0.4.
|
|
3617
|
-
"integrity": "sha512-
|
|
3545
|
+
"version": "0.4.8",
|
|
3546
|
+
"integrity": "sha512-pfNtErGGzzRwHP+5+RqswzPDKkZrx+Cli0mzjQaus1ZWFsog5ibL+nVT3NcporW51o8ggnt7x813vtRbPiyOrQ==",
|
|
3618
3547
|
"license": "MIT",
|
|
3619
3548
|
"dependencies": {
|
|
3620
3549
|
"@xmldom/xmldom": "^0.8.8",
|
|
@@ -3623,15 +3552,15 @@
|
|
|
3623
3552
|
}
|
|
3624
3553
|
},
|
|
3625
3554
|
"node_modules/@expo/prebuild-config": {
|
|
3626
|
-
"version": "54.0.
|
|
3627
|
-
"integrity": "sha512-
|
|
3555
|
+
"version": "54.0.8",
|
|
3556
|
+
"integrity": "sha512-EA7N4dloty2t5Rde+HP0IEE+nkAQiu4A/+QGZGT9mFnZ5KKjPPkqSyYcRvP5bhQE10D+tvz6X0ngZpulbMdbsg==",
|
|
3628
3557
|
"license": "MIT",
|
|
3629
3558
|
"dependencies": {
|
|
3630
|
-
"@expo/config": "~12.0.
|
|
3631
|
-
"@expo/config-plugins": "~54.0.
|
|
3632
|
-
"@expo/config-types": "^54.0.
|
|
3633
|
-
"@expo/image-utils": "^0.8.
|
|
3634
|
-
"@expo/json-file": "^10.0.
|
|
3559
|
+
"@expo/config": "~12.0.13",
|
|
3560
|
+
"@expo/config-plugins": "~54.0.4",
|
|
3561
|
+
"@expo/config-types": "^54.0.10",
|
|
3562
|
+
"@expo/image-utils": "^0.8.8",
|
|
3563
|
+
"@expo/json-file": "^10.0.8",
|
|
3635
3564
|
"@react-native/normalize-colors": "0.81.5",
|
|
3636
3565
|
"debug": "^4.3.1",
|
|
3637
3566
|
"resolve-from": "^5.0.0",
|
|
@@ -3648,8 +3577,8 @@
|
|
|
3648
3577
|
"license": "MIT"
|
|
3649
3578
|
},
|
|
3650
3579
|
"node_modules/@expo/prebuild-config/node_modules/semver": {
|
|
3651
|
-
"version": "7.7.
|
|
3652
|
-
"integrity": "sha512-
|
|
3580
|
+
"version": "7.7.4",
|
|
3581
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
3653
3582
|
"license": "ISC",
|
|
3654
3583
|
"bin": {
|
|
3655
3584
|
"semver": "bin/semver.js"
|
|
@@ -3659,8 +3588,8 @@
|
|
|
3659
3588
|
}
|
|
3660
3589
|
},
|
|
3661
3590
|
"node_modules/@expo/schema-utils": {
|
|
3662
|
-
"version": "0.1.
|
|
3663
|
-
"integrity": "sha512-
|
|
3591
|
+
"version": "0.1.8",
|
|
3592
|
+
"integrity": "sha512-9I6ZqvnAvKKDiO+ZF8BpQQFYWXOJvTAL5L/227RUbWG1OVZDInFifzCBiqAZ3b67NRfeAgpgvbA7rejsqhY62A==",
|
|
3664
3593
|
"license": "MIT",
|
|
3665
3594
|
"peer": true
|
|
3666
3595
|
},
|
|
@@ -3703,29 +3632,19 @@
|
|
|
3703
3632
|
"peer": true
|
|
3704
3633
|
},
|
|
3705
3634
|
"node_modules/@expo/xcpretty": {
|
|
3706
|
-
"version": "4.
|
|
3707
|
-
"integrity": "sha512-
|
|
3635
|
+
"version": "4.4.0",
|
|
3636
|
+
"integrity": "sha512-o2qDlTqJ606h4xR36H2zWTywmZ3v3842K6TU8Ik2n1mfW0S580VHlt3eItVYdLYz+klaPp7CXqanja8eASZjRw==",
|
|
3708
3637
|
"license": "BSD-3-Clause",
|
|
3709
3638
|
"peer": true,
|
|
3710
3639
|
"dependencies": {
|
|
3711
|
-
"@babel/code-frame": "7.
|
|
3640
|
+
"@babel/code-frame": "^7.20.0",
|
|
3712
3641
|
"chalk": "^4.1.0",
|
|
3713
|
-
"find-up": "^5.0.0",
|
|
3714
3642
|
"js-yaml": "^4.1.0"
|
|
3715
3643
|
},
|
|
3716
3644
|
"bin": {
|
|
3717
3645
|
"excpretty": "build/cli.js"
|
|
3718
3646
|
}
|
|
3719
3647
|
},
|
|
3720
|
-
"node_modules/@expo/xcpretty/node_modules/@babel/code-frame": {
|
|
3721
|
-
"version": "7.10.4",
|
|
3722
|
-
"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
|
|
3723
|
-
"license": "MIT",
|
|
3724
|
-
"peer": true,
|
|
3725
|
-
"dependencies": {
|
|
3726
|
-
"@babel/highlight": "^7.10.4"
|
|
3727
|
-
}
|
|
3728
|
-
},
|
|
3729
3648
|
"node_modules/@expo/xcpretty/node_modules/ansi-styles": {
|
|
3730
3649
|
"version": "4.3.0",
|
|
3731
3650
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
@@ -3763,22 +3682,6 @@
|
|
|
3763
3682
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
3764
3683
|
}
|
|
3765
3684
|
},
|
|
3766
|
-
"node_modules/@expo/xcpretty/node_modules/find-up": {
|
|
3767
|
-
"version": "5.0.0",
|
|
3768
|
-
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
|
|
3769
|
-
"license": "MIT",
|
|
3770
|
-
"peer": true,
|
|
3771
|
-
"dependencies": {
|
|
3772
|
-
"locate-path": "^6.0.0",
|
|
3773
|
-
"path-exists": "^4.0.0"
|
|
3774
|
-
},
|
|
3775
|
-
"engines": {
|
|
3776
|
-
"node": ">=10"
|
|
3777
|
-
},
|
|
3778
|
-
"funding": {
|
|
3779
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3780
|
-
}
|
|
3781
|
-
},
|
|
3782
3685
|
"node_modules/@expo/xcpretty/node_modules/js-yaml": {
|
|
3783
3686
|
"version": "4.1.1",
|
|
3784
3687
|
"integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
|
|
@@ -3791,36 +3694,6 @@
|
|
|
3791
3694
|
"js-yaml": "bin/js-yaml.js"
|
|
3792
3695
|
}
|
|
3793
3696
|
},
|
|
3794
|
-
"node_modules/@expo/xcpretty/node_modules/locate-path": {
|
|
3795
|
-
"version": "6.0.0",
|
|
3796
|
-
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
|
|
3797
|
-
"license": "MIT",
|
|
3798
|
-
"peer": true,
|
|
3799
|
-
"dependencies": {
|
|
3800
|
-
"p-locate": "^5.0.0"
|
|
3801
|
-
},
|
|
3802
|
-
"engines": {
|
|
3803
|
-
"node": ">=10"
|
|
3804
|
-
},
|
|
3805
|
-
"funding": {
|
|
3806
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3807
|
-
}
|
|
3808
|
-
},
|
|
3809
|
-
"node_modules/@expo/xcpretty/node_modules/p-locate": {
|
|
3810
|
-
"version": "5.0.0",
|
|
3811
|
-
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
|
|
3812
|
-
"license": "MIT",
|
|
3813
|
-
"peer": true,
|
|
3814
|
-
"dependencies": {
|
|
3815
|
-
"p-limit": "^3.0.2"
|
|
3816
|
-
},
|
|
3817
|
-
"engines": {
|
|
3818
|
-
"node": ">=10"
|
|
3819
|
-
},
|
|
3820
|
-
"funding": {
|
|
3821
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
3822
|
-
}
|
|
3823
|
-
},
|
|
3824
3697
|
"node_modules/@humanwhocodes/config-array": {
|
|
3825
3698
|
"version": "0.13.0",
|
|
3826
3699
|
"integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
|
|
@@ -3885,44 +3758,11 @@
|
|
|
3885
3758
|
"license": "ISC"
|
|
3886
3759
|
},
|
|
3887
3760
|
"node_modules/@isaacs/cliui": {
|
|
3888
|
-
"version": "
|
|
3889
|
-
"integrity": "sha512-
|
|
3890
|
-
"license": "
|
|
3891
|
-
"dependencies": {
|
|
3892
|
-
"string-width": "^5.1.2",
|
|
3893
|
-
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
3894
|
-
"strip-ansi": "^7.0.1",
|
|
3895
|
-
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
3896
|
-
"wrap-ansi": "^8.1.0",
|
|
3897
|
-
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
3898
|
-
},
|
|
3899
|
-
"engines": {
|
|
3900
|
-
"node": ">=12"
|
|
3901
|
-
}
|
|
3902
|
-
},
|
|
3903
|
-
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
|
|
3904
|
-
"version": "6.2.2",
|
|
3905
|
-
"integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
|
|
3906
|
-
"license": "MIT",
|
|
3907
|
-
"engines": {
|
|
3908
|
-
"node": ">=12"
|
|
3909
|
-
},
|
|
3910
|
-
"funding": {
|
|
3911
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
3912
|
-
}
|
|
3913
|
-
},
|
|
3914
|
-
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
|
|
3915
|
-
"version": "7.1.2",
|
|
3916
|
-
"integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
|
|
3917
|
-
"license": "MIT",
|
|
3918
|
-
"dependencies": {
|
|
3919
|
-
"ansi-regex": "^6.0.1"
|
|
3920
|
-
},
|
|
3761
|
+
"version": "9.0.0",
|
|
3762
|
+
"integrity": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==",
|
|
3763
|
+
"license": "BlueOak-1.0.0",
|
|
3921
3764
|
"engines": {
|
|
3922
|
-
"node": ">=
|
|
3923
|
-
},
|
|
3924
|
-
"funding": {
|
|
3925
|
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
3765
|
+
"node": ">=18"
|
|
3926
3766
|
}
|
|
3927
3767
|
},
|
|
3928
3768
|
"node_modules/@isaacs/fs-minipass": {
|
|
@@ -4252,7 +4092,7 @@
|
|
|
4252
4092
|
"node_modules/@jest/reporters/node_modules/glob": {
|
|
4253
4093
|
"version": "7.2.3",
|
|
4254
4094
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
4255
|
-
"deprecated": "
|
|
4095
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
4256
4096
|
"dev": true,
|
|
4257
4097
|
"license": "ISC",
|
|
4258
4098
|
"dependencies": {
|
|
@@ -4287,8 +4127,8 @@
|
|
|
4287
4127
|
}
|
|
4288
4128
|
},
|
|
4289
4129
|
"node_modules/@jest/reporters/node_modules/semver": {
|
|
4290
|
-
"version": "7.7.
|
|
4291
|
-
"integrity": "sha512-
|
|
4130
|
+
"version": "7.7.4",
|
|
4131
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
4292
4132
|
"dev": true,
|
|
4293
4133
|
"license": "ISC",
|
|
4294
4134
|
"bin": {
|
|
@@ -4701,6 +4541,7 @@
|
|
|
4701
4541
|
"node_modules/@pkgjs/parseargs": {
|
|
4702
4542
|
"version": "0.11.0",
|
|
4703
4543
|
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
|
|
4544
|
+
"dev": true,
|
|
4704
4545
|
"license": "MIT",
|
|
4705
4546
|
"optional": true,
|
|
4706
4547
|
"engines": {
|
|
@@ -4838,8 +4679,8 @@
|
|
|
4838
4679
|
}
|
|
4839
4680
|
},
|
|
4840
4681
|
"node_modules/@react-native-community/eslint-config/node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": {
|
|
4841
|
-
"version": "7.7.
|
|
4842
|
-
"integrity": "sha512-
|
|
4682
|
+
"version": "7.7.4",
|
|
4683
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
4843
4684
|
"dev": true,
|
|
4844
4685
|
"license": "ISC",
|
|
4845
4686
|
"bin": {
|
|
@@ -4956,8 +4797,8 @@
|
|
|
4956
4797
|
}
|
|
4957
4798
|
},
|
|
4958
4799
|
"node_modules/@react-native-community/eslint-config/node_modules/eslint-plugin-jest/node_modules/semver": {
|
|
4959
|
-
"version": "7.7.
|
|
4960
|
-
"integrity": "sha512-
|
|
4800
|
+
"version": "7.7.4",
|
|
4801
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
4961
4802
|
"dev": true,
|
|
4962
4803
|
"license": "ISC",
|
|
4963
4804
|
"bin": {
|
|
@@ -5199,21 +5040,6 @@
|
|
|
5199
5040
|
"@babel/core": "*"
|
|
5200
5041
|
}
|
|
5201
5042
|
},
|
|
5202
|
-
"node_modules/@react-native/codegen/node_modules/ansi-styles": {
|
|
5203
|
-
"version": "4.3.0",
|
|
5204
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
5205
|
-
"license": "MIT",
|
|
5206
|
-
"peer": true,
|
|
5207
|
-
"dependencies": {
|
|
5208
|
-
"color-convert": "^2.0.1"
|
|
5209
|
-
},
|
|
5210
|
-
"engines": {
|
|
5211
|
-
"node": ">=8"
|
|
5212
|
-
},
|
|
5213
|
-
"funding": {
|
|
5214
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
5215
|
-
}
|
|
5216
|
-
},
|
|
5217
5043
|
"node_modules/@react-native/codegen/node_modules/cliui": {
|
|
5218
5044
|
"version": "8.0.1",
|
|
5219
5045
|
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
|
|
@@ -5228,16 +5054,10 @@
|
|
|
5228
5054
|
"node": ">=12"
|
|
5229
5055
|
}
|
|
5230
5056
|
},
|
|
5231
|
-
"node_modules/@react-native/codegen/node_modules/emoji-regex": {
|
|
5232
|
-
"version": "8.0.0",
|
|
5233
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
5234
|
-
"license": "MIT",
|
|
5235
|
-
"peer": true
|
|
5236
|
-
},
|
|
5237
5057
|
"node_modules/@react-native/codegen/node_modules/glob": {
|
|
5238
5058
|
"version": "7.2.3",
|
|
5239
5059
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
5240
|
-
"deprecated": "
|
|
5060
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
5241
5061
|
"license": "ISC",
|
|
5242
5062
|
"peer": true,
|
|
5243
5063
|
"dependencies": {
|
|
@@ -5255,37 +5075,6 @@
|
|
|
5255
5075
|
"url": "https://github.com/sponsors/isaacs"
|
|
5256
5076
|
}
|
|
5257
5077
|
},
|
|
5258
|
-
"node_modules/@react-native/codegen/node_modules/string-width": {
|
|
5259
|
-
"version": "4.2.3",
|
|
5260
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
5261
|
-
"license": "MIT",
|
|
5262
|
-
"peer": true,
|
|
5263
|
-
"dependencies": {
|
|
5264
|
-
"emoji-regex": "^8.0.0",
|
|
5265
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
5266
|
-
"strip-ansi": "^6.0.1"
|
|
5267
|
-
},
|
|
5268
|
-
"engines": {
|
|
5269
|
-
"node": ">=8"
|
|
5270
|
-
}
|
|
5271
|
-
},
|
|
5272
|
-
"node_modules/@react-native/codegen/node_modules/wrap-ansi": {
|
|
5273
|
-
"version": "7.0.0",
|
|
5274
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
5275
|
-
"license": "MIT",
|
|
5276
|
-
"peer": true,
|
|
5277
|
-
"dependencies": {
|
|
5278
|
-
"ansi-styles": "^4.0.0",
|
|
5279
|
-
"string-width": "^4.1.0",
|
|
5280
|
-
"strip-ansi": "^6.0.0"
|
|
5281
|
-
},
|
|
5282
|
-
"engines": {
|
|
5283
|
-
"node": ">=10"
|
|
5284
|
-
},
|
|
5285
|
-
"funding": {
|
|
5286
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
5287
|
-
}
|
|
5288
|
-
},
|
|
5289
5078
|
"node_modules/@react-native/codegen/node_modules/yargs": {
|
|
5290
5079
|
"version": "17.7.2",
|
|
5291
5080
|
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
|
|
@@ -5343,8 +5132,8 @@
|
|
|
5343
5132
|
}
|
|
5344
5133
|
},
|
|
5345
5134
|
"node_modules/@react-native/community-cli-plugin/node_modules/semver": {
|
|
5346
|
-
"version": "7.7.
|
|
5347
|
-
"integrity": "sha512-
|
|
5135
|
+
"version": "7.7.4",
|
|
5136
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
5348
5137
|
"license": "ISC",
|
|
5349
5138
|
"bin": {
|
|
5350
5139
|
"semver": "bin/semver.js"
|
|
@@ -5412,11 +5201,11 @@
|
|
|
5412
5201
|
"license": "MIT"
|
|
5413
5202
|
},
|
|
5414
5203
|
"node_modules/@react-navigation/core": {
|
|
5415
|
-
"version": "7.
|
|
5416
|
-
"integrity": "sha512-
|
|
5204
|
+
"version": "7.14.0",
|
|
5205
|
+
"integrity": "sha512-tMpzskBzVp0E7CRNdNtJIdXjk54Kwe/TF9ViXAef+YFM1kSfGv4e/B2ozfXE+YyYgmh4WavTv8fkdJz1CNyu+g==",
|
|
5417
5206
|
"license": "MIT",
|
|
5418
5207
|
"dependencies": {
|
|
5419
|
-
"@react-navigation/routers": "^7.5.
|
|
5208
|
+
"@react-navigation/routers": "^7.5.3",
|
|
5420
5209
|
"escape-string-regexp": "^4.0.0",
|
|
5421
5210
|
"fast-deep-equal": "^3.1.3",
|
|
5422
5211
|
"nanoid": "^3.3.11",
|
|
@@ -5450,8 +5239,8 @@
|
|
|
5450
5239
|
}
|
|
5451
5240
|
},
|
|
5452
5241
|
"node_modules/@react-navigation/drawer/node_modules/@react-navigation/elements": {
|
|
5453
|
-
"version": "2.
|
|
5454
|
-
"integrity": "sha512-
|
|
5242
|
+
"version": "2.9.5",
|
|
5243
|
+
"integrity": "sha512-iHZU8rRN1014Upz73AqNVXDvSMZDh5/ktQ1CMe21rdgnOY79RWtHHBp9qOS3VtqlUVYGkuX5GEw5mDt4tKdl0g==",
|
|
5455
5244
|
"license": "MIT",
|
|
5456
5245
|
"dependencies": {
|
|
5457
5246
|
"color": "^4.2.3",
|
|
@@ -5460,7 +5249,7 @@
|
|
|
5460
5249
|
},
|
|
5461
5250
|
"peerDependencies": {
|
|
5462
5251
|
"@react-native-masked-view/masked-view": ">= 0.2.0",
|
|
5463
|
-
"@react-navigation/native": "^7.1.
|
|
5252
|
+
"@react-navigation/native": "^7.1.28",
|
|
5464
5253
|
"react": ">= 18.2.0",
|
|
5465
5254
|
"react-native": "*",
|
|
5466
5255
|
"react-native-safe-area-context": ">= 4.0.0"
|
|
@@ -5488,8 +5277,8 @@
|
|
|
5488
5277
|
}
|
|
5489
5278
|
},
|
|
5490
5279
|
"node_modules/@react-navigation/routers": {
|
|
5491
|
-
"version": "7.5.
|
|
5492
|
-
"integrity": "sha512-
|
|
5280
|
+
"version": "7.5.3",
|
|
5281
|
+
"integrity": "sha512-1tJHg4KKRJuQ1/EvJxatrMef3NZXEPzwUIUZ3n1yJ2t7Q97siwRtbynRpQG9/69ebbtiZ8W3ScOZF/OmhvM4Rg==",
|
|
5493
5282
|
"license": "MIT",
|
|
5494
5283
|
"dependencies": {
|
|
5495
5284
|
"nanoid": "^3.3.11"
|
|
@@ -5513,8 +5302,8 @@
|
|
|
5513
5302
|
}
|
|
5514
5303
|
},
|
|
5515
5304
|
"node_modules/@react-navigation/stack/node_modules/@react-navigation/elements": {
|
|
5516
|
-
"version": "2.
|
|
5517
|
-
"integrity": "sha512-
|
|
5305
|
+
"version": "2.9.5",
|
|
5306
|
+
"integrity": "sha512-iHZU8rRN1014Upz73AqNVXDvSMZDh5/ktQ1CMe21rdgnOY79RWtHHBp9qOS3VtqlUVYGkuX5GEw5mDt4tKdl0g==",
|
|
5518
5307
|
"license": "MIT",
|
|
5519
5308
|
"dependencies": {
|
|
5520
5309
|
"color": "^4.2.3",
|
|
@@ -5523,7 +5312,7 @@
|
|
|
5523
5312
|
},
|
|
5524
5313
|
"peerDependencies": {
|
|
5525
5314
|
"@react-native-masked-view/masked-view": ">= 0.2.0",
|
|
5526
|
-
"@react-navigation/native": "^7.1.
|
|
5315
|
+
"@react-navigation/native": "^7.1.28",
|
|
5527
5316
|
"react": ">= 18.2.0",
|
|
5528
5317
|
"react-native": "*",
|
|
5529
5318
|
"react-native-safe-area-context": ">= 4.0.0"
|
|
@@ -5553,8 +5342,8 @@
|
|
|
5553
5342
|
}
|
|
5554
5343
|
},
|
|
5555
5344
|
"node_modules/@sinclair/typebox": {
|
|
5556
|
-
"version": "0.27.
|
|
5557
|
-
"integrity": "sha512
|
|
5345
|
+
"version": "0.27.10",
|
|
5346
|
+
"integrity": "sha512-MTBk/3jGLNB2tVxv6uLlFh1iu64iYOQ2PbdOSK3NW8JZsmlaOh2q6sdtKowBhfw8QFLmYNzTW4/oK4uATIi6ZA==",
|
|
5558
5347
|
"license": "MIT"
|
|
5559
5348
|
},
|
|
5560
5349
|
"node_modules/@sindresorhus/is": {
|
|
@@ -5819,8 +5608,8 @@
|
|
|
5819
5608
|
}
|
|
5820
5609
|
},
|
|
5821
5610
|
"node_modules/@types/d3-shape": {
|
|
5822
|
-
"version": "3.1.
|
|
5823
|
-
"integrity": "sha512-
|
|
5611
|
+
"version": "3.1.8",
|
|
5612
|
+
"integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
|
|
5824
5613
|
"dev": true,
|
|
5825
5614
|
"license": "MIT",
|
|
5826
5615
|
"dependencies": {
|
|
@@ -5850,8 +5639,8 @@
|
|
|
5850
5639
|
}
|
|
5851
5640
|
},
|
|
5852
5641
|
"node_modules/@types/enzyme/node_modules/@types/react": {
|
|
5853
|
-
"version": "16.14.
|
|
5854
|
-
"integrity": "sha512-
|
|
5642
|
+
"version": "16.14.69",
|
|
5643
|
+
"integrity": "sha512-NdnAamzkxLX9LBssSdt9Q0tQ3LR94hYxotI4/sRUs1vHKFXaDx9xDbK8S4wuw5bwrxiiXbTYyhKeITtFnwDvEA==",
|
|
5855
5644
|
"dev": true,
|
|
5856
5645
|
"license": "MIT",
|
|
5857
5646
|
"dependencies": {
|
|
@@ -5903,8 +5692,8 @@
|
|
|
5903
5692
|
"license": "MIT"
|
|
5904
5693
|
},
|
|
5905
5694
|
"node_modules/@types/http-cache-semantics": {
|
|
5906
|
-
"version": "4.0
|
|
5907
|
-
"integrity": "sha512-
|
|
5695
|
+
"version": "4.2.0",
|
|
5696
|
+
"integrity": "sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==",
|
|
5908
5697
|
"dev": true,
|
|
5909
5698
|
"license": "MIT"
|
|
5910
5699
|
},
|
|
@@ -5966,8 +5755,8 @@
|
|
|
5966
5755
|
}
|
|
5967
5756
|
},
|
|
5968
5757
|
"node_modules/@types/lodash": {
|
|
5969
|
-
"version": "4.17.
|
|
5970
|
-
"integrity": "sha512-
|
|
5758
|
+
"version": "4.17.23",
|
|
5759
|
+
"integrity": "sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==",
|
|
5971
5760
|
"dev": true,
|
|
5972
5761
|
"license": "MIT"
|
|
5973
5762
|
},
|
|
@@ -5987,8 +5776,8 @@
|
|
|
5987
5776
|
"license": "MIT"
|
|
5988
5777
|
},
|
|
5989
5778
|
"node_modules/@types/node": {
|
|
5990
|
-
"version": "
|
|
5991
|
-
"integrity": "sha512-
|
|
5779
|
+
"version": "25.2.3",
|
|
5780
|
+
"integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==",
|
|
5992
5781
|
"license": "MIT",
|
|
5993
5782
|
"dependencies": {
|
|
5994
5783
|
"undici-types": "~7.16.0"
|
|
@@ -6156,8 +5945,8 @@
|
|
|
6156
5945
|
}
|
|
6157
5946
|
},
|
|
6158
5947
|
"node_modules/@typescript-eslint/type-utils/node_modules/semver": {
|
|
6159
|
-
"version": "7.7.
|
|
6160
|
-
"integrity": "sha512-
|
|
5948
|
+
"version": "7.7.4",
|
|
5949
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
6161
5950
|
"dev": true,
|
|
6162
5951
|
"license": "ISC",
|
|
6163
5952
|
"bin": {
|
|
@@ -6208,8 +5997,8 @@
|
|
|
6208
5997
|
}
|
|
6209
5998
|
},
|
|
6210
5999
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
|
6211
|
-
"version": "7.7.
|
|
6212
|
-
"integrity": "sha512-
|
|
6000
|
+
"version": "7.7.4",
|
|
6001
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
6213
6002
|
"dev": true,
|
|
6214
6003
|
"license": "ISC",
|
|
6215
6004
|
"bin": {
|
|
@@ -6278,8 +6067,8 @@
|
|
|
6278
6067
|
}
|
|
6279
6068
|
},
|
|
6280
6069
|
"node_modules/@wavemaker/variables": {
|
|
6281
|
-
"version": "11.
|
|
6282
|
-
"integrity": "sha512-
|
|
6070
|
+
"version": "11.15.0-1.246",
|
|
6071
|
+
"integrity": "sha512-yBVXZv+uaKoibeN1+VH4LQ6qk0bQjoViJMsebehxCyI/jpFGfARB+POI/0DT1TxTLCPEigPnPbchgeXC3KpObA==",
|
|
6283
6072
|
"license": "ISC",
|
|
6284
6073
|
"dependencies": {
|
|
6285
6074
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -6661,26 +6450,6 @@
|
|
|
6661
6450
|
"string-width": "^4.1.0"
|
|
6662
6451
|
}
|
|
6663
6452
|
},
|
|
6664
|
-
"node_modules/ansi-align/node_modules/emoji-regex": {
|
|
6665
|
-
"version": "8.0.0",
|
|
6666
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
6667
|
-
"dev": true,
|
|
6668
|
-
"license": "MIT"
|
|
6669
|
-
},
|
|
6670
|
-
"node_modules/ansi-align/node_modules/string-width": {
|
|
6671
|
-
"version": "4.2.3",
|
|
6672
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
6673
|
-
"dev": true,
|
|
6674
|
-
"license": "MIT",
|
|
6675
|
-
"dependencies": {
|
|
6676
|
-
"emoji-regex": "^8.0.0",
|
|
6677
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
6678
|
-
"strip-ansi": "^6.0.1"
|
|
6679
|
-
},
|
|
6680
|
-
"engines": {
|
|
6681
|
-
"node": ">=8"
|
|
6682
|
-
}
|
|
6683
|
-
},
|
|
6684
6453
|
"node_modules/ansi-escapes": {
|
|
6685
6454
|
"version": "4.3.2",
|
|
6686
6455
|
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
|
|
@@ -7303,12 +7072,12 @@
|
|
|
7303
7072
|
}
|
|
7304
7073
|
},
|
|
7305
7074
|
"node_modules/babel-plugin-polyfill-corejs2": {
|
|
7306
|
-
"version": "0.4.
|
|
7307
|
-
"integrity": "sha512-
|
|
7075
|
+
"version": "0.4.15",
|
|
7076
|
+
"integrity": "sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==",
|
|
7308
7077
|
"license": "MIT",
|
|
7309
7078
|
"dependencies": {
|
|
7310
|
-
"@babel/compat-data": "^7.
|
|
7311
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
7079
|
+
"@babel/compat-data": "^7.28.6",
|
|
7080
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6",
|
|
7312
7081
|
"semver": "^6.3.1"
|
|
7313
7082
|
},
|
|
7314
7083
|
"peerDependencies": {
|
|
@@ -7329,11 +7098,11 @@
|
|
|
7329
7098
|
}
|
|
7330
7099
|
},
|
|
7331
7100
|
"node_modules/babel-plugin-polyfill-regenerator": {
|
|
7332
|
-
"version": "0.6.
|
|
7333
|
-
"integrity": "sha512-
|
|
7101
|
+
"version": "0.6.6",
|
|
7102
|
+
"integrity": "sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==",
|
|
7334
7103
|
"license": "MIT",
|
|
7335
7104
|
"dependencies": {
|
|
7336
|
-
"@babel/helper-define-polyfill-provider": "^0.6.
|
|
7105
|
+
"@babel/helper-define-polyfill-provider": "^0.6.6"
|
|
7337
7106
|
},
|
|
7338
7107
|
"peerDependencies": {
|
|
7339
7108
|
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
|
|
@@ -7906,8 +7675,8 @@
|
|
|
7906
7675
|
}
|
|
7907
7676
|
},
|
|
7908
7677
|
"node_modules/babel-preset-expo": {
|
|
7909
|
-
"version": "54.0.
|
|
7910
|
-
"integrity": "sha512-
|
|
7678
|
+
"version": "54.0.10",
|
|
7679
|
+
"integrity": "sha512-wTt7POavLFypLcPW/uC5v8y+mtQKDJiyGLzYCjqr9tx0Qc3vCXcDKk1iCFIj/++Iy5CWhhTflEa7VvVPNWeCfw==",
|
|
7911
7680
|
"license": "MIT",
|
|
7912
7681
|
"peer": true,
|
|
7913
7682
|
"dependencies": {
|
|
@@ -7949,13 +7718,13 @@
|
|
|
7949
7718
|
}
|
|
7950
7719
|
},
|
|
7951
7720
|
"node_modules/babel-preset-expo/node_modules/@babel/plugin-transform-class-static-block": {
|
|
7952
|
-
"version": "7.28.
|
|
7953
|
-
"integrity": "sha512-
|
|
7721
|
+
"version": "7.28.6",
|
|
7722
|
+
"integrity": "sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==",
|
|
7954
7723
|
"license": "MIT",
|
|
7955
7724
|
"peer": true,
|
|
7956
7725
|
"dependencies": {
|
|
7957
|
-
"@babel/helper-create-class-features-plugin": "^7.28.
|
|
7958
|
-
"@babel/helper-plugin-utils": "^7.
|
|
7726
|
+
"@babel/helper-create-class-features-plugin": "^7.28.6",
|
|
7727
|
+
"@babel/helper-plugin-utils": "^7.28.6"
|
|
7959
7728
|
},
|
|
7960
7729
|
"engines": {
|
|
7961
7730
|
"node": ">=6.9.0"
|
|
@@ -8143,8 +7912,8 @@
|
|
|
8143
7912
|
"license": "MIT"
|
|
8144
7913
|
},
|
|
8145
7914
|
"node_modules/baseline-browser-mapping": {
|
|
8146
|
-
"version": "2.
|
|
8147
|
-
"integrity": "sha512-
|
|
7915
|
+
"version": "2.9.19",
|
|
7916
|
+
"integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
|
|
8148
7917
|
"license": "Apache-2.0",
|
|
8149
7918
|
"bin": {
|
|
8150
7919
|
"baseline-browser-mapping": "dist/cli.js"
|
|
@@ -8248,26 +8017,6 @@
|
|
|
8248
8017
|
"node": ">=8"
|
|
8249
8018
|
}
|
|
8250
8019
|
},
|
|
8251
|
-
"node_modules/boxen/node_modules/emoji-regex": {
|
|
8252
|
-
"version": "8.0.0",
|
|
8253
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
8254
|
-
"dev": true,
|
|
8255
|
-
"license": "MIT"
|
|
8256
|
-
},
|
|
8257
|
-
"node_modules/boxen/node_modules/string-width": {
|
|
8258
|
-
"version": "4.2.3",
|
|
8259
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
8260
|
-
"dev": true,
|
|
8261
|
-
"license": "MIT",
|
|
8262
|
-
"dependencies": {
|
|
8263
|
-
"emoji-regex": "^8.0.0",
|
|
8264
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
8265
|
-
"strip-ansi": "^6.0.1"
|
|
8266
|
-
},
|
|
8267
|
-
"engines": {
|
|
8268
|
-
"node": ">=8"
|
|
8269
|
-
}
|
|
8270
|
-
},
|
|
8271
8020
|
"node_modules/boxen/node_modules/type-fest": {
|
|
8272
8021
|
"version": "0.8.1",
|
|
8273
8022
|
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
|
|
@@ -8317,8 +8066,8 @@
|
|
|
8317
8066
|
}
|
|
8318
8067
|
},
|
|
8319
8068
|
"node_modules/browserslist": {
|
|
8320
|
-
"version": "4.28.
|
|
8321
|
-
"integrity": "sha512-
|
|
8069
|
+
"version": "4.28.1",
|
|
8070
|
+
"integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
|
|
8322
8071
|
"funding": [
|
|
8323
8072
|
{
|
|
8324
8073
|
"type": "opencollective",
|
|
@@ -8335,11 +8084,11 @@
|
|
|
8335
8084
|
],
|
|
8336
8085
|
"license": "MIT",
|
|
8337
8086
|
"dependencies": {
|
|
8338
|
-
"baseline-browser-mapping": "^2.
|
|
8339
|
-
"caniuse-lite": "^1.0.
|
|
8340
|
-
"electron-to-chromium": "^1.5.
|
|
8087
|
+
"baseline-browser-mapping": "^2.9.0",
|
|
8088
|
+
"caniuse-lite": "^1.0.30001759",
|
|
8089
|
+
"electron-to-chromium": "^1.5.263",
|
|
8341
8090
|
"node-releases": "^2.0.27",
|
|
8342
|
-
"update-browserslist-db": "^1.
|
|
8091
|
+
"update-browserslist-db": "^1.2.0"
|
|
8343
8092
|
},
|
|
8344
8093
|
"bin": {
|
|
8345
8094
|
"browserslist": "cli.js"
|
|
@@ -8517,8 +8266,8 @@
|
|
|
8517
8266
|
}
|
|
8518
8267
|
},
|
|
8519
8268
|
"node_modules/caniuse-lite": {
|
|
8520
|
-
"version": "1.0.
|
|
8521
|
-
"integrity": "sha512-
|
|
8269
|
+
"version": "1.0.30001769",
|
|
8270
|
+
"integrity": "sha512-BCfFL1sHijQlBGWBMuJyhZUhzo7wer5sVj9hqekB/7xn0Ypy+pER/edCYQm4exbXj4WiySGp40P8UuTh6w1srg==",
|
|
8522
8271
|
"funding": [
|
|
8523
8272
|
{
|
|
8524
8273
|
"type": "opencollective",
|
|
@@ -8563,8 +8312,8 @@
|
|
|
8563
8312
|
"license": "MIT"
|
|
8564
8313
|
},
|
|
8565
8314
|
"node_modules/cheerio": {
|
|
8566
|
-
"version": "1.
|
|
8567
|
-
"integrity": "sha512-
|
|
8315
|
+
"version": "1.2.0",
|
|
8316
|
+
"integrity": "sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==",
|
|
8568
8317
|
"dev": true,
|
|
8569
8318
|
"license": "MIT",
|
|
8570
8319
|
"dependencies": {
|
|
@@ -8573,11 +8322,11 @@
|
|
|
8573
8322
|
"domhandler": "^5.0.3",
|
|
8574
8323
|
"domutils": "^3.2.2",
|
|
8575
8324
|
"encoding-sniffer": "^0.2.1",
|
|
8576
|
-
"htmlparser2": "^10.
|
|
8325
|
+
"htmlparser2": "^10.1.0",
|
|
8577
8326
|
"parse5": "^7.3.0",
|
|
8578
8327
|
"parse5-htmlparser2-tree-adapter": "^7.1.0",
|
|
8579
8328
|
"parse5-parser-stream": "^7.1.2",
|
|
8580
|
-
"undici": "^7.
|
|
8329
|
+
"undici": "^7.19.0",
|
|
8581
8330
|
"whatwg-mimetype": "^4.0.0"
|
|
8582
8331
|
},
|
|
8583
8332
|
"engines": {
|
|
@@ -8736,54 +8485,6 @@
|
|
|
8736
8485
|
"wrap-ansi": "^7.0.0"
|
|
8737
8486
|
}
|
|
8738
8487
|
},
|
|
8739
|
-
"node_modules/cliui/node_modules/ansi-styles": {
|
|
8740
|
-
"version": "4.3.0",
|
|
8741
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
8742
|
-
"license": "MIT",
|
|
8743
|
-
"dependencies": {
|
|
8744
|
-
"color-convert": "^2.0.1"
|
|
8745
|
-
},
|
|
8746
|
-
"engines": {
|
|
8747
|
-
"node": ">=8"
|
|
8748
|
-
},
|
|
8749
|
-
"funding": {
|
|
8750
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
8751
|
-
}
|
|
8752
|
-
},
|
|
8753
|
-
"node_modules/cliui/node_modules/emoji-regex": {
|
|
8754
|
-
"version": "8.0.0",
|
|
8755
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
8756
|
-
"license": "MIT"
|
|
8757
|
-
},
|
|
8758
|
-
"node_modules/cliui/node_modules/string-width": {
|
|
8759
|
-
"version": "4.2.3",
|
|
8760
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
8761
|
-
"license": "MIT",
|
|
8762
|
-
"dependencies": {
|
|
8763
|
-
"emoji-regex": "^8.0.0",
|
|
8764
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
8765
|
-
"strip-ansi": "^6.0.1"
|
|
8766
|
-
},
|
|
8767
|
-
"engines": {
|
|
8768
|
-
"node": ">=8"
|
|
8769
|
-
}
|
|
8770
|
-
},
|
|
8771
|
-
"node_modules/cliui/node_modules/wrap-ansi": {
|
|
8772
|
-
"version": "7.0.0",
|
|
8773
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
8774
|
-
"license": "MIT",
|
|
8775
|
-
"dependencies": {
|
|
8776
|
-
"ansi-styles": "^4.0.0",
|
|
8777
|
-
"string-width": "^4.1.0",
|
|
8778
|
-
"strip-ansi": "^6.0.0"
|
|
8779
|
-
},
|
|
8780
|
-
"engines": {
|
|
8781
|
-
"node": ">=10"
|
|
8782
|
-
},
|
|
8783
|
-
"funding": {
|
|
8784
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
8785
|
-
}
|
|
8786
|
-
},
|
|
8787
8488
|
"node_modules/clone": {
|
|
8788
8489
|
"version": "1.0.4",
|
|
8789
8490
|
"integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
|
|
@@ -9503,11 +9204,11 @@
|
|
|
9503
9204
|
"license": "MIT"
|
|
9504
9205
|
},
|
|
9505
9206
|
"node_modules/core-js-compat": {
|
|
9506
|
-
"version": "3.
|
|
9507
|
-
"integrity": "sha512-
|
|
9207
|
+
"version": "3.48.0",
|
|
9208
|
+
"integrity": "sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==",
|
|
9508
9209
|
"license": "MIT",
|
|
9509
9210
|
"dependencies": {
|
|
9510
|
-
"browserslist": "^4.28.
|
|
9211
|
+
"browserslist": "^4.28.1"
|
|
9511
9212
|
},
|
|
9512
9213
|
"funding": {
|
|
9513
9214
|
"type": "opencollective",
|
|
@@ -9515,8 +9216,8 @@
|
|
|
9515
9216
|
}
|
|
9516
9217
|
},
|
|
9517
9218
|
"node_modules/core-js-pure": {
|
|
9518
|
-
"version": "3.
|
|
9519
|
-
"integrity": "sha512-
|
|
9219
|
+
"version": "3.48.0",
|
|
9220
|
+
"integrity": "sha512-1slJgk89tWC51HQ1AEqG+s2VuwpTRr8ocu4n20QUcH1v9lAN0RXen0Q0AABa/DK1I7RrNWLucplOHMx8hfTGTw==",
|
|
9520
9221
|
"hasInstallScript": true,
|
|
9521
9222
|
"license": "MIT",
|
|
9522
9223
|
"funding": {
|
|
@@ -9801,8 +9502,8 @@
|
|
|
9801
9502
|
}
|
|
9802
9503
|
},
|
|
9803
9504
|
"node_modules/d3-format": {
|
|
9804
|
-
"version": "3.1.
|
|
9805
|
-
"integrity": "sha512-
|
|
9505
|
+
"version": "3.1.2",
|
|
9506
|
+
"integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
|
|
9806
9507
|
"dev": true,
|
|
9807
9508
|
"license": "ISC",
|
|
9808
9509
|
"engines": {
|
|
@@ -10082,8 +9783,8 @@
|
|
|
10082
9783
|
}
|
|
10083
9784
|
},
|
|
10084
9785
|
"node_modules/dedent": {
|
|
10085
|
-
"version": "1.7.
|
|
10086
|
-
"integrity": "sha512-
|
|
9786
|
+
"version": "1.7.1",
|
|
9787
|
+
"integrity": "sha512-9JmrhGZpOlEgOLdQgSm0zxFaYoQon408V1v49aqTWuXENVlnCuY9JBZcXZiCsZQWDjTm5Qf/nIvAy77mXDAjEg==",
|
|
10087
9788
|
"dev": true,
|
|
10088
9789
|
"license": "MIT",
|
|
10089
9790
|
"peerDependencies": {
|
|
@@ -10448,6 +10149,7 @@
|
|
|
10448
10149
|
"node_modules/eastasianwidth": {
|
|
10449
10150
|
"version": "0.2.0",
|
|
10450
10151
|
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
|
|
10152
|
+
"dev": true,
|
|
10451
10153
|
"license": "MIT"
|
|
10452
10154
|
},
|
|
10453
10155
|
"node_modules/ee-first": {
|
|
@@ -10456,8 +10158,8 @@
|
|
|
10456
10158
|
"license": "MIT"
|
|
10457
10159
|
},
|
|
10458
10160
|
"node_modules/electron-to-chromium": {
|
|
10459
|
-
"version": "1.5.
|
|
10460
|
-
"integrity": "sha512-
|
|
10161
|
+
"version": "1.5.286",
|
|
10162
|
+
"integrity": "sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==",
|
|
10461
10163
|
"license": "ISC"
|
|
10462
10164
|
},
|
|
10463
10165
|
"node_modules/emittery": {
|
|
@@ -10473,8 +10175,8 @@
|
|
|
10473
10175
|
}
|
|
10474
10176
|
},
|
|
10475
10177
|
"node_modules/emoji-regex": {
|
|
10476
|
-
"version": "
|
|
10477
|
-
"integrity": "sha512-
|
|
10178
|
+
"version": "8.0.0",
|
|
10179
|
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
10478
10180
|
"license": "MIT"
|
|
10479
10181
|
},
|
|
10480
10182
|
"node_modules/encodeurl": {
|
|
@@ -10508,14 +10210,14 @@
|
|
|
10508
10210
|
}
|
|
10509
10211
|
},
|
|
10510
10212
|
"node_modules/enhanced-resolve": {
|
|
10511
|
-
"version": "5.
|
|
10512
|
-
"integrity": "sha512-
|
|
10213
|
+
"version": "5.19.0",
|
|
10214
|
+
"integrity": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==",
|
|
10513
10215
|
"dev": true,
|
|
10514
10216
|
"license": "MIT",
|
|
10515
10217
|
"peer": true,
|
|
10516
10218
|
"dependencies": {
|
|
10517
10219
|
"graceful-fs": "^4.2.4",
|
|
10518
|
-
"tapable": "^2.
|
|
10220
|
+
"tapable": "^2.3.0"
|
|
10519
10221
|
},
|
|
10520
10222
|
"engines": {
|
|
10521
10223
|
"node": ">=10.13.0"
|
|
@@ -10614,8 +10316,8 @@
|
|
|
10614
10316
|
}
|
|
10615
10317
|
},
|
|
10616
10318
|
"node_modules/es-abstract": {
|
|
10617
|
-
"version": "1.24.
|
|
10618
|
-
"integrity": "sha512-
|
|
10319
|
+
"version": "1.24.1",
|
|
10320
|
+
"integrity": "sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==",
|
|
10619
10321
|
"dev": true,
|
|
10620
10322
|
"license": "MIT",
|
|
10621
10323
|
"dependencies": {
|
|
@@ -10704,26 +10406,26 @@
|
|
|
10704
10406
|
}
|
|
10705
10407
|
},
|
|
10706
10408
|
"node_modules/es-iterator-helpers": {
|
|
10707
|
-
"version": "1.2.
|
|
10708
|
-
"integrity": "sha512-
|
|
10409
|
+
"version": "1.2.2",
|
|
10410
|
+
"integrity": "sha512-BrUQ0cPTB/IwXj23HtwHjS9n7O4h9FX94b4xc5zlTHxeLgTAdzYUDyy6KdExAl9lbN5rtfe44xpjpmj9grxs5w==",
|
|
10709
10411
|
"dev": true,
|
|
10710
10412
|
"license": "MIT",
|
|
10711
10413
|
"dependencies": {
|
|
10712
10414
|
"call-bind": "^1.0.8",
|
|
10713
|
-
"call-bound": "^1.0.
|
|
10415
|
+
"call-bound": "^1.0.4",
|
|
10714
10416
|
"define-properties": "^1.2.1",
|
|
10715
|
-
"es-abstract": "^1.
|
|
10417
|
+
"es-abstract": "^1.24.1",
|
|
10716
10418
|
"es-errors": "^1.3.0",
|
|
10717
|
-
"es-set-tostringtag": "^2.0
|
|
10419
|
+
"es-set-tostringtag": "^2.1.0",
|
|
10718
10420
|
"function-bind": "^1.1.2",
|
|
10719
|
-
"get-intrinsic": "^1.
|
|
10421
|
+
"get-intrinsic": "^1.3.0",
|
|
10720
10422
|
"globalthis": "^1.0.4",
|
|
10721
10423
|
"gopd": "^1.2.0",
|
|
10722
10424
|
"has-property-descriptors": "^1.0.2",
|
|
10723
10425
|
"has-proto": "^1.2.0",
|
|
10724
10426
|
"has-symbols": "^1.1.0",
|
|
10725
10427
|
"internal-slot": "^1.1.0",
|
|
10726
|
-
"iterator.prototype": "^1.1.
|
|
10428
|
+
"iterator.prototype": "^1.1.5",
|
|
10727
10429
|
"safe-array-concat": "^1.1.3"
|
|
10728
10430
|
},
|
|
10729
10431
|
"engines": {
|
|
@@ -10731,8 +10433,8 @@
|
|
|
10731
10433
|
}
|
|
10732
10434
|
},
|
|
10733
10435
|
"node_modules/es-module-lexer": {
|
|
10734
|
-
"version": "
|
|
10735
|
-
"integrity": "sha512-
|
|
10436
|
+
"version": "2.0.0",
|
|
10437
|
+
"integrity": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==",
|
|
10736
10438
|
"dev": true,
|
|
10737
10439
|
"license": "MIT",
|
|
10738
10440
|
"peer": true
|
|
@@ -11205,8 +10907,8 @@
|
|
|
11205
10907
|
}
|
|
11206
10908
|
},
|
|
11207
10909
|
"node_modules/esquery": {
|
|
11208
|
-
"version": "1.
|
|
11209
|
-
"integrity": "sha512-
|
|
10910
|
+
"version": "1.7.0",
|
|
10911
|
+
"integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
|
|
11210
10912
|
"dev": true,
|
|
11211
10913
|
"license": "BSD-3-Clause",
|
|
11212
10914
|
"dependencies": {
|
|
@@ -11344,29 +11046,29 @@
|
|
|
11344
11046
|
}
|
|
11345
11047
|
},
|
|
11346
11048
|
"node_modules/expo": {
|
|
11347
|
-
"version": "54.0.
|
|
11348
|
-
"integrity": "sha512
|
|
11049
|
+
"version": "54.0.33",
|
|
11050
|
+
"integrity": "sha512-3yOEfAKqo+gqHcV8vKcnq0uA5zxlohnhA3fu4G43likN8ct5ZZ3LjAh9wDdKteEkoad3tFPvwxmXW711S5OHUw==",
|
|
11349
11051
|
"license": "MIT",
|
|
11350
11052
|
"peer": true,
|
|
11351
11053
|
"dependencies": {
|
|
11352
11054
|
"@babel/runtime": "^7.20.0",
|
|
11353
|
-
"@expo/cli": "54.0.
|
|
11354
|
-
"@expo/config": "~12.0.
|
|
11355
|
-
"@expo/config-plugins": "~54.0.
|
|
11356
|
-
"@expo/devtools": "0.1.
|
|
11357
|
-
"@expo/fingerprint": "0.15.
|
|
11358
|
-
"@expo/metro": "~54.
|
|
11359
|
-
"@expo/metro-config": "54.0.
|
|
11055
|
+
"@expo/cli": "54.0.23",
|
|
11056
|
+
"@expo/config": "~12.0.13",
|
|
11057
|
+
"@expo/config-plugins": "~54.0.4",
|
|
11058
|
+
"@expo/devtools": "0.1.8",
|
|
11059
|
+
"@expo/fingerprint": "0.15.4",
|
|
11060
|
+
"@expo/metro": "~54.2.0",
|
|
11061
|
+
"@expo/metro-config": "54.0.14",
|
|
11360
11062
|
"@expo/vector-icons": "^15.0.3",
|
|
11361
11063
|
"@ungap/structured-clone": "^1.3.0",
|
|
11362
|
-
"babel-preset-expo": "~54.0.
|
|
11363
|
-
"expo-asset": "~12.0.
|
|
11364
|
-
"expo-constants": "~18.0.
|
|
11365
|
-
"expo-file-system": "~19.0.
|
|
11366
|
-
"expo-font": "~14.0.
|
|
11367
|
-
"expo-keep-awake": "~15.0.
|
|
11368
|
-
"expo-modules-autolinking": "3.0.
|
|
11369
|
-
"expo-modules-core": "3.0.
|
|
11064
|
+
"babel-preset-expo": "~54.0.10",
|
|
11065
|
+
"expo-asset": "~12.0.12",
|
|
11066
|
+
"expo-constants": "~18.0.13",
|
|
11067
|
+
"expo-file-system": "~19.0.21",
|
|
11068
|
+
"expo-font": "~14.0.11",
|
|
11069
|
+
"expo-keep-awake": "~15.0.8",
|
|
11070
|
+
"expo-modules-autolinking": "3.0.24",
|
|
11071
|
+
"expo-modules-core": "3.0.29",
|
|
11370
11072
|
"pretty-format": "^29.7.0",
|
|
11371
11073
|
"react-refresh": "^0.14.2",
|
|
11372
11074
|
"whatwg-url-without-unicode": "8.0.0-3"
|
|
@@ -11404,13 +11106,13 @@
|
|
|
11404
11106
|
}
|
|
11405
11107
|
},
|
|
11406
11108
|
"node_modules/expo-asset": {
|
|
11407
|
-
"version": "12.0.
|
|
11408
|
-
"integrity": "sha512-
|
|
11109
|
+
"version": "12.0.12",
|
|
11110
|
+
"integrity": "sha512-CsXFCQbx2fElSMn0lyTdRIyKlSXOal6ilLJd+yeZ6xaC7I9AICQgscY5nj0QcwgA+KYYCCEQEBndMsmj7drOWQ==",
|
|
11409
11111
|
"license": "MIT",
|
|
11410
11112
|
"peer": true,
|
|
11411
11113
|
"dependencies": {
|
|
11412
|
-
"@expo/image-utils": "^0.8.
|
|
11413
|
-
"expo-constants": "~18.0.
|
|
11114
|
+
"@expo/image-utils": "^0.8.8",
|
|
11115
|
+
"expo-constants": "~18.0.12"
|
|
11414
11116
|
},
|
|
11415
11117
|
"peerDependencies": {
|
|
11416
11118
|
"expo": "*",
|
|
@@ -11486,13 +11188,13 @@
|
|
|
11486
11188
|
}
|
|
11487
11189
|
},
|
|
11488
11190
|
"node_modules/expo-constants": {
|
|
11489
|
-
"version": "18.0.
|
|
11490
|
-
"integrity": "sha512-
|
|
11191
|
+
"version": "18.0.13",
|
|
11192
|
+
"integrity": "sha512-FnZn12E1dRYKDHlAdIyNFhBurKTS3F9CrfrBDJI5m3D7U17KBHMQ6JEfYlSj7LG7t+Ulr+IKaj58L1k5gBwTcQ==",
|
|
11491
11193
|
"license": "MIT",
|
|
11492
11194
|
"peer": true,
|
|
11493
11195
|
"dependencies": {
|
|
11494
|
-
"@expo/config": "~12.0.
|
|
11495
|
-
"@expo/env": "~2.0.
|
|
11196
|
+
"@expo/config": "~12.0.13",
|
|
11197
|
+
"@expo/env": "~2.0.8"
|
|
11496
11198
|
},
|
|
11497
11199
|
"peerDependencies": {
|
|
11498
11200
|
"expo": "*",
|
|
@@ -11571,8 +11273,8 @@
|
|
|
11571
11273
|
}
|
|
11572
11274
|
},
|
|
11573
11275
|
"node_modules/expo-keep-awake": {
|
|
11574
|
-
"version": "15.0.
|
|
11575
|
-
"integrity": "sha512-
|
|
11276
|
+
"version": "15.0.8",
|
|
11277
|
+
"integrity": "sha512-YK9M1VrnoH1vLJiQzChZgzDvVimVoriibiDIFLbQMpjYBnvyfUeHJcin/Gx1a+XgupNXy92EQJLgI/9ZuXajYQ==",
|
|
11576
11278
|
"license": "MIT",
|
|
11577
11279
|
"peer": true,
|
|
11578
11280
|
"peerDependencies": {
|
|
@@ -11600,8 +11302,8 @@
|
|
|
11600
11302
|
}
|
|
11601
11303
|
},
|
|
11602
11304
|
"node_modules/expo-modules-autolinking": {
|
|
11603
|
-
"version": "3.0.
|
|
11604
|
-
"integrity": "sha512-
|
|
11305
|
+
"version": "3.0.24",
|
|
11306
|
+
"integrity": "sha512-TP+6HTwhL7orDvsz2VzauyQlXJcAWyU3ANsZ7JGL4DQu8XaZv/A41ZchbtAYLfozNA2Ya1Hzmhx65hXryBMjaQ==",
|
|
11605
11307
|
"license": "MIT",
|
|
11606
11308
|
"peer": true,
|
|
11607
11309
|
"dependencies": {
|
|
@@ -11701,8 +11403,8 @@
|
|
|
11701
11403
|
}
|
|
11702
11404
|
},
|
|
11703
11405
|
"node_modules/expo-server": {
|
|
11704
|
-
"version": "1.0.
|
|
11705
|
-
"integrity": "sha512-
|
|
11406
|
+
"version": "1.0.5",
|
|
11407
|
+
"integrity": "sha512-IGR++flYH70rhLyeXF0Phle56/k4cee87WeQ4mamS+MkVAVP+dDlOHf2nN06Z9Y2KhU0Gp1k+y61KkghF7HdhA==",
|
|
11706
11408
|
"license": "MIT",
|
|
11707
11409
|
"peer": true,
|
|
11708
11410
|
"engines": {
|
|
@@ -11750,27 +11452,26 @@
|
|
|
11750
11452
|
}
|
|
11751
11453
|
},
|
|
11752
11454
|
"node_modules/expo/node_modules/@expo/cli": {
|
|
11753
|
-
"version": "54.0.
|
|
11754
|
-
"integrity": "sha512-
|
|
11455
|
+
"version": "54.0.23",
|
|
11456
|
+
"integrity": "sha512-km0h72SFfQCmVycH/JtPFTVy69w6Lx1cHNDmfLfQqgKFYeeHTjx7LVDP4POHCtNxFP2UeRazrygJhlh4zz498g==",
|
|
11755
11457
|
"license": "MIT",
|
|
11756
11458
|
"peer": true,
|
|
11757
11459
|
"dependencies": {
|
|
11758
11460
|
"@0no-co/graphql.web": "^1.0.8",
|
|
11759
|
-
"@expo/code-signing-certificates": "^0.0.
|
|
11760
|
-
"@expo/config": "~12.0.
|
|
11761
|
-
"@expo/config-plugins": "~54.0.
|
|
11762
|
-
"@expo/devcert": "^1.1
|
|
11763
|
-
"@expo/env": "~2.0.
|
|
11764
|
-
"@expo/image-utils": "^0.8.
|
|
11765
|
-
"@expo/json-file": "^10.0.
|
|
11766
|
-
"@expo/
|
|
11767
|
-
"@expo/metro": "~54.
|
|
11768
|
-
"@expo/
|
|
11769
|
-
"@expo/
|
|
11770
|
-
"@expo/
|
|
11771
|
-
"@expo/
|
|
11772
|
-
"@expo/
|
|
11773
|
-
"@expo/schema-utils": "^0.1.7",
|
|
11461
|
+
"@expo/code-signing-certificates": "^0.0.6",
|
|
11462
|
+
"@expo/config": "~12.0.13",
|
|
11463
|
+
"@expo/config-plugins": "~54.0.4",
|
|
11464
|
+
"@expo/devcert": "^1.2.1",
|
|
11465
|
+
"@expo/env": "~2.0.8",
|
|
11466
|
+
"@expo/image-utils": "^0.8.8",
|
|
11467
|
+
"@expo/json-file": "^10.0.8",
|
|
11468
|
+
"@expo/metro": "~54.2.0",
|
|
11469
|
+
"@expo/metro-config": "~54.0.14",
|
|
11470
|
+
"@expo/osascript": "^2.3.8",
|
|
11471
|
+
"@expo/package-manager": "^1.9.10",
|
|
11472
|
+
"@expo/plist": "^0.4.8",
|
|
11473
|
+
"@expo/prebuild-config": "^54.0.8",
|
|
11474
|
+
"@expo/schema-utils": "^0.1.8",
|
|
11774
11475
|
"@expo/spawn-async": "^1.7.2",
|
|
11775
11476
|
"@expo/ws-tunnel": "^1.0.1",
|
|
11776
11477
|
"@expo/xcpretty": "^4.3.0",
|
|
@@ -11788,13 +11489,13 @@
|
|
|
11788
11489
|
"connect": "^3.7.0",
|
|
11789
11490
|
"debug": "^4.3.4",
|
|
11790
11491
|
"env-editor": "^0.4.1",
|
|
11791
|
-
"expo-server": "^1.0.
|
|
11492
|
+
"expo-server": "^1.0.5",
|
|
11792
11493
|
"freeport-async": "^2.0.0",
|
|
11793
11494
|
"getenv": "^2.0.0",
|
|
11794
|
-
"glob": "^
|
|
11495
|
+
"glob": "^13.0.0",
|
|
11795
11496
|
"lan-network": "^0.1.6",
|
|
11796
11497
|
"minimatch": "^9.0.0",
|
|
11797
|
-
"node-forge": "^1.3.
|
|
11498
|
+
"node-forge": "^1.3.3",
|
|
11798
11499
|
"npm-package-arg": "^11.0.0",
|
|
11799
11500
|
"ora": "^3.4.0",
|
|
11800
11501
|
"picomatch": "^3.0.1",
|
|
@@ -11814,7 +11515,7 @@
|
|
|
11814
11515
|
"source-map-support": "~0.5.21",
|
|
11815
11516
|
"stacktrace-parser": "^0.1.10",
|
|
11816
11517
|
"structured-headers": "^0.4.1",
|
|
11817
|
-
"tar": "^7.
|
|
11518
|
+
"tar": "^7.5.2",
|
|
11818
11519
|
"terminal-link": "^2.1.1",
|
|
11819
11520
|
"undici": "^6.18.2",
|
|
11820
11521
|
"wrap-ansi": "^7.0.0",
|
|
@@ -11964,12 +11665,6 @@
|
|
|
11964
11665
|
"license": "MIT",
|
|
11965
11666
|
"peer": true
|
|
11966
11667
|
},
|
|
11967
|
-
"node_modules/expo/node_modules/emoji-regex": {
|
|
11968
|
-
"version": "8.0.0",
|
|
11969
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
11970
|
-
"license": "MIT",
|
|
11971
|
-
"peer": true
|
|
11972
|
-
},
|
|
11973
11668
|
"node_modules/expo/node_modules/escape-string-regexp": {
|
|
11974
11669
|
"version": "1.0.5",
|
|
11975
11670
|
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
|
|
@@ -11980,8 +11675,8 @@
|
|
|
11980
11675
|
}
|
|
11981
11676
|
},
|
|
11982
11677
|
"node_modules/expo/node_modules/expo-file-system": {
|
|
11983
|
-
"version": "19.0.
|
|
11984
|
-
"integrity": "sha512-
|
|
11678
|
+
"version": "19.0.21",
|
|
11679
|
+
"integrity": "sha512-s3DlrDdiscBHtab/6W1osrjGL+C2bvoInPJD7sOwmxfJ5Woynv2oc+Fz1/xVXaE/V7HE/+xrHC/H45tu6lZzzg==",
|
|
11985
11680
|
"license": "MIT",
|
|
11986
11681
|
"peer": true,
|
|
11987
11682
|
"peerDependencies": {
|
|
@@ -11990,8 +11685,8 @@
|
|
|
11990
11685
|
}
|
|
11991
11686
|
},
|
|
11992
11687
|
"node_modules/expo/node_modules/expo-font": {
|
|
11993
|
-
"version": "14.0.
|
|
11994
|
-
"integrity": "sha512-
|
|
11688
|
+
"version": "14.0.11",
|
|
11689
|
+
"integrity": "sha512-ga0q61ny4s/kr4k8JX9hVH69exVSIfcIc19+qZ7gt71Mqtm7xy2c6kwsPTCyhBW2Ro5yXTT8EaZOpuRi35rHbg==",
|
|
11995
11690
|
"license": "MIT",
|
|
11996
11691
|
"peer": true,
|
|
11997
11692
|
"dependencies": {
|
|
@@ -12004,8 +11699,8 @@
|
|
|
12004
11699
|
}
|
|
12005
11700
|
},
|
|
12006
11701
|
"node_modules/expo/node_modules/expo-modules-core": {
|
|
12007
|
-
"version": "3.0.
|
|
12008
|
-
"integrity": "sha512-
|
|
11702
|
+
"version": "3.0.29",
|
|
11703
|
+
"integrity": "sha512-LzipcjGqk8gvkrOUf7O2mejNWugPkf3lmd9GkqL9WuNyeN2fRwU0Dn77e3ZUKI3k6sI+DNwjkq4Nu9fNN9WS7Q==",
|
|
12009
11704
|
"license": "MIT",
|
|
12010
11705
|
"peer": true,
|
|
12011
11706
|
"dependencies": {
|
|
@@ -12184,18 +11879,6 @@
|
|
|
12184
11879
|
"color-name": "1.1.3"
|
|
12185
11880
|
}
|
|
12186
11881
|
},
|
|
12187
|
-
"node_modules/expo/node_modules/ora/node_modules/strip-ansi": {
|
|
12188
|
-
"version": "5.2.0",
|
|
12189
|
-
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
|
12190
|
-
"license": "MIT",
|
|
12191
|
-
"peer": true,
|
|
12192
|
-
"dependencies": {
|
|
12193
|
-
"ansi-regex": "^4.1.0"
|
|
12194
|
-
},
|
|
12195
|
-
"engines": {
|
|
12196
|
-
"node": ">=6"
|
|
12197
|
-
}
|
|
12198
|
-
},
|
|
12199
11882
|
"node_modules/expo/node_modules/ora/node_modules/supports-color": {
|
|
12200
11883
|
"version": "5.5.0",
|
|
12201
11884
|
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
|
@@ -12234,8 +11917,8 @@
|
|
|
12234
11917
|
}
|
|
12235
11918
|
},
|
|
12236
11919
|
"node_modules/expo/node_modules/semver": {
|
|
12237
|
-
"version": "7.7.
|
|
12238
|
-
"integrity": "sha512-
|
|
11920
|
+
"version": "7.7.4",
|
|
11921
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
12239
11922
|
"license": "ISC",
|
|
12240
11923
|
"peer": true,
|
|
12241
11924
|
"bin": {
|
|
@@ -12255,23 +11938,21 @@
|
|
|
12255
11938
|
"source-map": "^0.6.0"
|
|
12256
11939
|
}
|
|
12257
11940
|
},
|
|
12258
|
-
"node_modules/expo/node_modules/
|
|
12259
|
-
"version": "
|
|
12260
|
-
"integrity": "sha512-
|
|
11941
|
+
"node_modules/expo/node_modules/strip-ansi": {
|
|
11942
|
+
"version": "5.2.0",
|
|
11943
|
+
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
|
12261
11944
|
"license": "MIT",
|
|
12262
11945
|
"peer": true,
|
|
12263
11946
|
"dependencies": {
|
|
12264
|
-
"
|
|
12265
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
12266
|
-
"strip-ansi": "^6.0.1"
|
|
11947
|
+
"ansi-regex": "^4.1.0"
|
|
12267
11948
|
},
|
|
12268
11949
|
"engines": {
|
|
12269
|
-
"node": ">=
|
|
11950
|
+
"node": ">=6"
|
|
12270
11951
|
}
|
|
12271
11952
|
},
|
|
12272
11953
|
"node_modules/expo/node_modules/tar": {
|
|
12273
|
-
"version": "7.5.
|
|
12274
|
-
"integrity": "sha512-
|
|
11954
|
+
"version": "7.5.7",
|
|
11955
|
+
"integrity": "sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==",
|
|
12275
11956
|
"license": "BlueOak-1.0.0",
|
|
12276
11957
|
"peer": true,
|
|
12277
11958
|
"dependencies": {
|
|
@@ -12286,31 +11967,14 @@
|
|
|
12286
11967
|
}
|
|
12287
11968
|
},
|
|
12288
11969
|
"node_modules/expo/node_modules/undici": {
|
|
12289
|
-
"version": "6.
|
|
12290
|
-
"integrity": "sha512-
|
|
11970
|
+
"version": "6.23.0",
|
|
11971
|
+
"integrity": "sha512-VfQPToRA5FZs/qJxLIinmU59u0r7LXqoJkCzinq3ckNJp3vKEh7jTWN589YQ5+aoAC/TGRLyJLCPKcLQbM8r9g==",
|
|
12291
11972
|
"license": "MIT",
|
|
12292
11973
|
"peer": true,
|
|
12293
11974
|
"engines": {
|
|
12294
11975
|
"node": ">=18.17"
|
|
12295
11976
|
}
|
|
12296
11977
|
},
|
|
12297
|
-
"node_modules/expo/node_modules/wrap-ansi": {
|
|
12298
|
-
"version": "7.0.0",
|
|
12299
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
12300
|
-
"license": "MIT",
|
|
12301
|
-
"peer": true,
|
|
12302
|
-
"dependencies": {
|
|
12303
|
-
"ansi-styles": "^4.0.0",
|
|
12304
|
-
"string-width": "^4.1.0",
|
|
12305
|
-
"strip-ansi": "^6.0.0"
|
|
12306
|
-
},
|
|
12307
|
-
"engines": {
|
|
12308
|
-
"node": ">=10"
|
|
12309
|
-
},
|
|
12310
|
-
"funding": {
|
|
12311
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
12312
|
-
}
|
|
12313
|
-
},
|
|
12314
11978
|
"node_modules/expo/node_modules/yallist": {
|
|
12315
11979
|
"version": "5.0.0",
|
|
12316
11980
|
"integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
|
|
@@ -12435,8 +12099,8 @@
|
|
|
12435
12099
|
}
|
|
12436
12100
|
},
|
|
12437
12101
|
"node_modules/fastq": {
|
|
12438
|
-
"version": "1.
|
|
12439
|
-
"integrity": "sha512-
|
|
12102
|
+
"version": "1.20.1",
|
|
12103
|
+
"integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
|
|
12440
12104
|
"dev": true,
|
|
12441
12105
|
"license": "ISC",
|
|
12442
12106
|
"dependencies": {
|
|
@@ -12676,6 +12340,7 @@
|
|
|
12676
12340
|
"node_modules/foreground-child": {
|
|
12677
12341
|
"version": "3.3.1",
|
|
12678
12342
|
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
|
|
12343
|
+
"dev": true,
|
|
12679
12344
|
"license": "ISC",
|
|
12680
12345
|
"dependencies": {
|
|
12681
12346
|
"cross-spawn": "^7.0.6",
|
|
@@ -12691,6 +12356,7 @@
|
|
|
12691
12356
|
"node_modules/foreground-child/node_modules/signal-exit": {
|
|
12692
12357
|
"version": "4.1.0",
|
|
12693
12358
|
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
|
|
12359
|
+
"dev": true,
|
|
12694
12360
|
"license": "ISC",
|
|
12695
12361
|
"engines": {
|
|
12696
12362
|
"node": ">=14"
|
|
@@ -13087,19 +12753,16 @@
|
|
|
13087
12753
|
}
|
|
13088
12754
|
},
|
|
13089
12755
|
"node_modules/glob": {
|
|
13090
|
-
"version": "
|
|
13091
|
-
"integrity": "sha512
|
|
13092
|
-
"license": "
|
|
12756
|
+
"version": "13.0.3",
|
|
12757
|
+
"integrity": "sha512-/g3B0mC+4x724v1TgtBlBtt2hPi/EWptsIAmXUx9Z2rvBYleQcsrmaOzd5LyL50jf/Soi83ZDJmw2+XqvH/EeA==",
|
|
12758
|
+
"license": "BlueOak-1.0.0",
|
|
13093
12759
|
"dependencies": {
|
|
13094
|
-
"
|
|
13095
|
-
"jackspeak": "^3.1.2",
|
|
13096
|
-
"minimatch": "^9.0.4",
|
|
12760
|
+
"minimatch": "^10.2.0",
|
|
13097
12761
|
"minipass": "^7.1.2",
|
|
13098
|
-
"
|
|
13099
|
-
"path-scurry": "^1.11.1"
|
|
12762
|
+
"path-scurry": "^2.0.0"
|
|
13100
12763
|
},
|
|
13101
|
-
"
|
|
13102
|
-
"
|
|
12764
|
+
"engines": {
|
|
12765
|
+
"node": "20 || >=22"
|
|
13103
12766
|
},
|
|
13104
12767
|
"funding": {
|
|
13105
12768
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -13124,23 +12787,37 @@
|
|
|
13124
12787
|
"license": "BSD-2-Clause",
|
|
13125
12788
|
"peer": true
|
|
13126
12789
|
},
|
|
12790
|
+
"node_modules/glob/node_modules/balanced-match": {
|
|
12791
|
+
"version": "4.0.2",
|
|
12792
|
+
"integrity": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==",
|
|
12793
|
+
"license": "MIT",
|
|
12794
|
+
"dependencies": {
|
|
12795
|
+
"jackspeak": "^4.2.3"
|
|
12796
|
+
},
|
|
12797
|
+
"engines": {
|
|
12798
|
+
"node": "20 || >=22"
|
|
12799
|
+
}
|
|
12800
|
+
},
|
|
13127
12801
|
"node_modules/glob/node_modules/brace-expansion": {
|
|
13128
|
-
"version": "
|
|
13129
|
-
"integrity": "sha512-
|
|
12802
|
+
"version": "5.0.2",
|
|
12803
|
+
"integrity": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==",
|
|
13130
12804
|
"license": "MIT",
|
|
13131
12805
|
"dependencies": {
|
|
13132
|
-
"balanced-match": "^
|
|
12806
|
+
"balanced-match": "^4.0.2"
|
|
12807
|
+
},
|
|
12808
|
+
"engines": {
|
|
12809
|
+
"node": "20 || >=22"
|
|
13133
12810
|
}
|
|
13134
12811
|
},
|
|
13135
12812
|
"node_modules/glob/node_modules/minimatch": {
|
|
13136
|
-
"version": "
|
|
13137
|
-
"integrity": "sha512-
|
|
13138
|
-
"license": "
|
|
12813
|
+
"version": "10.2.0",
|
|
12814
|
+
"integrity": "sha512-ugkC31VaVg9cF0DFVoADH12k6061zNZkZON+aX8AWsR9GhPcErkcMBceb6znR8wLERM2AkkOxy2nWRLpT9Jq5w==",
|
|
12815
|
+
"license": "BlueOak-1.0.0",
|
|
13139
12816
|
"dependencies": {
|
|
13140
|
-
"brace-expansion": "^
|
|
12817
|
+
"brace-expansion": "^5.0.2"
|
|
13141
12818
|
},
|
|
13142
12819
|
"engines": {
|
|
13143
|
-
"node": "
|
|
12820
|
+
"node": "20 || >=22"
|
|
13144
12821
|
},
|
|
13145
12822
|
"funding": {
|
|
13146
12823
|
"url": "https://github.com/sponsors/isaacs"
|
|
@@ -13500,13 +13177,16 @@
|
|
|
13500
13177
|
"license": "ISC"
|
|
13501
13178
|
},
|
|
13502
13179
|
"node_modules/html-element-map": {
|
|
13503
|
-
"version": "1.
|
|
13504
|
-
"integrity": "sha512-
|
|
13180
|
+
"version": "1.4.0",
|
|
13181
|
+
"integrity": "sha512-jiTQtpaVnCcT1KDghMcmvbB5Q1AAWyBsGNuJZiHOWwN5GIVZGKqCWj9ddOFxLLz8ELYL2dwv2TaeS4dMdc/Pkw==",
|
|
13505
13182
|
"dev": true,
|
|
13506
13183
|
"license": "MIT",
|
|
13507
13184
|
"dependencies": {
|
|
13508
|
-
"array.prototype.filter": "^1.0.
|
|
13509
|
-
"
|
|
13185
|
+
"array.prototype.filter": "^1.0.4",
|
|
13186
|
+
"es-errors": "^1.3.0"
|
|
13187
|
+
},
|
|
13188
|
+
"engines": {
|
|
13189
|
+
"node": ">= 0.4"
|
|
13510
13190
|
},
|
|
13511
13191
|
"funding": {
|
|
13512
13192
|
"url": "https://github.com/sponsors/ljharb"
|
|
@@ -13527,6 +13207,7 @@
|
|
|
13527
13207
|
"node_modules/html-encoding-sniffer/node_modules/whatwg-encoding": {
|
|
13528
13208
|
"version": "2.0.0",
|
|
13529
13209
|
"integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==",
|
|
13210
|
+
"deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation",
|
|
13530
13211
|
"dev": true,
|
|
13531
13212
|
"license": "MIT",
|
|
13532
13213
|
"dependencies": {
|
|
@@ -13543,8 +13224,8 @@
|
|
|
13543
13224
|
"license": "MIT"
|
|
13544
13225
|
},
|
|
13545
13226
|
"node_modules/htmlparser2": {
|
|
13546
|
-
"version": "10.
|
|
13547
|
-
"integrity": "sha512-
|
|
13227
|
+
"version": "10.1.0",
|
|
13228
|
+
"integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==",
|
|
13548
13229
|
"dev": true,
|
|
13549
13230
|
"funding": [
|
|
13550
13231
|
"https://github.com/fb55/htmlparser2?sponsor=1",
|
|
@@ -13557,13 +13238,13 @@
|
|
|
13557
13238
|
"dependencies": {
|
|
13558
13239
|
"domelementtype": "^2.3.0",
|
|
13559
13240
|
"domhandler": "^5.0.3",
|
|
13560
|
-
"domutils": "^3.2.
|
|
13561
|
-
"entities": "^
|
|
13241
|
+
"domutils": "^3.2.2",
|
|
13242
|
+
"entities": "^7.0.1"
|
|
13562
13243
|
}
|
|
13563
13244
|
},
|
|
13564
13245
|
"node_modules/htmlparser2/node_modules/entities": {
|
|
13565
|
-
"version": "
|
|
13566
|
-
"integrity": "sha512-
|
|
13246
|
+
"version": "7.0.1",
|
|
13247
|
+
"integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
|
|
13567
13248
|
"dev": true,
|
|
13568
13249
|
"license": "BSD-2-Clause",
|
|
13569
13250
|
"engines": {
|
|
@@ -13580,23 +13261,27 @@
|
|
|
13580
13261
|
"license": "BSD-2-Clause"
|
|
13581
13262
|
},
|
|
13582
13263
|
"node_modules/http-errors": {
|
|
13583
|
-
"version": "2.0.
|
|
13584
|
-
"integrity": "sha512-
|
|
13264
|
+
"version": "2.0.1",
|
|
13265
|
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
|
13585
13266
|
"license": "MIT",
|
|
13586
13267
|
"dependencies": {
|
|
13587
|
-
"depd": "2.0.0",
|
|
13588
|
-
"inherits": "2.0.4",
|
|
13589
|
-
"setprototypeof": "1.2.0",
|
|
13590
|
-
"statuses": "2.0.
|
|
13591
|
-
"toidentifier": "1.0.1"
|
|
13268
|
+
"depd": "~2.0.0",
|
|
13269
|
+
"inherits": "~2.0.4",
|
|
13270
|
+
"setprototypeof": "~1.2.0",
|
|
13271
|
+
"statuses": "~2.0.2",
|
|
13272
|
+
"toidentifier": "~1.0.1"
|
|
13592
13273
|
},
|
|
13593
13274
|
"engines": {
|
|
13594
13275
|
"node": ">= 0.8"
|
|
13276
|
+
},
|
|
13277
|
+
"funding": {
|
|
13278
|
+
"type": "opencollective",
|
|
13279
|
+
"url": "https://opencollective.com/express"
|
|
13595
13280
|
}
|
|
13596
13281
|
},
|
|
13597
13282
|
"node_modules/http-errors/node_modules/statuses": {
|
|
13598
|
-
"version": "2.0.
|
|
13599
|
-
"integrity": "sha512-
|
|
13283
|
+
"version": "2.0.2",
|
|
13284
|
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
|
13600
13285
|
"license": "MIT",
|
|
13601
13286
|
"engines": {
|
|
13602
13287
|
"node": ">= 0.8"
|
|
@@ -13920,26 +13605,6 @@
|
|
|
13920
13605
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
13921
13606
|
}
|
|
13922
13607
|
},
|
|
13923
|
-
"node_modules/inquirer/node_modules/emoji-regex": {
|
|
13924
|
-
"version": "8.0.0",
|
|
13925
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
13926
|
-
"dev": true,
|
|
13927
|
-
"license": "MIT"
|
|
13928
|
-
},
|
|
13929
|
-
"node_modules/inquirer/node_modules/string-width": {
|
|
13930
|
-
"version": "4.2.3",
|
|
13931
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
13932
|
-
"dev": true,
|
|
13933
|
-
"license": "MIT",
|
|
13934
|
-
"dependencies": {
|
|
13935
|
-
"emoji-regex": "^8.0.0",
|
|
13936
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
13937
|
-
"strip-ansi": "^6.0.1"
|
|
13938
|
-
},
|
|
13939
|
-
"engines": {
|
|
13940
|
-
"node": ">=8"
|
|
13941
|
-
}
|
|
13942
|
-
},
|
|
13943
13608
|
"node_modules/internal-slot": {
|
|
13944
13609
|
"version": "1.1.0",
|
|
13945
13610
|
"integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
|
|
@@ -14838,17 +14503,17 @@
|
|
|
14838
14503
|
}
|
|
14839
14504
|
},
|
|
14840
14505
|
"node_modules/jackspeak": {
|
|
14841
|
-
"version": "
|
|
14842
|
-
"integrity": "sha512-
|
|
14506
|
+
"version": "4.2.3",
|
|
14507
|
+
"integrity": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==",
|
|
14843
14508
|
"license": "BlueOak-1.0.0",
|
|
14844
14509
|
"dependencies": {
|
|
14845
|
-
"@isaacs/cliui": "^
|
|
14510
|
+
"@isaacs/cliui": "^9.0.0"
|
|
14511
|
+
},
|
|
14512
|
+
"engines": {
|
|
14513
|
+
"node": "20 || >=22"
|
|
14846
14514
|
},
|
|
14847
14515
|
"funding": {
|
|
14848
14516
|
"url": "https://github.com/sponsors/isaacs"
|
|
14849
|
-
},
|
|
14850
|
-
"optionalDependencies": {
|
|
14851
|
-
"@pkgjs/parseargs": "^0.11.0"
|
|
14852
14517
|
}
|
|
14853
14518
|
},
|
|
14854
14519
|
"node_modules/jest": {
|
|
@@ -15031,43 +14696,6 @@
|
|
|
15031
14696
|
"node": ">=12"
|
|
15032
14697
|
}
|
|
15033
14698
|
},
|
|
15034
|
-
"node_modules/jest-cli/node_modules/emoji-regex": {
|
|
15035
|
-
"version": "8.0.0",
|
|
15036
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
15037
|
-
"dev": true,
|
|
15038
|
-
"license": "MIT"
|
|
15039
|
-
},
|
|
15040
|
-
"node_modules/jest-cli/node_modules/string-width": {
|
|
15041
|
-
"version": "4.2.3",
|
|
15042
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
15043
|
-
"dev": true,
|
|
15044
|
-
"license": "MIT",
|
|
15045
|
-
"dependencies": {
|
|
15046
|
-
"emoji-regex": "^8.0.0",
|
|
15047
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
15048
|
-
"strip-ansi": "^6.0.1"
|
|
15049
|
-
},
|
|
15050
|
-
"engines": {
|
|
15051
|
-
"node": ">=8"
|
|
15052
|
-
}
|
|
15053
|
-
},
|
|
15054
|
-
"node_modules/jest-cli/node_modules/wrap-ansi": {
|
|
15055
|
-
"version": "7.0.0",
|
|
15056
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
15057
|
-
"dev": true,
|
|
15058
|
-
"license": "MIT",
|
|
15059
|
-
"dependencies": {
|
|
15060
|
-
"ansi-styles": "^4.0.0",
|
|
15061
|
-
"string-width": "^4.1.0",
|
|
15062
|
-
"strip-ansi": "^6.0.0"
|
|
15063
|
-
},
|
|
15064
|
-
"engines": {
|
|
15065
|
-
"node": ">=10"
|
|
15066
|
-
},
|
|
15067
|
-
"funding": {
|
|
15068
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
15069
|
-
}
|
|
15070
|
-
},
|
|
15071
14699
|
"node_modules/jest-cli/node_modules/yargs": {
|
|
15072
14700
|
"version": "17.7.2",
|
|
15073
14701
|
"integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
|
|
@@ -15174,7 +14802,7 @@
|
|
|
15174
14802
|
"node_modules/jest-config/node_modules/glob": {
|
|
15175
14803
|
"version": "7.2.3",
|
|
15176
14804
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
15177
|
-
"deprecated": "
|
|
14805
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
15178
14806
|
"dev": true,
|
|
15179
14807
|
"license": "ISC",
|
|
15180
14808
|
"dependencies": {
|
|
@@ -15462,6 +15090,23 @@
|
|
|
15462
15090
|
"xmlbuilder": "^14.0.0"
|
|
15463
15091
|
}
|
|
15464
15092
|
},
|
|
15093
|
+
"node_modules/jest-expo/node_modules/@isaacs/cliui": {
|
|
15094
|
+
"version": "8.0.2",
|
|
15095
|
+
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
|
|
15096
|
+
"dev": true,
|
|
15097
|
+
"license": "ISC",
|
|
15098
|
+
"dependencies": {
|
|
15099
|
+
"string-width": "^5.1.2",
|
|
15100
|
+
"string-width-cjs": "npm:string-width@^4.2.0",
|
|
15101
|
+
"strip-ansi": "^7.0.1",
|
|
15102
|
+
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
|
|
15103
|
+
"wrap-ansi": "^8.1.0",
|
|
15104
|
+
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
|
|
15105
|
+
},
|
|
15106
|
+
"engines": {
|
|
15107
|
+
"node": ">=12"
|
|
15108
|
+
}
|
|
15109
|
+
},
|
|
15465
15110
|
"node_modules/jest-expo/node_modules/@xmldom/xmldom": {
|
|
15466
15111
|
"version": "0.7.13",
|
|
15467
15112
|
"integrity": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==",
|
|
@@ -15472,6 +15117,18 @@
|
|
|
15472
15117
|
"node": ">=10.0.0"
|
|
15473
15118
|
}
|
|
15474
15119
|
},
|
|
15120
|
+
"node_modules/jest-expo/node_modules/ansi-regex": {
|
|
15121
|
+
"version": "6.2.2",
|
|
15122
|
+
"integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
|
|
15123
|
+
"dev": true,
|
|
15124
|
+
"license": "MIT",
|
|
15125
|
+
"engines": {
|
|
15126
|
+
"node": ">=12"
|
|
15127
|
+
},
|
|
15128
|
+
"funding": {
|
|
15129
|
+
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
15130
|
+
}
|
|
15131
|
+
},
|
|
15475
15132
|
"node_modules/jest-expo/node_modules/ansi-styles": {
|
|
15476
15133
|
"version": "4.3.0",
|
|
15477
15134
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
@@ -15487,6 +15144,15 @@
|
|
|
15487
15144
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
15488
15145
|
}
|
|
15489
15146
|
},
|
|
15147
|
+
"node_modules/jest-expo/node_modules/brace-expansion": {
|
|
15148
|
+
"version": "2.0.2",
|
|
15149
|
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
|
15150
|
+
"dev": true,
|
|
15151
|
+
"license": "MIT",
|
|
15152
|
+
"dependencies": {
|
|
15153
|
+
"balanced-match": "^1.0.0"
|
|
15154
|
+
}
|
|
15155
|
+
},
|
|
15490
15156
|
"node_modules/jest-expo/node_modules/chalk": {
|
|
15491
15157
|
"version": "4.1.2",
|
|
15492
15158
|
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
|
@@ -15503,6 +15169,21 @@
|
|
|
15503
15169
|
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
15504
15170
|
}
|
|
15505
15171
|
},
|
|
15172
|
+
"node_modules/jest-expo/node_modules/commander": {
|
|
15173
|
+
"version": "4.1.1",
|
|
15174
|
+
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
|
|
15175
|
+
"dev": true,
|
|
15176
|
+
"license": "MIT",
|
|
15177
|
+
"engines": {
|
|
15178
|
+
"node": ">= 6"
|
|
15179
|
+
}
|
|
15180
|
+
},
|
|
15181
|
+
"node_modules/jest-expo/node_modules/emoji-regex": {
|
|
15182
|
+
"version": "9.2.2",
|
|
15183
|
+
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
|
|
15184
|
+
"dev": true,
|
|
15185
|
+
"license": "MIT"
|
|
15186
|
+
},
|
|
15506
15187
|
"node_modules/jest-expo/node_modules/find-up": {
|
|
15507
15188
|
"version": "5.0.0",
|
|
15508
15189
|
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
|
|
@@ -15528,19 +15209,76 @@
|
|
|
15528
15209
|
"node": ">=6"
|
|
15529
15210
|
}
|
|
15530
15211
|
},
|
|
15531
|
-
"node_modules/jest-expo/node_modules/
|
|
15532
|
-
"version": "
|
|
15533
|
-
"integrity": "sha512-
|
|
15212
|
+
"node_modules/jest-expo/node_modules/glob": {
|
|
15213
|
+
"version": "10.5.0",
|
|
15214
|
+
"integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
|
|
15215
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
15216
|
+
"dev": true,
|
|
15217
|
+
"license": "ISC",
|
|
15218
|
+
"dependencies": {
|
|
15219
|
+
"foreground-child": "^3.1.0",
|
|
15220
|
+
"jackspeak": "^3.1.2",
|
|
15221
|
+
"minimatch": "^9.0.4",
|
|
15222
|
+
"minipass": "^7.1.2",
|
|
15223
|
+
"package-json-from-dist": "^1.0.0",
|
|
15224
|
+
"path-scurry": "^1.11.1"
|
|
15225
|
+
},
|
|
15226
|
+
"bin": {
|
|
15227
|
+
"glob": "dist/esm/bin.mjs"
|
|
15228
|
+
},
|
|
15229
|
+
"funding": {
|
|
15230
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
15231
|
+
}
|
|
15232
|
+
},
|
|
15233
|
+
"node_modules/jest-expo/node_modules/jackspeak": {
|
|
15234
|
+
"version": "3.4.3",
|
|
15235
|
+
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
|
|
15236
|
+
"dev": true,
|
|
15237
|
+
"license": "BlueOak-1.0.0",
|
|
15238
|
+
"dependencies": {
|
|
15239
|
+
"@isaacs/cliui": "^8.0.2"
|
|
15240
|
+
},
|
|
15241
|
+
"funding": {
|
|
15242
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
15243
|
+
},
|
|
15244
|
+
"optionalDependencies": {
|
|
15245
|
+
"@pkgjs/parseargs": "^0.11.0"
|
|
15246
|
+
}
|
|
15247
|
+
},
|
|
15248
|
+
"node_modules/jest-expo/node_modules/locate-path": {
|
|
15249
|
+
"version": "6.0.0",
|
|
15250
|
+
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
|
|
15251
|
+
"dev": true,
|
|
15252
|
+
"license": "MIT",
|
|
15253
|
+
"dependencies": {
|
|
15254
|
+
"p-locate": "^5.0.0"
|
|
15255
|
+
},
|
|
15256
|
+
"engines": {
|
|
15257
|
+
"node": ">=10"
|
|
15258
|
+
},
|
|
15259
|
+
"funding": {
|
|
15260
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
15261
|
+
}
|
|
15262
|
+
},
|
|
15263
|
+
"node_modules/jest-expo/node_modules/lru-cache": {
|
|
15264
|
+
"version": "10.4.3",
|
|
15265
|
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
|
|
15266
|
+
"dev": true,
|
|
15267
|
+
"license": "ISC"
|
|
15268
|
+
},
|
|
15269
|
+
"node_modules/jest-expo/node_modules/minimatch": {
|
|
15270
|
+
"version": "9.0.5",
|
|
15271
|
+
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
|
|
15534
15272
|
"dev": true,
|
|
15535
|
-
"license": "
|
|
15273
|
+
"license": "ISC",
|
|
15536
15274
|
"dependencies": {
|
|
15537
|
-
"
|
|
15275
|
+
"brace-expansion": "^2.0.1"
|
|
15538
15276
|
},
|
|
15539
15277
|
"engines": {
|
|
15540
|
-
"node": ">=
|
|
15278
|
+
"node": ">=16 || 14 >=14.17"
|
|
15541
15279
|
},
|
|
15542
15280
|
"funding": {
|
|
15543
|
-
"url": "https://github.com/sponsors/
|
|
15281
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
15544
15282
|
}
|
|
15545
15283
|
},
|
|
15546
15284
|
"node_modules/jest-expo/node_modules/p-locate": {
|
|
@@ -15558,6 +15296,22 @@
|
|
|
15558
15296
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
15559
15297
|
}
|
|
15560
15298
|
},
|
|
15299
|
+
"node_modules/jest-expo/node_modules/path-scurry": {
|
|
15300
|
+
"version": "1.11.1",
|
|
15301
|
+
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
|
|
15302
|
+
"dev": true,
|
|
15303
|
+
"license": "BlueOak-1.0.0",
|
|
15304
|
+
"dependencies": {
|
|
15305
|
+
"lru-cache": "^10.2.0",
|
|
15306
|
+
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
|
|
15307
|
+
},
|
|
15308
|
+
"engines": {
|
|
15309
|
+
"node": ">=16 || 14 >=14.18"
|
|
15310
|
+
},
|
|
15311
|
+
"funding": {
|
|
15312
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
15313
|
+
}
|
|
15314
|
+
},
|
|
15561
15315
|
"node_modules/jest-expo/node_modules/react": {
|
|
15562
15316
|
"version": "19.0.0-rc-6230622a1a-20240610",
|
|
15563
15317
|
"integrity": "sha512-SMgWGY//7nO7F3HMuBfmC15Cr4vTe2tlpSCATfnz/wymSftDOKUqc+0smjRhcUeCFCc1zhOAWJ+N//U5CrmOzQ==",
|
|
@@ -15649,8 +15403,8 @@
|
|
|
15649
15403
|
"peer": true
|
|
15650
15404
|
},
|
|
15651
15405
|
"node_modules/jest-expo/node_modules/semver": {
|
|
15652
|
-
"version": "7.7.
|
|
15653
|
-
"integrity": "sha512-
|
|
15406
|
+
"version": "7.7.4",
|
|
15407
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
15654
15408
|
"dev": true,
|
|
15655
15409
|
"license": "ISC",
|
|
15656
15410
|
"bin": {
|
|
@@ -15660,6 +15414,89 @@
|
|
|
15660
15414
|
"node": ">=10"
|
|
15661
15415
|
}
|
|
15662
15416
|
},
|
|
15417
|
+
"node_modules/jest-expo/node_modules/string-width": {
|
|
15418
|
+
"version": "5.1.2",
|
|
15419
|
+
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
|
|
15420
|
+
"dev": true,
|
|
15421
|
+
"license": "MIT",
|
|
15422
|
+
"dependencies": {
|
|
15423
|
+
"eastasianwidth": "^0.2.0",
|
|
15424
|
+
"emoji-regex": "^9.2.2",
|
|
15425
|
+
"strip-ansi": "^7.0.1"
|
|
15426
|
+
},
|
|
15427
|
+
"engines": {
|
|
15428
|
+
"node": ">=12"
|
|
15429
|
+
},
|
|
15430
|
+
"funding": {
|
|
15431
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
15432
|
+
}
|
|
15433
|
+
},
|
|
15434
|
+
"node_modules/jest-expo/node_modules/strip-ansi": {
|
|
15435
|
+
"version": "7.1.2",
|
|
15436
|
+
"integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
|
|
15437
|
+
"dev": true,
|
|
15438
|
+
"license": "MIT",
|
|
15439
|
+
"dependencies": {
|
|
15440
|
+
"ansi-regex": "^6.0.1"
|
|
15441
|
+
},
|
|
15442
|
+
"engines": {
|
|
15443
|
+
"node": ">=12"
|
|
15444
|
+
},
|
|
15445
|
+
"funding": {
|
|
15446
|
+
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
15447
|
+
}
|
|
15448
|
+
},
|
|
15449
|
+
"node_modules/jest-expo/node_modules/sucrase": {
|
|
15450
|
+
"version": "3.35.0",
|
|
15451
|
+
"integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==",
|
|
15452
|
+
"dev": true,
|
|
15453
|
+
"license": "MIT",
|
|
15454
|
+
"dependencies": {
|
|
15455
|
+
"@jridgewell/gen-mapping": "^0.3.2",
|
|
15456
|
+
"commander": "^4.0.0",
|
|
15457
|
+
"glob": "^10.3.10",
|
|
15458
|
+
"lines-and-columns": "^1.1.6",
|
|
15459
|
+
"mz": "^2.7.0",
|
|
15460
|
+
"pirates": "^4.0.1",
|
|
15461
|
+
"ts-interface-checker": "^0.1.9"
|
|
15462
|
+
},
|
|
15463
|
+
"bin": {
|
|
15464
|
+
"sucrase": "bin/sucrase",
|
|
15465
|
+
"sucrase-node": "bin/sucrase-node"
|
|
15466
|
+
},
|
|
15467
|
+
"engines": {
|
|
15468
|
+
"node": ">=16 || 14 >=14.17"
|
|
15469
|
+
}
|
|
15470
|
+
},
|
|
15471
|
+
"node_modules/jest-expo/node_modules/wrap-ansi": {
|
|
15472
|
+
"version": "8.1.0",
|
|
15473
|
+
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
|
|
15474
|
+
"dev": true,
|
|
15475
|
+
"license": "MIT",
|
|
15476
|
+
"dependencies": {
|
|
15477
|
+
"ansi-styles": "^6.1.0",
|
|
15478
|
+
"string-width": "^5.0.1",
|
|
15479
|
+
"strip-ansi": "^7.0.1"
|
|
15480
|
+
},
|
|
15481
|
+
"engines": {
|
|
15482
|
+
"node": ">=12"
|
|
15483
|
+
},
|
|
15484
|
+
"funding": {
|
|
15485
|
+
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
15486
|
+
}
|
|
15487
|
+
},
|
|
15488
|
+
"node_modules/jest-expo/node_modules/wrap-ansi/node_modules/ansi-styles": {
|
|
15489
|
+
"version": "6.2.3",
|
|
15490
|
+
"integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
|
|
15491
|
+
"dev": true,
|
|
15492
|
+
"license": "MIT",
|
|
15493
|
+
"engines": {
|
|
15494
|
+
"node": ">=12"
|
|
15495
|
+
},
|
|
15496
|
+
"funding": {
|
|
15497
|
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
15498
|
+
}
|
|
15499
|
+
},
|
|
15663
15500
|
"node_modules/jest-expo/node_modules/write-file-atomic": {
|
|
15664
15501
|
"version": "2.4.3",
|
|
15665
15502
|
"integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==",
|
|
@@ -16090,7 +15927,7 @@
|
|
|
16090
15927
|
"node_modules/jest-runtime/node_modules/glob": {
|
|
16091
15928
|
"version": "7.2.3",
|
|
16092
15929
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
16093
|
-
"deprecated": "
|
|
15930
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
16094
15931
|
"dev": true,
|
|
16095
15932
|
"license": "ISC",
|
|
16096
15933
|
"dependencies": {
|
|
@@ -16171,8 +16008,8 @@
|
|
|
16171
16008
|
}
|
|
16172
16009
|
},
|
|
16173
16010
|
"node_modules/jest-snapshot/node_modules/semver": {
|
|
16174
|
-
"version": "7.7.
|
|
16175
|
-
"integrity": "sha512-
|
|
16011
|
+
"version": "7.7.4",
|
|
16012
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
16176
16013
|
"dev": true,
|
|
16177
16014
|
"license": "ISC",
|
|
16178
16015
|
"bin": {
|
|
@@ -16624,6 +16461,7 @@
|
|
|
16624
16461
|
"node_modules/jsdom/node_modules/whatwg-encoding": {
|
|
16625
16462
|
"version": "2.0.0",
|
|
16626
16463
|
"integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==",
|
|
16464
|
+
"deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation",
|
|
16627
16465
|
"dev": true,
|
|
16628
16466
|
"license": "MIT",
|
|
16629
16467
|
"dependencies": {
|
|
@@ -16843,8 +16681,8 @@
|
|
|
16843
16681
|
"license": "MIT"
|
|
16844
16682
|
},
|
|
16845
16683
|
"node_modules/lightningcss": {
|
|
16846
|
-
"version": "1.
|
|
16847
|
-
"integrity": "sha512-
|
|
16684
|
+
"version": "1.31.1",
|
|
16685
|
+
"integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
|
|
16848
16686
|
"license": "MPL-2.0",
|
|
16849
16687
|
"peer": true,
|
|
16850
16688
|
"dependencies": {
|
|
@@ -16858,22 +16696,22 @@
|
|
|
16858
16696
|
"url": "https://opencollective.com/parcel"
|
|
16859
16697
|
},
|
|
16860
16698
|
"optionalDependencies": {
|
|
16861
|
-
"lightningcss-android-arm64": "1.
|
|
16862
|
-
"lightningcss-darwin-arm64": "1.
|
|
16863
|
-
"lightningcss-darwin-x64": "1.
|
|
16864
|
-
"lightningcss-freebsd-x64": "1.
|
|
16865
|
-
"lightningcss-linux-arm-gnueabihf": "1.
|
|
16866
|
-
"lightningcss-linux-arm64-gnu": "1.
|
|
16867
|
-
"lightningcss-linux-arm64-musl": "1.
|
|
16868
|
-
"lightningcss-linux-x64-gnu": "1.
|
|
16869
|
-
"lightningcss-linux-x64-musl": "1.
|
|
16870
|
-
"lightningcss-win32-arm64-msvc": "1.
|
|
16871
|
-
"lightningcss-win32-x64-msvc": "1.
|
|
16699
|
+
"lightningcss-android-arm64": "1.31.1",
|
|
16700
|
+
"lightningcss-darwin-arm64": "1.31.1",
|
|
16701
|
+
"lightningcss-darwin-x64": "1.31.1",
|
|
16702
|
+
"lightningcss-freebsd-x64": "1.31.1",
|
|
16703
|
+
"lightningcss-linux-arm-gnueabihf": "1.31.1",
|
|
16704
|
+
"lightningcss-linux-arm64-gnu": "1.31.1",
|
|
16705
|
+
"lightningcss-linux-arm64-musl": "1.31.1",
|
|
16706
|
+
"lightningcss-linux-x64-gnu": "1.31.1",
|
|
16707
|
+
"lightningcss-linux-x64-musl": "1.31.1",
|
|
16708
|
+
"lightningcss-win32-arm64-msvc": "1.31.1",
|
|
16709
|
+
"lightningcss-win32-x64-msvc": "1.31.1"
|
|
16872
16710
|
}
|
|
16873
16711
|
},
|
|
16874
16712
|
"node_modules/lightningcss-android-arm64": {
|
|
16875
|
-
"version": "1.
|
|
16876
|
-
"integrity": "sha512-
|
|
16713
|
+
"version": "1.31.1",
|
|
16714
|
+
"integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
|
|
16877
16715
|
"cpu": [
|
|
16878
16716
|
"arm64"
|
|
16879
16717
|
],
|
|
@@ -16892,8 +16730,8 @@
|
|
|
16892
16730
|
}
|
|
16893
16731
|
},
|
|
16894
16732
|
"node_modules/lightningcss-darwin-arm64": {
|
|
16895
|
-
"version": "1.
|
|
16896
|
-
"integrity": "sha512-
|
|
16733
|
+
"version": "1.31.1",
|
|
16734
|
+
"integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
|
|
16897
16735
|
"cpu": [
|
|
16898
16736
|
"arm64"
|
|
16899
16737
|
],
|
|
@@ -16912,8 +16750,8 @@
|
|
|
16912
16750
|
}
|
|
16913
16751
|
},
|
|
16914
16752
|
"node_modules/lightningcss-darwin-x64": {
|
|
16915
|
-
"version": "1.
|
|
16916
|
-
"integrity": "sha512-
|
|
16753
|
+
"version": "1.31.1",
|
|
16754
|
+
"integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
|
|
16917
16755
|
"cpu": [
|
|
16918
16756
|
"x64"
|
|
16919
16757
|
],
|
|
@@ -16932,8 +16770,8 @@
|
|
|
16932
16770
|
}
|
|
16933
16771
|
},
|
|
16934
16772
|
"node_modules/lightningcss-freebsd-x64": {
|
|
16935
|
-
"version": "1.
|
|
16936
|
-
"integrity": "sha512-
|
|
16773
|
+
"version": "1.31.1",
|
|
16774
|
+
"integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
|
|
16937
16775
|
"cpu": [
|
|
16938
16776
|
"x64"
|
|
16939
16777
|
],
|
|
@@ -16952,8 +16790,8 @@
|
|
|
16952
16790
|
}
|
|
16953
16791
|
},
|
|
16954
16792
|
"node_modules/lightningcss-linux-arm-gnueabihf": {
|
|
16955
|
-
"version": "1.
|
|
16956
|
-
"integrity": "sha512-
|
|
16793
|
+
"version": "1.31.1",
|
|
16794
|
+
"integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
|
|
16957
16795
|
"cpu": [
|
|
16958
16796
|
"arm"
|
|
16959
16797
|
],
|
|
@@ -16972,8 +16810,8 @@
|
|
|
16972
16810
|
}
|
|
16973
16811
|
},
|
|
16974
16812
|
"node_modules/lightningcss-linux-arm64-gnu": {
|
|
16975
|
-
"version": "1.
|
|
16976
|
-
"integrity": "sha512-
|
|
16813
|
+
"version": "1.31.1",
|
|
16814
|
+
"integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
|
|
16977
16815
|
"cpu": [
|
|
16978
16816
|
"arm64"
|
|
16979
16817
|
],
|
|
@@ -16992,8 +16830,8 @@
|
|
|
16992
16830
|
}
|
|
16993
16831
|
},
|
|
16994
16832
|
"node_modules/lightningcss-linux-arm64-musl": {
|
|
16995
|
-
"version": "1.
|
|
16996
|
-
"integrity": "sha512-
|
|
16833
|
+
"version": "1.31.1",
|
|
16834
|
+
"integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
|
|
16997
16835
|
"cpu": [
|
|
16998
16836
|
"arm64"
|
|
16999
16837
|
],
|
|
@@ -17012,8 +16850,8 @@
|
|
|
17012
16850
|
}
|
|
17013
16851
|
},
|
|
17014
16852
|
"node_modules/lightningcss-linux-x64-gnu": {
|
|
17015
|
-
"version": "1.
|
|
17016
|
-
"integrity": "sha512-
|
|
16853
|
+
"version": "1.31.1",
|
|
16854
|
+
"integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
|
|
17017
16855
|
"cpu": [
|
|
17018
16856
|
"x64"
|
|
17019
16857
|
],
|
|
@@ -17032,8 +16870,8 @@
|
|
|
17032
16870
|
}
|
|
17033
16871
|
},
|
|
17034
16872
|
"node_modules/lightningcss-linux-x64-musl": {
|
|
17035
|
-
"version": "1.
|
|
17036
|
-
"integrity": "sha512-
|
|
16873
|
+
"version": "1.31.1",
|
|
16874
|
+
"integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
|
|
17037
16875
|
"cpu": [
|
|
17038
16876
|
"x64"
|
|
17039
16877
|
],
|
|
@@ -17052,8 +16890,8 @@
|
|
|
17052
16890
|
}
|
|
17053
16891
|
},
|
|
17054
16892
|
"node_modules/lightningcss-win32-arm64-msvc": {
|
|
17055
|
-
"version": "1.
|
|
17056
|
-
"integrity": "sha512-
|
|
16893
|
+
"version": "1.31.1",
|
|
16894
|
+
"integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
|
|
17057
16895
|
"cpu": [
|
|
17058
16896
|
"arm64"
|
|
17059
16897
|
],
|
|
@@ -17072,8 +16910,8 @@
|
|
|
17072
16910
|
}
|
|
17073
16911
|
},
|
|
17074
16912
|
"node_modules/lightningcss-win32-x64-msvc": {
|
|
17075
|
-
"version": "1.
|
|
17076
|
-
"integrity": "sha512-
|
|
16913
|
+
"version": "1.31.1",
|
|
16914
|
+
"integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
|
|
17077
16915
|
"cpu": [
|
|
17078
16916
|
"x64"
|
|
17079
16917
|
],
|
|
@@ -17168,8 +17006,8 @@
|
|
|
17168
17006
|
}
|
|
17169
17007
|
},
|
|
17170
17008
|
"node_modules/lodash": {
|
|
17171
|
-
"version": "4.17.
|
|
17172
|
-
"integrity": "sha512-
|
|
17009
|
+
"version": "4.17.23",
|
|
17010
|
+
"integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
|
|
17173
17011
|
"dev": true,
|
|
17174
17012
|
"license": "MIT"
|
|
17175
17013
|
},
|
|
@@ -17394,8 +17232,8 @@
|
|
|
17394
17232
|
}
|
|
17395
17233
|
},
|
|
17396
17234
|
"node_modules/make-dir/node_modules/semver": {
|
|
17397
|
-
"version": "7.7.
|
|
17398
|
-
"integrity": "sha512-
|
|
17235
|
+
"version": "7.7.4",
|
|
17236
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
17399
17237
|
"dev": true,
|
|
17400
17238
|
"license": "ISC",
|
|
17401
17239
|
"bin": {
|
|
@@ -17588,8 +17426,8 @@
|
|
|
17588
17426
|
}
|
|
17589
17427
|
},
|
|
17590
17428
|
"node_modules/metro": {
|
|
17591
|
-
"version": "0.83.
|
|
17592
|
-
"integrity": "sha512
|
|
17429
|
+
"version": "0.83.3",
|
|
17430
|
+
"integrity": "sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==",
|
|
17593
17431
|
"license": "MIT",
|
|
17594
17432
|
"dependencies": {
|
|
17595
17433
|
"@babel/code-frame": "^7.24.7",
|
|
@@ -17613,18 +17451,18 @@
|
|
|
17613
17451
|
"jest-worker": "^29.7.0",
|
|
17614
17452
|
"jsc-safe-url": "^0.2.2",
|
|
17615
17453
|
"lodash.throttle": "^4.1.1",
|
|
17616
|
-
"metro-babel-transformer": "0.83.
|
|
17617
|
-
"metro-cache": "0.83.
|
|
17618
|
-
"metro-cache-key": "0.83.
|
|
17619
|
-
"metro-config": "0.83.
|
|
17620
|
-
"metro-core": "0.83.
|
|
17621
|
-
"metro-file-map": "0.83.
|
|
17622
|
-
"metro-resolver": "0.83.
|
|
17623
|
-
"metro-runtime": "0.83.
|
|
17624
|
-
"metro-source-map": "0.83.
|
|
17625
|
-
"metro-symbolicate": "0.83.
|
|
17626
|
-
"metro-transform-plugins": "0.83.
|
|
17627
|
-
"metro-transform-worker": "0.83.
|
|
17454
|
+
"metro-babel-transformer": "0.83.3",
|
|
17455
|
+
"metro-cache": "0.83.3",
|
|
17456
|
+
"metro-cache-key": "0.83.3",
|
|
17457
|
+
"metro-config": "0.83.3",
|
|
17458
|
+
"metro-core": "0.83.3",
|
|
17459
|
+
"metro-file-map": "0.83.3",
|
|
17460
|
+
"metro-resolver": "0.83.3",
|
|
17461
|
+
"metro-runtime": "0.83.3",
|
|
17462
|
+
"metro-source-map": "0.83.3",
|
|
17463
|
+
"metro-symbolicate": "0.83.3",
|
|
17464
|
+
"metro-transform-plugins": "0.83.3",
|
|
17465
|
+
"metro-transform-worker": "0.83.3",
|
|
17628
17466
|
"mime-types": "^2.1.27",
|
|
17629
17467
|
"nullthrows": "^1.1.1",
|
|
17630
17468
|
"serialize-error": "^2.1.0",
|
|
@@ -17641,8 +17479,8 @@
|
|
|
17641
17479
|
}
|
|
17642
17480
|
},
|
|
17643
17481
|
"node_modules/metro-babel-transformer": {
|
|
17644
|
-
"version": "0.83.
|
|
17645
|
-
"integrity": "sha512-
|
|
17482
|
+
"version": "0.83.3",
|
|
17483
|
+
"integrity": "sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==",
|
|
17646
17484
|
"license": "MIT",
|
|
17647
17485
|
"dependencies": {
|
|
17648
17486
|
"@babel/core": "^7.25.2",
|
|
@@ -17668,22 +17506,22 @@
|
|
|
17668
17506
|
}
|
|
17669
17507
|
},
|
|
17670
17508
|
"node_modules/metro-cache": {
|
|
17671
|
-
"version": "0.83.
|
|
17672
|
-
"integrity": "sha512-
|
|
17509
|
+
"version": "0.83.3",
|
|
17510
|
+
"integrity": "sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==",
|
|
17673
17511
|
"license": "MIT",
|
|
17674
17512
|
"dependencies": {
|
|
17675
17513
|
"exponential-backoff": "^3.1.1",
|
|
17676
17514
|
"flow-enums-runtime": "^0.0.6",
|
|
17677
17515
|
"https-proxy-agent": "^7.0.5",
|
|
17678
|
-
"metro-core": "0.83.
|
|
17516
|
+
"metro-core": "0.83.3"
|
|
17679
17517
|
},
|
|
17680
17518
|
"engines": {
|
|
17681
17519
|
"node": ">=20.19.4"
|
|
17682
17520
|
}
|
|
17683
17521
|
},
|
|
17684
17522
|
"node_modules/metro-cache-key": {
|
|
17685
|
-
"version": "0.83.
|
|
17686
|
-
"integrity": "sha512-
|
|
17523
|
+
"version": "0.83.3",
|
|
17524
|
+
"integrity": "sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==",
|
|
17687
17525
|
"license": "MIT",
|
|
17688
17526
|
"dependencies": {
|
|
17689
17527
|
"flow-enums-runtime": "^0.0.6"
|
|
@@ -17713,17 +17551,17 @@
|
|
|
17713
17551
|
}
|
|
17714
17552
|
},
|
|
17715
17553
|
"node_modules/metro-config": {
|
|
17716
|
-
"version": "0.83.
|
|
17717
|
-
"integrity": "sha512-
|
|
17554
|
+
"version": "0.83.3",
|
|
17555
|
+
"integrity": "sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==",
|
|
17718
17556
|
"license": "MIT",
|
|
17719
17557
|
"dependencies": {
|
|
17720
17558
|
"connect": "^3.6.5",
|
|
17721
17559
|
"flow-enums-runtime": "^0.0.6",
|
|
17722
17560
|
"jest-validate": "^29.7.0",
|
|
17723
|
-
"metro": "0.83.
|
|
17724
|
-
"metro-cache": "0.83.
|
|
17725
|
-
"metro-core": "0.83.
|
|
17726
|
-
"metro-runtime": "0.83.
|
|
17561
|
+
"metro": "0.83.3",
|
|
17562
|
+
"metro-cache": "0.83.3",
|
|
17563
|
+
"metro-core": "0.83.3",
|
|
17564
|
+
"metro-runtime": "0.83.3",
|
|
17727
17565
|
"yaml": "^2.6.1"
|
|
17728
17566
|
},
|
|
17729
17567
|
"engines": {
|
|
@@ -17731,21 +17569,21 @@
|
|
|
17731
17569
|
}
|
|
17732
17570
|
},
|
|
17733
17571
|
"node_modules/metro-core": {
|
|
17734
|
-
"version": "0.83.
|
|
17735
|
-
"integrity": "sha512-
|
|
17572
|
+
"version": "0.83.3",
|
|
17573
|
+
"integrity": "sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==",
|
|
17736
17574
|
"license": "MIT",
|
|
17737
17575
|
"dependencies": {
|
|
17738
17576
|
"flow-enums-runtime": "^0.0.6",
|
|
17739
17577
|
"lodash.throttle": "^4.1.1",
|
|
17740
|
-
"metro-resolver": "0.83.
|
|
17578
|
+
"metro-resolver": "0.83.3"
|
|
17741
17579
|
},
|
|
17742
17580
|
"engines": {
|
|
17743
17581
|
"node": ">=20.19.4"
|
|
17744
17582
|
}
|
|
17745
17583
|
},
|
|
17746
17584
|
"node_modules/metro-file-map": {
|
|
17747
|
-
"version": "0.83.
|
|
17748
|
-
"integrity": "sha512-
|
|
17585
|
+
"version": "0.83.3",
|
|
17586
|
+
"integrity": "sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==",
|
|
17749
17587
|
"license": "MIT",
|
|
17750
17588
|
"dependencies": {
|
|
17751
17589
|
"debug": "^4.4.0",
|
|
@@ -17763,8 +17601,8 @@
|
|
|
17763
17601
|
}
|
|
17764
17602
|
},
|
|
17765
17603
|
"node_modules/metro-minify-terser": {
|
|
17766
|
-
"version": "0.83.
|
|
17767
|
-
"integrity": "sha512-
|
|
17604
|
+
"version": "0.83.3",
|
|
17605
|
+
"integrity": "sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==",
|
|
17768
17606
|
"license": "MIT",
|
|
17769
17607
|
"dependencies": {
|
|
17770
17608
|
"flow-enums-runtime": "^0.0.6",
|
|
@@ -17838,8 +17676,8 @@
|
|
|
17838
17676
|
}
|
|
17839
17677
|
},
|
|
17840
17678
|
"node_modules/metro-resolver": {
|
|
17841
|
-
"version": "0.83.
|
|
17842
|
-
"integrity": "sha512-
|
|
17679
|
+
"version": "0.83.3",
|
|
17680
|
+
"integrity": "sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==",
|
|
17843
17681
|
"license": "MIT",
|
|
17844
17682
|
"dependencies": {
|
|
17845
17683
|
"flow-enums-runtime": "^0.0.6"
|
|
@@ -17849,8 +17687,8 @@
|
|
|
17849
17687
|
}
|
|
17850
17688
|
},
|
|
17851
17689
|
"node_modules/metro-runtime": {
|
|
17852
|
-
"version": "0.83.
|
|
17853
|
-
"integrity": "sha512-
|
|
17690
|
+
"version": "0.83.3",
|
|
17691
|
+
"integrity": "sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==",
|
|
17854
17692
|
"license": "MIT",
|
|
17855
17693
|
"dependencies": {
|
|
17856
17694
|
"@babel/runtime": "^7.25.0",
|
|
@@ -17861,8 +17699,8 @@
|
|
|
17861
17699
|
}
|
|
17862
17700
|
},
|
|
17863
17701
|
"node_modules/metro-source-map": {
|
|
17864
|
-
"version": "0.83.
|
|
17865
|
-
"integrity": "sha512-
|
|
17702
|
+
"version": "0.83.3",
|
|
17703
|
+
"integrity": "sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==",
|
|
17866
17704
|
"license": "MIT",
|
|
17867
17705
|
"dependencies": {
|
|
17868
17706
|
"@babel/traverse": "^7.25.3",
|
|
@@ -17870,9 +17708,9 @@
|
|
|
17870
17708
|
"@babel/types": "^7.25.2",
|
|
17871
17709
|
"flow-enums-runtime": "^0.0.6",
|
|
17872
17710
|
"invariant": "^2.2.4",
|
|
17873
|
-
"metro-symbolicate": "0.83.
|
|
17711
|
+
"metro-symbolicate": "0.83.3",
|
|
17874
17712
|
"nullthrows": "^1.1.1",
|
|
17875
|
-
"ob1": "0.83.
|
|
17713
|
+
"ob1": "0.83.3",
|
|
17876
17714
|
"source-map": "^0.5.6",
|
|
17877
17715
|
"vlq": "^1.0.0"
|
|
17878
17716
|
},
|
|
@@ -17889,13 +17727,13 @@
|
|
|
17889
17727
|
}
|
|
17890
17728
|
},
|
|
17891
17729
|
"node_modules/metro-symbolicate": {
|
|
17892
|
-
"version": "0.83.
|
|
17893
|
-
"integrity": "sha512-
|
|
17730
|
+
"version": "0.83.3",
|
|
17731
|
+
"integrity": "sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==",
|
|
17894
17732
|
"license": "MIT",
|
|
17895
17733
|
"dependencies": {
|
|
17896
17734
|
"flow-enums-runtime": "^0.0.6",
|
|
17897
17735
|
"invariant": "^2.2.4",
|
|
17898
|
-
"metro-source-map": "0.83.
|
|
17736
|
+
"metro-source-map": "0.83.3",
|
|
17899
17737
|
"nullthrows": "^1.1.1",
|
|
17900
17738
|
"source-map": "^0.5.6",
|
|
17901
17739
|
"vlq": "^1.0.0"
|
|
@@ -17916,8 +17754,8 @@
|
|
|
17916
17754
|
}
|
|
17917
17755
|
},
|
|
17918
17756
|
"node_modules/metro-transform-plugins": {
|
|
17919
|
-
"version": "0.83.
|
|
17920
|
-
"integrity": "sha512-
|
|
17757
|
+
"version": "0.83.3",
|
|
17758
|
+
"integrity": "sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==",
|
|
17921
17759
|
"license": "MIT",
|
|
17922
17760
|
"dependencies": {
|
|
17923
17761
|
"@babel/core": "^7.25.2",
|
|
@@ -17932,8 +17770,8 @@
|
|
|
17932
17770
|
}
|
|
17933
17771
|
},
|
|
17934
17772
|
"node_modules/metro-transform-worker": {
|
|
17935
|
-
"version": "0.83.
|
|
17936
|
-
"integrity": "sha512-
|
|
17773
|
+
"version": "0.83.3",
|
|
17774
|
+
"integrity": "sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==",
|
|
17937
17775
|
"license": "MIT",
|
|
17938
17776
|
"dependencies": {
|
|
17939
17777
|
"@babel/core": "^7.25.2",
|
|
@@ -17941,13 +17779,13 @@
|
|
|
17941
17779
|
"@babel/parser": "^7.25.3",
|
|
17942
17780
|
"@babel/types": "^7.25.2",
|
|
17943
17781
|
"flow-enums-runtime": "^0.0.6",
|
|
17944
|
-
"metro": "0.83.
|
|
17945
|
-
"metro-babel-transformer": "0.83.
|
|
17946
|
-
"metro-cache": "0.83.
|
|
17947
|
-
"metro-cache-key": "0.83.
|
|
17948
|
-
"metro-minify-terser": "0.83.
|
|
17949
|
-
"metro-source-map": "0.83.
|
|
17950
|
-
"metro-transform-plugins": "0.83.
|
|
17782
|
+
"metro": "0.83.3",
|
|
17783
|
+
"metro-babel-transformer": "0.83.3",
|
|
17784
|
+
"metro-cache": "0.83.3",
|
|
17785
|
+
"metro-cache-key": "0.83.3",
|
|
17786
|
+
"metro-minify-terser": "0.83.3",
|
|
17787
|
+
"metro-source-map": "0.83.3",
|
|
17788
|
+
"metro-transform-plugins": "0.83.3",
|
|
17951
17789
|
"nullthrows": "^1.1.1"
|
|
17952
17790
|
},
|
|
17953
17791
|
"engines": {
|
|
@@ -18001,11 +17839,6 @@
|
|
|
18001
17839
|
"node": ">=12"
|
|
18002
17840
|
}
|
|
18003
17841
|
},
|
|
18004
|
-
"node_modules/metro/node_modules/emoji-regex": {
|
|
18005
|
-
"version": "8.0.0",
|
|
18006
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
18007
|
-
"license": "MIT"
|
|
18008
|
-
},
|
|
18009
17842
|
"node_modules/metro/node_modules/hermes-estree": {
|
|
18010
17843
|
"version": "0.32.0",
|
|
18011
17844
|
"integrity": "sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==",
|
|
@@ -18027,35 +17860,6 @@
|
|
|
18027
17860
|
"node": ">=0.10.0"
|
|
18028
17861
|
}
|
|
18029
17862
|
},
|
|
18030
|
-
"node_modules/metro/node_modules/string-width": {
|
|
18031
|
-
"version": "4.2.3",
|
|
18032
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
18033
|
-
"license": "MIT",
|
|
18034
|
-
"dependencies": {
|
|
18035
|
-
"emoji-regex": "^8.0.0",
|
|
18036
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
18037
|
-
"strip-ansi": "^6.0.1"
|
|
18038
|
-
},
|
|
18039
|
-
"engines": {
|
|
18040
|
-
"node": ">=8"
|
|
18041
|
-
}
|
|
18042
|
-
},
|
|
18043
|
-
"node_modules/metro/node_modules/wrap-ansi": {
|
|
18044
|
-
"version": "7.0.0",
|
|
18045
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
18046
|
-
"license": "MIT",
|
|
18047
|
-
"dependencies": {
|
|
18048
|
-
"ansi-styles": "^4.0.0",
|
|
18049
|
-
"string-width": "^4.1.0",
|
|
18050
|
-
"strip-ansi": "^6.0.0"
|
|
18051
|
-
},
|
|
18052
|
-
"engines": {
|
|
18053
|
-
"node": ">=10"
|
|
18054
|
-
},
|
|
18055
|
-
"funding": {
|
|
18056
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
18057
|
-
}
|
|
18058
|
-
},
|
|
18059
17863
|
"node_modules/metro/node_modules/ws": {
|
|
18060
17864
|
"version": "7.5.10",
|
|
18061
17865
|
"integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==",
|
|
@@ -18446,8 +18250,8 @@
|
|
|
18446
18250
|
}
|
|
18447
18251
|
},
|
|
18448
18252
|
"node_modules/node-forge": {
|
|
18449
|
-
"version": "1.3.
|
|
18450
|
-
"integrity": "sha512-
|
|
18253
|
+
"version": "1.3.3",
|
|
18254
|
+
"integrity": "sha512-rLvcdSyRCyouf6jcOIPe/BgwG/d7hKjzMKOas33/pHEr6gbq18IK9zV7DiPvzsz0oBJPme6qr6H6kGZuI9/DZg==",
|
|
18451
18255
|
"license": "(BSD-3-Clause OR GPL-2.0)",
|
|
18452
18256
|
"peer": true,
|
|
18453
18257
|
"engines": {
|
|
@@ -18480,8 +18284,8 @@
|
|
|
18480
18284
|
}
|
|
18481
18285
|
},
|
|
18482
18286
|
"node_modules/normalize-package-data/node_modules/semver": {
|
|
18483
|
-
"version": "7.7.
|
|
18484
|
-
"integrity": "sha512-
|
|
18287
|
+
"version": "7.7.4",
|
|
18288
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
18485
18289
|
"dev": true,
|
|
18486
18290
|
"license": "ISC",
|
|
18487
18291
|
"bin": {
|
|
@@ -18545,8 +18349,8 @@
|
|
|
18545
18349
|
"peer": true
|
|
18546
18350
|
},
|
|
18547
18351
|
"node_modules/npm-package-arg/node_modules/semver": {
|
|
18548
|
-
"version": "7.7.
|
|
18549
|
-
"integrity": "sha512-
|
|
18352
|
+
"version": "7.7.4",
|
|
18353
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
18550
18354
|
"license": "ISC",
|
|
18551
18355
|
"peer": true,
|
|
18552
18356
|
"bin": {
|
|
@@ -18585,14 +18389,14 @@
|
|
|
18585
18389
|
"license": "MIT"
|
|
18586
18390
|
},
|
|
18587
18391
|
"node_modules/nwsapi": {
|
|
18588
|
-
"version": "2.2.
|
|
18589
|
-
"integrity": "sha512-
|
|
18392
|
+
"version": "2.2.23",
|
|
18393
|
+
"integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==",
|
|
18590
18394
|
"dev": true,
|
|
18591
18395
|
"license": "MIT"
|
|
18592
18396
|
},
|
|
18593
18397
|
"node_modules/ob1": {
|
|
18594
|
-
"version": "0.83.
|
|
18595
|
-
"integrity": "sha512-
|
|
18398
|
+
"version": "0.83.3",
|
|
18399
|
+
"integrity": "sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==",
|
|
18596
18400
|
"license": "MIT",
|
|
18597
18401
|
"dependencies": {
|
|
18598
18402
|
"flow-enums-runtime": "^0.0.6"
|
|
@@ -18976,6 +18780,7 @@
|
|
|
18976
18780
|
"node_modules/package-json-from-dist": {
|
|
18977
18781
|
"version": "1.0.1",
|
|
18978
18782
|
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
|
|
18783
|
+
"dev": true,
|
|
18979
18784
|
"license": "BlueOak-1.0.0"
|
|
18980
18785
|
},
|
|
18981
18786
|
"node_modules/package-json/node_modules/@sindresorhus/is": {
|
|
@@ -19326,24 +19131,27 @@
|
|
|
19326
19131
|
"license": "MIT"
|
|
19327
19132
|
},
|
|
19328
19133
|
"node_modules/path-scurry": {
|
|
19329
|
-
"version": "
|
|
19330
|
-
"integrity": "sha512-
|
|
19134
|
+
"version": "2.0.1",
|
|
19135
|
+
"integrity": "sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==",
|
|
19331
19136
|
"license": "BlueOak-1.0.0",
|
|
19332
19137
|
"dependencies": {
|
|
19333
|
-
"lru-cache": "^
|
|
19334
|
-
"minipass": "^
|
|
19138
|
+
"lru-cache": "^11.0.0",
|
|
19139
|
+
"minipass": "^7.1.2"
|
|
19335
19140
|
},
|
|
19336
19141
|
"engines": {
|
|
19337
|
-
"node": "
|
|
19142
|
+
"node": "20 || >=22"
|
|
19338
19143
|
},
|
|
19339
19144
|
"funding": {
|
|
19340
19145
|
"url": "https://github.com/sponsors/isaacs"
|
|
19341
19146
|
}
|
|
19342
19147
|
},
|
|
19343
19148
|
"node_modules/path-scurry/node_modules/lru-cache": {
|
|
19344
|
-
"version": "
|
|
19345
|
-
"integrity": "sha512-
|
|
19346
|
-
"license": "
|
|
19149
|
+
"version": "11.2.6",
|
|
19150
|
+
"integrity": "sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==",
|
|
19151
|
+
"license": "BlueOak-1.0.0",
|
|
19152
|
+
"engines": {
|
|
19153
|
+
"node": "20 || >=22"
|
|
19154
|
+
}
|
|
19347
19155
|
},
|
|
19348
19156
|
"node_modules/path-type": {
|
|
19349
19157
|
"version": "4.0.0",
|
|
@@ -19499,8 +19307,8 @@
|
|
|
19499
19307
|
}
|
|
19500
19308
|
},
|
|
19501
19309
|
"node_modules/prettier": {
|
|
19502
|
-
"version": "3.
|
|
19503
|
-
"integrity": "sha512-
|
|
19310
|
+
"version": "3.8.1",
|
|
19311
|
+
"integrity": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==",
|
|
19504
19312
|
"dev": true,
|
|
19505
19313
|
"license": "MIT",
|
|
19506
19314
|
"peer": true,
|
|
@@ -19515,8 +19323,8 @@
|
|
|
19515
19323
|
}
|
|
19516
19324
|
},
|
|
19517
19325
|
"node_modules/prettier-linter-helpers": {
|
|
19518
|
-
"version": "1.0.
|
|
19519
|
-
"integrity": "sha512-
|
|
19326
|
+
"version": "1.0.1",
|
|
19327
|
+
"integrity": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==",
|
|
19520
19328
|
"dev": true,
|
|
19521
19329
|
"license": "MIT",
|
|
19522
19330
|
"dependencies": {
|
|
@@ -19722,8 +19530,8 @@
|
|
|
19722
19530
|
}
|
|
19723
19531
|
},
|
|
19724
19532
|
"node_modules/qs": {
|
|
19725
|
-
"version": "6.14.
|
|
19726
|
-
"integrity": "sha512-
|
|
19533
|
+
"version": "6.14.2",
|
|
19534
|
+
"integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
|
|
19727
19535
|
"dev": true,
|
|
19728
19536
|
"license": "BSD-3-Clause",
|
|
19729
19537
|
"dependencies": {
|
|
@@ -19936,8 +19744,8 @@
|
|
|
19936
19744
|
}
|
|
19937
19745
|
},
|
|
19938
19746
|
"node_modules/react-is": {
|
|
19939
|
-
"version": "19.2.
|
|
19940
|
-
"integrity": "sha512-
|
|
19747
|
+
"version": "19.2.4",
|
|
19748
|
+
"integrity": "sha512-W+EWGn2v0ApPKgKKCy/7s7WHXkboGcsrXE+2joLyVxkbyVQfO3MUEaUQDHoSmb8TFFrSKYa9mw64WZHNHSDzYA==",
|
|
19941
19749
|
"license": "MIT"
|
|
19942
19750
|
},
|
|
19943
19751
|
"node_modules/react-lottie-player": {
|
|
@@ -20112,7 +19920,7 @@
|
|
|
20112
19920
|
"node_modules/react-native-builder-bob/node_modules/glob": {
|
|
20113
19921
|
"version": "7.2.3",
|
|
20114
19922
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
20115
|
-
"deprecated": "
|
|
19923
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
20116
19924
|
"dev": true,
|
|
20117
19925
|
"license": "ISC",
|
|
20118
19926
|
"dependencies": {
|
|
@@ -20153,8 +19961,8 @@
|
|
|
20153
19961
|
}
|
|
20154
19962
|
},
|
|
20155
19963
|
"node_modules/react-native-drawer-layout": {
|
|
20156
|
-
"version": "4.2.
|
|
20157
|
-
"integrity": "sha512-
|
|
19964
|
+
"version": "4.2.2",
|
|
19965
|
+
"integrity": "sha512-UG/PTTeyyr43KahbgoGyXri8LMO5USHY3/RUpeKBKwCc7xLVGnDLOVNSRrJw0dDc7YmPbmAyJ4oxp8nKboKKuw==",
|
|
20158
19966
|
"license": "MIT",
|
|
20159
19967
|
"dependencies": {
|
|
20160
19968
|
"color": "^4.2.3",
|
|
@@ -20398,32 +20206,118 @@
|
|
|
20398
20206
|
}
|
|
20399
20207
|
},
|
|
20400
20208
|
"node_modules/react-native-worklets": {
|
|
20401
|
-
"version": "0.
|
|
20402
|
-
"integrity": "sha512-
|
|
20209
|
+
"version": "0.7.3",
|
|
20210
|
+
"integrity": "sha512-m/CIUCHvLQulboBn0BtgpsesXjOTeubU7t+V0lCPpBj0t2ExigwqDHoKj3ck7OeErnjgkD27wdAtQCubYATe3g==",
|
|
20403
20211
|
"license": "MIT",
|
|
20404
20212
|
"peer": true,
|
|
20405
20213
|
"dependencies": {
|
|
20406
|
-
"@babel/plugin-transform-arrow-functions": "
|
|
20407
|
-
"@babel/plugin-transform-class-properties": "
|
|
20408
|
-
"@babel/plugin-transform-classes": "
|
|
20409
|
-
"@babel/plugin-transform-nullish-coalescing-operator": "
|
|
20410
|
-
"@babel/plugin-transform-optional-chaining": "
|
|
20411
|
-
"@babel/plugin-transform-shorthand-properties": "
|
|
20412
|
-
"@babel/plugin-transform-template-literals": "
|
|
20413
|
-
"@babel/plugin-transform-unicode-regex": "
|
|
20414
|
-
"@babel/preset-typescript": "
|
|
20415
|
-
"convert-source-map": "
|
|
20416
|
-
"semver": "7.7.
|
|
20214
|
+
"@babel/plugin-transform-arrow-functions": "7.27.1",
|
|
20215
|
+
"@babel/plugin-transform-class-properties": "7.27.1",
|
|
20216
|
+
"@babel/plugin-transform-classes": "7.28.4",
|
|
20217
|
+
"@babel/plugin-transform-nullish-coalescing-operator": "7.27.1",
|
|
20218
|
+
"@babel/plugin-transform-optional-chaining": "7.27.1",
|
|
20219
|
+
"@babel/plugin-transform-shorthand-properties": "7.27.1",
|
|
20220
|
+
"@babel/plugin-transform-template-literals": "7.27.1",
|
|
20221
|
+
"@babel/plugin-transform-unicode-regex": "7.27.1",
|
|
20222
|
+
"@babel/preset-typescript": "7.27.1",
|
|
20223
|
+
"convert-source-map": "2.0.0",
|
|
20224
|
+
"semver": "7.7.3"
|
|
20417
20225
|
},
|
|
20418
20226
|
"peerDependencies": {
|
|
20419
|
-
"@babel/core": "
|
|
20227
|
+
"@babel/core": "*",
|
|
20420
20228
|
"react": "*",
|
|
20421
20229
|
"react-native": "*"
|
|
20422
20230
|
}
|
|
20423
20231
|
},
|
|
20232
|
+
"node_modules/react-native-worklets/node_modules/@babel/plugin-transform-class-properties": {
|
|
20233
|
+
"version": "7.27.1",
|
|
20234
|
+
"integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==",
|
|
20235
|
+
"license": "MIT",
|
|
20236
|
+
"peer": true,
|
|
20237
|
+
"dependencies": {
|
|
20238
|
+
"@babel/helper-create-class-features-plugin": "^7.27.1",
|
|
20239
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
20240
|
+
},
|
|
20241
|
+
"engines": {
|
|
20242
|
+
"node": ">=6.9.0"
|
|
20243
|
+
},
|
|
20244
|
+
"peerDependencies": {
|
|
20245
|
+
"@babel/core": "^7.0.0-0"
|
|
20246
|
+
}
|
|
20247
|
+
},
|
|
20248
|
+
"node_modules/react-native-worklets/node_modules/@babel/plugin-transform-classes": {
|
|
20249
|
+
"version": "7.28.4",
|
|
20250
|
+
"integrity": "sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==",
|
|
20251
|
+
"license": "MIT",
|
|
20252
|
+
"peer": true,
|
|
20253
|
+
"dependencies": {
|
|
20254
|
+
"@babel/helper-annotate-as-pure": "^7.27.3",
|
|
20255
|
+
"@babel/helper-compilation-targets": "^7.27.2",
|
|
20256
|
+
"@babel/helper-globals": "^7.28.0",
|
|
20257
|
+
"@babel/helper-plugin-utils": "^7.27.1",
|
|
20258
|
+
"@babel/helper-replace-supers": "^7.27.1",
|
|
20259
|
+
"@babel/traverse": "^7.28.4"
|
|
20260
|
+
},
|
|
20261
|
+
"engines": {
|
|
20262
|
+
"node": ">=6.9.0"
|
|
20263
|
+
},
|
|
20264
|
+
"peerDependencies": {
|
|
20265
|
+
"@babel/core": "^7.0.0-0"
|
|
20266
|
+
}
|
|
20267
|
+
},
|
|
20268
|
+
"node_modules/react-native-worklets/node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
|
|
20269
|
+
"version": "7.27.1",
|
|
20270
|
+
"integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==",
|
|
20271
|
+
"license": "MIT",
|
|
20272
|
+
"peer": true,
|
|
20273
|
+
"dependencies": {
|
|
20274
|
+
"@babel/helper-plugin-utils": "^7.27.1"
|
|
20275
|
+
},
|
|
20276
|
+
"engines": {
|
|
20277
|
+
"node": ">=6.9.0"
|
|
20278
|
+
},
|
|
20279
|
+
"peerDependencies": {
|
|
20280
|
+
"@babel/core": "^7.0.0-0"
|
|
20281
|
+
}
|
|
20282
|
+
},
|
|
20283
|
+
"node_modules/react-native-worklets/node_modules/@babel/plugin-transform-optional-chaining": {
|
|
20284
|
+
"version": "7.27.1",
|
|
20285
|
+
"integrity": "sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==",
|
|
20286
|
+
"license": "MIT",
|
|
20287
|
+
"peer": true,
|
|
20288
|
+
"dependencies": {
|
|
20289
|
+
"@babel/helper-plugin-utils": "^7.27.1",
|
|
20290
|
+
"@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"
|
|
20291
|
+
},
|
|
20292
|
+
"engines": {
|
|
20293
|
+
"node": ">=6.9.0"
|
|
20294
|
+
},
|
|
20295
|
+
"peerDependencies": {
|
|
20296
|
+
"@babel/core": "^7.0.0-0"
|
|
20297
|
+
}
|
|
20298
|
+
},
|
|
20299
|
+
"node_modules/react-native-worklets/node_modules/@babel/preset-typescript": {
|
|
20300
|
+
"version": "7.27.1",
|
|
20301
|
+
"integrity": "sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==",
|
|
20302
|
+
"license": "MIT",
|
|
20303
|
+
"peer": true,
|
|
20304
|
+
"dependencies": {
|
|
20305
|
+
"@babel/helper-plugin-utils": "^7.27.1",
|
|
20306
|
+
"@babel/helper-validator-option": "^7.27.1",
|
|
20307
|
+
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
20308
|
+
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
|
|
20309
|
+
"@babel/plugin-transform-typescript": "^7.27.1"
|
|
20310
|
+
},
|
|
20311
|
+
"engines": {
|
|
20312
|
+
"node": ">=6.9.0"
|
|
20313
|
+
},
|
|
20314
|
+
"peerDependencies": {
|
|
20315
|
+
"@babel/core": "^7.0.0-0"
|
|
20316
|
+
}
|
|
20317
|
+
},
|
|
20424
20318
|
"node_modules/react-native-worklets/node_modules/semver": {
|
|
20425
|
-
"version": "7.7.
|
|
20426
|
-
"integrity": "sha512-
|
|
20319
|
+
"version": "7.7.3",
|
|
20320
|
+
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
|
|
20427
20321
|
"license": "ISC",
|
|
20428
20322
|
"peer": true,
|
|
20429
20323
|
"bin": {
|
|
@@ -20483,20 +20377,6 @@
|
|
|
20483
20377
|
}
|
|
20484
20378
|
}
|
|
20485
20379
|
},
|
|
20486
|
-
"node_modules/react-native/node_modules/ansi-styles": {
|
|
20487
|
-
"version": "4.3.0",
|
|
20488
|
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
20489
|
-
"license": "MIT",
|
|
20490
|
-
"dependencies": {
|
|
20491
|
-
"color-convert": "^2.0.1"
|
|
20492
|
-
},
|
|
20493
|
-
"engines": {
|
|
20494
|
-
"node": ">=8"
|
|
20495
|
-
},
|
|
20496
|
-
"funding": {
|
|
20497
|
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
20498
|
-
}
|
|
20499
|
-
},
|
|
20500
20380
|
"node_modules/react-native/node_modules/cliui": {
|
|
20501
20381
|
"version": "8.0.1",
|
|
20502
20382
|
"integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
|
|
@@ -20518,15 +20398,10 @@
|
|
|
20518
20398
|
"node": ">=18"
|
|
20519
20399
|
}
|
|
20520
20400
|
},
|
|
20521
|
-
"node_modules/react-native/node_modules/emoji-regex": {
|
|
20522
|
-
"version": "8.0.0",
|
|
20523
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
20524
|
-
"license": "MIT"
|
|
20525
|
-
},
|
|
20526
20401
|
"node_modules/react-native/node_modules/glob": {
|
|
20527
20402
|
"version": "7.2.3",
|
|
20528
20403
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
20529
|
-
"deprecated": "
|
|
20404
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
20530
20405
|
"license": "ISC",
|
|
20531
20406
|
"dependencies": {
|
|
20532
20407
|
"fs.realpath": "^1.0.0",
|
|
@@ -20557,8 +20432,8 @@
|
|
|
20557
20432
|
"license": "MIT"
|
|
20558
20433
|
},
|
|
20559
20434
|
"node_modules/react-native/node_modules/semver": {
|
|
20560
|
-
"version": "7.7.
|
|
20561
|
-
"integrity": "sha512-
|
|
20435
|
+
"version": "7.7.4",
|
|
20436
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
20562
20437
|
"license": "ISC",
|
|
20563
20438
|
"bin": {
|
|
20564
20439
|
"semver": "bin/semver.js"
|
|
@@ -20567,35 +20442,6 @@
|
|
|
20567
20442
|
"node": ">=10"
|
|
20568
20443
|
}
|
|
20569
20444
|
},
|
|
20570
|
-
"node_modules/react-native/node_modules/string-width": {
|
|
20571
|
-
"version": "4.2.3",
|
|
20572
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
20573
|
-
"license": "MIT",
|
|
20574
|
-
"dependencies": {
|
|
20575
|
-
"emoji-regex": "^8.0.0",
|
|
20576
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
20577
|
-
"strip-ansi": "^6.0.1"
|
|
20578
|
-
},
|
|
20579
|
-
"engines": {
|
|
20580
|
-
"node": ">=8"
|
|
20581
|
-
}
|
|
20582
|
-
},
|
|
20583
|
-
"node_modules/react-native/node_modules/wrap-ansi": {
|
|
20584
|
-
"version": "7.0.0",
|
|
20585
|
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
20586
|
-
"license": "MIT",
|
|
20587
|
-
"dependencies": {
|
|
20588
|
-
"ansi-styles": "^4.0.0",
|
|
20589
|
-
"string-width": "^4.1.0",
|
|
20590
|
-
"strip-ansi": "^6.0.0"
|
|
20591
|
-
},
|
|
20592
|
-
"engines": {
|
|
20593
|
-
"node": ">=10"
|
|
20594
|
-
},
|
|
20595
|
-
"funding": {
|
|
20596
|
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
20597
|
-
}
|
|
20598
|
-
},
|
|
20599
20445
|
"node_modules/react-native/node_modules/ws": {
|
|
20600
20446
|
"version": "6.2.3",
|
|
20601
20447
|
"integrity": "sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==",
|
|
@@ -21410,8 +21256,8 @@
|
|
|
21410
21256
|
}
|
|
21411
21257
|
},
|
|
21412
21258
|
"node_modules/resolve-workspace-root": {
|
|
21413
|
-
"version": "2.0.
|
|
21414
|
-
"integrity": "sha512-
|
|
21259
|
+
"version": "2.0.1",
|
|
21260
|
+
"integrity": "sha512-nR23LHAvaI6aHtMg6RWoaHpdR4D881Nydkzi2CixINyg9T00KgaJdJI6Vwty+Ps8WLxZHuxsS0BseWjxSA4C+w==",
|
|
21415
21261
|
"license": "MIT"
|
|
21416
21262
|
},
|
|
21417
21263
|
"node_modules/resolve.exports": {
|
|
@@ -21498,7 +21344,7 @@
|
|
|
21498
21344
|
"node_modules/rimraf/node_modules/glob": {
|
|
21499
21345
|
"version": "7.2.3",
|
|
21500
21346
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
21501
|
-
"deprecated": "
|
|
21347
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
21502
21348
|
"license": "ISC",
|
|
21503
21349
|
"dependencies": {
|
|
21504
21350
|
"fs.realpath": "^1.0.0",
|
|
@@ -21647,9 +21493,12 @@
|
|
|
21647
21493
|
"license": "MIT"
|
|
21648
21494
|
},
|
|
21649
21495
|
"node_modules/sax": {
|
|
21650
|
-
"version": "1.4.
|
|
21651
|
-
"integrity": "sha512-
|
|
21652
|
-
"license": "BlueOak-1.0.0"
|
|
21496
|
+
"version": "1.4.4",
|
|
21497
|
+
"integrity": "sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==",
|
|
21498
|
+
"license": "BlueOak-1.0.0",
|
|
21499
|
+
"engines": {
|
|
21500
|
+
"node": ">=11.0.0"
|
|
21501
|
+
}
|
|
21653
21502
|
},
|
|
21654
21503
|
"node_modules/saxes": {
|
|
21655
21504
|
"version": "6.0.0",
|
|
@@ -21709,23 +21558,23 @@
|
|
|
21709
21558
|
}
|
|
21710
21559
|
},
|
|
21711
21560
|
"node_modules/send": {
|
|
21712
|
-
"version": "0.19.
|
|
21713
|
-
"integrity": "sha512-
|
|
21561
|
+
"version": "0.19.2",
|
|
21562
|
+
"integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
|
|
21714
21563
|
"license": "MIT",
|
|
21715
21564
|
"dependencies": {
|
|
21716
21565
|
"debug": "2.6.9",
|
|
21717
21566
|
"depd": "2.0.0",
|
|
21718
21567
|
"destroy": "1.2.0",
|
|
21719
|
-
"encodeurl": "~
|
|
21568
|
+
"encodeurl": "~2.0.0",
|
|
21720
21569
|
"escape-html": "~1.0.3",
|
|
21721
21570
|
"etag": "~1.8.1",
|
|
21722
|
-
"fresh": "0.5.2",
|
|
21723
|
-
"http-errors": "2.0.
|
|
21571
|
+
"fresh": "~0.5.2",
|
|
21572
|
+
"http-errors": "~2.0.1",
|
|
21724
21573
|
"mime": "1.6.0",
|
|
21725
21574
|
"ms": "2.1.3",
|
|
21726
|
-
"on-finished": "2.4.1",
|
|
21575
|
+
"on-finished": "~2.4.1",
|
|
21727
21576
|
"range-parser": "~1.2.1",
|
|
21728
|
-
"statuses": "2.0.
|
|
21577
|
+
"statuses": "~2.0.2"
|
|
21729
21578
|
},
|
|
21730
21579
|
"engines": {
|
|
21731
21580
|
"node": ">= 0.8.0"
|
|
@@ -21744,6 +21593,14 @@
|
|
|
21744
21593
|
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
|
21745
21594
|
"license": "MIT"
|
|
21746
21595
|
},
|
|
21596
|
+
"node_modules/send/node_modules/encodeurl": {
|
|
21597
|
+
"version": "2.0.0",
|
|
21598
|
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
|
21599
|
+
"license": "MIT",
|
|
21600
|
+
"engines": {
|
|
21601
|
+
"node": ">= 0.8"
|
|
21602
|
+
}
|
|
21603
|
+
},
|
|
21747
21604
|
"node_modules/send/node_modules/on-finished": {
|
|
21748
21605
|
"version": "2.4.1",
|
|
21749
21606
|
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
|
@@ -21756,8 +21613,8 @@
|
|
|
21756
21613
|
}
|
|
21757
21614
|
},
|
|
21758
21615
|
"node_modules/send/node_modules/statuses": {
|
|
21759
|
-
"version": "2.0.
|
|
21760
|
-
"integrity": "sha512-
|
|
21616
|
+
"version": "2.0.2",
|
|
21617
|
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
|
21761
21618
|
"license": "MIT",
|
|
21762
21619
|
"engines": {
|
|
21763
21620
|
"node": ">= 0.8"
|
|
@@ -21782,14 +21639,14 @@
|
|
|
21782
21639
|
}
|
|
21783
21640
|
},
|
|
21784
21641
|
"node_modules/serve-static": {
|
|
21785
|
-
"version": "1.16.
|
|
21786
|
-
"integrity": "sha512-
|
|
21642
|
+
"version": "1.16.3",
|
|
21643
|
+
"integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
|
|
21787
21644
|
"license": "MIT",
|
|
21788
21645
|
"dependencies": {
|
|
21789
21646
|
"encodeurl": "~2.0.0",
|
|
21790
21647
|
"escape-html": "~1.0.3",
|
|
21791
21648
|
"parseurl": "~1.3.3",
|
|
21792
|
-
"send": "0.19.
|
|
21649
|
+
"send": "~0.19.1"
|
|
21793
21650
|
},
|
|
21794
21651
|
"engines": {
|
|
21795
21652
|
"node": ">= 0.8.0"
|
|
@@ -21915,7 +21772,7 @@
|
|
|
21915
21772
|
"node_modules/shelljs/node_modules/glob": {
|
|
21916
21773
|
"version": "7.2.3",
|
|
21917
21774
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
21918
|
-
"deprecated": "
|
|
21775
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
21919
21776
|
"dev": true,
|
|
21920
21777
|
"license": "ISC",
|
|
21921
21778
|
"dependencies": {
|
|
@@ -22295,25 +22152,23 @@
|
|
|
22295
22152
|
"license": "MIT"
|
|
22296
22153
|
},
|
|
22297
22154
|
"node_modules/string-width": {
|
|
22298
|
-
"version": "
|
|
22299
|
-
"integrity": "sha512-
|
|
22155
|
+
"version": "4.2.3",
|
|
22156
|
+
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
22300
22157
|
"license": "MIT",
|
|
22301
22158
|
"dependencies": {
|
|
22302
|
-
"
|
|
22303
|
-
"
|
|
22304
|
-
"strip-ansi": "^
|
|
22159
|
+
"emoji-regex": "^8.0.0",
|
|
22160
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
22161
|
+
"strip-ansi": "^6.0.1"
|
|
22305
22162
|
},
|
|
22306
22163
|
"engines": {
|
|
22307
|
-
"node": ">=
|
|
22308
|
-
},
|
|
22309
|
-
"funding": {
|
|
22310
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
22164
|
+
"node": ">=8"
|
|
22311
22165
|
}
|
|
22312
22166
|
},
|
|
22313
22167
|
"node_modules/string-width-cjs": {
|
|
22314
22168
|
"name": "string-width",
|
|
22315
22169
|
"version": "4.2.3",
|
|
22316
22170
|
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
22171
|
+
"dev": true,
|
|
22317
22172
|
"license": "MIT",
|
|
22318
22173
|
"dependencies": {
|
|
22319
22174
|
"emoji-regex": "^8.0.0",
|
|
@@ -22324,36 +22179,6 @@
|
|
|
22324
22179
|
"node": ">=8"
|
|
22325
22180
|
}
|
|
22326
22181
|
},
|
|
22327
|
-
"node_modules/string-width-cjs/node_modules/emoji-regex": {
|
|
22328
|
-
"version": "8.0.0",
|
|
22329
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
22330
|
-
"license": "MIT"
|
|
22331
|
-
},
|
|
22332
|
-
"node_modules/string-width/node_modules/ansi-regex": {
|
|
22333
|
-
"version": "6.2.2",
|
|
22334
|
-
"integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
|
|
22335
|
-
"license": "MIT",
|
|
22336
|
-
"engines": {
|
|
22337
|
-
"node": ">=12"
|
|
22338
|
-
},
|
|
22339
|
-
"funding": {
|
|
22340
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
22341
|
-
}
|
|
22342
|
-
},
|
|
22343
|
-
"node_modules/string-width/node_modules/strip-ansi": {
|
|
22344
|
-
"version": "7.1.2",
|
|
22345
|
-
"integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
|
|
22346
|
-
"license": "MIT",
|
|
22347
|
-
"dependencies": {
|
|
22348
|
-
"ansi-regex": "^6.0.1"
|
|
22349
|
-
},
|
|
22350
|
-
"engines": {
|
|
22351
|
-
"node": ">=12"
|
|
22352
|
-
},
|
|
22353
|
-
"funding": {
|
|
22354
|
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
22355
|
-
}
|
|
22356
|
-
},
|
|
22357
22182
|
"node_modules/string.prototype.matchall": {
|
|
22358
22183
|
"version": "4.0.12",
|
|
22359
22184
|
"integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==",
|
|
@@ -22462,6 +22287,7 @@
|
|
|
22462
22287
|
"name": "strip-ansi",
|
|
22463
22288
|
"version": "6.0.1",
|
|
22464
22289
|
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
|
|
22290
|
+
"dev": true,
|
|
22465
22291
|
"license": "MIT",
|
|
22466
22292
|
"dependencies": {
|
|
22467
22293
|
"ansi-regex": "^5.0.1"
|
|
@@ -22535,16 +22361,16 @@
|
|
|
22535
22361
|
"license": "MIT"
|
|
22536
22362
|
},
|
|
22537
22363
|
"node_modules/sucrase": {
|
|
22538
|
-
"version": "3.35.
|
|
22539
|
-
"integrity": "sha512-
|
|
22364
|
+
"version": "3.35.1",
|
|
22365
|
+
"integrity": "sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==",
|
|
22540
22366
|
"license": "MIT",
|
|
22541
22367
|
"dependencies": {
|
|
22542
22368
|
"@jridgewell/gen-mapping": "^0.3.2",
|
|
22543
22369
|
"commander": "^4.0.0",
|
|
22544
|
-
"glob": "^10.3.10",
|
|
22545
22370
|
"lines-and-columns": "^1.1.6",
|
|
22546
22371
|
"mz": "^2.7.0",
|
|
22547
22372
|
"pirates": "^4.0.1",
|
|
22373
|
+
"tinyglobby": "^0.2.11",
|
|
22548
22374
|
"ts-interface-checker": "^0.1.9"
|
|
22549
22375
|
},
|
|
22550
22376
|
"bin": {
|
|
@@ -22643,6 +22469,7 @@
|
|
|
22643
22469
|
"node_modules/tar": {
|
|
22644
22470
|
"version": "6.1.0",
|
|
22645
22471
|
"integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==",
|
|
22472
|
+
"deprecated": "Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
22646
22473
|
"dev": true,
|
|
22647
22474
|
"license": "ISC",
|
|
22648
22475
|
"dependencies": {
|
|
@@ -22762,8 +22589,8 @@
|
|
|
22762
22589
|
}
|
|
22763
22590
|
},
|
|
22764
22591
|
"node_modules/terser": {
|
|
22765
|
-
"version": "5.
|
|
22766
|
-
"integrity": "sha512-
|
|
22592
|
+
"version": "5.46.0",
|
|
22593
|
+
"integrity": "sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==",
|
|
22767
22594
|
"license": "BSD-2-Clause",
|
|
22768
22595
|
"dependencies": {
|
|
22769
22596
|
"@jridgewell/source-map": "^0.3.3",
|
|
@@ -22779,8 +22606,8 @@
|
|
|
22779
22606
|
}
|
|
22780
22607
|
},
|
|
22781
22608
|
"node_modules/terser-webpack-plugin": {
|
|
22782
|
-
"version": "5.3.
|
|
22783
|
-
"integrity": "sha512-
|
|
22609
|
+
"version": "5.3.16",
|
|
22610
|
+
"integrity": "sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==",
|
|
22784
22611
|
"dev": true,
|
|
22785
22612
|
"license": "MIT",
|
|
22786
22613
|
"peer": true,
|
|
@@ -22874,7 +22701,7 @@
|
|
|
22874
22701
|
"node_modules/test-exclude/node_modules/glob": {
|
|
22875
22702
|
"version": "7.2.3",
|
|
22876
22703
|
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
22877
|
-
"deprecated": "
|
|
22704
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
22878
22705
|
"license": "ISC",
|
|
22879
22706
|
"dependencies": {
|
|
22880
22707
|
"fs.realpath": "^1.0.0",
|
|
@@ -22957,6 +22784,48 @@
|
|
|
22957
22784
|
"node": ">=18"
|
|
22958
22785
|
}
|
|
22959
22786
|
},
|
|
22787
|
+
"node_modules/tinyglobby": {
|
|
22788
|
+
"version": "0.2.15",
|
|
22789
|
+
"integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
|
|
22790
|
+
"license": "MIT",
|
|
22791
|
+
"dependencies": {
|
|
22792
|
+
"fdir": "^6.5.0",
|
|
22793
|
+
"picomatch": "^4.0.3"
|
|
22794
|
+
},
|
|
22795
|
+
"engines": {
|
|
22796
|
+
"node": ">=12.0.0"
|
|
22797
|
+
},
|
|
22798
|
+
"funding": {
|
|
22799
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
22800
|
+
}
|
|
22801
|
+
},
|
|
22802
|
+
"node_modules/tinyglobby/node_modules/fdir": {
|
|
22803
|
+
"version": "6.5.0",
|
|
22804
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
22805
|
+
"license": "MIT",
|
|
22806
|
+
"engines": {
|
|
22807
|
+
"node": ">=12.0.0"
|
|
22808
|
+
},
|
|
22809
|
+
"peerDependencies": {
|
|
22810
|
+
"picomatch": "^3 || ^4"
|
|
22811
|
+
},
|
|
22812
|
+
"peerDependenciesMeta": {
|
|
22813
|
+
"picomatch": {
|
|
22814
|
+
"optional": true
|
|
22815
|
+
}
|
|
22816
|
+
}
|
|
22817
|
+
},
|
|
22818
|
+
"node_modules/tinyglobby/node_modules/picomatch": {
|
|
22819
|
+
"version": "4.0.3",
|
|
22820
|
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
22821
|
+
"license": "MIT",
|
|
22822
|
+
"engines": {
|
|
22823
|
+
"node": ">=12"
|
|
22824
|
+
},
|
|
22825
|
+
"funding": {
|
|
22826
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
22827
|
+
}
|
|
22828
|
+
},
|
|
22960
22829
|
"node_modules/tmp": {
|
|
22961
22830
|
"version": "0.0.33",
|
|
22962
22831
|
"integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
|
|
@@ -23282,8 +23151,8 @@
|
|
|
23282
23151
|
}
|
|
23283
23152
|
},
|
|
23284
23153
|
"node_modules/undici": {
|
|
23285
|
-
"version": "7.
|
|
23286
|
-
"integrity": "sha512-
|
|
23154
|
+
"version": "7.21.0",
|
|
23155
|
+
"integrity": "sha512-Hn2tCQpoDt1wv23a68Ctc8Cr/BHpUSfaPYrkajTXOS9IKpxVRx/X5m1K2YkbK2ipgZgxXSgsUinl3x+2YdSSfg==",
|
|
23287
23156
|
"dev": true,
|
|
23288
23157
|
"license": "MIT",
|
|
23289
23158
|
"engines": {
|
|
@@ -23378,8 +23247,8 @@
|
|
|
23378
23247
|
}
|
|
23379
23248
|
},
|
|
23380
23249
|
"node_modules/update-browserslist-db": {
|
|
23381
|
-
"version": "1.
|
|
23382
|
-
"integrity": "sha512-
|
|
23250
|
+
"version": "1.2.3",
|
|
23251
|
+
"integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
|
|
23383
23252
|
"funding": [
|
|
23384
23253
|
{
|
|
23385
23254
|
"type": "opencollective",
|
|
@@ -23466,8 +23335,8 @@
|
|
|
23466
23335
|
}
|
|
23467
23336
|
},
|
|
23468
23337
|
"node_modules/update-notifier/node_modules/semver": {
|
|
23469
|
-
"version": "7.7.
|
|
23470
|
-
"integrity": "sha512-
|
|
23338
|
+
"version": "7.7.4",
|
|
23339
|
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
|
23471
23340
|
"dev": true,
|
|
23472
23341
|
"license": "ISC",
|
|
23473
23342
|
"bin": {
|
|
@@ -24193,8 +24062,8 @@
|
|
|
24193
24062
|
"license": "MIT"
|
|
24194
24063
|
},
|
|
24195
24064
|
"node_modules/watchpack": {
|
|
24196
|
-
"version": "2.
|
|
24197
|
-
"integrity": "sha512-
|
|
24065
|
+
"version": "2.5.1",
|
|
24066
|
+
"integrity": "sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==",
|
|
24198
24067
|
"dev": true,
|
|
24199
24068
|
"license": "MIT",
|
|
24200
24069
|
"peer": true,
|
|
@@ -24224,8 +24093,8 @@
|
|
|
24224
24093
|
}
|
|
24225
24094
|
},
|
|
24226
24095
|
"node_modules/webpack": {
|
|
24227
|
-
"version": "5.
|
|
24228
|
-
"integrity": "sha512-
|
|
24096
|
+
"version": "5.105.2",
|
|
24097
|
+
"integrity": "sha512-dRXm0a2qcHPUBEzVk8uph0xWSjV/xZxenQQbLwnwP7caQCYpqG1qddwlyEkIDkYn0K8tvmcrZ+bOrzoQ3HxCDw==",
|
|
24229
24098
|
"dev": true,
|
|
24230
24099
|
"license": "MIT",
|
|
24231
24100
|
"peer": true,
|
|
@@ -24238,10 +24107,10 @@
|
|
|
24238
24107
|
"@webassemblyjs/wasm-parser": "^1.14.1",
|
|
24239
24108
|
"acorn": "^8.15.0",
|
|
24240
24109
|
"acorn-import-phases": "^1.0.3",
|
|
24241
|
-
"browserslist": "^4.
|
|
24110
|
+
"browserslist": "^4.28.1",
|
|
24242
24111
|
"chrome-trace-event": "^1.0.2",
|
|
24243
|
-
"enhanced-resolve": "^5.
|
|
24244
|
-
"es-module-lexer": "^
|
|
24112
|
+
"enhanced-resolve": "^5.19.0",
|
|
24113
|
+
"es-module-lexer": "^2.0.0",
|
|
24245
24114
|
"eslint-scope": "5.1.1",
|
|
24246
24115
|
"events": "^3.2.0",
|
|
24247
24116
|
"glob-to-regexp": "^0.4.1",
|
|
@@ -24252,8 +24121,8 @@
|
|
|
24252
24121
|
"neo-async": "^2.6.2",
|
|
24253
24122
|
"schema-utils": "^4.3.3",
|
|
24254
24123
|
"tapable": "^2.3.0",
|
|
24255
|
-
"terser-webpack-plugin": "^5.3.
|
|
24256
|
-
"watchpack": "^2.
|
|
24124
|
+
"terser-webpack-plugin": "^5.3.16",
|
|
24125
|
+
"watchpack": "^2.5.1",
|
|
24257
24126
|
"webpack-sources": "^3.3.3"
|
|
24258
24127
|
},
|
|
24259
24128
|
"bin": {
|
|
@@ -24285,6 +24154,7 @@
|
|
|
24285
24154
|
"node_modules/whatwg-encoding": {
|
|
24286
24155
|
"version": "3.1.1",
|
|
24287
24156
|
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
|
|
24157
|
+
"deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation",
|
|
24288
24158
|
"dev": true,
|
|
24289
24159
|
"license": "MIT",
|
|
24290
24160
|
"dependencies": {
|
|
@@ -24423,8 +24293,8 @@
|
|
|
24423
24293
|
}
|
|
24424
24294
|
},
|
|
24425
24295
|
"node_modules/which-typed-array": {
|
|
24426
|
-
"version": "1.1.
|
|
24427
|
-
"integrity": "sha512-
|
|
24296
|
+
"version": "1.1.20",
|
|
24297
|
+
"integrity": "sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==",
|
|
24428
24298
|
"dev": true,
|
|
24429
24299
|
"license": "MIT",
|
|
24430
24300
|
"dependencies": {
|
|
@@ -24455,26 +24325,6 @@
|
|
|
24455
24325
|
"node": ">=8"
|
|
24456
24326
|
}
|
|
24457
24327
|
},
|
|
24458
|
-
"node_modules/widest-line/node_modules/emoji-regex": {
|
|
24459
|
-
"version": "8.0.0",
|
|
24460
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
24461
|
-
"dev": true,
|
|
24462
|
-
"license": "MIT"
|
|
24463
|
-
},
|
|
24464
|
-
"node_modules/widest-line/node_modules/string-width": {
|
|
24465
|
-
"version": "4.2.3",
|
|
24466
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
24467
|
-
"dev": true,
|
|
24468
|
-
"license": "MIT",
|
|
24469
|
-
"dependencies": {
|
|
24470
|
-
"emoji-regex": "^8.0.0",
|
|
24471
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
24472
|
-
"strip-ansi": "^6.0.1"
|
|
24473
|
-
},
|
|
24474
|
-
"engines": {
|
|
24475
|
-
"node": ">=8"
|
|
24476
|
-
}
|
|
24477
|
-
},
|
|
24478
24328
|
"node_modules/windows-release": {
|
|
24479
24329
|
"version": "4.0.0",
|
|
24480
24330
|
"integrity": "sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==",
|
|
@@ -24559,16 +24409,16 @@
|
|
|
24559
24409
|
"license": "MIT"
|
|
24560
24410
|
},
|
|
24561
24411
|
"node_modules/wrap-ansi": {
|
|
24562
|
-
"version": "
|
|
24563
|
-
"integrity": "sha512-
|
|
24412
|
+
"version": "7.0.0",
|
|
24413
|
+
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
24564
24414
|
"license": "MIT",
|
|
24565
24415
|
"dependencies": {
|
|
24566
|
-
"ansi-styles": "^
|
|
24567
|
-
"string-width": "^
|
|
24568
|
-
"strip-ansi": "^
|
|
24416
|
+
"ansi-styles": "^4.0.0",
|
|
24417
|
+
"string-width": "^4.1.0",
|
|
24418
|
+
"strip-ansi": "^6.0.0"
|
|
24569
24419
|
},
|
|
24570
24420
|
"engines": {
|
|
24571
|
-
"node": ">=
|
|
24421
|
+
"node": ">=10"
|
|
24572
24422
|
},
|
|
24573
24423
|
"funding": {
|
|
24574
24424
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
@@ -24578,6 +24428,7 @@
|
|
|
24578
24428
|
"name": "wrap-ansi",
|
|
24579
24429
|
"version": "7.0.0",
|
|
24580
24430
|
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
|
|
24431
|
+
"dev": true,
|
|
24581
24432
|
"license": "MIT",
|
|
24582
24433
|
"dependencies": {
|
|
24583
24434
|
"ansi-styles": "^4.0.0",
|
|
@@ -24594,6 +24445,7 @@
|
|
|
24594
24445
|
"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
|
|
24595
24446
|
"version": "4.3.0",
|
|
24596
24447
|
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
24448
|
+
"dev": true,
|
|
24597
24449
|
"license": "MIT",
|
|
24598
24450
|
"dependencies": {
|
|
24599
24451
|
"color-convert": "^2.0.1"
|
|
@@ -24605,60 +24457,20 @@
|
|
|
24605
24457
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
24606
24458
|
}
|
|
24607
24459
|
},
|
|
24608
|
-
"node_modules/wrap-ansi
|
|
24609
|
-
"version": "
|
|
24610
|
-
"integrity": "sha512-
|
|
24611
|
-
"license": "MIT"
|
|
24612
|
-
},
|
|
24613
|
-
"node_modules/wrap-ansi-cjs/node_modules/string-width": {
|
|
24614
|
-
"version": "4.2.3",
|
|
24615
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
24460
|
+
"node_modules/wrap-ansi/node_modules/ansi-styles": {
|
|
24461
|
+
"version": "4.3.0",
|
|
24462
|
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
|
24616
24463
|
"license": "MIT",
|
|
24617
24464
|
"dependencies": {
|
|
24618
|
-
"
|
|
24619
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
24620
|
-
"strip-ansi": "^6.0.1"
|
|
24465
|
+
"color-convert": "^2.0.1"
|
|
24621
24466
|
},
|
|
24622
24467
|
"engines": {
|
|
24623
24468
|
"node": ">=8"
|
|
24624
|
-
}
|
|
24625
|
-
},
|
|
24626
|
-
"node_modules/wrap-ansi/node_modules/ansi-regex": {
|
|
24627
|
-
"version": "6.2.2",
|
|
24628
|
-
"integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
|
|
24629
|
-
"license": "MIT",
|
|
24630
|
-
"engines": {
|
|
24631
|
-
"node": ">=12"
|
|
24632
|
-
},
|
|
24633
|
-
"funding": {
|
|
24634
|
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
|
|
24635
|
-
}
|
|
24636
|
-
},
|
|
24637
|
-
"node_modules/wrap-ansi/node_modules/ansi-styles": {
|
|
24638
|
-
"version": "6.2.3",
|
|
24639
|
-
"integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
|
|
24640
|
-
"license": "MIT",
|
|
24641
|
-
"engines": {
|
|
24642
|
-
"node": ">=12"
|
|
24643
24469
|
},
|
|
24644
24470
|
"funding": {
|
|
24645
24471
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
|
24646
24472
|
}
|
|
24647
24473
|
},
|
|
24648
|
-
"node_modules/wrap-ansi/node_modules/strip-ansi": {
|
|
24649
|
-
"version": "7.1.2",
|
|
24650
|
-
"integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
|
|
24651
|
-
"license": "MIT",
|
|
24652
|
-
"dependencies": {
|
|
24653
|
-
"ansi-regex": "^6.0.1"
|
|
24654
|
-
},
|
|
24655
|
-
"engines": {
|
|
24656
|
-
"node": ">=12"
|
|
24657
|
-
},
|
|
24658
|
-
"funding": {
|
|
24659
|
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
|
|
24660
|
-
}
|
|
24661
|
-
},
|
|
24662
24474
|
"node_modules/wrappy": {
|
|
24663
24475
|
"version": "1.0.2",
|
|
24664
24476
|
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
@@ -24677,8 +24489,8 @@
|
|
|
24677
24489
|
}
|
|
24678
24490
|
},
|
|
24679
24491
|
"node_modules/ws": {
|
|
24680
|
-
"version": "8.
|
|
24681
|
-
"integrity": "sha512-
|
|
24492
|
+
"version": "8.19.0",
|
|
24493
|
+
"integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
|
|
24682
24494
|
"license": "MIT",
|
|
24683
24495
|
"engines": {
|
|
24684
24496
|
"node": ">=10.0.0"
|
|
@@ -24799,14 +24611,17 @@
|
|
|
24799
24611
|
"license": "ISC"
|
|
24800
24612
|
},
|
|
24801
24613
|
"node_modules/yaml": {
|
|
24802
|
-
"version": "2.8.
|
|
24803
|
-
"integrity": "sha512-
|
|
24614
|
+
"version": "2.8.2",
|
|
24615
|
+
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
|
|
24804
24616
|
"license": "ISC",
|
|
24805
24617
|
"bin": {
|
|
24806
24618
|
"yaml": "bin.mjs"
|
|
24807
24619
|
},
|
|
24808
24620
|
"engines": {
|
|
24809
24621
|
"node": ">= 14.6"
|
|
24622
|
+
},
|
|
24623
|
+
"funding": {
|
|
24624
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
24810
24625
|
}
|
|
24811
24626
|
},
|
|
24812
24627
|
"node_modules/yargs": {
|
|
@@ -24834,24 +24649,6 @@
|
|
|
24834
24649
|
"node": ">=10"
|
|
24835
24650
|
}
|
|
24836
24651
|
},
|
|
24837
|
-
"node_modules/yargs/node_modules/emoji-regex": {
|
|
24838
|
-
"version": "8.0.0",
|
|
24839
|
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
|
24840
|
-
"license": "MIT"
|
|
24841
|
-
},
|
|
24842
|
-
"node_modules/yargs/node_modules/string-width": {
|
|
24843
|
-
"version": "4.2.3",
|
|
24844
|
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
|
|
24845
|
-
"license": "MIT",
|
|
24846
|
-
"dependencies": {
|
|
24847
|
-
"emoji-regex": "^8.0.0",
|
|
24848
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
24849
|
-
"strip-ansi": "^6.0.1"
|
|
24850
|
-
},
|
|
24851
|
-
"engines": {
|
|
24852
|
-
"node": ">=8"
|
|
24853
|
-
}
|
|
24854
|
-
},
|
|
24855
24652
|
"node_modules/yocto-queue": {
|
|
24856
24653
|
"version": "0.1.0",
|
|
24857
24654
|
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
|
|
@@ -24862,24 +24659,6 @@
|
|
|
24862
24659
|
"funding": {
|
|
24863
24660
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
24864
24661
|
}
|
|
24865
|
-
},
|
|
24866
|
-
"node_modules/zod": {
|
|
24867
|
-
"version": "3.25.76",
|
|
24868
|
-
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
24869
|
-
"license": "MIT",
|
|
24870
|
-
"peer": true,
|
|
24871
|
-
"funding": {
|
|
24872
|
-
"url": "https://github.com/sponsors/colinhacks"
|
|
24873
|
-
}
|
|
24874
|
-
},
|
|
24875
|
-
"node_modules/zod-to-json-schema": {
|
|
24876
|
-
"version": "3.25.0",
|
|
24877
|
-
"integrity": "sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==",
|
|
24878
|
-
"license": "ISC",
|
|
24879
|
-
"peer": true,
|
|
24880
|
-
"peerDependencies": {
|
|
24881
|
-
"zod": "^3.25 || ^4"
|
|
24882
|
-
}
|
|
24883
24662
|
}
|
|
24884
24663
|
}
|
|
24885
24664
|
}
|