@fadyshawky/react-native-magic 1.0.8 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/.vscode/settings.json +7 -0
  2. package/package.json +1 -1
  3. package/template/App.tsx +30 -9
  4. package/template/package-lock.json +181 -123
  5. package/template/package.json +2 -0
  6. package/template/src/common/ImageResources.g.ts +3 -5
  7. package/template/src/common/components/Background.tsx +66 -28
  8. package/template/src/common/components/Cards.tsx +116 -0
  9. package/template/src/common/components/Container.tsx +145 -0
  10. package/template/src/common/components/FlatListWrapper.tsx +1 -0
  11. package/template/src/common/components/ImageCropPickerButton.tsx +1 -1
  12. package/template/src/common/components/OTPInput.tsx +107 -0
  13. package/template/src/common/components/PhotoTakingButton.tsx +1 -4
  14. package/template/src/common/components/PrimaryButton.tsx +171 -157
  15. package/template/src/common/components/RTLAwareText.tsx +42 -0
  16. package/template/src/common/components/RTLAwareView.tsx +179 -0
  17. package/template/src/common/components/RadioButton.tsx +1 -3
  18. package/template/src/common/components/RadioIcon.tsx +1 -2
  19. package/template/src/common/components/SearchBar.tsx +179 -0
  20. package/template/src/common/components/Separator.tsx +7 -4
  21. package/template/src/common/components/TouchablePlatform.tsx +1 -3
  22. package/template/src/common/components/TryAgain.tsx +3 -3
  23. package/template/src/common/helpers/inAppReviewHelper.ts +0 -1
  24. package/template/src/common/helpers/stringsHelpers.ts +10 -0
  25. package/template/src/common/hooks/useFlatListActions.ts +1 -1
  26. package/template/src/common/localization/LocalizationProvider.tsx +152 -0
  27. package/template/src/common/localization/README.md +488 -0
  28. package/template/src/common/localization/localization.ts +12 -0
  29. package/template/src/common/localization/translations/profileLocalization.ts +24 -0
  30. package/template/src/common/validations/errorValidations.ts +1 -6
  31. package/template/src/common/validations/examples/TextInputWithValidation.tsx +229 -0
  32. package/template/src/common/validations/index.ts +28 -0
  33. package/template/src/common/validations/regex.js +83 -0
  34. package/template/src/common/validations/regexValidator.ts +240 -0
  35. package/template/src/common/validations/validationConstants.ts +2 -2
  36. package/template/src/core/api/errorHandler.ts +39 -0
  37. package/template/src/core/api/responseHandlers.ts +1 -26
  38. package/template/src/core/api/serverHeaders.ts +13 -23
  39. package/template/src/core/store/app/appSlice.ts +1 -2
  40. package/template/src/core/theme/ThemeProvider.tsx +63 -0
  41. package/template/src/core/theme/colors.ts +31 -42
  42. package/template/src/core/theme/commonConsts.ts +1 -1
  43. package/template/src/core/theme/commonStyles.ts +267 -210
  44. package/template/src/core/theme/fonts.ts +17 -1
  45. package/template/src/core/theme/scaling.ts +101 -0
  46. package/template/src/core/theme/themes.ts +214 -0
  47. package/template/src/core/theme/types.ts +51 -0
  48. package/template/src/navigation/AuthStack.tsx +25 -30
  49. package/template/src/navigation/HeaderComponents.tsx +18 -58
  50. package/template/src/navigation/MainNavigation.tsx +5 -6
  51. package/template/src/navigation/MainStack.tsx +3 -28
  52. package/template/src/navigation/RootNavigation.tsx +1 -7
  53. package/template/src/navigation/TabBar.tsx +2 -2
  54. package/template/src/navigation/TopTabBar.tsx +1 -1
  55. package/template/src/screens/Login/Login.tsx +3 -3
  56. package/template/src/screens/home/components/CarouselSection.tsx +7 -8
  57. package/template/src/screens/home/components/FeaturedCarousel.tsx +5 -6
  58. package/template/src/screens/registration/RegistrationScreen.tsx +2 -2
  59. package/template/src/screens/resetPassword/ForgotPasswordScreen.tsx +2 -2
  60. package/template/src/utils/stringBuilder.js +25 -0
@@ -8,6 +8,7 @@
8
8
  "name": "@fadyshawky/react-native-magic",
9
9
  "version": "0.0.1",
10
10
  "dependencies": {
11
+ "@d11/react-native-fast-image": "^8.9.2",
11
12
  "@react-native-async-storage/async-storage": "^2.1.0",
12
13
  "@react-native-camera-roll/camera-roll": "^7.9.0",
13
14
  "@react-native-community/datetimepicker": "^8.2.0",
@@ -55,6 +56,7 @@
55
56
  "react-native-permissions": "^5.2.1",
56
57
  "react-native-reanimated": "^3.16.6",
57
58
  "react-native-reanimated-carousel": "^3.5.1",
59
+ "react-native-restart": "^0.0.27",
58
60
  "react-native-safe-area-context": "^5.0.0",
59
61
  "react-native-screens": "^4.4.0",
60
62
  "react-native-sfsymbols": "^1.2.2",
@@ -468,6 +470,7 @@
468
470
  "version": "7.25.9",
469
471
  "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz",
470
472
  "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==",
473
+ "dev": true,
471
474
  "license": "MIT",
472
475
  "dependencies": {
473
476
  "@babel/helper-plugin-utils": "^7.25.9",
@@ -484,6 +487,7 @@
484
487
  "version": "7.25.9",
485
488
  "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz",
486
489
  "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==",
490
+ "dev": true,
487
491
  "license": "MIT",
488
492
  "dependencies": {
489
493
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -499,6 +503,7 @@
499
503
  "version": "7.25.9",
500
504
  "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz",
501
505
  "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==",
506
+ "dev": true,
502
507
  "license": "MIT",
503
508
  "dependencies": {
504
509
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -514,6 +519,7 @@
514
519
  "version": "7.25.9",
515
520
  "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz",
516
521
  "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==",
522
+ "dev": true,
517
523
  "license": "MIT",
518
524
  "dependencies": {
519
525
  "@babel/helper-plugin-utils": "^7.25.9",
@@ -531,6 +537,7 @@
531
537
  "version": "7.25.9",
532
538
  "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz",
533
539
  "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==",
540
+ "dev": true,
534
541
  "license": "MIT",
535
542
  "dependencies": {
536
543
  "@babel/helper-plugin-utils": "^7.25.9",
@@ -614,6 +621,7 @@
614
621
  "version": "7.21.0-placeholder-for-preset-env.2",
615
622
  "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
616
623
  "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
624
+ "dev": true,
617
625
  "license": "MIT",
618
626
  "engines": {
619
627
  "node": ">=6.9.0"
@@ -719,6 +727,7 @@
719
727
  "version": "7.26.0",
720
728
  "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz",
721
729
  "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==",
730
+ "dev": true,
722
731
  "license": "MIT",
723
732
  "dependencies": {
724
733
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -905,6 +914,7 @@
905
914
  "version": "7.18.6",
906
915
  "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
907
916
  "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
917
+ "dev": true,
908
918
  "license": "MIT",
909
919
  "dependencies": {
910
920
  "@babel/helper-create-regexp-features-plugin": "^7.18.6",
@@ -970,6 +980,7 @@
970
980
  "version": "7.25.9",
971
981
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz",
972
982
  "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==",
983
+ "dev": true,
973
984
  "license": "MIT",
974
985
  "dependencies": {
975
986
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1016,6 +1027,7 @@
1016
1027
  "version": "7.26.0",
1017
1028
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz",
1018
1029
  "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==",
1030
+ "dev": true,
1019
1031
  "license": "MIT",
1020
1032
  "dependencies": {
1021
1033
  "@babel/helper-create-class-features-plugin": "^7.25.9",
@@ -1083,6 +1095,7 @@
1083
1095
  "version": "7.25.9",
1084
1096
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz",
1085
1097
  "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==",
1098
+ "dev": true,
1086
1099
  "license": "MIT",
1087
1100
  "dependencies": {
1088
1101
  "@babel/helper-create-regexp-features-plugin": "^7.25.9",
@@ -1099,6 +1112,7 @@
1099
1112
  "version": "7.25.9",
1100
1113
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz",
1101
1114
  "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==",
1115
+ "dev": true,
1102
1116
  "license": "MIT",
1103
1117
  "dependencies": {
1104
1118
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1114,6 +1128,7 @@
1114
1128
  "version": "7.25.9",
1115
1129
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz",
1116
1130
  "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==",
1131
+ "dev": true,
1117
1132
  "license": "MIT",
1118
1133
  "dependencies": {
1119
1134
  "@babel/helper-create-regexp-features-plugin": "^7.25.9",
@@ -1130,6 +1145,7 @@
1130
1145
  "version": "7.25.9",
1131
1146
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz",
1132
1147
  "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==",
1148
+ "dev": true,
1133
1149
  "license": "MIT",
1134
1150
  "dependencies": {
1135
1151
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1145,6 +1161,7 @@
1145
1161
  "version": "7.26.3",
1146
1162
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz",
1147
1163
  "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==",
1164
+ "dev": true,
1148
1165
  "license": "MIT",
1149
1166
  "dependencies": {
1150
1167
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1160,6 +1177,7 @@
1160
1177
  "version": "7.25.9",
1161
1178
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz",
1162
1179
  "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==",
1180
+ "dev": true,
1163
1181
  "license": "MIT",
1164
1182
  "dependencies": {
1165
1183
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1224,6 +1242,7 @@
1224
1242
  "version": "7.25.9",
1225
1243
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz",
1226
1244
  "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==",
1245
+ "dev": true,
1227
1246
  "license": "MIT",
1228
1247
  "dependencies": {
1229
1248
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1269,6 +1288,7 @@
1269
1288
  "version": "7.25.9",
1270
1289
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz",
1271
1290
  "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==",
1291
+ "dev": true,
1272
1292
  "license": "MIT",
1273
1293
  "dependencies": {
1274
1294
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1284,6 +1304,7 @@
1284
1304
  "version": "7.25.9",
1285
1305
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz",
1286
1306
  "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==",
1307
+ "dev": true,
1287
1308
  "license": "MIT",
1288
1309
  "dependencies": {
1289
1310
  "@babel/helper-module-transforms": "^7.25.9",
@@ -1316,6 +1337,7 @@
1316
1337
  "version": "7.25.9",
1317
1338
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz",
1318
1339
  "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==",
1340
+ "dev": true,
1319
1341
  "license": "MIT",
1320
1342
  "dependencies": {
1321
1343
  "@babel/helper-module-transforms": "^7.25.9",
@@ -1334,6 +1356,7 @@
1334
1356
  "version": "7.25.9",
1335
1357
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz",
1336
1358
  "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==",
1359
+ "dev": true,
1337
1360
  "license": "MIT",
1338
1361
  "dependencies": {
1339
1362
  "@babel/helper-module-transforms": "^7.25.9",
@@ -1366,6 +1389,7 @@
1366
1389
  "version": "7.25.9",
1367
1390
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz",
1368
1391
  "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==",
1392
+ "dev": true,
1369
1393
  "license": "MIT",
1370
1394
  "dependencies": {
1371
1395
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1428,6 +1452,7 @@
1428
1452
  "version": "7.25.9",
1429
1453
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz",
1430
1454
  "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==",
1455
+ "dev": true,
1431
1456
  "license": "MIT",
1432
1457
  "dependencies": {
1433
1458
  "@babel/helper-plugin-utils": "^7.25.9",
@@ -1523,6 +1548,7 @@
1523
1548
  "version": "7.25.9",
1524
1549
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz",
1525
1550
  "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==",
1551
+ "dev": true,
1526
1552
  "license": "MIT",
1527
1553
  "dependencies": {
1528
1554
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1618,6 +1644,7 @@
1618
1644
  "version": "7.26.0",
1619
1645
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz",
1620
1646
  "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==",
1647
+ "dev": true,
1621
1648
  "license": "MIT",
1622
1649
  "dependencies": {
1623
1650
  "@babel/helper-create-regexp-features-plugin": "^7.25.9",
@@ -1634,6 +1661,7 @@
1634
1661
  "version": "7.25.9",
1635
1662
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz",
1636
1663
  "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==",
1664
+ "dev": true,
1637
1665
  "license": "MIT",
1638
1666
  "dependencies": {
1639
1667
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1730,6 +1758,7 @@
1730
1758
  "version": "7.25.9",
1731
1759
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz",
1732
1760
  "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==",
1761
+ "dev": true,
1733
1762
  "license": "MIT",
1734
1763
  "dependencies": {
1735
1764
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1764,6 +1793,7 @@
1764
1793
  "version": "7.25.9",
1765
1794
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz",
1766
1795
  "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==",
1796
+ "dev": true,
1767
1797
  "license": "MIT",
1768
1798
  "dependencies": {
1769
1799
  "@babel/helper-plugin-utils": "^7.25.9"
@@ -1779,6 +1809,7 @@
1779
1809
  "version": "7.25.9",
1780
1810
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz",
1781
1811
  "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==",
1812
+ "dev": true,
1782
1813
  "license": "MIT",
1783
1814
  "dependencies": {
1784
1815
  "@babel/helper-create-regexp-features-plugin": "^7.25.9",
@@ -1811,6 +1842,7 @@
1811
1842
  "version": "7.25.9",
1812
1843
  "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz",
1813
1844
  "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==",
1845
+ "dev": true,
1814
1846
  "license": "MIT",
1815
1847
  "dependencies": {
1816
1848
  "@babel/helper-create-regexp-features-plugin": "^7.25.9",
@@ -1827,6 +1859,7 @@
1827
1859
  "version": "7.26.0",
1828
1860
  "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz",
1829
1861
  "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==",
1862
+ "dev": true,
1830
1863
  "license": "MIT",
1831
1864
  "dependencies": {
1832
1865
  "@babel/compat-data": "^7.26.0",
@@ -1927,6 +1960,7 @@
1927
1960
  "version": "0.1.6-no-external-plugins",
1928
1961
  "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
1929
1962
  "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
1963
+ "dev": true,
1930
1964
  "license": "MIT",
1931
1965
  "dependencies": {
1932
1966
  "@babel/helper-plugin-utils": "^7.0.0",
@@ -2087,9 +2121,22 @@
2087
2121
  "version": "0.2.3",
2088
2122
  "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
2089
2123
  "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
2090
- "devOptional": true,
2124
+ "dev": true,
2091
2125
  "license": "MIT"
2092
2126
  },
2127
+ "node_modules/@d11/react-native-fast-image": {
2128
+ "version": "8.9.2",
2129
+ "resolved": "https://registry.npmjs.org/@d11/react-native-fast-image/-/react-native-fast-image-8.9.2.tgz",
2130
+ "integrity": "sha512-7d0O5mA17SCbIAYq9D0WxDlS3HXf5v9vg9ltphDfP/3R57sBEf6/wby/sHkOmrQGwvgUlz2oSo5Ld8hgocLJeQ==",
2131
+ "license": "(MIT AND Apache-2.0)",
2132
+ "workspaces": [
2133
+ "ReactNativeFastImageExample"
2134
+ ],
2135
+ "peerDependencies": {
2136
+ "react": "*",
2137
+ "react-native": "*"
2138
+ }
2139
+ },
2093
2140
  "node_modules/@egjs/hammerjs": {
2094
2141
  "version": "2.0.17",
2095
2142
  "resolved": "https://registry.npmjs.org/@egjs/hammerjs/-/hammerjs-2.0.17.tgz",
@@ -2450,7 +2497,7 @@
2450
2497
  "version": "29.7.0",
2451
2498
  "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz",
2452
2499
  "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
2453
- "devOptional": true,
2500
+ "dev": true,
2454
2501
  "license": "MIT",
2455
2502
  "dependencies": {
2456
2503
  "@jest/types": "^29.6.3",
@@ -2468,7 +2515,7 @@
2468
2515
  "version": "29.7.0",
2469
2516
  "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz",
2470
2517
  "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
2471
- "devOptional": true,
2518
+ "dev": true,
2472
2519
  "license": "MIT",
2473
2520
  "dependencies": {
2474
2521
  "@jest/console": "^29.7.0",
@@ -2516,7 +2563,7 @@
2516
2563
  "version": "5.2.0",
2517
2564
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
2518
2565
  "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
2519
- "devOptional": true,
2566
+ "dev": true,
2520
2567
  "license": "MIT",
2521
2568
  "engines": {
2522
2569
  "node": ">=10"
@@ -2529,7 +2576,7 @@
2529
2576
  "version": "29.7.0",
2530
2577
  "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
2531
2578
  "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
2532
- "devOptional": true,
2579
+ "dev": true,
2533
2580
  "license": "MIT",
2534
2581
  "dependencies": {
2535
2582
  "@jest/schemas": "^29.6.3",
@@ -2544,7 +2591,7 @@
2544
2591
  "version": "6.0.1",
2545
2592
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2546
2593
  "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2547
- "devOptional": true,
2594
+ "dev": true,
2548
2595
  "license": "MIT",
2549
2596
  "dependencies": {
2550
2597
  "ansi-regex": "^5.0.1"
@@ -2584,7 +2631,7 @@
2584
2631
  "version": "29.7.0",
2585
2632
  "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz",
2586
2633
  "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==",
2587
- "devOptional": true,
2634
+ "dev": true,
2588
2635
  "license": "MIT",
2589
2636
  "dependencies": {
2590
2637
  "expect": "^29.7.0",
@@ -2627,7 +2674,7 @@
2627
2674
  "version": "29.7.0",
2628
2675
  "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz",
2629
2676
  "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
2630
- "devOptional": true,
2677
+ "dev": true,
2631
2678
  "license": "MIT",
2632
2679
  "dependencies": {
2633
2680
  "@jest/environment": "^29.7.0",
@@ -2643,7 +2690,7 @@
2643
2690
  "version": "29.7.0",
2644
2691
  "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz",
2645
2692
  "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
2646
- "devOptional": true,
2693
+ "dev": true,
2647
2694
  "license": "MIT",
2648
2695
  "dependencies": {
2649
2696
  "@bcoe/v8-coverage": "^0.2.3",
@@ -2687,7 +2734,7 @@
2687
2734
  "version": "6.0.3",
2688
2735
  "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz",
2689
2736
  "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==",
2690
- "devOptional": true,
2737
+ "dev": true,
2691
2738
  "license": "BSD-3-Clause",
2692
2739
  "dependencies": {
2693
2740
  "@babel/core": "^7.23.9",
@@ -2704,7 +2751,7 @@
2704
2751
  "version": "7.6.3",
2705
2752
  "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
2706
2753
  "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
2707
- "devOptional": true,
2754
+ "dev": true,
2708
2755
  "license": "ISC",
2709
2756
  "bin": {
2710
2757
  "semver": "bin/semver.js"
@@ -2717,7 +2764,7 @@
2717
2764
  "version": "6.0.1",
2718
2765
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2719
2766
  "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2720
- "devOptional": true,
2767
+ "dev": true,
2721
2768
  "license": "MIT",
2722
2769
  "dependencies": {
2723
2770
  "ansi-regex": "^5.0.1"
@@ -2742,7 +2789,7 @@
2742
2789
  "version": "29.6.3",
2743
2790
  "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz",
2744
2791
  "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==",
2745
- "devOptional": true,
2792
+ "dev": true,
2746
2793
  "license": "MIT",
2747
2794
  "dependencies": {
2748
2795
  "@jridgewell/trace-mapping": "^0.3.18",
@@ -2757,7 +2804,7 @@
2757
2804
  "version": "29.7.0",
2758
2805
  "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz",
2759
2806
  "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==",
2760
- "devOptional": true,
2807
+ "dev": true,
2761
2808
  "license": "MIT",
2762
2809
  "dependencies": {
2763
2810
  "@jest/console": "^29.7.0",
@@ -2773,7 +2820,7 @@
2773
2820
  "version": "29.7.0",
2774
2821
  "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz",
2775
2822
  "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==",
2776
- "devOptional": true,
2823
+ "dev": true,
2777
2824
  "license": "MIT",
2778
2825
  "dependencies": {
2779
2826
  "@jest/test-result": "^29.7.0",
@@ -3034,7 +3081,7 @@
3034
3081
  "version": "15.0.1",
3035
3082
  "resolved": "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-15.0.1.tgz",
3036
3083
  "integrity": "sha512-xkT2TLS8zg5r7Vl9l/2f7JVUoFECnVBS+B5ivrSu2PNZhKkr9lRmJFxC9aVLFb5lIxQQKNDvEyiIDNfP7wjJiA==",
3037
- "devOptional": true,
3084
+ "dev": true,
3038
3085
  "license": "MIT",
3039
3086
  "dependencies": {
3040
3087
  "serve-static": "^1.13.1"
@@ -3121,7 +3168,7 @@
3121
3168
  "version": "15.0.1",
3122
3169
  "resolved": "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-15.0.1.tgz",
3123
3170
  "integrity": "sha512-f3rb3t1ELLaMSX5/LWO/IykglBIgiP3+pPnyl8GphHnBpf3bdIcp7fHlHLemvHE06YxT2nANRxRPjy1gNskenA==",
3124
- "devOptional": true,
3171
+ "dev": true,
3125
3172
  "license": "MIT",
3126
3173
  "dependencies": {
3127
3174
  "@react-native-community/cli-debugger-ui": "15.0.1",
@@ -3139,7 +3186,7 @@
3139
3186
  "version": "15.0.1",
3140
3187
  "resolved": "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-15.0.1.tgz",
3141
3188
  "integrity": "sha512-N79A+u/94roanfmNohVcNGu6Xg+0idh63JHZFLC9OJJuZwTifGMLDfSTHZATpR1J7rebozQ5ClcSUePavErnSg==",
3142
- "devOptional": true,
3189
+ "dev": true,
3143
3190
  "license": "MIT",
3144
3191
  "dependencies": {
3145
3192
  "appdirsjs": "^1.2.4",
@@ -3159,7 +3206,7 @@
3159
3206
  "version": "2.6.0",
3160
3207
  "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
3161
3208
  "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
3162
- "devOptional": true,
3209
+ "dev": true,
3163
3210
  "license": "MIT",
3164
3211
  "bin": {
3165
3212
  "mime": "cli.js"
@@ -3172,7 +3219,7 @@
3172
3219
  "version": "7.6.3",
3173
3220
  "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
3174
3221
  "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
3175
- "devOptional": true,
3222
+ "dev": true,
3176
3223
  "license": "ISC",
3177
3224
  "bin": {
3178
3225
  "semver": "bin/semver.js"
@@ -4585,7 +4632,7 @@
4585
4632
  "version": "4.3.2",
4586
4633
  "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
4587
4634
  "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
4588
- "devOptional": true,
4635
+ "dev": true,
4589
4636
  "license": "MIT",
4590
4637
  "dependencies": {
4591
4638
  "type-fest": "^0.21.3"
@@ -4650,7 +4697,7 @@
4650
4697
  "version": "1.2.7",
4651
4698
  "resolved": "https://registry.npmjs.org/appdirsjs/-/appdirsjs-1.2.7.tgz",
4652
4699
  "integrity": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==",
4653
- "devOptional": true,
4700
+ "dev": true,
4654
4701
  "license": "MIT"
4655
4702
  },
4656
4703
  "node_modules/argparse": {
@@ -5125,7 +5172,7 @@
5125
5172
  "version": "4.1.0",
5126
5173
  "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
5127
5174
  "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
5128
- "devOptional": true,
5175
+ "dev": true,
5129
5176
  "license": "MIT",
5130
5177
  "dependencies": {
5131
5178
  "buffer": "^5.5.0",
@@ -5137,7 +5184,7 @@
5137
5184
  "version": "3.6.2",
5138
5185
  "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
5139
5186
  "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
5140
- "devOptional": true,
5187
+ "dev": true,
5141
5188
  "license": "MIT",
5142
5189
  "dependencies": {
5143
5190
  "inherits": "^2.0.3",
@@ -5232,7 +5279,7 @@
5232
5279
  "version": "5.7.1",
5233
5280
  "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
5234
5281
  "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
5235
- "devOptional": true,
5282
+ "dev": true,
5236
5283
  "funding": [
5237
5284
  {
5238
5285
  "type": "github",
@@ -5323,7 +5370,7 @@
5323
5370
  "version": "3.1.2",
5324
5371
  "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
5325
5372
  "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
5326
- "devOptional": true,
5373
+ "dev": true,
5327
5374
  "license": "MIT",
5328
5375
  "engines": {
5329
5376
  "node": ">= 0.8"
@@ -5419,7 +5466,7 @@
5419
5466
  "version": "3.1.0",
5420
5467
  "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
5421
5468
  "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
5422
- "devOptional": true,
5469
+ "dev": true,
5423
5470
  "license": "MIT",
5424
5471
  "engines": {
5425
5472
  "node": ">=6"
@@ -5474,7 +5521,7 @@
5474
5521
  "version": "1.0.2",
5475
5522
  "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
5476
5523
  "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
5477
- "devOptional": true,
5524
+ "dev": true,
5478
5525
  "license": "MIT",
5479
5526
  "engines": {
5480
5527
  "node": ">=10"
@@ -5578,14 +5625,14 @@
5578
5625
  "version": "1.4.1",
5579
5626
  "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz",
5580
5627
  "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==",
5581
- "devOptional": true,
5628
+ "dev": true,
5582
5629
  "license": "MIT"
5583
5630
  },
5584
5631
  "node_modules/cli-cursor": {
5585
5632
  "version": "3.1.0",
5586
5633
  "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
5587
5634
  "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
5588
- "devOptional": true,
5635
+ "dev": true,
5589
5636
  "license": "MIT",
5590
5637
  "dependencies": {
5591
5638
  "restore-cursor": "^3.1.0"
@@ -5598,7 +5645,7 @@
5598
5645
  "version": "2.9.2",
5599
5646
  "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
5600
5647
  "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
5601
- "devOptional": true,
5648
+ "dev": true,
5602
5649
  "license": "MIT",
5603
5650
  "engines": {
5604
5651
  "node": ">=6"
@@ -5637,7 +5684,7 @@
5637
5684
  "version": "1.0.4",
5638
5685
  "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
5639
5686
  "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
5640
- "devOptional": true,
5687
+ "dev": true,
5641
5688
  "license": "MIT",
5642
5689
  "engines": {
5643
5690
  "node": ">=0.8"
@@ -5661,7 +5708,7 @@
5661
5708
  "version": "4.6.0",
5662
5709
  "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
5663
5710
  "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
5664
- "devOptional": true,
5711
+ "dev": true,
5665
5712
  "license": "MIT",
5666
5713
  "engines": {
5667
5714
  "iojs": ">= 1.0.0",
@@ -5672,7 +5719,7 @@
5672
5719
  "version": "1.0.2",
5673
5720
  "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
5674
5721
  "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==",
5675
- "devOptional": true,
5722
+ "dev": true,
5676
5723
  "license": "MIT"
5677
5724
  },
5678
5725
  "node_modules/color": {
@@ -5881,7 +5928,7 @@
5881
5928
  "version": "2.0.18",
5882
5929
  "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
5883
5930
  "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
5884
- "devOptional": true,
5931
+ "dev": true,
5885
5932
  "license": "MIT",
5886
5933
  "dependencies": {
5887
5934
  "mime-db": ">= 1.43.0 < 2"
@@ -5894,7 +5941,7 @@
5894
5941
  "version": "1.7.5",
5895
5942
  "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz",
5896
5943
  "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==",
5897
- "devOptional": true,
5944
+ "dev": true,
5898
5945
  "license": "MIT",
5899
5946
  "dependencies": {
5900
5947
  "bytes": "3.1.2",
@@ -5913,7 +5960,7 @@
5913
5960
  "version": "2.6.9",
5914
5961
  "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
5915
5962
  "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
5916
- "devOptional": true,
5963
+ "dev": true,
5917
5964
  "license": "MIT",
5918
5965
  "dependencies": {
5919
5966
  "ms": "2.0.0"
@@ -5923,7 +5970,7 @@
5923
5970
  "version": "2.0.0",
5924
5971
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
5925
5972
  "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
5926
- "devOptional": true,
5973
+ "dev": true,
5927
5974
  "license": "MIT"
5928
5975
  },
5929
5976
  "node_modules/concat-map": {
@@ -6038,7 +6085,7 @@
6038
6085
  "version": "29.7.0",
6039
6086
  "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz",
6040
6087
  "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==",
6041
- "devOptional": true,
6088
+ "dev": true,
6042
6089
  "license": "MIT",
6043
6090
  "dependencies": {
6044
6091
  "@jest/types": "^29.6.3",
@@ -6231,7 +6278,7 @@
6231
6278
  "version": "1.5.3",
6232
6279
  "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz",
6233
6280
  "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==",
6234
- "devOptional": true,
6281
+ "dev": true,
6235
6282
  "license": "MIT",
6236
6283
  "peerDependencies": {
6237
6284
  "babel-plugin-macros": "^3.1.0"
@@ -6262,7 +6309,7 @@
6262
6309
  "version": "4.3.1",
6263
6310
  "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
6264
6311
  "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
6265
- "devOptional": true,
6312
+ "dev": true,
6266
6313
  "license": "MIT",
6267
6314
  "engines": {
6268
6315
  "node": ">=0.10.0"
@@ -6272,7 +6319,7 @@
6272
6319
  "version": "1.0.4",
6273
6320
  "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
6274
6321
  "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
6275
- "devOptional": true,
6322
+ "dev": true,
6276
6323
  "license": "MIT",
6277
6324
  "dependencies": {
6278
6325
  "clone": "^1.0.2"
@@ -6354,7 +6401,7 @@
6354
6401
  "version": "3.1.0",
6355
6402
  "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
6356
6403
  "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
6357
- "devOptional": true,
6404
+ "dev": true,
6358
6405
  "license": "MIT",
6359
6406
  "engines": {
6360
6407
  "node": ">=8"
@@ -6689,7 +6736,7 @@
6689
6736
  "version": "0.13.1",
6690
6737
  "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz",
6691
6738
  "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==",
6692
- "devOptional": true,
6739
+ "dev": true,
6693
6740
  "license": "MIT",
6694
6741
  "engines": {
6695
6742
  "node": ">=12"
@@ -6770,7 +6817,7 @@
6770
6817
  "version": "1.5.1",
6771
6818
  "resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.1.tgz",
6772
6819
  "integrity": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==",
6773
- "devOptional": true,
6820
+ "dev": true,
6774
6821
  "license": "MIT",
6775
6822
  "dependencies": {
6776
6823
  "accepts": "~1.3.7",
@@ -7671,6 +7718,7 @@
7671
7718
  "version": "2.0.3",
7672
7719
  "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
7673
7720
  "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
7721
+ "dev": true,
7674
7722
  "license": "BSD-2-Clause",
7675
7723
  "engines": {
7676
7724
  "node": ">=0.10.0"
@@ -7768,7 +7816,7 @@
7768
7816
  "version": "0.1.2",
7769
7817
  "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
7770
7818
  "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
7771
- "devOptional": true,
7819
+ "dev": true,
7772
7820
  "engines": {
7773
7821
  "node": ">= 0.8.0"
7774
7822
  }
@@ -8621,7 +8669,7 @@
8621
8669
  "version": "2.0.2",
8622
8670
  "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
8623
8671
  "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
8624
- "devOptional": true,
8672
+ "dev": true,
8625
8673
  "license": "MIT"
8626
8674
  },
8627
8675
  "node_modules/http-errors": {
@@ -8662,7 +8710,7 @@
8662
8710
  "version": "1.2.1",
8663
8711
  "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
8664
8712
  "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
8665
- "devOptional": true,
8713
+ "dev": true,
8666
8714
  "funding": [
8667
8715
  {
8668
8716
  "type": "github",
@@ -8745,7 +8793,7 @@
8745
8793
  "version": "3.2.0",
8746
8794
  "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
8747
8795
  "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
8748
- "devOptional": true,
8796
+ "dev": true,
8749
8797
  "license": "MIT",
8750
8798
  "dependencies": {
8751
8799
  "pkg-dir": "^4.2.0",
@@ -9023,7 +9071,7 @@
9023
9071
  "version": "2.1.0",
9024
9072
  "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
9025
9073
  "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
9026
- "devOptional": true,
9074
+ "dev": true,
9027
9075
  "license": "MIT",
9028
9076
  "engines": {
9029
9077
  "node": ">=6"
@@ -9062,7 +9110,7 @@
9062
9110
  "version": "1.0.0",
9063
9111
  "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
9064
9112
  "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
9065
- "devOptional": true,
9113
+ "dev": true,
9066
9114
  "license": "MIT",
9067
9115
  "engines": {
9068
9116
  "node": ">=8"
@@ -9253,7 +9301,7 @@
9253
9301
  "version": "0.1.0",
9254
9302
  "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
9255
9303
  "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
9256
- "devOptional": true,
9304
+ "dev": true,
9257
9305
  "license": "MIT",
9258
9306
  "engines": {
9259
9307
  "node": ">=10"
@@ -9312,7 +9360,7 @@
9312
9360
  "version": "1.1.0",
9313
9361
  "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
9314
9362
  "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==",
9315
- "devOptional": true,
9363
+ "dev": true,
9316
9364
  "license": "MIT",
9317
9365
  "engines": {
9318
9366
  "node": ">=4"
@@ -9368,7 +9416,7 @@
9368
9416
  "version": "3.0.1",
9369
9417
  "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
9370
9418
  "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
9371
- "devOptional": true,
9419
+ "dev": true,
9372
9420
  "license": "BSD-3-Clause",
9373
9421
  "dependencies": {
9374
9422
  "istanbul-lib-coverage": "^3.0.0",
@@ -9383,7 +9431,7 @@
9383
9431
  "version": "4.0.1",
9384
9432
  "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
9385
9433
  "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
9386
- "devOptional": true,
9434
+ "dev": true,
9387
9435
  "license": "BSD-3-Clause",
9388
9436
  "dependencies": {
9389
9437
  "debug": "^4.1.1",
@@ -9398,7 +9446,7 @@
9398
9446
  "version": "3.1.7",
9399
9447
  "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
9400
9448
  "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
9401
- "devOptional": true,
9449
+ "dev": true,
9402
9450
  "license": "BSD-3-Clause",
9403
9451
  "dependencies": {
9404
9452
  "html-escaper": "^2.0.0",
@@ -9430,7 +9478,7 @@
9430
9478
  "version": "29.7.0",
9431
9479
  "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz",
9432
9480
  "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
9433
- "devOptional": true,
9481
+ "dev": true,
9434
9482
  "license": "MIT",
9435
9483
  "dependencies": {
9436
9484
  "@jest/core": "^29.7.0",
@@ -9457,7 +9505,7 @@
9457
9505
  "version": "29.7.0",
9458
9506
  "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz",
9459
9507
  "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==",
9460
- "devOptional": true,
9508
+ "dev": true,
9461
9509
  "license": "MIT",
9462
9510
  "dependencies": {
9463
9511
  "execa": "^5.0.0",
@@ -9472,7 +9520,7 @@
9472
9520
  "version": "29.7.0",
9473
9521
  "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz",
9474
9522
  "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==",
9475
- "devOptional": true,
9523
+ "dev": true,
9476
9524
  "license": "MIT",
9477
9525
  "dependencies": {
9478
9526
  "@jest/environment": "^29.7.0",
@@ -9504,7 +9552,7 @@
9504
9552
  "version": "5.2.0",
9505
9553
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
9506
9554
  "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
9507
- "devOptional": true,
9555
+ "dev": true,
9508
9556
  "license": "MIT",
9509
9557
  "engines": {
9510
9558
  "node": ">=10"
@@ -9517,7 +9565,7 @@
9517
9565
  "version": "29.7.0",
9518
9566
  "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
9519
9567
  "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
9520
- "devOptional": true,
9568
+ "dev": true,
9521
9569
  "license": "MIT",
9522
9570
  "dependencies": {
9523
9571
  "@jest/schemas": "^29.6.3",
@@ -9532,7 +9580,7 @@
9532
9580
  "version": "29.7.0",
9533
9581
  "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz",
9534
9582
  "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==",
9535
- "devOptional": true,
9583
+ "dev": true,
9536
9584
  "license": "MIT",
9537
9585
  "dependencies": {
9538
9586
  "@jest/core": "^29.7.0",
@@ -9566,7 +9614,7 @@
9566
9614
  "version": "29.7.0",
9567
9615
  "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz",
9568
9616
  "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
9569
- "devOptional": true,
9617
+ "dev": true,
9570
9618
  "license": "MIT",
9571
9619
  "dependencies": {
9572
9620
  "@babel/core": "^7.11.6",
@@ -9612,7 +9660,7 @@
9612
9660
  "version": "5.2.0",
9613
9661
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
9614
9662
  "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
9615
- "devOptional": true,
9663
+ "dev": true,
9616
9664
  "license": "MIT",
9617
9665
  "engines": {
9618
9666
  "node": ">=10"
@@ -9625,7 +9673,7 @@
9625
9673
  "version": "29.7.0",
9626
9674
  "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
9627
9675
  "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
9628
- "devOptional": true,
9676
+ "dev": true,
9629
9677
  "license": "MIT",
9630
9678
  "dependencies": {
9631
9679
  "@jest/schemas": "^29.6.3",
@@ -9681,7 +9729,7 @@
9681
9729
  "version": "29.7.0",
9682
9730
  "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz",
9683
9731
  "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==",
9684
- "devOptional": true,
9732
+ "dev": true,
9685
9733
  "license": "MIT",
9686
9734
  "dependencies": {
9687
9735
  "detect-newline": "^3.0.0"
@@ -9694,7 +9742,7 @@
9694
9742
  "version": "29.7.0",
9695
9743
  "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz",
9696
9744
  "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==",
9697
- "devOptional": true,
9745
+ "dev": true,
9698
9746
  "license": "MIT",
9699
9747
  "dependencies": {
9700
9748
  "@jest/types": "^29.6.3",
@@ -9711,7 +9759,7 @@
9711
9759
  "version": "5.2.0",
9712
9760
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
9713
9761
  "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
9714
- "devOptional": true,
9762
+ "dev": true,
9715
9763
  "license": "MIT",
9716
9764
  "engines": {
9717
9765
  "node": ">=10"
@@ -9724,7 +9772,7 @@
9724
9772
  "version": "29.7.0",
9725
9773
  "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
9726
9774
  "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
9727
- "devOptional": true,
9775
+ "dev": true,
9728
9776
  "license": "MIT",
9729
9777
  "dependencies": {
9730
9778
  "@jest/schemas": "^29.6.3",
@@ -9866,7 +9914,7 @@
9866
9914
  "version": "29.7.0",
9867
9915
  "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz",
9868
9916
  "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==",
9869
- "devOptional": true,
9917
+ "dev": true,
9870
9918
  "license": "MIT",
9871
9919
  "dependencies": {
9872
9920
  "jest-get-type": "^29.6.3",
@@ -9880,7 +9928,7 @@
9880
9928
  "version": "5.2.0",
9881
9929
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
9882
9930
  "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
9883
- "devOptional": true,
9931
+ "dev": true,
9884
9932
  "license": "MIT",
9885
9933
  "engines": {
9886
9934
  "node": ">=10"
@@ -9893,7 +9941,7 @@
9893
9941
  "version": "29.7.0",
9894
9942
  "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
9895
9943
  "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
9896
- "devOptional": true,
9944
+ "dev": true,
9897
9945
  "license": "MIT",
9898
9946
  "dependencies": {
9899
9947
  "@jest/schemas": "^29.6.3",
@@ -10009,7 +10057,7 @@
10009
10057
  "version": "1.2.3",
10010
10058
  "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
10011
10059
  "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
10012
- "devOptional": true,
10060
+ "dev": true,
10013
10061
  "license": "MIT",
10014
10062
  "engines": {
10015
10063
  "node": ">=6"
@@ -10036,7 +10084,7 @@
10036
10084
  "version": "29.7.0",
10037
10085
  "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz",
10038
10086
  "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
10039
- "devOptional": true,
10087
+ "dev": true,
10040
10088
  "license": "MIT",
10041
10089
  "dependencies": {
10042
10090
  "chalk": "^4.0.0",
@@ -10057,7 +10105,7 @@
10057
10105
  "version": "29.7.0",
10058
10106
  "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz",
10059
10107
  "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==",
10060
- "devOptional": true,
10108
+ "dev": true,
10061
10109
  "license": "MIT",
10062
10110
  "dependencies": {
10063
10111
  "jest-regex-util": "^29.6.3",
@@ -10071,7 +10119,7 @@
10071
10119
  "version": "29.7.0",
10072
10120
  "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz",
10073
10121
  "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==",
10074
- "devOptional": true,
10122
+ "dev": true,
10075
10123
  "license": "MIT",
10076
10124
  "dependencies": {
10077
10125
  "@jest/console": "^29.7.0",
@@ -10104,7 +10152,7 @@
10104
10152
  "version": "29.7.0",
10105
10153
  "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz",
10106
10154
  "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
10107
- "devOptional": true,
10155
+ "dev": true,
10108
10156
  "license": "MIT",
10109
10157
  "dependencies": {
10110
10158
  "@jest/environment": "^29.7.0",
@@ -10138,7 +10186,7 @@
10138
10186
  "version": "29.7.0",
10139
10187
  "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz",
10140
10188
  "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==",
10141
- "devOptional": true,
10189
+ "dev": true,
10142
10190
  "license": "MIT",
10143
10191
  "dependencies": {
10144
10192
  "@babel/core": "^7.11.6",
@@ -10170,7 +10218,7 @@
10170
10218
  "version": "5.2.0",
10171
10219
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
10172
10220
  "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
10173
- "devOptional": true,
10221
+ "dev": true,
10174
10222
  "license": "MIT",
10175
10223
  "engines": {
10176
10224
  "node": ">=10"
@@ -10183,7 +10231,7 @@
10183
10231
  "version": "29.7.0",
10184
10232
  "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
10185
10233
  "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
10186
- "devOptional": true,
10234
+ "dev": true,
10187
10235
  "license": "MIT",
10188
10236
  "dependencies": {
10189
10237
  "@jest/schemas": "^29.6.3",
@@ -10198,7 +10246,7 @@
10198
10246
  "version": "7.6.3",
10199
10247
  "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
10200
10248
  "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
10201
- "devOptional": true,
10249
+ "dev": true,
10202
10250
  "license": "ISC",
10203
10251
  "bin": {
10204
10252
  "semver": "bin/semver.js"
@@ -10283,7 +10331,7 @@
10283
10331
  "version": "29.7.0",
10284
10332
  "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz",
10285
10333
  "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==",
10286
- "devOptional": true,
10334
+ "dev": true,
10287
10335
  "license": "MIT",
10288
10336
  "dependencies": {
10289
10337
  "@jest/test-result": "^29.7.0",
@@ -10477,7 +10525,7 @@
10477
10525
  "version": "2.3.1",
10478
10526
  "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
10479
10527
  "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
10480
- "devOptional": true,
10528
+ "dev": true,
10481
10529
  "license": "MIT"
10482
10530
  },
10483
10531
  "node_modules/json-schema-traverse": {
@@ -10591,7 +10639,7 @@
10591
10639
  "version": "3.0.3",
10592
10640
  "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
10593
10641
  "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
10594
- "devOptional": true,
10642
+ "dev": true,
10595
10643
  "license": "MIT",
10596
10644
  "engines": {
10597
10645
  "node": ">=6"
@@ -10649,7 +10697,7 @@
10649
10697
  "version": "1.2.4",
10650
10698
  "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
10651
10699
  "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
10652
- "devOptional": true,
10700
+ "dev": true,
10653
10701
  "license": "MIT"
10654
10702
  },
10655
10703
  "node_modules/localized-strings": {
@@ -10707,7 +10755,7 @@
10707
10755
  "version": "4.1.0",
10708
10756
  "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
10709
10757
  "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
10710
- "devOptional": true,
10758
+ "dev": true,
10711
10759
  "license": "MIT",
10712
10760
  "dependencies": {
10713
10761
  "chalk": "^4.1.0",
@@ -10910,7 +10958,7 @@
10910
10958
  "version": "4.0.0",
10911
10959
  "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
10912
10960
  "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
10913
- "devOptional": true,
10961
+ "dev": true,
10914
10962
  "license": "MIT",
10915
10963
  "dependencies": {
10916
10964
  "semver": "^7.5.3"
@@ -10926,7 +10974,7 @@
10926
10974
  "version": "7.6.3",
10927
10975
  "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
10928
10976
  "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
10929
- "devOptional": true,
10977
+ "dev": true,
10930
10978
  "license": "ISC",
10931
10979
  "bin": {
10932
10980
  "semver": "bin/semver.js"
@@ -11492,7 +11540,7 @@
11492
11540
  "version": "1.53.0",
11493
11541
  "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz",
11494
11542
  "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==",
11495
- "devOptional": true,
11543
+ "dev": true,
11496
11544
  "license": "MIT",
11497
11545
  "engines": {
11498
11546
  "node": ">= 0.6"
@@ -11697,7 +11745,7 @@
11697
11745
  "version": "1.4.0",
11698
11746
  "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
11699
11747
  "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
11700
- "devOptional": true,
11748
+ "dev": true,
11701
11749
  "license": "MIT"
11702
11750
  },
11703
11751
  "node_modules/ncp": {
@@ -11714,7 +11762,7 @@
11714
11762
  "version": "0.6.4",
11715
11763
  "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz",
11716
11764
  "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==",
11717
- "devOptional": true,
11765
+ "dev": true,
11718
11766
  "license": "MIT",
11719
11767
  "engines": {
11720
11768
  "node": ">= 0.6"
@@ -11730,7 +11778,7 @@
11730
11778
  "version": "3.0.4",
11731
11779
  "resolved": "https://registry.npmjs.org/nocache/-/nocache-3.0.4.tgz",
11732
11780
  "integrity": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==",
11733
- "devOptional": true,
11781
+ "dev": true,
11734
11782
  "license": "MIT",
11735
11783
  "engines": {
11736
11784
  "node": ">=12.0.0"
@@ -12041,7 +12089,7 @@
12041
12089
  "version": "1.0.2",
12042
12090
  "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
12043
12091
  "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
12044
- "devOptional": true,
12092
+ "dev": true,
12045
12093
  "license": "MIT",
12046
12094
  "engines": {
12047
12095
  "node": ">= 0.8"
@@ -12075,7 +12123,7 @@
12075
12123
  "version": "6.4.0",
12076
12124
  "resolved": "https://registry.npmjs.org/open/-/open-6.4.0.tgz",
12077
12125
  "integrity": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==",
12078
- "devOptional": true,
12126
+ "dev": true,
12079
12127
  "license": "MIT",
12080
12128
  "dependencies": {
12081
12129
  "is-wsl": "^1.1.0"
@@ -12106,7 +12154,7 @@
12106
12154
  "version": "5.4.1",
12107
12155
  "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
12108
12156
  "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
12109
- "devOptional": true,
12157
+ "dev": true,
12110
12158
  "license": "MIT",
12111
12159
  "dependencies": {
12112
12160
  "bl": "^4.1.0",
@@ -12130,7 +12178,7 @@
12130
12178
  "version": "6.0.1",
12131
12179
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
12132
12180
  "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
12133
- "devOptional": true,
12181
+ "dev": true,
12134
12182
  "license": "MIT",
12135
12183
  "dependencies": {
12136
12184
  "ansi-regex": "^5.0.1"
@@ -12204,7 +12252,7 @@
12204
12252
  "version": "5.2.0",
12205
12253
  "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
12206
12254
  "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
12207
- "devOptional": true,
12255
+ "dev": true,
12208
12256
  "license": "MIT",
12209
12257
  "dependencies": {
12210
12258
  "@babel/code-frame": "^7.0.0",
@@ -12468,7 +12516,7 @@
12468
12516
  "version": "4.2.0",
12469
12517
  "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
12470
12518
  "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
12471
- "devOptional": true,
12519
+ "dev": true,
12472
12520
  "license": "MIT",
12473
12521
  "dependencies": {
12474
12522
  "find-up": "^4.0.0"
@@ -12481,7 +12529,7 @@
12481
12529
  "version": "4.1.0",
12482
12530
  "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
12483
12531
  "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
12484
- "devOptional": true,
12532
+ "dev": true,
12485
12533
  "license": "MIT",
12486
12534
  "dependencies": {
12487
12535
  "locate-path": "^5.0.0",
@@ -12495,7 +12543,7 @@
12495
12543
  "version": "5.0.0",
12496
12544
  "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
12497
12545
  "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
12498
- "devOptional": true,
12546
+ "dev": true,
12499
12547
  "license": "MIT",
12500
12548
  "dependencies": {
12501
12549
  "p-locate": "^4.1.0"
@@ -12508,7 +12556,7 @@
12508
12556
  "version": "2.3.0",
12509
12557
  "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
12510
12558
  "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
12511
- "devOptional": true,
12559
+ "dev": true,
12512
12560
  "license": "MIT",
12513
12561
  "dependencies": {
12514
12562
  "p-try": "^2.0.0"
@@ -12524,7 +12572,7 @@
12524
12572
  "version": "4.1.0",
12525
12573
  "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
12526
12574
  "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
12527
- "devOptional": true,
12575
+ "dev": true,
12528
12576
  "license": "MIT",
12529
12577
  "dependencies": {
12530
12578
  "p-limit": "^2.2.0"
@@ -12573,7 +12621,7 @@
12573
12621
  "version": "26.6.2",
12574
12622
  "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz",
12575
12623
  "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==",
12576
- "devOptional": true,
12624
+ "dev": true,
12577
12625
  "license": "MIT",
12578
12626
  "dependencies": {
12579
12627
  "@jest/types": "^26.6.2",
@@ -12589,7 +12637,7 @@
12589
12637
  "version": "26.6.2",
12590
12638
  "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz",
12591
12639
  "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==",
12592
- "devOptional": true,
12640
+ "dev": true,
12593
12641
  "license": "MIT",
12594
12642
  "dependencies": {
12595
12643
  "@types/istanbul-lib-coverage": "^2.0.0",
@@ -12606,7 +12654,7 @@
12606
12654
  "version": "15.0.19",
12607
12655
  "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.19.tgz",
12608
12656
  "integrity": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==",
12609
- "devOptional": true,
12657
+ "dev": true,
12610
12658
  "license": "MIT",
12611
12659
  "dependencies": {
12612
12660
  "@types/yargs-parser": "*"
@@ -12616,7 +12664,7 @@
12616
12664
  "version": "17.0.2",
12617
12665
  "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
12618
12666
  "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
12619
- "devOptional": true,
12667
+ "dev": true,
12620
12668
  "license": "MIT"
12621
12669
  },
12622
12670
  "node_modules/process-nextick-args": {
@@ -12644,7 +12692,7 @@
12644
12692
  "version": "2.4.2",
12645
12693
  "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
12646
12694
  "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
12647
- "devOptional": true,
12695
+ "dev": true,
12648
12696
  "license": "MIT",
12649
12697
  "dependencies": {
12650
12698
  "kleur": "^3.0.3",
@@ -12708,7 +12756,7 @@
12708
12756
  "version": "6.1.0",
12709
12757
  "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz",
12710
12758
  "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==",
12711
- "devOptional": true,
12759
+ "dev": true,
12712
12760
  "funding": [
12713
12761
  {
12714
12762
  "type": "individual",
@@ -13170,6 +13218,16 @@
13170
13218
  "react-native-reanimated": ">=3.0.0"
13171
13219
  }
13172
13220
  },
13221
+ "node_modules/react-native-restart": {
13222
+ "version": "0.0.27",
13223
+ "resolved": "https://registry.npmjs.org/react-native-restart/-/react-native-restart-0.0.27.tgz",
13224
+ "integrity": "sha512-8KScVICrXwcTSJ1rjWkqVTHyEKQIttm5AIMGSK1QG1+RS5owYlE4z/1DykOTdWfVl9l16FIk0w9Xzk9ZO6jxlA==",
13225
+ "license": "MIT",
13226
+ "peerDependencies": {
13227
+ "react": "*",
13228
+ "react-native": "*"
13229
+ }
13230
+ },
13173
13231
  "node_modules/react-native-safe-area-context": {
13174
13232
  "version": "5.0.0",
13175
13233
  "resolved": "https://registry.npmjs.org/react-native-safe-area-context/-/react-native-safe-area-context-5.0.0.tgz",
@@ -13781,7 +13839,7 @@
13781
13839
  "version": "3.0.0",
13782
13840
  "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
13783
13841
  "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
13784
- "devOptional": true,
13842
+ "dev": true,
13785
13843
  "license": "MIT",
13786
13844
  "dependencies": {
13787
13845
  "resolve-from": "^5.0.0"
@@ -13803,7 +13861,7 @@
13803
13861
  "version": "2.0.3",
13804
13862
  "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.3.tgz",
13805
13863
  "integrity": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==",
13806
- "devOptional": true,
13864
+ "dev": true,
13807
13865
  "license": "MIT",
13808
13866
  "engines": {
13809
13867
  "node": ">=10"
@@ -13813,7 +13871,7 @@
13813
13871
  "version": "3.1.0",
13814
13872
  "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
13815
13873
  "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
13816
- "devOptional": true,
13874
+ "dev": true,
13817
13875
  "license": "MIT",
13818
13876
  "dependencies": {
13819
13877
  "onetime": "^5.1.0",
@@ -13907,7 +13965,7 @@
13907
13965
  "version": "5.2.1",
13908
13966
  "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
13909
13967
  "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
13910
- "devOptional": true,
13968
+ "dev": true,
13911
13969
  "funding": [
13912
13970
  {
13913
13971
  "type": "github",
@@ -14304,7 +14362,7 @@
14304
14362
  "version": "1.0.5",
14305
14363
  "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
14306
14364
  "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
14307
- "devOptional": true,
14365
+ "dev": true,
14308
14366
  "license": "MIT"
14309
14367
  },
14310
14368
  "node_modules/slash": {
@@ -14374,7 +14432,7 @@
14374
14432
  "version": "0.5.13",
14375
14433
  "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
14376
14434
  "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
14377
- "devOptional": true,
14435
+ "dev": true,
14378
14436
  "license": "MIT",
14379
14437
  "dependencies": {
14380
14438
  "buffer-from": "^1.0.0",
@@ -14496,7 +14554,7 @@
14496
14554
  "version": "4.0.2",
14497
14555
  "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
14498
14556
  "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
14499
- "devOptional": true,
14557
+ "dev": true,
14500
14558
  "license": "MIT",
14501
14559
  "dependencies": {
14502
14560
  "char-regex": "^1.0.2",
@@ -14510,7 +14568,7 @@
14510
14568
  "version": "6.0.1",
14511
14569
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
14512
14570
  "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
14513
- "devOptional": true,
14571
+ "dev": true,
14514
14572
  "license": "MIT",
14515
14573
  "dependencies": {
14516
14574
  "ansi-regex": "^5.0.1"
@@ -14686,7 +14744,7 @@
14686
14744
  "version": "4.0.0",
14687
14745
  "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
14688
14746
  "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
14689
- "devOptional": true,
14747
+ "dev": true,
14690
14748
  "license": "MIT",
14691
14749
  "engines": {
14692
14750
  "node": ">=8"
@@ -14705,7 +14763,7 @@
14705
14763
  "version": "3.1.1",
14706
14764
  "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
14707
14765
  "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
14708
- "devOptional": true,
14766
+ "dev": true,
14709
14767
  "license": "MIT",
14710
14768
  "engines": {
14711
14769
  "node": ">=8"
@@ -14726,7 +14784,7 @@
14726
14784
  "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz",
14727
14785
  "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==",
14728
14786
  "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
14729
- "devOptional": true,
14787
+ "dev": true,
14730
14788
  "license": "MIT"
14731
14789
  },
14732
14790
  "node_modules/supports-color": {
@@ -15181,7 +15239,7 @@
15181
15239
  "version": "0.21.3",
15182
15240
  "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
15183
15241
  "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
15184
- "devOptional": true,
15242
+ "dev": true,
15185
15243
  "license": "(MIT OR CC0-1.0)",
15186
15244
  "engines": {
15187
15245
  "node": ">=10"
@@ -15468,7 +15526,7 @@
15468
15526
  "version": "9.3.0",
15469
15527
  "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
15470
15528
  "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==",
15471
- "devOptional": true,
15529
+ "dev": true,
15472
15530
  "license": "ISC",
15473
15531
  "dependencies": {
15474
15532
  "@jridgewell/trace-mapping": "^0.3.12",
@@ -15483,7 +15541,7 @@
15483
15541
  "version": "1.1.2",
15484
15542
  "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
15485
15543
  "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
15486
- "devOptional": true,
15544
+ "dev": true,
15487
15545
  "license": "MIT",
15488
15546
  "engines": {
15489
15547
  "node": ">= 0.8"
@@ -15514,7 +15572,7 @@
15514
15572
  "version": "1.0.1",
15515
15573
  "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
15516
15574
  "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==",
15517
- "devOptional": true,
15575
+ "dev": true,
15518
15576
  "license": "MIT",
15519
15577
  "dependencies": {
15520
15578
  "defaults": "^1.0.3"