From 948f6eadf68a7d35bcb44ab37e3e7fedc42912de Mon Sep 17 00:00:00 2001
From: ntorionbearstudio <53612278+ntorionbearstudio@users.noreply.github.com>
Date: Thu, 31 Oct 2024 06:14:29 -0400
Subject: [PATCH] Version 1.3.0 (#37)
---
docs/next.config.mjs | 1 +
example/app/components/Box.tsx | 75 +
example/app/components/DraggableModal.tsx | 45 +
example/app/items.ts | 6 +
example/package.json | 45 +-
example/pnpm-lock.yaml | 3586 ++++++-----------
jest-setup.ts | 1 +
package.json | 2 +
pnpm-lock.yaml | 84 +-
src/components/avatar/avatar.component.tsx | 2 +
src/components/badge/badge.component.tsx | 2 +
src/components/box/box.component.tsx | 2 +
src/components/center/center.component.tsx | 2 +
.../checkbox/checkbox.component.tsx | 2 +
src/components/divider/divider.component.tsx | 2 +
.../draggable-modal.component.tsx | 100 +
.../draggable-modal/draggable-modal.style.tsx | 46 +
.../draggable-modal/draggable-modal.type.tsx | 24 +
.../flashlist/flashlist.component.tsx | 2 +
src/components/flex/flex.component.tsx | 2 +
src/components/icon/icon.component.tsx | 2 +
src/components/image/image.component.tsx | 2 +
src/components/index.ts | 2 +
src/components/list/list.component.tsx | 2 +
.../pressable/pressable.component.tsx | 2 +
src/components/radio/radio.component.tsx | 2 +
.../safeareabox/safeareabox.component.tsx | 2 +
.../scrollbox/scrollbox.component.tsx | 2 +
.../sectionlist/sectionlist.component.tsx | 2 +
src/components/spinner/spinner.component.tsx | 2 +
src/components/stack/stack.component.tsx | 2 +
.../touchable-highlight.component.tsx | 2 +
.../touchable-opacity.component.tsx | 2 +
.../touchable-without-feedback.component.tsx | 2 +
src/theme/theme.provider.tsx | 19 +-
src/theme/theme.service.ts | 13 +-
src/theme/type.ts | 2 +
src/types.ts | 3 +
38 files changed, 1669 insertions(+), 2427 deletions(-)
create mode 100644 example/app/components/DraggableModal.tsx
create mode 100644 src/components/draggable-modal/draggable-modal.component.tsx
create mode 100644 src/components/draggable-modal/draggable-modal.style.tsx
create mode 100644 src/components/draggable-modal/draggable-modal.type.tsx
diff --git a/docs/next.config.mjs b/docs/next.config.mjs
index 60b70bfd..dc88a46c 100644
--- a/docs/next.config.mjs
+++ b/docs/next.config.mjs
@@ -77,6 +77,7 @@ export default withNextra({
'react-native-vector-icons',
'react-native-ficus-ui',
'react-native-confirmation-code-field',
+ '@gorhom/bottom-sheet'
],
webpack: (config) => {
diff --git a/example/app/components/Box.tsx b/example/app/components/Box.tsx
index ce824bb6..fdd58bd9 100644
--- a/example/app/components/Box.tsx
+++ b/example/app/components/Box.tsx
@@ -110,6 +110,81 @@ const BoxComponent = () => {
+
+
+
+
+
+
+
+
+
+
+
+
{
+ const { isOpen, onOpen, onClose } = useDisclosure();
+ return (
+
+
+ DraggableModal
+
+
+
+
+
+
+ Settings
+
+
+ Your settings
+
+
+
+ );
+};
+
+export default DraggableModalComponent;
diff --git a/example/app/items.ts b/example/app/items.ts
index 26b3004e..d8f26d32 100644
--- a/example/app/items.ts
+++ b/example/app/items.ts
@@ -22,6 +22,7 @@ import CheckboxComponent from './components/Checkbox';
import RadioComponent from './components/Radio';
import ToastHook from './components/Toast';
import ModalComponent from './components/Modal';
+import DraggableModalComponent from './components/DraggableModal';
import FlashListComponent from './components/FlashList';
import SafeAreaBoxComponent from './components/SafeAreaBox';
import DividerComponent from './components/Divider';
@@ -169,6 +170,11 @@ export const components: ExampleComponentType[] = [
onScreenName: 'Modal',
component: ModalComponent,
},
+ {
+ navigationPath: 'DraggableModal',
+ onScreenName: 'DraggableModal',
+ component: DraggableModalComponent,
+ },
{
navigationPath: 'Slider',
onScreenName: 'Slider',
diff --git a/example/package.json b/example/package.json
index 802be572..ad5f4f23 100644
--- a/example/package.json
+++ b/example/package.json
@@ -16,50 +16,51 @@
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
- "@react-navigation/native": "^6.0.2",
- "expo": "~51.0.28",
- "expo-constants": "~16.0.2",
- "expo-font": "~12.0.9",
- "expo-linking": "~6.3.1",
- "expo-router": "~3.5.23",
- "expo-splash-screen": "~0.27.5",
- "expo-status-bar": "~1.12.1",
- "expo-system-ui": "~3.0.7",
- "expo-web-browser": "~13.0.3",
- "react": "18.2.0",
- "react-dom": "18.2.0",
- "react-native": "0.74.5",
- "react-native-gesture-handler": "~2.16.1",
- "react-native-reanimated": "~3.10.1",
- "react-native-safe-area-context": "4.10.5",
- "react-native-screens": "3.31.1",
- "react-native-web": "~0.19.10"
+ "@react-navigation/native": "7.0.0-rc.21",
+ "expo": "52.0.0-preview.7",
+ "expo-constants": "17.0.2",
+ "expo-font": "13.0.0",
+ "expo-linking": "7.0.2",
+ "expo-router": "4.0.0-preview.4",
+ "expo-splash-screen": "0.28.4",
+ "expo-status-bar": "2.0.0",
+ "expo-system-ui": "4.0.1",
+ "expo-web-browser": "14.0.0",
+ "react": "18.3.1",
+ "react-dom": "18.3.1",
+ "react-native": "0.76.0",
+ "react-native-reanimated": "3.16.1",
+ "react-native-safe-area-context": "4.12.0",
+ "react-native-screens": "4.0.0-beta.14",
+ "react-native-web": "0.19.13"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/jest": "^29.5.12",
- "@types/react": "~18.2.45",
+ "@types/react": "18.3.12",
"@types/react-test-renderer": "^18.0.7",
"babel-plugin-module-resolver": "^5.0.2",
"jest": "^29.2.1",
- "jest-expo": "~51.0.3",
+ "jest-expo": "52.0.0-preview.1",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"private": true,
"peerDependencies": {
+ "@gorhom/bottom-sheet": "5.0.4",
+ "@react-native-community/slider": "4.5.4",
"@shopify/flash-list": "1.5.0",
"color": "4.2.3",
"deepmerge": "4.2.2",
- "@react-native-community/slider": "4.5.4",
"react-native-animatable": "1.3.3",
+ "react-native-confirmation-code-field": "7.4.0",
+ "react-native-gesture-handler": "2.20.2",
"react-native-modal": "13.0.1",
"react-native-pager-view": "6.2.2",
"react-native-reanimated": "3.5.4",
"react-native-tab-view": "3.5.2",
"react-native-toast-message": "2.1.6",
"react-native-vector-icons": "10.0.0",
- "react-native-confirmation-code-field": "7.4.0",
"validate-color": "2.2.1"
}
}
diff --git a/example/pnpm-lock.yaml b/example/pnpm-lock.yaml
index ae141007..fabdd34a 100644
--- a/example/pnpm-lock.yaml
+++ b/example/pnpm-lock.yaml
@@ -8,15 +8,18 @@ dependencies:
'@expo/vector-icons':
specifier: ^14.0.2
version: 14.0.2
+ '@gorhom/bottom-sheet':
+ specifier: 5.0.4
+ version: 5.0.4(@types/react@18.3.12)(react-native-gesture-handler@2.20.2)(react-native-reanimated@3.16.1)(react-native@0.76.0)(react@18.3.1)
'@react-native-community/slider':
specifier: 4.5.4
version: 4.5.4
'@react-navigation/native':
- specifier: ^6.0.2
- version: 6.1.18(react-native@0.74.5)(react@18.2.0)
+ specifier: 7.0.0-rc.21
+ version: 7.0.0-rc.21(react-native@0.76.0)(react@18.3.1)
'@shopify/flash-list':
specifier: 1.5.0
- version: 1.5.0(@babel/runtime@7.25.4)(react-native@0.74.5)(react@18.2.0)
+ version: 1.5.0(@babel/runtime@7.25.4)(react-native@0.76.0)(react@18.3.1)
color:
specifier: 4.2.3
version: 4.2.3
@@ -24,77 +27,77 @@ dependencies:
specifier: 4.2.2
version: 4.2.2
expo:
- specifier: ~51.0.28
- version: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ specifier: 52.0.0-preview.7
+ version: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
expo-constants:
- specifier: ~16.0.2
- version: 16.0.2(expo@51.0.31)
+ specifier: 17.0.2
+ version: 17.0.2(expo@52.0.0-preview.7)(react-native@0.76.0)
expo-font:
- specifier: ~12.0.9
- version: 12.0.9(expo@51.0.31)
+ specifier: 13.0.0
+ version: 13.0.0(expo@52.0.0-preview.7)(react@18.3.1)
expo-linking:
- specifier: ~6.3.1
- version: 6.3.1(expo@51.0.31)
+ specifier: 7.0.2
+ version: 7.0.2(expo@52.0.0-preview.7)(react-native@0.76.0)(react@18.3.1)
expo-router:
- specifier: ~3.5.23
- version: 3.5.23(expo-constants@16.0.2)(expo-linking@6.3.1)(expo-modules-autolinking@1.11.2)(expo-status-bar@1.12.1)(expo@51.0.31)(react-native-reanimated@3.10.1)(react-native-safe-area-context@4.10.5)(react-native-screens@3.31.1)(react-native@0.74.5)(react@18.2.0)(typescript@5.3.3)
+ specifier: 4.0.0-preview.4
+ version: 4.0.0-preview.4(expo-constants@17.0.2)(expo-linking@7.0.2)(expo-modules-autolinking@2.0.0-preview.2)(expo@52.0.0-preview.7)(react-dom@18.3.1)(react-native-reanimated@3.16.1)(react-native-safe-area-context@4.12.0)(react-native-screens@4.0.0-beta.14)(react-native@0.76.0)(react@18.3.1)(typescript@5.3.3)
expo-splash-screen:
- specifier: ~0.27.5
- version: 0.27.5(expo-modules-autolinking@1.11.2)(expo@51.0.31)
+ specifier: 0.28.4
+ version: 0.28.4(expo-modules-autolinking@2.0.0-preview.2)(expo@52.0.0-preview.7)
expo-status-bar:
- specifier: ~1.12.1
- version: 1.12.1
+ specifier: 2.0.0
+ version: 2.0.0(react-native@0.76.0)(react@18.3.1)
expo-system-ui:
- specifier: ~3.0.7
- version: 3.0.7(expo@51.0.31)
+ specifier: 4.0.1
+ version: 4.0.1(expo@52.0.0-preview.7)(react-native-web@0.19.13)(react-native@0.76.0)
expo-web-browser:
- specifier: ~13.0.3
- version: 13.0.3(expo@51.0.31)
+ specifier: 14.0.0
+ version: 14.0.0(expo@52.0.0-preview.7)(react-native@0.76.0)
react:
- specifier: 18.2.0
- version: 18.2.0
+ specifier: 18.3.1
+ version: 18.3.1
react-dom:
- specifier: 18.2.0
- version: 18.2.0(react@18.2.0)
+ specifier: 18.3.1
+ version: 18.3.1(react@18.3.1)
react-native:
- specifier: 0.74.5
- version: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ specifier: 0.76.0
+ version: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
react-native-animatable:
specifier: 1.3.3
version: 1.3.3
react-native-confirmation-code-field:
specifier: 7.4.0
- version: 7.4.0(react-native@0.74.5)(react@18.2.0)
+ version: 7.4.0(react-native@0.76.0)(react@18.3.1)
react-native-gesture-handler:
- specifier: ~2.16.1
- version: 2.16.2(react-native@0.74.5)(react@18.2.0)
+ specifier: 2.20.2
+ version: 2.20.2(react-native@0.76.0)(react@18.3.1)
react-native-modal:
specifier: 13.0.1
- version: 13.0.1(react-native@0.74.5)(react@18.2.0)
+ version: 13.0.1(react-native@0.76.0)(react@18.3.1)
react-native-pager-view:
specifier: 6.2.2
- version: 6.2.2(react-native@0.74.5)(react@18.2.0)
+ version: 6.2.2(react-native@0.76.0)(react@18.3.1)
react-native-reanimated:
- specifier: ~3.10.1
- version: 3.10.1(@babel/core@7.25.2)(react-native@0.74.5)(react@18.2.0)
+ specifier: 3.16.1
+ version: 3.16.1(@babel/core@7.25.2)(react-native@0.76.0)(react@18.3.1)
react-native-safe-area-context:
- specifier: 4.10.5
- version: 4.10.5(react-native@0.74.5)(react@18.2.0)
+ specifier: 4.12.0
+ version: 4.12.0(react-native@0.76.0)(react@18.3.1)
react-native-screens:
- specifier: 3.31.1
- version: 3.31.1(react-native@0.74.5)(react@18.2.0)
+ specifier: 4.0.0-beta.14
+ version: 4.0.0-beta.14(react-native@0.76.0)(react@18.3.1)
react-native-tab-view:
specifier: 3.5.2
- version: 3.5.2(react-native-pager-view@6.2.2)(react-native@0.74.5)(react@18.2.0)
+ version: 3.5.2(react-native-pager-view@6.2.2)(react-native@0.76.0)(react@18.3.1)
react-native-toast-message:
specifier: 2.1.6
- version: 2.1.6(react-native@0.74.5)(react@18.2.0)
+ version: 2.1.6(react-native@0.76.0)(react@18.3.1)
react-native-vector-icons:
specifier: 10.0.0
version: 10.0.0
react-native-web:
- specifier: ~0.19.10
- version: 0.19.12(react-dom@18.2.0)(react@18.2.0)
+ specifier: 0.19.13
+ version: 0.19.13(react-dom@18.3.1)(react@18.3.1)
validate-color:
specifier: 2.2.1
version: 2.2.1
@@ -107,8 +110,8 @@ devDependencies:
specifier: ^29.5.12
version: 29.5.12
'@types/react':
- specifier: ~18.2.45
- version: 18.2.79
+ specifier: 18.3.12
+ version: 18.3.12
'@types/react-test-renderer':
specifier: ^18.0.7
version: 18.3.0
@@ -119,11 +122,11 @@ devDependencies:
specifier: ^29.2.1
version: 29.7.0
jest-expo:
- specifier: ~51.0.3
- version: 51.0.4(@babel/core@7.25.2)(jest@29.7.0)(react@18.2.0)
+ specifier: 52.0.0-preview.1
+ version: 52.0.0-preview.1(@babel/core@7.25.2)(expo@52.0.0-preview.7)(jest@29.7.0)(react-dom@18.3.1)(react-native@0.76.0)(react@18.3.1)(webpack@5.95.0)
react-test-renderer:
specifier: 18.2.0
- version: 18.2.0(react@18.2.0)
+ version: 18.2.0(react@18.3.1)
typescript:
specifier: ~5.3.3
version: 5.3.3
@@ -175,16 +178,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator@7.2.0:
- resolution: {integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==}
- dependencies:
- '@babel/types': 7.25.4
- jsesc: 2.5.2
- lodash: 4.17.21
- source-map: 0.5.7
- trim-right: 1.0.1
- dev: false
-
/@babel/generator@7.25.5:
resolution: {integrity: sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==}
engines: {node: '>=6.9.0'}
@@ -199,7 +192,6 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.25.4
- dev: false
/@babel/helper-builder-binary-assignment-operator-visitor@7.24.7:
resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
@@ -209,7 +201,6 @@ packages:
'@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/helper-compilation-targets@7.25.2:
resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
@@ -237,7 +228,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.25.2):
resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
@@ -249,7 +239,6 @@ packages:
'@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- dev: false
/@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2):
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
@@ -264,14 +253,6 @@ packages:
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- dev: false
-
- /@babel/helper-environment-visitor@7.24.7:
- resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.4
- dev: false
/@babel/helper-member-expression-to-functions@7.24.8:
resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
@@ -281,7 +262,6 @@ packages:
'@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/helper-module-imports@7.24.7:
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
@@ -311,7 +291,6 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.25.4
- dev: false
/@babel/helper-plugin-utils@7.24.8:
resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
@@ -329,7 +308,6 @@ packages:
'@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2):
resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
@@ -343,7 +321,6 @@ packages:
'@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/helper-simple-access@7.24.7:
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
@@ -362,7 +339,6 @@ packages:
'@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/helper-string-parser@7.24.8:
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
@@ -385,7 +361,6 @@ packages:
'@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/helpers@7.25.0:
resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
@@ -421,7 +396,6 @@ packages:
'@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2):
resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
@@ -431,7 +405,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2):
resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
@@ -441,7 +414,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
@@ -455,7 +427,6 @@ packages:
'@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2):
resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
@@ -468,23 +439,6 @@ packages:
'@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
-
- /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.25.2):
- resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
- dev: false
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.2):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
@@ -498,7 +452,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
@@ -512,7 +465,6 @@ packages:
'@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==}
@@ -523,19 +475,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.25.2)
- dev: false
-
- /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.25.2):
- resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- dev: false
/@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.2):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
@@ -547,46 +486,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- dev: false
-
- /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.25.2):
- resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- dev: false
-
- /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.2):
- resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- dev: false
-
- /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.2):
- resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- dev: false
/@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.2):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
@@ -601,7 +500,6 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2):
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
@@ -610,7 +508,6 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.25.2
- dev: false
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -627,7 +524,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: true
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
@@ -654,7 +550,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
@@ -663,7 +558,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==}
@@ -673,7 +567,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
@@ -682,7 +575,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
@@ -692,7 +584,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==}
@@ -702,7 +593,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==}
@@ -822,7 +712,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
@@ -832,7 +721,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.25.2):
resolution: {integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==}
@@ -847,7 +735,6 @@ packages:
'@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
@@ -861,7 +748,6 @@ packages:
'@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
@@ -871,7 +757,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2):
resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
@@ -881,7 +766,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2):
resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
@@ -894,7 +778,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
@@ -908,7 +791,6 @@ packages:
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2):
resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
@@ -925,7 +807,6 @@ packages:
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
@@ -936,7 +817,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/template': 7.25.0
- dev: false
/@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2):
resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
@@ -946,7 +826,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
@@ -957,7 +836,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
@@ -967,7 +845,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2):
resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
@@ -978,7 +855,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
@@ -989,7 +865,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
@@ -1002,7 +877,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
@@ -1013,7 +887,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.25.2):
resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==}
@@ -1024,7 +897,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
@@ -1037,7 +909,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2):
resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
@@ -1051,7 +922,6 @@ packages:
'@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
@@ -1062,7 +932,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2):
resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
@@ -1072,7 +941,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
@@ -1083,7 +951,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
@@ -1093,7 +960,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
@@ -1106,7 +972,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2):
resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
@@ -1120,7 +985,6 @@ packages:
'@babel/helper-simple-access': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2):
resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
@@ -1135,7 +999,6 @@ packages:
'@babel/traverse': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
@@ -1148,7 +1011,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
@@ -1159,7 +1021,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
@@ -1169,7 +1030,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
@@ -1180,7 +1040,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
@@ -1191,7 +1050,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
@@ -1204,7 +1062,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
@@ -1217,7 +1074,6 @@ packages:
'@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
@@ -1228,7 +1084,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- dev: false
/@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2):
resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
@@ -1242,7 +1097,6 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
@@ -1252,7 +1106,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2):
resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
@@ -1265,7 +1118,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
@@ -1280,7 +1132,6 @@ packages:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
@@ -1290,7 +1141,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
@@ -1300,7 +1150,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
@@ -1312,7 +1161,6 @@ packages:
'@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
@@ -1322,7 +1170,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
@@ -1332,7 +1179,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2):
resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
@@ -1348,7 +1194,6 @@ packages:
'@babel/types': 7.25.4
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
@@ -1359,7 +1204,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
@@ -1370,7 +1214,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
regenerator-transform: 0.15.2
- dev: false
/@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
@@ -1380,7 +1223,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-runtime@7.25.4(@babel/core@7.25.2):
resolution: {integrity: sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==}
@@ -1397,7 +1239,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
@@ -1407,7 +1248,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
@@ -1420,7 +1260,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
@@ -1430,7 +1269,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
@@ -1440,7 +1278,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2):
resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
@@ -1450,7 +1287,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2):
resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
@@ -1466,7 +1302,6 @@ packages:
'@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
@@ -1476,7 +1311,6 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
@@ -1487,7 +1321,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
@@ -1498,7 +1331,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2):
resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
@@ -1509,7 +1341,6 @@ packages:
'@babel/core': 7.25.2
'@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
'@babel/helper-plugin-utils': 7.24.8
- dev: false
/@babel/preset-env@7.25.4(@babel/core@7.25.2):
resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
@@ -1603,7 +1434,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/preset-flow@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==}
@@ -1615,7 +1445,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-validator-option': 7.24.8
'@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
- dev: false
/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2):
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
@@ -1626,7 +1455,6 @@ packages:
'@babel/helper-plugin-utils': 7.24.8
'@babel/types': 7.25.4
esutils: 2.0.3
- dev: false
/@babel/preset-react@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
@@ -1643,7 +1471,6 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/preset-typescript@7.24.7(@babel/core@7.25.2):
resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
@@ -1659,7 +1486,6 @@ packages:
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/register@7.24.6(@babel/core@7.25.2):
resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==}
@@ -1673,18 +1499,15 @@ packages:
make-dir: 2.1.0
pirates: 4.0.6
source-map-support: 0.5.21
- dev: false
/@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- dev: false
/@babel/runtime@7.25.4:
resolution: {integrity: sha512-DSgLeL/FNcpXuzav5wfYvHCGvynXkJbn3Zvc3823AEe9nPwW9IK4UoCSS5yGymmQzN0pCPvivtgS6/8U2kkm1w==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
- dev: false
/@babel/template@7.25.0:
resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
@@ -1732,29 +1555,28 @@ packages:
engines: {'0': node >=0.10.0}
dependencies:
uuid: 8.3.2
- dev: false
- /@expo/cli@0.18.29(expo-modules-autolinking@1.11.2):
- resolution: {integrity: sha512-X810C48Ss+67RdZU39YEO1khNYo1RmjouRV+vVe0QhMoTe8R6OA3t+XYEdwaNbJ5p/DJN7szfHfNmX2glpC7xg==}
+ /@expo/cli@0.19.4(expo-modules-autolinking@2.0.0-preview.2):
+ resolution: {integrity: sha512-kj1eSTqJts90bjEvvHdgqKd/f/N9OEjdpa97Xwx11zEQTubK7tLqwdu2/pe6OlKI5zUiavLfwdGLVoVi/sp2mg==}
hasBin: true
dependencies:
'@babel/runtime': 7.25.4
'@expo/code-signing-certificates': 0.0.5
- '@expo/config': 9.0.3
- '@expo/config-plugins': 8.0.8
+ '@expo/config': 10.0.2
+ '@expo/config-plugins': 9.0.3
'@expo/devcert': 1.1.4
- '@expo/env': 0.3.0
- '@expo/image-utils': 0.5.1
- '@expo/json-file': 8.3.3
- '@expo/metro-config': 0.18.11
+ '@expo/env': 0.4.0
+ '@expo/image-utils': 0.6.0
+ '@expo/json-file': 9.0.0
+ '@expo/metro-config': 0.19.0-preview.2
'@expo/osascript': 2.1.3
'@expo/package-manager': 1.5.2
- '@expo/plist': 0.1.3
- '@expo/prebuild-config': 7.0.8(expo-modules-autolinking@1.11.2)
+ '@expo/plist': 0.2.0
+ '@expo/prebuild-config': 8.0.4(expo-modules-autolinking@2.0.0-preview.2)
'@expo/rudder-sdk-node': 1.1.1
'@expo/spawn-async': 1.7.2
'@expo/xcpretty': 4.3.1
- '@react-native/dev-middleware': 0.74.85
+ '@react-native/dev-middleware': 0.76.0
'@urql/core': 2.3.6(graphql@15.8.0)
'@urql/exchange-retry': 0.3.0(graphql@15.8.0)
accepts: 1.3.8
@@ -1765,34 +1587,29 @@ packages:
cacache: 18.0.4
chalk: 4.1.2
ci-info: 3.9.0
+ compression: 1.7.4
connect: 3.7.0
debug: 4.3.6
env-editor: 0.4.2
fast-glob: 3.3.2
- find-yarn-workspace-root: 2.0.0
form-data: 3.0.1
freeport-async: 2.0.0
fs-extra: 8.1.0
getenv: 1.0.0
- glob: 7.2.3
+ glob: 10.4.5
graphql: 15.8.0
graphql-tag: 2.12.6(graphql@15.8.0)
- https-proxy-agent: 5.0.1
internal-ip: 4.3.0
is-docker: 2.2.1
is-wsl: 2.2.0
- js-yaml: 3.14.1
- json-schema-deref-sync: 0.13.0
lodash.debounce: 4.0.8
- md5hex: 1.0.0
minimatch: 3.1.2
- node-fetch: 2.7.0
node-forge: 1.3.1
- npm-package-arg: 7.0.0
- open: 8.4.2
+ npm-package-arg: 11.0.3
ora: 3.4.0
picomatch: 3.0.1
pretty-bytes: 5.6.0
+ pretty-format: 29.7.0
progress: 2.0.3
prompts: 2.4.2
qrcode-terminal: 0.11.0
@@ -1809,10 +1626,9 @@ packages:
structured-headers: 0.4.1
tar: 6.2.1
temp-dir: 2.0.0
- tempy: 0.7.1
terminal-link: 2.1.1
- text-table: 0.2.0
- url-join: 4.0.0
+ undici: 6.19.8
+ unique-string: 2.0.0
wrap-ansi: 7.0.0
ws: 8.18.0
transitivePeerDependencies:
@@ -1821,27 +1637,44 @@ packages:
- expo-modules-autolinking
- supports-color
- utf-8-validate
- dev: false
/@expo/code-signing-certificates@0.0.5:
resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==}
dependencies:
node-forge: 1.3.1
nullthrows: 1.1.1
- dev: false
- /@expo/config-plugins@8.0.8:
- resolution: {integrity: sha512-Fvu6IO13EUw0R9WeqxUO37FkM62YJBNcZb9DyJAOgMz7Ez/vaKQGEjKt9cwT+Q6uirtCATMgaq6VWAW7YW8xXw==}
+ /@expo/config-plugins@9.0.2:
+ resolution: {integrity: sha512-17kQTzDS5eoLuZTd/v/dSZQUftdi7G8cqncNyUWFUYqLITO9Q571VdrbORIp5gXTWtASG1Ig6M86zs4efrq79w==}
dependencies:
- '@expo/config-types': 51.0.2
- '@expo/json-file': 8.3.3
- '@expo/plist': 0.1.3
+ '@expo/config-types': 52.0.0-preview.1
+ '@expo/json-file': 9.0.0
+ '@expo/plist': 0.2.0
'@expo/sdk-runtime-versions': 1.0.0
chalk: 4.1.2
debug: 4.3.6
- find-up: 5.0.0
getenv: 1.0.0
- glob: 7.1.6
+ glob: 10.4.5
+ resolve-from: 5.0.0
+ semver: 7.6.3
+ slash: 3.0.0
+ slugify: 1.6.6
+ xcode: 3.0.1
+ xml2js: 0.6.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@expo/config-plugins@9.0.3:
+ resolution: {integrity: sha512-f5StoJw96G4XpvZmFhpuQXwBmiTzEZXsZMpZriAe7Q6Wz8HVBO3noT6RiOKZVouOwHMS6hAhzQ7cmrfVOKuRCw==}
+ dependencies:
+ '@expo/config-types': 52.0.0-preview.1
+ '@expo/json-file': 9.0.0
+ '@expo/plist': 0.2.0
+ '@expo/sdk-runtime-versions': 1.0.0
+ chalk: 4.1.2
+ debug: 4.3.6
+ getenv: 1.0.0
+ glob: 10.4.5
resolve-from: 5.0.0
semver: 7.6.3
slash: 3.0.0
@@ -1851,26 +1684,47 @@ packages:
transitivePeerDependencies:
- supports-color
- /@expo/config-types@51.0.2:
- resolution: {integrity: sha512-IglkIoiDwJMY01lYkF/ZSBoe/5cR+O3+Gx6fpLFjLfgZGBTdyPkKa1g8NWoWQCk+D3cKL2MDbszT2DyRRB0YqQ==}
+ /@expo/config-types@52.0.0-preview.1:
+ resolution: {integrity: sha512-UfLWUfu2VcM/qJPVN4o19Aatf14VFC/qv5VKF3Nbi2TH05vFny/Frw9WlHqDJfXUuNG9xCdqSvvLrNYflb3jzQ==}
- /@expo/config@9.0.3:
- resolution: {integrity: sha512-eOTNM8eOC8gZNHgenySRlc/lwmYY1NOgvjwA8LHuvPT7/eUwD93zrxu3lPD1Cc/P6C/2BcVdfH4hf0tLmDxnsg==}
+ /@expo/config@10.0.0:
+ resolution: {integrity: sha512-afGxs4wOz+1KASt0fa3gVQHezY2F0v0yhkz+bzanuqAIUKowlP0VnbWthEMA9VgJOHSIppq3dIRhQJVbQI+plg==}
dependencies:
'@babel/code-frame': 7.10.4
- '@expo/config-plugins': 8.0.8
- '@expo/config-types': 51.0.2
- '@expo/json-file': 8.3.3
+ '@expo/config-plugins': 9.0.2
+ '@expo/config-types': 52.0.0-preview.1
+ '@expo/json-file': 9.0.0
+ deepmerge: 4.3.1
getenv: 1.0.0
- glob: 7.1.6
+ glob: 10.4.5
require-from-string: 2.0.2
resolve-from: 5.0.0
+ resolve-workspace-root: 2.0.0
semver: 7.6.3
slugify: 1.6.6
sucrase: 3.34.0
transitivePeerDependencies:
- supports-color
+ /@expo/config@10.0.2:
+ resolution: {integrity: sha512-sc//Jxo1O7Mf8u7OOdFVoRIm80QNgpyJ0cnB25SKtwb5FtZNPYzb7MijgRESJBXsMWTcHLK+223qyMOc2U1opw==}
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ '@expo/config-plugins': 9.0.3
+ '@expo/config-types': 52.0.0-preview.1
+ '@expo/json-file': 9.0.0
+ deepmerge: 4.3.1
+ getenv: 1.0.0
+ glob: 10.4.5
+ require-from-string: 2.0.2
+ resolve-from: 5.0.0
+ resolve-workspace-root: 2.0.0
+ semver: 7.6.3
+ slugify: 1.6.6
+ sucrase: 3.35.0
+ transitivePeerDependencies:
+ - supports-color
+
/@expo/devcert@1.1.4:
resolution: {integrity: sha512-fqBODr8c72+gBSX5Ty3SIzaY4bXainlpab78+vEYEKL3fXmsOswMLf0+KE36mUEAa36BYabX7K3EiXOXX5OPMw==}
dependencies:
@@ -1888,10 +1742,9 @@ packages:
tslib: 2.7.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@expo/env@0.3.0:
- resolution: {integrity: sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==}
+ /@expo/env@0.4.0:
+ resolution: {integrity: sha512-g2JYFqck3xKIwJyK+8LxZ2ENZPWtRgjFWpeht9abnKgzXVXBeSNECFBkg+WQjQocSIdxXhEWM6hz4ZAe7Tc4ng==}
dependencies:
chalk: 4.1.2
debug: 4.3.6
@@ -1900,24 +1753,20 @@ packages:
getenv: 1.0.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@expo/image-utils@0.5.1:
- resolution: {integrity: sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==}
+ /@expo/image-utils@0.6.0:
+ resolution: {integrity: sha512-x0ljt6idmHp5ht0+u8LgCesYwNKLyN+K8dRP2lcdhYLWIIsz9XJ6xi5cTm1uECVpp9zedv43iZ9zlxLH+eCdDQ==}
dependencies:
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
fs-extra: 9.0.0
getenv: 1.0.0
jimp-compact: 0.16.1
- node-fetch: 2.7.0
parse-png: 2.1.0
resolve-from: 5.0.0
semver: 7.6.3
- tempy: 0.3.0
- transitivePeerDependencies:
- - encoding
- dev: false
+ temp-dir: 2.0.0
+ unique-string: 2.0.0
/@expo/json-file@8.3.3:
resolution: {integrity: sha512-eZ5dld9AD0PrVRiIWpRkm5aIoWBw3kAyd8VkuWEy92sEthBKDDDHAnK2a0dw0Eil6j7rK7lS/Qaq/Zzngv2h5A==}
@@ -1926,37 +1775,43 @@ packages:
json5: 2.2.3
write-file-atomic: 2.4.3
- /@expo/metro-config@0.18.11:
- resolution: {integrity: sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q==}
+ /@expo/json-file@9.0.0:
+ resolution: {integrity: sha512-M+55xFVrFzDcgMDf+52lPDLjKB5xwRfStWlv/b/Vu2OLgxGZLWpxoPYjlRoHqxjPbCQIi2ZCbobK+0KuNhsELg==}
+ dependencies:
+ '@babel/code-frame': 7.10.4
+ json5: 2.2.3
+ write-file-atomic: 2.4.3
+
+ /@expo/metro-config@0.19.0-preview.2:
+ resolution: {integrity: sha512-BxZoSaiRb2GWs/gzgs9lVgaAme3H5qpbetFIgcxsX7muFf/XsKZjElDnPzI0pZTyDMAOLi5bpPm/BhLfxdd6hw==}
dependencies:
'@babel/core': 7.25.2
'@babel/generator': 7.25.5
'@babel/parser': 7.25.4
'@babel/types': 7.25.4
- '@expo/config': 9.0.3
- '@expo/env': 0.3.0
- '@expo/json-file': 8.3.3
+ '@expo/config': 10.0.2
+ '@expo/env': 0.4.0
+ '@expo/json-file': 9.0.0
'@expo/spawn-async': 1.7.2
chalk: 4.1.2
debug: 4.3.6
- find-yarn-workspace-root: 2.0.0
fs-extra: 9.1.0
getenv: 1.0.0
- glob: 7.2.3
+ glob: 10.4.5
jsc-safe-url: 0.2.4
- lightningcss: 1.19.0
+ lightningcss: 1.27.0
+ minimatch: 3.1.2
postcss: 8.4.41
resolve-from: 5.0.0
transitivePeerDependencies:
- supports-color
- dev: false
- /@expo/metro-runtime@3.2.3(react-native@0.74.5):
- resolution: {integrity: sha512-v5ji+fAGi7B9YavrxvekuF8gXEV/5fz0+PhaED5AaFDnbGB4IJIbpaiqK9nqZV1axjGZNQSw6Q8TsnFetCR3bQ==}
+ /@expo/metro-runtime@4.0.0-preview.0(react-native@0.76.0):
+ resolution: {integrity: sha512-qay5RASJSVfbhNydqeo5+JiigL5nIZYGVR6ZKO2PYqKIWGaLBMhVtBkYwlr2PpCZDxhaXlWve3rz8EcZOvkapw==}
peerDependencies:
react-native: '*'
dependencies:
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
/@expo/osascript@2.1.3:
@@ -1965,7 +1820,6 @@ packages:
dependencies:
'@expo/spawn-async': 1.7.2
exec-async: 2.2.0
- dev: false
/@expo/package-manager@1.5.2:
resolution: {integrity: sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==}
@@ -1982,58 +1836,54 @@ packages:
ora: 3.4.0
split: 1.0.1
sudo-prompt: 9.1.1
- dev: false
- /@expo/plist@0.1.3:
- resolution: {integrity: sha512-GW/7hVlAylYg1tUrEASclw1MMk9FP4ZwyFAY/SUTJIhPDQHtfOlXREyWV3hhrHdX/K+pS73GNgdfT6E/e+kBbg==}
+ /@expo/plist@0.2.0:
+ resolution: {integrity: sha512-F/IZJQaf8OIVnVA6XWUeMPC3OH6MV00Wxf0WC0JhTQht2QgjyHUa3U5Gs3vRtDq8tXNsZneOQRDVwpaOnd4zTQ==}
dependencies:
'@xmldom/xmldom': 0.7.13
base64-js: 1.5.1
xmlbuilder: 14.0.0
- /@expo/prebuild-config@7.0.6(expo-modules-autolinking@1.11.2):
- resolution: {integrity: sha512-Hts+iGBaG6OQ+N8IEMMgwQElzJeSTb7iUJ26xADEHkaexsucAK+V52dM8M4ceicvbZR9q8M+ebJEGj0MCNA3dQ==}
+ /@expo/prebuild-config@8.0.3(expo-modules-autolinking@2.0.0-preview.2):
+ resolution: {integrity: sha512-20PXRFclDbnXnHb5b2G4aK9ImBbHgbwynxDemKMYL6gZKx0oLbQHP4mDCWOn2enUR+ogsCRuIZTFupHq3WrYJw==}
peerDependencies:
- expo-modules-autolinking: '>=0.8.1'
+ expo-modules-autolinking: 2.0.0-preview.1
dependencies:
- '@expo/config': 9.0.3
- '@expo/config-plugins': 8.0.8
- '@expo/config-types': 51.0.2
- '@expo/image-utils': 0.5.1
- '@expo/json-file': 8.3.3
- '@react-native/normalize-colors': 0.74.84
+ '@expo/config': 10.0.0
+ '@expo/config-plugins': 9.0.2
+ '@expo/config-types': 52.0.0-preview.1
+ '@expo/image-utils': 0.6.0
+ '@expo/json-file': 9.0.0
+ '@react-native/normalize-colors': 0.76.0
debug: 4.3.6
- expo-modules-autolinking: 1.11.2
+ expo-modules-autolinking: 2.0.0-preview.2
fs-extra: 9.1.0
resolve-from: 5.0.0
semver: 7.6.3
xml2js: 0.6.0
transitivePeerDependencies:
- - encoding
- supports-color
dev: false
- /@expo/prebuild-config@7.0.8(expo-modules-autolinking@1.11.2):
- resolution: {integrity: sha512-wH9NVg6HiwF5y9x0TxiMEeBF+ITPGDXy5/i6OUheSrKpPgb0lF1Mwzl/f2fLPXBEpl+ZXOQ8LlLW32b7K9lrNg==}
+ /@expo/prebuild-config@8.0.4(expo-modules-autolinking@2.0.0-preview.2):
+ resolution: {integrity: sha512-yIxMIsPAW0euU09yLGCNe05oPqr8mbbP92afob8F+O9djZBtkf6XQbP991oSrfGCZsKTtJHn70G/dSZQmYi/nQ==}
peerDependencies:
- expo-modules-autolinking: '>=0.8.1'
+ expo-modules-autolinking: 2.0.0-preview.2
dependencies:
- '@expo/config': 9.0.3
- '@expo/config-plugins': 8.0.8
- '@expo/config-types': 51.0.2
- '@expo/image-utils': 0.5.1
- '@expo/json-file': 8.3.3
- '@react-native/normalize-colors': 0.74.85
+ '@expo/config': 10.0.0
+ '@expo/config-plugins': 9.0.2
+ '@expo/config-types': 52.0.0-preview.1
+ '@expo/image-utils': 0.6.0
+ '@expo/json-file': 9.0.0
+ '@react-native/normalize-colors': 0.76.0
debug: 4.3.6
- expo-modules-autolinking: 1.11.2
+ expo-modules-autolinking: 2.0.0-preview.2
fs-extra: 9.1.0
resolve-from: 5.0.0
semver: 7.6.3
xml2js: 0.6.0
transitivePeerDependencies:
- - encoding
- supports-color
- dev: false
/@expo/rudder-sdk-node@1.1.1:
resolution: {integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==}
@@ -2048,15 +1898,14 @@ packages:
uuid: 8.3.2
transitivePeerDependencies:
- encoding
- dev: false
/@expo/sdk-runtime-versions@1.0.0:
resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==}
- /@expo/server@0.4.4(typescript@5.3.3):
- resolution: {integrity: sha512-q9ADBzMN5rZ/fgQ2mz5YIJuZ8gelQlhG2CQqToD+UvBLZvbaHCNxTTSs2KI1LzJvAaW5CWgWMatGvGF6iUQ0LA==}
+ /@expo/server@0.5.0-preview.0(typescript@5.3.3):
+ resolution: {integrity: sha512-TLwpMhfvbefA/v0pSp9wkkxxaQGYv3s3qsgwMCkpuenFgIOJmV3D+yvPFDYUWE8UelS0HO0xw+LtH17zWrOCyQ==}
dependencies:
- '@remix-run/node': 2.11.2(typescript@5.3.3)
+ '@remix-run/node': 2.13.1(typescript@5.3.3)
abort-controller: 3.0.0
debug: 4.3.6
source-map-support: 0.5.21
@@ -2070,13 +1919,11 @@ packages:
engines: {node: '>=12'}
dependencies:
cross-spawn: 7.0.3
- dev: false
/@expo/vector-icons@14.0.2:
resolution: {integrity: sha512-70LpmXQu4xa8cMxjp1fydgRPsalefnHaXLzIwaHMEzcZhnyjw2acZz8azRrZOslPVAWlxItOa2Dd7WtD/kI+CA==}
dependencies:
prop-types: 15.8.1
- dev: false
/@expo/xcpretty@4.3.1:
resolution: {integrity: sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==}
@@ -2086,26 +1933,49 @@ packages:
chalk: 4.1.2
find-up: 5.0.0
js-yaml: 4.1.0
- dev: false
- /@graphql-typed-document-node/core@3.2.0(graphql@15.8.0):
- resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
+ /@gorhom/bottom-sheet@5.0.4(@types/react@18.3.12)(react-native-gesture-handler@2.20.2)(react-native-reanimated@3.16.1)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-DTKFE+KwcS4Du5hbzTzh3r9hdfEfYmChcRi6hSeiDPGiCMq8GQ7VD5VE1WaFRrEbcc0+Seu1ZEjsf+JMcFM4vg==}
peerDependencies:
- graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ '@types/react': '*'
+ '@types/react-native': '*'
+ react: '*'
+ react-native: '*'
+ react-native-gesture-handler: '>=2.16.1'
+ react-native-reanimated: '>=3.10.1'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-native':
+ optional: true
dependencies:
- graphql: 15.8.0
- dev: false
-
- /@hapi/hoek@9.3.0:
- resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
+ '@gorhom/portal': 1.0.14(react-native@0.76.0)(react@18.3.1)
+ '@types/react': 18.3.12
+ invariant: 2.2.4
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ react-native-gesture-handler: 2.20.2(react-native@0.76.0)(react@18.3.1)
+ react-native-reanimated: 3.16.1(@babel/core@7.25.2)(react-native@0.76.0)(react@18.3.1)
dev: false
- /@hapi/topo@5.1.0:
- resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- dependencies:
- '@hapi/hoek': 9.3.0
+ /@gorhom/portal@1.0.14(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ nanoid: 3.3.7
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
+ /@graphql-typed-document-node/core@3.2.0(graphql@15.8.0):
+ resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
+ peerDependencies:
+ graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
+ dependencies:
+ graphql: 15.8.0
+
/@isaacs/cliui@8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
@@ -2116,12 +1986,10 @@ packages:
strip-ansi-cjs: /strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: /wrap-ansi@7.0.0
- dev: false
/@isaacs/ttlcache@1.4.1:
resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==}
engines: {node: '>=12'}
- dev: false
/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
@@ -2132,12 +2000,10 @@ packages:
get-package-type: 0.1.0
js-yaml: 3.14.1
resolve-from: 5.0.0
- dev: true
/@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- dev: true
/@jest/console@29.7.0:
resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
@@ -2342,27 +2208,6 @@ packages:
write-file-atomic: 4.0.2
transitivePeerDependencies:
- supports-color
- dev: true
-
- /@jest/types@24.9.0:
- resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==}
- engines: {node: '>= 6'}
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports': 1.1.2
- '@types/yargs': 13.0.12
- dev: false
-
- /@jest/types@26.6.2:
- resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
- engines: {node: '>= 10.14.2'}
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports': 3.0.4
- '@types/node': 22.5.0
- '@types/yargs': 15.0.19
- chalk: 4.1.2
- dev: false
/@jest/types@29.6.3:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
@@ -2396,7 +2241,6 @@ packages:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- dev: false
/@jridgewell/sourcemap-codec@1.5.0:
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
@@ -2413,12 +2257,10 @@ packages:
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- dev: false
/@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- dev: false
/@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
@@ -2426,265 +2268,87 @@ packages:
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- dev: false
/@npmcli/fs@3.1.1:
resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
semver: 7.6.3
- dev: false
/@pkgjs/parseargs@0.11.0:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
requiresBuild: true
- dev: false
optional: true
- /@radix-ui/react-compose-refs@1.0.0(react@18.2.0):
+ /@radix-ui/react-compose-refs@1.0.0(react@18.3.1):
resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.25.4
- react: 18.2.0
+ react: 18.3.1
dev: false
- /@radix-ui/react-slot@1.0.1(react@18.2.0):
+ /@radix-ui/react-slot@1.0.1(react@18.3.1):
resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.25.4
- '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
- react: 18.2.0
- dev: false
-
- /@react-native-community/cli-clean@13.6.9:
- resolution: {integrity: sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==}
- dependencies:
- '@react-native-community/cli-tools': 13.6.9
- chalk: 4.1.2
- execa: 5.1.1
- fast-glob: 3.3.2
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-config@13.6.9:
- resolution: {integrity: sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==}
- dependencies:
- '@react-native-community/cli-tools': 13.6.9
- chalk: 4.1.2
- cosmiconfig: 5.2.1
- deepmerge: 4.3.1
- fast-glob: 3.3.2
- joi: 17.13.3
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-debugger-ui@13.6.9:
- resolution: {integrity: sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==}
- dependencies:
- serve-static: 1.15.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@react-native-community/cli-doctor@13.6.9:
- resolution: {integrity: sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==}
- dependencies:
- '@react-native-community/cli-config': 13.6.9
- '@react-native-community/cli-platform-android': 13.6.9
- '@react-native-community/cli-platform-apple': 13.6.9
- '@react-native-community/cli-platform-ios': 13.6.9
- '@react-native-community/cli-tools': 13.6.9
- chalk: 4.1.2
- command-exists: 1.2.9
- deepmerge: 4.3.1
- envinfo: 7.13.0
- execa: 5.1.1
- hermes-profile-transformer: 0.0.6
- node-stream-zip: 1.15.0
- ora: 5.4.1
- semver: 7.6.3
- strip-ansi: 5.2.0
- wcwidth: 1.0.1
- yaml: 2.5.0
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-hermes@13.6.9:
- resolution: {integrity: sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==}
- dependencies:
- '@react-native-community/cli-platform-android': 13.6.9
- '@react-native-community/cli-tools': 13.6.9
- chalk: 4.1.2
- hermes-profile-transformer: 0.0.6
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-platform-android@13.6.9:
- resolution: {integrity: sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==}
- dependencies:
- '@react-native-community/cli-tools': 13.6.9
- chalk: 4.1.2
- execa: 5.1.1
- fast-glob: 3.3.2
- fast-xml-parser: 4.4.1
- logkitty: 0.7.1
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-platform-apple@13.6.9:
- resolution: {integrity: sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==}
- dependencies:
- '@react-native-community/cli-tools': 13.6.9
- chalk: 4.1.2
- execa: 5.1.1
- fast-glob: 3.3.2
- fast-xml-parser: 4.4.1
- ora: 5.4.1
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-platform-ios@13.6.9:
- resolution: {integrity: sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==}
- dependencies:
- '@react-native-community/cli-platform-apple': 13.6.9
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-server-api@13.6.9:
- resolution: {integrity: sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==}
- dependencies:
- '@react-native-community/cli-debugger-ui': 13.6.9
- '@react-native-community/cli-tools': 13.6.9
- compression: 1.7.4
- connect: 3.7.0
- errorhandler: 1.5.1
- nocache: 3.0.4
- pretty-format: 26.6.2
- serve-static: 1.15.0
- ws: 6.2.3
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - supports-color
- - utf-8-validate
- dev: false
-
- /@react-native-community/cli-tools@13.6.9:
- resolution: {integrity: sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==}
- dependencies:
- appdirsjs: 1.2.7
- chalk: 4.1.2
- execa: 5.1.1
- find-up: 5.0.0
- mime: 2.6.0
- node-fetch: 2.7.0
- open: 6.4.0
- ora: 5.4.1
- semver: 7.6.3
- shell-quote: 1.8.1
- sudo-prompt: 9.2.1
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@react-native-community/cli-types@13.6.9:
- resolution: {integrity: sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==}
- dependencies:
- joi: 17.13.3
- dev: false
-
- /@react-native-community/cli@13.6.9:
- resolution: {integrity: sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==}
- engines: {node: '>=18'}
- hasBin: true
- dependencies:
- '@react-native-community/cli-clean': 13.6.9
- '@react-native-community/cli-config': 13.6.9
- '@react-native-community/cli-debugger-ui': 13.6.9
- '@react-native-community/cli-doctor': 13.6.9
- '@react-native-community/cli-hermes': 13.6.9
- '@react-native-community/cli-server-api': 13.6.9
- '@react-native-community/cli-tools': 13.6.9
- '@react-native-community/cli-types': 13.6.9
- chalk: 4.1.2
- commander: 9.5.0
- deepmerge: 4.3.1
- execa: 5.1.1
- find-up: 4.1.0
- fs-extra: 8.1.0
- graceful-fs: 4.2.11
- prompts: 2.4.2
- semver: 7.6.3
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - supports-color
- - utf-8-validate
+ '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
+ react: 18.3.1
dev: false
/@react-native-community/slider@4.5.4:
resolution: {integrity: sha512-TFhwnrp0LTFG90yat8mqEOBLLMJylpnchO5F0KusH8dI0VzViIVIXOzhnx0mUVqLvRwRPbqBB0tvhxd739UhmA==}
dev: false
- /@react-native/assets-registry@0.74.87:
- resolution: {integrity: sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg==}
+ /@react-native/assets-registry@0.76.0:
+ resolution: {integrity: sha512-U8KLV+PC/cRIiDpb1VbeGuEfKq2riZZtNVLp1UOyKWfPbWWu8j6Fr95w7j+nglp41z70iBeF2OmCiVnRvtNklA==}
engines: {node: '>=18'}
- dev: false
- /@react-native/babel-plugin-codegen@0.74.87(@babel/preset-env@7.25.4):
- resolution: {integrity: sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw==}
+ /@react-native/babel-plugin-codegen@0.76.0(@babel/preset-env@7.25.4):
+ resolution: {integrity: sha512-HOi45pqlZnCTeR4jJ/zK0FB12r08CI9O70uBjVUqmzvHIrWmL5FaEFp6BPVFOjjXtUsl3JZ2Mle7WpsAP2PQBA==}
engines: {node: '>=18'}
dependencies:
- '@react-native/codegen': 0.74.87(@babel/preset-env@7.25.4)
+ '@react-native/codegen': 0.76.0(@babel/preset-env@7.25.4)
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- dev: false
- /@react-native/babel-preset@0.74.87(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
- resolution: {integrity: sha512-hyKpfqzN2nxZmYYJ0tQIHG99FQO0OWXp/gVggAfEUgiT+yNKas1C60LuofUsK7cd+2o9jrpqgqW4WzEDZoBlTg==}
+ /@react-native/babel-preset@0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
+ resolution: {integrity: sha512-HgQt4MyuWLcnrIglXn7GNPPVwtzZ4ffX+SUisdhmPtJCHuP8AOU3HsgOKLhqVfEGWTBlE4kbWoTmmLU87IJaOw==}
engines: {node: '>=18'}
peerDependencies:
'@babel/core': '*'
dependencies:
'@babel/core': 7.25.2
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.2)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.2)
'@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.25.2)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.2)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.2)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.25.2)
'@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
'@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
'@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
'@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
'@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
'@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
'@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
@@ -2692,6 +2356,7 @@ packages:
'@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
'@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-runtime': 7.25.4(@babel/core@7.25.2)
'@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
@@ -2699,16 +2364,16 @@ packages:
'@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
'@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
'@babel/template': 7.25.0
- '@react-native/babel-plugin-codegen': 0.74.87(@babel/preset-env@7.25.4)
+ '@react-native/babel-plugin-codegen': 0.76.0(@babel/preset-env@7.25.4)
+ babel-plugin-syntax-hermes-parser: 0.23.1
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.25.2)
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- dev: false
- /@react-native/codegen@0.74.87(@babel/preset-env@7.25.4):
- resolution: {integrity: sha512-GMSYDiD+86zLKgMMgz9z0k6FxmRn+z6cimYZKkucW4soGbxWsbjUAZoZ56sJwt2FJ3XVRgXCrnOCgXoH/Bkhcg==}
+ /@react-native/codegen@0.76.0(@babel/preset-env@7.25.4):
+ resolution: {integrity: sha512-x0zzK1rb7ZSIAeHRcRSjRo+VtLROjln1IKnQSPLEZEdyQfWNXqgiMk59E5hW7KE6I05upqfbf85PRAb5WndXdw==}
engines: {node: '>=18'}
peerDependencies:
'@babel/preset-env': ^7.1.6
@@ -2716,30 +2381,33 @@ packages:
'@babel/parser': 7.25.4
'@babel/preset-env': 7.25.4(@babel/core@7.25.2)
glob: 7.2.3
- hermes-parser: 0.19.1
+ hermes-parser: 0.23.1
invariant: 2.2.4
jscodeshift: 0.14.0(@babel/preset-env@7.25.4)
mkdirp: 0.5.6
nullthrows: 1.1.1
+ yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- dev: false
- /@react-native/community-cli-plugin@0.74.87(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
- resolution: {integrity: sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ==}
+ /@react-native/community-cli-plugin@0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
+ resolution: {integrity: sha512-JFU5kmo+lUf5vOsieJ/dGS71Z2+qV3leXbKW6p8cn5aVfupVmtz/uYcFVdGzEGIGJ3juorYOZjpG8Qz91FrUZw==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@react-native-community/cli-server-api': '*'
+ peerDependenciesMeta:
+ '@react-native-community/cli-server-api':
+ optional: true
dependencies:
- '@react-native-community/cli-server-api': 13.6.9
- '@react-native-community/cli-tools': 13.6.9
- '@react-native/dev-middleware': 0.74.87
- '@react-native/metro-babel-transformer': 0.74.87(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ '@react-native/dev-middleware': 0.76.0
+ '@react-native/metro-babel-transformer': 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
chalk: 4.1.2
execa: 5.1.1
- metro: 0.80.10
- metro-config: 0.80.10
- metro-core: 0.80.10
+ invariant: 2.2.4
+ metro: 0.81.0
+ metro-config: 0.81.0
+ metro-core: 0.81.0
node-fetch: 2.7.0
- querystring: 0.2.1
readline: 1.3.0
transitivePeerDependencies:
- '@babel/core'
@@ -2748,105 +2416,62 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: false
-
- /@react-native/debugger-frontend@0.74.85:
- resolution: {integrity: sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==}
- engines: {node: '>=18'}
- dev: false
- /@react-native/debugger-frontend@0.74.87:
- resolution: {integrity: sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ==}
+ /@react-native/debugger-frontend@0.76.0:
+ resolution: {integrity: sha512-v4J22ZN1/7BQYhYvnZYi2pzd87MmTCEnxtTiktaUOhmx3YSF47LGo1Q2UfUE5YOzoRftiJTXDKvzDbI/hqAzgg==}
engines: {node: '>=18'}
- dev: false
-
- /@react-native/dev-middleware@0.74.85:
- resolution: {integrity: sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==}
- engines: {node: '>=18'}
- dependencies:
- '@isaacs/ttlcache': 1.4.1
- '@react-native/debugger-frontend': 0.74.85
- '@rnx-kit/chromium-edge-launcher': 1.0.0
- chrome-launcher: 0.15.2
- connect: 3.7.0
- debug: 2.6.9
- node-fetch: 2.7.0
- nullthrows: 1.1.1
- open: 7.4.2
- selfsigned: 2.4.1
- serve-static: 1.15.0
- temp-dir: 2.0.0
- ws: 6.2.3
- transitivePeerDependencies:
- - bufferutil
- - encoding
- - supports-color
- - utf-8-validate
- dev: false
- /@react-native/dev-middleware@0.74.87:
- resolution: {integrity: sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA==}
+ /@react-native/dev-middleware@0.76.0:
+ resolution: {integrity: sha512-XvSnCDwCghWCVNtGpoF30xgA1EzxvlGsEyhJCUe0uLMDaaVxr/ZkgD3nZ+/l4cEm1qlrlcAZoGctnUgrzHiTaA==}
engines: {node: '>=18'}
dependencies:
'@isaacs/ttlcache': 1.4.1
- '@react-native/debugger-frontend': 0.74.87
- '@rnx-kit/chromium-edge-launcher': 1.0.0
+ '@react-native/debugger-frontend': 0.76.0
chrome-launcher: 0.15.2
+ chromium-edge-launcher: 0.2.0
connect: 3.7.0
debug: 2.6.9
- node-fetch: 2.7.0
nullthrows: 1.1.1
open: 7.4.2
selfsigned: 2.4.1
serve-static: 1.15.0
- temp-dir: 2.0.0
ws: 6.2.3
transitivePeerDependencies:
- bufferutil
- - encoding
- supports-color
- utf-8-validate
- dev: false
- /@react-native/gradle-plugin@0.74.87:
- resolution: {integrity: sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A==}
+ /@react-native/gradle-plugin@0.76.0:
+ resolution: {integrity: sha512-MhsAahV/Ju0Md1x79ljaDsNzzFY02TsDqxSfOS8vc4trZuM0imFf7VEBitOydNDTf9NqzAqJ9p8j7OSuxUEvLg==}
engines: {node: '>=18'}
- dev: false
- /@react-native/js-polyfills@0.74.87:
- resolution: {integrity: sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw==}
+ /@react-native/js-polyfills@0.76.0:
+ resolution: {integrity: sha512-0UzEqvg85Bn0BpgNG80wzbiWvNypwdl64sbRs/sEvIDjzgq/tM+u3KoneSD5tP72BCydAqXFfepff3FZgImfbA==}
engines: {node: '>=18'}
- dev: false
- /@react-native/metro-babel-transformer@0.74.87(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
- resolution: {integrity: sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A==}
+ /@react-native/metro-babel-transformer@0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
+ resolution: {integrity: sha512-aq0MrjaOxDitSqQbttBcOt+5tjemCabhEX2gGthy8cNeZokBa2raoHQInDo9iBBN1ePKDCwKGypyC8zKA5dksQ==}
engines: {node: '>=18'}
peerDependencies:
'@babel/core': '*'
dependencies:
'@babel/core': 7.25.2
- '@react-native/babel-preset': 0.74.87(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- hermes-parser: 0.19.1
+ '@react-native/babel-preset': 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ hermes-parser: 0.23.1
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
- supports-color
- dev: false
-
- /@react-native/normalize-colors@0.74.84:
- resolution: {integrity: sha512-Y5W6x8cC5RuakUcTVUFNAIhUZ/tYpuqHZlRBoAuakrTwVuoNHXfQki8lj1KsYU7rW6e3VWgdEx33AfOQpdNp6A==}
- dev: false
-
- /@react-native/normalize-colors@0.74.85:
- resolution: {integrity: sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==}
- dev: false
/@react-native/normalize-colors@0.74.87:
resolution: {integrity: sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA==}
dev: false
- /@react-native/virtualized-lists@0.74.87(@types/react@18.2.79)(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ==}
+ /@react-native/normalize-colors@0.76.0:
+ resolution: {integrity: sha512-r+pjeIhzehb+bJUUUrztOQb+n6J9DeaLbF6waLgiHa5mFOiwP/4/iWS68inSZnnBtmXHkN2IYiMXzExx8hieWA==}
+
+ /@react-native/virtualized-lists@0.76.0(@types/react@18.3.12)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-WT3Xi1+ikmWWdbrv3xnl8wYxobj1+N5JfiOQx7o/tiGUCx8m12pf5tlutXByH2m7X8bAZ+BBcRuu1vwt7XaRhQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/react': ^18.2.6
@@ -2856,100 +2481,124 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.12
invariant: 2.2.4
nullthrows: 1.1.1
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
- dev: false
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
- /@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18)(react-native-safe-area-context@4.10.5)(react-native-screens@3.31.1)(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==}
+ /@react-navigation/bottom-tabs@7.0.0-rc.33(@react-navigation/native@7.0.0-rc.20)(react-native-safe-area-context@4.12.0)(react-native-screens@4.0.0-beta.14)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-yH1SbV/gmWDVAugYdSD+TLLXNaRVD38Lh556W7YSM4D2XvrwV5yRndO8nBzIil2IJddgy4ulnSZhvk1iQGXRqg==}
peerDependencies:
- '@react-navigation/native': ^6.0.0
- react: '*'
- react-native: '*'
- react-native-safe-area-context: '>= 3.0.0'
- react-native-screens: '>= 3.0.0'
+ '@react-navigation/native': ^7.0.0-rc.20
+ react: '>= 18.2.0'
+ react-native: '>= 0.72.0'
+ react-native-safe-area-context: '>= 4.0.0'
+ react-native-screens: '>= 4.0.0'
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18)(react-native-safe-area-context@4.10.5)(react-native@0.74.5)(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.5)(react@18.2.0)
+ '@react-navigation/elements': 2.0.0-rc.26(@react-navigation/native@7.0.0-rc.20)(react-native-safe-area-context@4.12.0)(react-native@0.76.0)(react@18.3.1)
+ '@react-navigation/native': 7.0.0-rc.20(react-native@0.76.0)(react@18.3.1)
color: 4.2.3
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5)(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5)(react@18.2.0)
- warn-once: 0.1.1
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ react-native-safe-area-context: 4.12.0(react-native@0.76.0)(react@18.3.1)
+ react-native-screens: 4.0.0-beta.14(react-native@0.76.0)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@react-native-masked-view/masked-view'
dev: false
- /@react-navigation/core@6.4.17(react@18.2.0):
- resolution: {integrity: sha512-Nd76EpomzChWAosGqWOYE3ItayhDzIEzzZsT7PfGcRFDgW5miHV2t4MZcq9YIK4tzxZjVVpYbIynOOQQd1e0Cg==}
+ /@react-navigation/core@7.0.0-rc.15(react@18.3.1):
+ resolution: {integrity: sha512-g02FyrUVVzUrzlYSp3ZHXWCFyZEDFEjiccEMBDwmgCWr/9NnnSYQ00utlyTU5GmGoFK1G1NAN1O+Q4YlT+GT1A==}
peerDependencies:
react: '*'
dependencies:
- '@react-navigation/routers': 6.1.9
+ '@react-navigation/routers': 7.0.0-rc.8
escape-string-regexp: 4.0.0
nanoid: 3.3.7
query-string: 7.1.3
- react: 18.2.0
- react-is: 16.13.1
- use-latest-callback: 0.2.1(react@18.2.0)
+ react: 18.3.1
+ react-is: 18.3.1
+ use-latest-callback: 0.2.1(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
dev: false
- /@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18)(react-native-safe-area-context@4.10.5)(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-bUzP4Awlljx5RKEExw8WYtif8EuQni2glDaieYROKTnaxsu9kEIA515sXQgUDZU4Ob12VoL7+z70uO3qrlfXcQ==}
+ /@react-navigation/elements@2.0.0-rc.26(@react-navigation/native@7.0.0-rc.20)(react-native-safe-area-context@4.12.0)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-omtEkb2E8j3dYLq08YGsDykQoVLtTLWAQXp0ql6cB8qjtMhP7rMhoBU50veh0Tes/96Sm3X0e3WZPQMVBKrSSg==}
peerDependencies:
- '@react-navigation/native': ^6.0.0
- react: '*'
+ '@react-native-masked-view/masked-view': '>= 0.2.0'
+ '@react-navigation/native': ^7.0.0-rc.21
+ react: '>= 18.2.0'
react-native: '*'
- react-native-safe-area-context: '>= 3.0.0'
+ react-native-safe-area-context: '>= 4.0.0'
+ peerDependenciesMeta:
+ '@react-native-masked-view/masked-view':
+ optional: true
dependencies:
- '@react-navigation/native': 6.1.18(react-native@0.74.5)(react@18.2.0)
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5)(react@18.2.0)
+ '@react-navigation/native': 7.0.0-rc.20(react-native@0.76.0)(react@18.3.1)
+ color: 4.2.3
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ react-native-safe-area-context: 4.12.0(react-native@0.76.0)(react@18.3.1)
+ dev: false
+
+ /@react-navigation/native-stack@7.0.0-rc.28(@react-navigation/native@7.0.0-rc.20)(react-native-safe-area-context@4.12.0)(react-native-screens@4.0.0-beta.14)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-i1iOlgVvfxgbkWnXkQMHP5QOpSfAx2ZhXcZ9HkTBswtM0TgMZLKZ0+QSTNgGk59rY14ZaL+399U9HrD5aVeWBw==}
+ peerDependencies:
+ '@react-navigation/native': ^7.0.0-rc.20
+ react: '>= 18.2.0'
+ react-native: '>= 0.72.0'
+ react-native-safe-area-context: '>= 4.0.0'
+ react-native-screens: '>= 4.0.0'
+ dependencies:
+ '@react-navigation/elements': 2.0.0-rc.26(@react-navigation/native@7.0.0-rc.20)(react-native-safe-area-context@4.12.0)(react-native@0.76.0)(react@18.3.1)
+ '@react-navigation/native': 7.0.0-rc.20(react-native@0.76.0)(react@18.3.1)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ react-native-safe-area-context: 4.12.0(react-native@0.76.0)(react@18.3.1)
+ react-native-screens: 4.0.0-beta.14(react-native@0.76.0)(react@18.3.1)
+ warn-once: 0.1.1
+ transitivePeerDependencies:
+ - '@react-native-masked-view/masked-view'
dev: false
- /@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18)(react-native-safe-area-context@4.10.5)(react-native-screens@3.31.1)(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==}
+ /@react-navigation/native@7.0.0-rc.20(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-fysM5SXgpyalZBYccuzMmT8Eapr5I8GyRMav8NcBAhs/VLmkTPwCYLno4XRAHatQxdXY1MMavwuwcxmmM5wkHQ==}
peerDependencies:
- '@react-navigation/native': ^6.0.0
- react: '*'
- react-native: '*'
- react-native-safe-area-context: '>= 3.0.0'
- react-native-screens: '>= 3.0.0'
- dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18)(react-native-safe-area-context@4.10.5)(react-native@0.74.5)(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.5)(react@18.2.0)
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5)(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5)(react@18.2.0)
- warn-once: 0.1.1
+ react: '>= 18.2.0'
+ react-native: '>= 0.72.0'
+ dependencies:
+ '@react-navigation/core': 7.0.0-rc.15(react@18.3.1)
+ escape-string-regexp: 4.0.0
+ fast-deep-equal: 3.1.3
+ nanoid: 3.3.7
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ use-latest-callback: 0.2.1(react@18.3.1)
dev: false
- /@react-navigation/native@6.1.18(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-mIT9MiL/vMm4eirLcmw2h6h/Nm5FICtnYSdohq4vTLA2FF/6PNhByM7s8ffqoVfE5L0uAa6Xda1B7oddolUiGg==}
+ /@react-navigation/native@7.0.0-rc.21(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-7cPQ6lX+ovR2YQa0AzVI4YnE3tDl01vVi+TZrss4HYXsxuRlKOE45PS1Seel0b7PlLf9df0OhDckPJWoHF+qaQ==}
peerDependencies:
- react: '*'
+ react: '>= 18.2.0'
react-native: '*'
dependencies:
- '@react-navigation/core': 6.4.17(react@18.2.0)
+ '@react-navigation/core': 7.0.0-rc.15(react@18.3.1)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.7
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ use-latest-callback: 0.2.1(react@18.3.1)
dev: false
- /@react-navigation/routers@6.1.9:
- resolution: {integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==}
+ /@react-navigation/routers@7.0.0-rc.8:
+ resolution: {integrity: sha512-90E091XEiBd2pimv3ANNpjoAJK0V090SGuyPwU9CmgYfVe6BFdzfSNcOvIvJ9qLgjVKWrBzzoVBqZOwcYv+8zQ==}
dependencies:
nanoid: 3.3.7
dev: false
- /@remix-run/node@2.11.2(typescript@5.3.3):
- resolution: {integrity: sha512-gRNFM61EOYWNmYgf+pvBt6MrirWlkDz1G6RQsJNowtRqbYoy05AdDe5HiHGF5w8ZMAZVeXnZiwbL0Nt7ykYBCA==}
+ /@remix-run/node@2.13.1(typescript@5.3.3):
+ resolution: {integrity: sha512-2ly7bENj2n2FNBdEN60ZEbNCs5dAOex/QJoo6EZ8RNFfUQxVKAZkMwfQ4ETV2SLWDgkRLj3Jo5n/dx7O2ZGhGw==}
engines: {node: '>=18.0.0'}
peerDependencies:
typescript: ^5.1.0
@@ -2957,7 +2606,7 @@ packages:
typescript:
optional: true
dependencies:
- '@remix-run/server-runtime': 2.11.2(typescript@5.3.3)
+ '@remix-run/server-runtime': 2.13.1(typescript@5.3.3)
'@remix-run/web-fetch': 4.4.2
'@web3-storage/multipart-parser': 1.0.0
cookie-signature: 1.2.1
@@ -2967,13 +2616,13 @@ packages:
undici: 6.19.8
dev: false
- /@remix-run/router@1.19.1:
- resolution: {integrity: sha512-S45oynt/WH19bHbIXjtli6QmwNYvaz+vtnubvNpNDvUOoA/OWh6j1OikIP3G+v5GHdxyC6EXoChG3HgYGEUfcg==}
+ /@remix-run/router@1.20.0:
+ resolution: {integrity: sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg==}
engines: {node: '>=14.0.0'}
dev: false
- /@remix-run/server-runtime@2.11.2(typescript@5.3.3):
- resolution: {integrity: sha512-abG6ENj0X3eHqDxqO2thWM2NSEiPnqyt58z1BbiQCv+t8g0Zuqd5QHbB4wzdNvfS0vKhg+jJiigcJneAc4sZzw==}
+ /@remix-run/server-runtime@2.13.1(typescript@5.3.3):
+ resolution: {integrity: sha512-2DfBPRcHKVzE4bCNsNkKB50BhCCKF73x+jiS836OyxSIAL+x0tguV2AEjmGXefEXc5AGGzoxkus0AUUEYa29Vg==}
engines: {node: '>=18.0.0'}
peerDependencies:
typescript: ^5.1.0
@@ -2981,13 +2630,13 @@ packages:
typescript:
optional: true
dependencies:
- '@remix-run/router': 1.19.1
+ '@remix-run/router': 1.20.0
'@types/cookie': 0.6.0
'@web3-storage/multipart-parser': 1.0.0
cookie: 0.6.0
set-cookie-parser: 2.7.0
source-map: 0.7.4
- turbo-stream: 2.3.0
+ turbo-stream: 2.4.0
typescript: 5.3.3
dev: false
@@ -3030,28 +2679,13 @@ packages:
web-streams-polyfill: 3.3.3
dev: false
- /@rnx-kit/chromium-edge-launcher@1.0.0:
- resolution: {integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==}
- engines: {node: '>=14.15'}
- dependencies:
- '@types/node': 18.19.46
- escape-string-regexp: 4.0.0
- is-wsl: 2.2.0
- lighthouse-logger: 1.4.2
- mkdirp: 1.0.4
- rimraf: 3.0.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@segment/loosely-validate-event@2.0.0:
resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==}
dependencies:
component-type: 1.2.2
join-component: 1.1.0
- dev: false
- /@shopify/flash-list@1.5.0(@babel/runtime@7.25.4)(react-native@0.74.5)(react@18.2.0):
+ /@shopify/flash-list@1.5.0(@babel/runtime@7.25.4)(react-native@0.76.0)(react@18.3.1):
resolution: {integrity: sha512-XeocevDIXastr6jh3TPo1MzV5XkdqTyWtw/j8kUhz9EOBc2SzNWbpJWyzrAsYKlqYNrnxxs0P9C0amlX2jaQnw==}
peerDependencies:
'@babel/runtime': '*'
@@ -3059,26 +2693,12 @@ packages:
react-native: '*'
dependencies:
'@babel/runtime': 7.25.4
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
- recyclerlistview: 4.2.0(react-native@0.74.5)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ recyclerlistview: 4.2.0(react-native@0.76.0)(react@18.3.1)
tslib: 2.4.0
dev: false
- /@sideway/address@4.1.5:
- resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
- dependencies:
- '@hapi/hoek': 9.3.0
- dev: false
-
- /@sideway/formula@3.0.1:
- resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
- dev: false
-
- /@sideway/pinpoint@2.0.0:
- resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- dev: false
-
/@sinclair/typebox@0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -3105,36 +2725,35 @@ packages:
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
- dev: true
/@types/babel__generator@7.6.8:
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
dependencies:
'@babel/types': 7.25.4
- dev: true
/@types/babel__template@7.4.4:
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
dependencies:
'@babel/parser': 7.25.4
'@babel/types': 7.25.4
- dev: true
/@types/babel__traverse@7.20.6:
resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
dependencies:
'@babel/types': 7.25.4
- dev: true
/@types/cookie@0.6.0:
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
dev: false
+ /@types/estree@1.0.6:
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+ dev: true
+
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
'@types/node': 22.5.0
- dev: true
/@types/hammerjs@2.0.45:
resolution: {integrity: sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==}
@@ -3148,13 +2767,6 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
- /@types/istanbul-reports@1.1.2:
- resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==}
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-lib-report': 3.0.3
- dev: false
-
/@types/istanbul-reports@3.0.4:
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
dependencies:
@@ -3177,19 +2789,11 @@ packages:
/@types/json-schema@7.0.15:
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
- dev: false
/@types/node-forge@1.3.11:
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
dependencies:
'@types/node': 22.5.0
- dev: false
-
- /@types/node@18.19.46:
- resolution: {integrity: sha512-vnRgMS7W6cKa1/0G3/DTtQYpVrZ8c0Xm6UkLaVFrb9jtcVC3okokW09Ki1Qdrj9ISokszD69nY4WDLRlvHlhAA==}
- dependencies:
- undici-types: 5.26.5
- dev: false
/@types/node@22.5.0:
resolution: {integrity: sha512-DkFrJOe+rfdHTqqMg0bSNlGlQ85hSoh2TPzZyhHsXnMtligRWpxUySiyw8FY14ITt24HVCiQPWxS3KO/QlGmWg==}
@@ -3202,11 +2806,11 @@ packages:
/@types/react-test-renderer@18.3.0:
resolution: {integrity: sha512-HW4MuEYxfDbOHQsVlY/XtOvNHftCVEPhJF2pQXXwcUiUF+Oyb0usgp48HSgpK5rt8m9KZb22yqOeZm+rrVG8gw==}
dependencies:
- '@types/react': 18.2.79
+ '@types/react': 18.3.12
dev: true
- /@types/react@18.2.79:
- resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==}
+ /@types/react@18.3.12:
+ resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
@@ -3221,18 +2825,6 @@ packages:
/@types/yargs-parser@21.0.3:
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- /@types/yargs@13.0.12:
- resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==}
- dependencies:
- '@types/yargs-parser': 21.0.3
- dev: false
-
- /@types/yargs@15.0.19:
- resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
- dependencies:
- '@types/yargs-parser': 21.0.3
- dev: false
-
/@types/yargs@17.0.33:
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
dependencies:
@@ -3246,7 +2838,6 @@ packages:
'@graphql-typed-document-node/core': 3.2.0(graphql@15.8.0)
graphql: 15.8.0
wonka: 4.0.15
- dev: false
/@urql/exchange-retry@0.3.0(graphql@15.8.0):
resolution: {integrity: sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==}
@@ -3256,12 +2847,117 @@ packages:
'@urql/core': 2.3.6(graphql@15.8.0)
graphql: 15.8.0
wonka: 4.0.15
- dev: false
/@web3-storage/multipart-parser@1.0.0:
resolution: {integrity: sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==}
dev: false
+ /@webassemblyjs/ast@1.12.1:
+ resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ dev: true
+
+ /@webassemblyjs/floating-point-hex-parser@1.11.6:
+ resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ dev: true
+
+ /@webassemblyjs/helper-api-error@1.11.6:
+ resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ dev: true
+
+ /@webassemblyjs/helper-buffer@1.12.1:
+ resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ dev: true
+
+ /@webassemblyjs/helper-numbers@1.11.6:
+ resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ dependencies:
+ '@webassemblyjs/floating-point-hex-parser': 1.11.6
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@xtuc/long': 4.2.2
+ dev: true
+
+ /@webassemblyjs/helper-wasm-bytecode@1.11.6:
+ resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ dev: true
+
+ /@webassemblyjs/helper-wasm-section@1.12.1:
+ resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/wasm-gen': 1.12.1
+ dev: true
+
+ /@webassemblyjs/ieee754@1.11.6:
+ resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+ dev: true
+
+ /@webassemblyjs/leb128@1.11.6:
+ resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ dependencies:
+ '@xtuc/long': 4.2.2
+ dev: true
+
+ /@webassemblyjs/utf8@1.11.6:
+ resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ dev: true
+
+ /@webassemblyjs/wasm-edit@1.12.1:
+ resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/helper-wasm-section': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-opt': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wast-printer': 1.12.1
+ dev: true
+
+ /@webassemblyjs/wasm-gen@1.12.1:
+ resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
+ dev: true
+
+ /@webassemblyjs/wasm-opt@1.12.1:
+ resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-buffer': 1.12.1
+ '@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ dev: true
+
+ /@webassemblyjs/wasm-parser@1.12.1:
+ resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/helper-api-error': 1.11.6
+ '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ieee754': 1.11.6
+ '@webassemblyjs/leb128': 1.11.6
+ '@webassemblyjs/utf8': 1.11.6
+ dev: true
+
+ /@webassemblyjs/wast-printer@1.12.1:
+ resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ dependencies:
+ '@webassemblyjs/ast': 1.12.1
+ '@xtuc/long': 4.2.2
+ dev: true
+
/@xmldom/xmldom@0.7.13:
resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==}
engines: {node: '>=10.0.0'}
@@ -3270,6 +2966,14 @@ packages:
resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
engines: {node: '>=10.0.0'}
+ /@xtuc/ieee754@1.2.0:
+ resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
+ dev: true
+
+ /@xtuc/long@4.2.2:
+ resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
+ dev: true
+
/@zxing/text-encoding@0.9.0:
resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==}
requiresBuild: true
@@ -3286,7 +2990,6 @@ packages:
engines: {node: '>=6.5'}
dependencies:
event-target-shim: 5.0.1
- dev: false
/accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
@@ -3294,7 +2997,6 @@ packages:
dependencies:
mime-types: 2.1.35
negotiator: 0.6.3
- dev: false
/acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
@@ -3303,6 +3005,21 @@ packages:
acorn-walk: 8.3.3
dev: true
+ /acorn-import-attributes@1.9.5(acorn@8.12.1):
+ resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==}
+ peerDependencies:
+ acorn: ^8
+ dependencies:
+ acorn: 8.12.1
+ dev: true
+
+ /acorn-loose@8.4.0:
+ resolution: {integrity: sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==}
+ engines: {node: '>=0.4.0'}
+ dependencies:
+ acorn: 8.12.1
+ dev: true
+
/acorn-walk@8.3.3:
resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
engines: {node: '>=0.4.0'}
@@ -3322,6 +3039,7 @@ packages:
debug: 4.3.6
transitivePeerDependencies:
- supports-color
+ dev: true
/aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
@@ -3329,7 +3047,6 @@ packages:
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
- dev: false
/ajv-formats@2.1.1(ajv@8.17.1):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
@@ -3342,6 +3059,14 @@ packages:
ajv: 8.17.1
dev: false
+ /ajv-keywords@3.5.2(ajv@6.12.6):
+ resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
+ peerDependencies:
+ ajv: ^6.9.1
+ dependencies:
+ ajv: 6.12.6
+ dev: true
+
/ajv-keywords@5.1.0(ajv@8.17.1):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
@@ -3351,6 +3076,15 @@ packages:
fast-deep-equal: 3.1.3
dev: false
+ /ajv@6.12.6:
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+ dev: true
+
/ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
dependencies:
@@ -3362,7 +3096,6 @@ packages:
/anser@1.4.10:
resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==}
- dev: false
/ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
@@ -3375,18 +3108,9 @@ packages:
engines: {node: '>=14.16'}
dev: true
- /ansi-fragments@0.2.1:
- resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==}
- dependencies:
- colorette: 1.4.0
- slice-ansi: 2.1.0
- strip-ansi: 5.2.0
- dev: false
-
/ansi-regex@4.1.1:
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
engines: {node: '>=6'}
- dev: false
/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
@@ -3415,7 +3139,6 @@ packages:
/ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
- dev: false
/any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
@@ -3427,17 +3150,11 @@ packages:
normalize-path: 3.0.0
picomatch: 2.3.1
- /appdirsjs@1.2.7:
- resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==}
- dev: false
-
/application-config-path@0.1.1:
resolution: {integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==}
- dev: false
/arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
- dev: false
/argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
@@ -3446,54 +3163,18 @@ packages:
/argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- dev: false
-
- /array-buffer-byte-length@1.0.1:
- resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- is-array-buffer: 3.0.4
- dev: false
-
- /array-union@2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
- dev: false
-
- /arraybuffer.prototype.slice@1.0.3:
- resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- is-array-buffer: 3.0.4
- is-shared-array-buffer: 1.0.3
- dev: false
/asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- dev: false
/ast-types@0.15.2:
resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==}
engines: {node: '>=4'}
dependencies:
tslib: 2.7.0
- dev: false
-
- /astral-regex@1.0.0:
- resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==}
- engines: {node: '>=4'}
- dev: false
/async-limiter@1.0.1:
resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==}
- dev: false
/asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
@@ -3501,7 +3182,6 @@ packages:
/at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
- dev: false
/available-typed-arrays@1.0.7:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
@@ -3516,7 +3196,6 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.25.2
- dev: false
/babel-jest@29.7.0(@babel/core@7.25.2):
resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
@@ -3534,7 +3213,6 @@ packages:
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
@@ -3547,7 +3225,6 @@ packages:
test-exclude: 6.0.0
transitivePeerDependencies:
- supports-color
- dev: true
/babel-plugin-jest-hoist@29.6.3:
resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
@@ -3557,7 +3234,6 @@ packages:
'@babel/types': 7.25.4
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
- dev: true
/babel-plugin-module-resolver@5.0.2:
resolution: {integrity: sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==}
@@ -3580,7 +3256,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
/babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
@@ -3592,7 +3267,6 @@ packages:
core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
- dev: false
/babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
@@ -3603,23 +3277,14 @@ packages:
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-plugin-react-compiler@0.0.0-experimental-9e9694c-20240826:
- resolution: {integrity: sha512-JvR3ixeURr18emkgEAxFAiocF2fbXinRdiEonqMcS+6aCBiRO0itjkfJ9PeLiFhKu+LJ2QG0++MgKURkgp+m6g==}
- dependencies:
- '@babel/generator': 7.2.0
- '@babel/types': 7.25.4
- chalk: 4.1.2
- invariant: 2.2.4
- pretty-format: 24.9.0
- zod: 3.23.8
- zod-validation-error: 2.1.0(zod@3.23.8)
- dev: false
+ /babel-plugin-react-native-web@0.19.13:
+ resolution: {integrity: sha512-4hHoto6xaN23LCyZgL9LJZc3olmAxd7b6jDzlZnKXAh4rRAbZRKNBJoOOdp46OBqgy+K0t0guTj5/mhA8inymQ==}
- /babel-plugin-react-native-web@0.19.12:
- resolution: {integrity: sha512-eYZ4+P6jNcB37lObWIg0pUbi7+3PKoU1Oie2j0C8UF3cXyXoR74tO2NBjI/FORb2LJyItJZEAmjU5pSaJYEL1w==}
- dev: false
+ /babel-plugin-syntax-hermes-parser@0.23.1:
+ resolution: {integrity: sha512-uNLD0tk2tLUjGFdmCk+u/3FEw2o+BAwW4g+z2QVlxJrzZYOOPADroEcNtTPt5lNiScctaUmnsTkVEnOwZUOLhA==}
+ dependencies:
+ hermes-parser: 0.23.1
/babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.2):
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
@@ -3627,7 +3292,6 @@ packages:
'@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
transitivePeerDependencies:
- '@babel/core'
- dev: false
/babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.2):
resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
@@ -3650,10 +3314,17 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
- dev: true
- /babel-preset-expo@11.0.14(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
- resolution: {integrity: sha512-4BVYR0Sc2sSNxYTiE/OLSnPiOp+weFNy8eV+hX3aD6YAIbBnw+VubKRWqJV/sOJauzOLz0SgYAYyFciYMqizRA==}
+ /babel-preset-expo@12.0.0-preview.1(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
+ resolution: {integrity: sha512-3+8AWtz1ymHkd4M/snAfrtQHNyWtwuM7lXWv97YLKTCgdKEwC2YHx5n09iOEtmgvvOdBG32LH/EJYsvUWPqJdw==}
+ peerDependencies:
+ babel-plugin-react-compiler: ^19.0.0-beta-9ee70a1-20241017
+ react-compiler-runtime: ^19.0.0-beta-8a03594-20241020
+ peerDependenciesMeta:
+ babel-plugin-react-compiler:
+ optional: true
+ react-compiler-runtime:
+ optional: true
dependencies:
'@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
@@ -3661,15 +3332,13 @@ packages:
'@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
'@babel/preset-react': 7.24.7(@babel/core@7.25.2)
'@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@react-native/babel-preset': 0.74.87(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- babel-plugin-react-compiler: 0.0.0-experimental-9e9694c-20240826
- babel-plugin-react-native-web: 0.19.12
+ '@react-native/babel-preset': 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ babel-plugin-react-native-web: 0.19.13
react-refresh: 0.14.2
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
- supports-color
- dev: false
/babel-preset-jest@29.6.3(@babel/core@7.25.2):
resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
@@ -3680,7 +3349,6 @@ packages:
'@babel/core': 7.25.2
babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2)
- dev: true
/balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
@@ -3693,25 +3361,15 @@ packages:
engines: {node: '>=12.0.0'}
dependencies:
open: 8.4.2
- dev: false
/big-integer@1.6.52:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
- /bl@4.1.0:
- resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
- dependencies:
- buffer: 5.7.1
- inherits: 2.0.4
- readable-stream: 3.6.2
- dev: false
-
/bplist-creator@0.0.7:
resolution: {integrity: sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==}
dependencies:
stream-buffers: 2.2.0
- dev: false
/bplist-creator@0.1.0:
resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==}
@@ -3729,7 +3387,6 @@ packages:
engines: {node: '>= 5.10.0'}
dependencies:
big-integer: 1.6.52
- dev: false
/brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -3765,18 +3422,15 @@ packages:
/buffer-alloc-unsafe@1.1.0:
resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==}
- dev: false
/buffer-alloc@1.2.0:
resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==}
dependencies:
buffer-alloc-unsafe: 1.1.0
buffer-fill: 1.0.0
- dev: false
/buffer-fill@1.0.0:
resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==}
- dev: false
/buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -3786,16 +3440,13 @@ packages:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- dev: false
/builtins@1.0.3:
resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
- dev: false
/bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
- dev: false
/cacache@18.0.4:
resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==}
@@ -3813,7 +3464,6 @@ packages:
ssri: 10.0.6
tar: 6.2.1
unique-filename: 3.0.0
- dev: false
/call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
@@ -3831,19 +3481,16 @@ packages:
engines: {node: '>=4'}
dependencies:
callsites: 2.0.0
- dev: false
/caller-path@2.0.0:
resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
engines: {node: '>=4'}
dependencies:
caller-callsite: 2.0.0
- dev: false
/callsites@2.0.0:
resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
engines: {node: '>=4'}
- dev: false
/callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
@@ -3896,12 +3543,10 @@ packages:
/charenc@0.0.2:
resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
- dev: false
/chownr@2.0.0:
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
engines: {node: '>=10'}
- dev: false
/chrome-launcher@0.15.2:
resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==}
@@ -3914,11 +3559,26 @@ packages:
lighthouse-logger: 1.4.2
transitivePeerDependencies:
- supports-color
- dev: false
+
+ /chrome-trace-event@1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
+ engines: {node: '>=6.0'}
+ dev: true
+
+ /chromium-edge-launcher@0.2.0:
+ resolution: {integrity: sha512-JfJjUnq25y9yg4FABRRVPmBGWPZZi+AQXT4mxupb67766/0UlhG8PAZCz6xzEMXTbW3CsSoE8PcCWA49n35mKg==}
+ dependencies:
+ '@types/node': 22.5.0
+ escape-string-regexp: 4.0.0
+ is-wsl: 2.2.0
+ lighthouse-logger: 1.4.2
+ mkdirp: 1.0.4
+ rimraf: 3.0.2
+ transitivePeerDependencies:
+ - supports-color
/ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- dev: false
/ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
@@ -3931,33 +3591,19 @@ packages:
/clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
- dev: false
/cli-cursor@2.1.0:
resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
engines: {node: '>=4'}
dependencies:
restore-cursor: 2.0.0
- dev: false
-
- /cli-cursor@3.1.0:
- resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
- engines: {node: '>=8'}
- dependencies:
- restore-cursor: 3.1.0
- dev: false
/cli-spinners@2.9.2:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
- dev: false
- /cliui@6.0.0:
- resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 6.2.0
+ /client-only@0.0.1:
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
dev: false
/cliui@7.0.4:
@@ -3983,17 +3629,10 @@ packages:
is-plain-object: 2.0.4
kind-of: 6.0.3
shallow-clone: 3.0.1
- dev: false
/clone@1.0.4:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
- dev: false
-
- /clone@2.1.2:
- resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==}
- engines: {node: '>=0.8'}
- dev: false
/co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
@@ -4036,10 +3675,6 @@ packages:
color-string: 1.9.1
dev: false
- /colorette@1.4.0:
- resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
- dev: false
-
/combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -4048,11 +3683,13 @@ packages:
/command-exists@1.2.9:
resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
- dev: false
+
+ /commander@12.1.0:
+ resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
+ engines: {node: '>=18'}
/commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- dev: false
/commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
@@ -4061,27 +3698,18 @@ packages:
/commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
- dev: false
-
- /commander@9.5.0:
- resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
- engines: {node: ^12.20.0 || >=14}
- dev: false
/commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- dev: false
/component-type@1.2.2:
resolution: {integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==}
- dev: false
/compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.53.0
- dev: false
/compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
@@ -4096,7 +3724,6 @@ packages:
vary: 1.1.2
transitivePeerDependencies:
- supports-color
- dev: false
/concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
@@ -4111,7 +3738,6 @@ packages:
utils-merge: 1.0.1
transitivePeerDependencies:
- supports-color
- dev: false
/convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
@@ -4130,11 +3756,9 @@ packages:
resolution: {integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==}
dependencies:
browserslist: 4.23.3
- dev: false
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
- dev: false
/cosmiconfig@5.2.1:
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
@@ -4144,7 +3768,6 @@ packages:
is-directory: 0.3.1
js-yaml: 3.14.1
parse-json: 4.0.0
- dev: false
/create-jest@29.7.0:
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
@@ -4171,7 +3794,6 @@ packages:
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- dev: false
/cross-spawn@6.0.5:
resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
@@ -4182,7 +3804,6 @@ packages:
semver: 5.7.2
shebang-command: 1.2.0
which: 1.3.1
- dev: false
/cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
@@ -4194,17 +3815,10 @@ packages:
/crypt@0.0.2:
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
- dev: false
-
- /crypto-random-string@1.0.0:
- resolution: {integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==}
- engines: {node: '>=4'}
- dev: false
/crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- dev: false
/css-in-js-utils@3.1.0:
resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==}
@@ -4230,54 +3844,19 @@ packages:
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- /dag-map@1.0.2:
- resolution: {integrity: sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==}
- dev: false
-
/data-uri-to-buffer@3.0.1:
resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
- engines: {node: '>= 6'}
- dev: false
-
- /data-urls@3.0.2:
- resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
- engines: {node: '>=12'}
- dependencies:
- abab: 2.0.6
- whatwg-mimetype: 3.0.0
- whatwg-url: 11.0.0
- dev: true
-
- /data-view-buffer@1.0.1:
- resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
- dev: false
-
- /data-view-byte-length@1.0.1:
- resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
+ engines: {node: '>= 6'}
dev: false
- /data-view-byte-offset@1.0.0:
- resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
- engines: {node: '>= 0.4'}
+ /data-urls@3.0.2:
+ resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==}
+ engines: {node: '>=12'}
dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-data-view: 1.0.1
- dev: false
-
- /dayjs@1.11.13:
- resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
- dev: false
+ abab: 2.0.6
+ whatwg-mimetype: 3.0.0
+ whatwg-url: 11.0.0
+ dev: true
/debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -4288,7 +3867,6 @@ packages:
optional: true
dependencies:
ms: 2.0.0
- dev: false
/debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
@@ -4299,7 +3877,6 @@ packages:
optional: true
dependencies:
ms: 2.1.3
- dev: false
/debug@4.3.6:
resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
@@ -4312,11 +3889,6 @@ packages:
dependencies:
ms: 2.1.2
- /decamelize@1.2.0:
- resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
dev: true
@@ -4338,7 +3910,6 @@ packages:
/deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
- dev: false
/deepmerge@4.2.2:
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
@@ -4347,7 +3918,6 @@ packages:
/deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
- dev: false
/default-gateway@4.2.0:
resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==}
@@ -4355,13 +3925,11 @@ packages:
dependencies:
execa: 1.0.0
ip-regex: 2.1.0
- dev: false
/defaults@1.0.4:
resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
dependencies:
clone: 1.0.4
- dev: false
/define-data-property@1.1.4:
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
@@ -4375,30 +3943,6 @@ packages:
/define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- dev: false
-
- /define-properties@1.2.1:
- resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
- engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.4
- has-property-descriptors: 1.0.2
- object-keys: 1.1.1
- dev: false
-
- /del@6.1.1:
- resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
- engines: {node: '>=10'}
- dependencies:
- globby: 11.1.0
- graceful-fs: 4.2.11
- is-glob: 4.0.3
- is-path-cwd: 2.2.0
- is-path-inside: 3.0.3
- p-map: 4.0.0
- rimraf: 3.0.2
- slash: 3.0.0
- dev: false
/delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
@@ -4406,23 +3950,19 @@ packages:
/denodeify@1.2.1:
resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==}
- dev: false
/depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- dev: false
/destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- dev: false
/detect-libc@1.0.3:
resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
engines: {node: '>=0.10'}
hasBin: true
- dev: false
/detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
@@ -4434,13 +3974,6 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /dir-glob@3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
- dependencies:
- path-type: 4.0.0
- dev: false
-
/domexception@4.0.0:
resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==}
engines: {node: '>=12'}
@@ -4454,20 +3987,16 @@ packages:
engines: {node: '>=12'}
dependencies:
dotenv: 16.4.5
- dev: false
/dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
- dev: false
/eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- dev: false
/ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- dev: false
/electron-to-chromium@1.5.13:
resolution: {integrity: sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==}
@@ -4482,18 +4011,23 @@ packages:
/emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- dev: false
/encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- dev: false
/end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
- dev: false
+
+ /enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
+ dev: true
/entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
@@ -4503,17 +4037,9 @@ packages:
/env-editor@0.4.2:
resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==}
engines: {node: '>=8'}
- dev: false
-
- /envinfo@7.13.0:
- resolution: {integrity: sha512-cvcaMr7KqXVh4nyzGTVqTum+gAiL265x5jUWQIDLq//zOGbW+gSW/C+OWLleY/rs9Qole6AZLMXPbtIFQbqu+Q==}
- engines: {node: '>=4'}
- hasBin: true
- dev: false
/eol@0.9.1:
resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==}
- dev: false
/error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
@@ -4525,66 +4051,6 @@ packages:
dependencies:
stackframe: 1.3.4
- /errorhandler@1.5.1:
- resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==}
- engines: {node: '>= 0.8'}
- dependencies:
- accepts: 1.3.8
- escape-html: 1.0.3
- dev: false
-
- /es-abstract@1.23.3:
- resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.1
- arraybuffer.prototype.slice: 1.0.3
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- data-view-buffer: 1.0.1
- data-view-byte-length: 1.0.1
- data-view-byte-offset: 1.0.0
- es-define-property: 1.0.0
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.2
- globalthis: 1.0.4
- gopd: 1.0.1
- has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- hasown: 2.0.2
- internal-slot: 1.0.7
- is-array-buffer: 3.0.4
- is-callable: 1.2.7
- is-data-view: 1.0.1
- is-negative-zero: 2.0.3
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- is-string: 1.0.7
- is-typed-array: 1.1.13
- is-weakref: 1.0.2
- object-inspect: 1.13.2
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- safe-array-concat: 1.1.2
- safe-regex-test: 1.0.3
- string.prototype.trim: 1.2.9
- string.prototype.trimend: 1.0.8
- string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.2
- typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.2
- typed-array-length: 1.0.6
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.15
- dev: false
-
/es-define-property@1.0.0:
resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
engines: {node: '>= 0.4'}
@@ -4597,30 +4063,9 @@ packages:
engines: {node: '>= 0.4'}
dev: false
- /es-object-atoms@1.0.0:
- resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
- engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- dev: false
-
- /es-set-tostringtag@2.0.3:
- resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- get-intrinsic: 1.2.4
- has-tostringtag: 1.0.2
- hasown: 2.0.2
- dev: false
-
- /es-to-primitive@1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
- dev: false
+ /es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ dev: true
/escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
@@ -4628,7 +4073,6 @@ packages:
/escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- dev: false
/escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
@@ -4641,7 +4085,6 @@ packages:
/escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- dev: false
/escodegen@2.1.0:
resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
@@ -4655,11 +4098,31 @@ packages:
source-map: 0.6.1
dev: true
+ /eslint-scope@5.1.1:
+ resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
+ engines: {node: '>=8.0.0'}
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 4.3.0
+ dev: true
+
/esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
+ /esrecurse@4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+ dependencies:
+ estraverse: 5.3.0
+ dev: true
+
+ /estraverse@4.3.0:
+ resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
+ engines: {node: '>=4.0'}
+ dev: true
+
/estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
@@ -4672,16 +4135,18 @@ packages:
/etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
- dev: false
/event-target-shim@5.0.1:
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
engines: {node: '>=6'}
- dev: false
+
+ /events@3.3.0:
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
+ dev: true
/exec-async@2.2.0:
resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==}
- dev: false
/execa@1.0.0:
resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
@@ -4694,7 +4159,6 @@ packages:
p-finally: 1.0.0
signal-exit: 3.0.7
strip-eof: 1.0.0
- dev: false
/execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
@@ -4726,70 +4190,84 @@ packages:
jest-util: 29.7.0
dev: true
- /expo-asset@10.0.10(expo@51.0.31):
- resolution: {integrity: sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==}
+ /expo-asset@11.0.0(expo@52.0.0-preview.7)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-E/xd5WV+kQPUw/PGr81Hd6Vkd+VOyDpkbx4HXvpJjX2E9MSZP1bvO+I+LzQECp1ZXMzciSeW3w7FZ7MqLE/crQ==}
peerDependencies:
expo: '*'
+ react: '*'
+ react-native: '*'
dependencies:
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- expo-constants: 16.0.2(expo@51.0.31)
+ '@expo/image-utils': 0.6.0
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ expo-constants: 17.0.2(expo@52.0.0-preview.7)(react-native@0.76.0)
invariant: 2.2.4
md5-file: 3.2.3
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
transitivePeerDependencies:
- supports-color
- dev: false
- /expo-constants@16.0.2(expo@51.0.31):
- resolution: {integrity: sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ==}
+ /expo-constants@17.0.2(expo@52.0.0-preview.7)(react-native@0.76.0):
+ resolution: {integrity: sha512-Z4QrHuy2fDOP0xv9bNeX7dKaZ1GSBA5ExmtuSKX3hN1S1Gsllb/VxOYEaLUWk8xncQlbf2vEAHcMbHGo8U/3cA==}
peerDependencies:
expo: '*'
+ react-native: '*'
dependencies:
- '@expo/config': 9.0.3
- '@expo/env': 0.3.0
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ '@expo/config': 10.0.0
+ '@expo/env': 0.4.0
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
transitivePeerDependencies:
- supports-color
- dev: false
- /expo-file-system@17.0.1(expo@51.0.31):
- resolution: {integrity: sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==}
+ /expo-file-system@18.0.0(expo@52.0.0-preview.7)(react-native@0.76.0):
+ resolution: {integrity: sha512-WlapfOybGI4A7AeMWXoMWXgKFz3WMffEB+SLceyyTxuLIyAvqj8eU4B6+eWgYIflG6j5SvcyBALquoACGBVaHw==}
peerDependencies:
expo: '*'
+ react-native: '*'
dependencies:
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- dev: false
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
- /expo-font@12.0.9(expo@51.0.31):
- resolution: {integrity: sha512-seTCyf0tbgkAnp3ZI9ZfK9QVtURQUgFnuj+GuJ5TSnN0XsOtVe1s2RxTvmMgkfuvfkzcjJ69gyRpsZS1cC8hjw==}
+ /expo-font@13.0.0(expo@52.0.0-preview.7)(react@18.3.1):
+ resolution: {integrity: sha512-4qGxnn42mxIDjFp2jKWk2duOYLHTQHZVGjq9q8ud0iwe8Vi0p+7aEzYCBWYGYV0iwIYaI//RO3hx1zvbEzOceQ==}
peerDependencies:
expo: '*'
+ react: '*'
dependencies:
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
fontfaceobserver: 2.3.0
- dev: false
+ react: 18.3.1
- /expo-keep-awake@13.0.2(expo@51.0.31):
- resolution: {integrity: sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==}
+ /expo-keep-awake@14.0.1(expo@52.0.0-preview.7)(react@18.3.1):
+ resolution: {integrity: sha512-c5mGCAIk2YM+Vsdy90BlEJ4ZX+KG5Au9EkJUIxXWlpnuKmDAJ3N+5nEZ7EUO1ZTheqoSBeAo4jJ8rTWPU+JXdw==}
peerDependencies:
expo: '*'
+ react: '*'
dependencies:
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- dev: false
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ react: 18.3.1
- /expo-linking@6.3.1(expo@51.0.31):
- resolution: {integrity: sha512-xuZCntSBGWCD/95iZ+mTUGTwHdy8Sx+immCqbUBxdvZ2TN61P02kKg7SaLS8A4a/hLrSCwrg5tMMwu5wfKr35g==}
+ /expo-linking@7.0.2(expo@52.0.0-preview.7)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-bNm7LLfDwbgfs5wysK0ZhsL5gTJyYzBmK/E1IozcSpxezjXpIMDCVnkjDSfgcayGveOOGepMZk7x9zU2feYDMA==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
dependencies:
- expo-constants: 16.0.2(expo@51.0.31)
+ expo-constants: 17.0.2(expo@52.0.0-preview.7)(react-native@0.76.0)
invariant: 2.2.4
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
transitivePeerDependencies:
- expo
- supports-color
dev: false
- /expo-modules-autolinking@1.11.2:
- resolution: {integrity: sha512-fdcaNO8ucHA3yLNY52ZUENBcAG7KEx8QyMmnVNavO1JVBGRMZG8JyVcbrhYQDtVtpxkbai5YzwvLutINvbDZDQ==}
+ /expo-modules-autolinking@2.0.0-preview.2:
+ resolution: {integrity: sha512-rDsn5v2ivYDT8DZkCx7cySO9raJqP4fcPLuaN174QQYpL7hYp4Z1uC2SsV2tvS7Wt0eEPHlHROsV3nK6zCXJEQ==}
hasBin: true
dependencies:
+ '@expo/spawn-async': 1.7.2
chalk: 4.1.2
commander: 7.2.0
fast-glob: 3.3.2
@@ -4797,23 +4275,20 @@ packages:
fs-extra: 9.1.0
require-from-string: 2.0.2
resolve-from: 5.0.0
- dev: false
- /expo-modules-core@1.12.23:
- resolution: {integrity: sha512-NYp/rWhKW6zlqNdC8/r+FckzlAGWX0IJEjOxwYHuYeRUn/vnKksb43G4E3jcaQEZgmWlKxK4LpxL3gr7m0RJFA==}
+ /expo-modules-core@2.0.0-preview.5:
+ resolution: {integrity: sha512-gDAZwwsSzzvKVrrmJ+Vdlim+Y8zMOtdYhz/h/xq8y+dPWIa7o58y2iYWcAN8xeUltjFoPAfQLDxXu6vnRgclWA==}
dependencies:
invariant: 2.2.4
- dev: false
- /expo-router@3.5.23(expo-constants@16.0.2)(expo-linking@6.3.1)(expo-modules-autolinking@1.11.2)(expo-status-bar@1.12.1)(expo@51.0.31)(react-native-reanimated@3.10.1)(react-native-safe-area-context@4.10.5)(react-native-screens@3.31.1)(react-native@0.74.5)(react@18.2.0)(typescript@5.3.3):
- resolution: {integrity: sha512-Re2kYcxov67hWrcjuu0+3ovsLxYn79PuX6hgtYN20MgigY5ttX79KOIBEVGTO3F3y9dxSrGHyy5Z14BcO+usGQ==}
+ /expo-router@4.0.0-preview.4(expo-constants@17.0.2)(expo-linking@7.0.2)(expo-modules-autolinking@2.0.0-preview.2)(expo@52.0.0-preview.7)(react-dom@18.3.1)(react-native-reanimated@3.16.1)(react-native-safe-area-context@4.12.0)(react-native-screens@4.0.0-beta.14)(react-native@0.76.0)(react@18.3.1)(typescript@5.3.3):
+ resolution: {integrity: sha512-Dt6Co5zM99HL18Zp5BZWyuRxnu/rAvApNalBnfnbrRJhWQ+NQo3O0PnPEhIcdRtv0V3cHnMankZdlatXjbxh/w==}
peerDependencies:
- '@react-navigation/drawer': ^6.5.8
+ '@react-navigation/drawer': 7.0.0-rc.31
'@testing-library/jest-native': '*'
expo: '*'
expo-constants: '*'
expo-linking: '*'
- expo-status-bar: '*'
react-native-reanimated: '*'
react-native-safe-area-context: '*'
react-native-screens: '*'
@@ -4825,103 +4300,147 @@ packages:
react-native-reanimated:
optional: true
dependencies:
- '@expo/metro-runtime': 3.2.3(react-native@0.74.5)
- '@expo/server': 0.4.4(typescript@5.3.3)
- '@radix-ui/react-slot': 1.0.1(react@18.2.0)
- '@react-navigation/bottom-tabs': 6.5.20(@react-navigation/native@6.1.18)(react-native-safe-area-context@4.10.5)(react-native-screens@3.31.1)(react-native@0.74.5)(react@18.2.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.5)(react@18.2.0)
- '@react-navigation/native-stack': 6.9.26(@react-navigation/native@6.1.18)(react-native-safe-area-context@4.10.5)(react-native-screens@3.31.1)(react-native@0.74.5)(react@18.2.0)
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- expo-constants: 16.0.2(expo@51.0.31)
- expo-linking: 6.3.1(expo@51.0.31)
- expo-splash-screen: 0.27.5(expo-modules-autolinking@1.11.2)(expo@51.0.31)
- expo-status-bar: 1.12.1
- react-native-helmet-async: 2.0.4(react@18.2.0)
- react-native-reanimated: 3.10.1(@babel/core@7.25.2)(react-native@0.74.5)(react@18.2.0)
- react-native-safe-area-context: 4.10.5(react-native@0.74.5)(react@18.2.0)
- react-native-screens: 3.31.1(react-native@0.74.5)(react@18.2.0)
+ '@expo/metro-runtime': 4.0.0-preview.0(react-native@0.76.0)
+ '@expo/server': 0.5.0-preview.0(typescript@5.3.3)
+ '@radix-ui/react-slot': 1.0.1(react@18.3.1)
+ '@react-navigation/bottom-tabs': 7.0.0-rc.33(@react-navigation/native@7.0.0-rc.20)(react-native-safe-area-context@4.12.0)(react-native-screens@4.0.0-beta.14)(react-native@0.76.0)(react@18.3.1)
+ '@react-navigation/native': 7.0.0-rc.20(react-native@0.76.0)(react@18.3.1)
+ '@react-navigation/native-stack': 7.0.0-rc.28(@react-navigation/native@7.0.0-rc.20)(react-native-safe-area-context@4.12.0)(react-native-screens@4.0.0-beta.14)(react-native@0.76.0)(react@18.3.1)
+ client-only: 0.0.1
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ expo-constants: 17.0.2(expo@52.0.0-preview.7)(react-native@0.76.0)
+ expo-linking: 7.0.2(expo@52.0.0-preview.7)(react-native@0.76.0)(react@18.3.1)
+ expo-splash-screen: 0.28.3(expo-modules-autolinking@2.0.0-preview.2)(expo@52.0.0-preview.7)
+ react-helmet-async: 1.3.0(react-dom@18.3.1)(react@18.3.1)
+ react-native-helmet-async: 2.0.4(react@18.3.1)
+ react-native-reanimated: 3.16.1(@babel/core@7.25.2)(react-native@0.76.0)(react@18.3.1)
+ react-native-safe-area-context: 4.12.0(react-native@0.76.0)(react@18.3.1)
+ react-native-screens: 4.0.0-beta.14(react-native@0.76.0)(react@18.3.1)
schema-utils: 4.2.0
+ server-only: 0.0.1
transitivePeerDependencies:
- - encoding
+ - '@react-native-masked-view/masked-view'
- expo-modules-autolinking
- react
+ - react-dom
- react-native
- supports-color
- typescript
dev: false
- /expo-splash-screen@0.27.5(expo-modules-autolinking@1.11.2)(expo@51.0.31):
- resolution: {integrity: sha512-9rdZuLkFCfgJBxrheUsOEOIW6Rp+9NVlpSE0hgXQwbTCLTncf00IHSE8/L2NbFyeDLNjof1yZBppaV7tXHRUzA==}
+ /expo-splash-screen@0.28.3(expo-modules-autolinking@2.0.0-preview.2)(expo@52.0.0-preview.7):
+ resolution: {integrity: sha512-2/pxxjCKObhN8ouQz0qcEAw4BPgxKX43CLMPrtMV6DiQe2rH69aK8xcNnrNG1ors1RZA57ZymtVreAAtWQzXGQ==}
peerDependencies:
expo: '*'
dependencies:
- '@expo/prebuild-config': 7.0.6(expo-modules-autolinking@1.11.2)
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ '@expo/prebuild-config': 8.0.3(expo-modules-autolinking@2.0.0-preview.2)
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ transitivePeerDependencies:
+ - expo-modules-autolinking
+ - supports-color
+ dev: false
+
+ /expo-splash-screen@0.28.4(expo-modules-autolinking@2.0.0-preview.2)(expo@52.0.0-preview.7):
+ resolution: {integrity: sha512-MVSjFVyzgrrTOjL2b1kifgnoj9YjlEI8rmz3KUqDusuaA7JMCR0oT6AvuVvNGTpVj0MPN1/SqWo7vG/UzRhOUQ==}
+ peerDependencies:
+ expo: '*'
+ dependencies:
+ '@expo/prebuild-config': 8.0.4(expo-modules-autolinking@2.0.0-preview.2)
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
transitivePeerDependencies:
- - encoding
- expo-modules-autolinking
- supports-color
dev: false
- /expo-status-bar@1.12.1:
- resolution: {integrity: sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA==}
+ /expo-status-bar@2.0.0(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-vxxdpvpNDMTEc5uTiIrbTvySKKUsOACmfl8OZuUdjNle05oGqwtq3v5YObwym/njSByjoyuZX8UpXBZnxvarwQ==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
- /expo-system-ui@3.0.7(expo@51.0.31):
- resolution: {integrity: sha512-KAs72F5JKhdIfPR9ZNVlRubTPK9uUuevPy5oYEp12xNEzSQcjZKvypH5NpwJuNWkXzrp3n3vZ+3pXsudA7J3KA==}
+ /expo-system-ui@4.0.1(expo@52.0.0-preview.7)(react-native-web@0.19.13)(react-native@0.76.0):
+ resolution: {integrity: sha512-anUBEBxVZxq/COj9NsT0Xj+nVJaV1xa+CXFIhMjzrgC4RXOBqh1128NxHRLBtE4C/UsFdiAdnFL2sW6RmCn3mw==}
peerDependencies:
expo: '*'
+ react-native: '*'
+ react-native-web: '*'
+ peerDependenciesMeta:
+ react-native-web:
+ optional: true
dependencies:
- '@react-native/normalize-colors': 0.74.85
+ '@react-native/normalize-colors': 0.76.0
debug: 4.3.6
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ react-native-web: 0.19.13(react-dom@18.3.1)(react@18.3.1)
transitivePeerDependencies:
- supports-color
dev: false
- /expo-web-browser@13.0.3(expo@51.0.31):
- resolution: {integrity: sha512-HXb7y82ApVJtqk8tManyudtTrCtx8xcUnVzmJECeHCB0SsWSQ+penVLZxJkcyATWoJOsFMnfVSVdrTcpKKGszQ==}
+ /expo-web-browser@14.0.0(expo@52.0.0-preview.7)(react-native@0.76.0):
+ resolution: {integrity: sha512-98ytb8NpH9hDB9jqTAjjZ/XKmwwyMdjdTmhvAEabOPgJcyJd9zU/qnn/2E1kNFPb+gohuosEw5PQUvdeIMw1Tw==}
peerDependencies:
expo: '*'
+ react-native: '*'
dependencies:
- expo: 51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
- /expo@51.0.31(@babel/core@7.25.2)(@babel/preset-env@7.25.4):
- resolution: {integrity: sha512-YiUNcxzSkQ0jlKW+e8F81KnZfAhCugEZI9VYmuIsFONHivtiYIADHdcFvUWnexUEdgPQDkgWw85XBnIbzIZ39Q==}
+ /expo@52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-744Da/M1swdyIX1jXLO/Sk+ub8Z0qmjduTCt2hPFiZWSVE3IsO1OxhU+JPdZh1SjNNwqBvEH43r3iZLxBTTx2w==}
hasBin: true
+ peerDependencies:
+ '@expo/dom-webview': '*'
+ '@expo/metro-runtime': '*'
+ react: '*'
+ react-native: '*'
+ react-native-webview: '*'
+ peerDependenciesMeta:
+ '@expo/dom-webview':
+ optional: true
+ '@expo/metro-runtime':
+ optional: true
+ react-native-webview:
+ optional: true
dependencies:
'@babel/runtime': 7.25.4
- '@expo/cli': 0.18.29(expo-modules-autolinking@1.11.2)
- '@expo/config': 9.0.3
- '@expo/config-plugins': 8.0.8
- '@expo/metro-config': 0.18.11
+ '@expo/cli': 0.19.4(expo-modules-autolinking@2.0.0-preview.2)
+ '@expo/config': 10.0.2
+ '@expo/config-plugins': 9.0.3
+ '@expo/metro-config': 0.19.0-preview.2
'@expo/vector-icons': 14.0.2
- babel-preset-expo: 11.0.14(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- expo-asset: 10.0.10(expo@51.0.31)
- expo-file-system: 17.0.1(expo@51.0.31)
- expo-font: 12.0.9(expo@51.0.31)
- expo-keep-awake: 13.0.2(expo@51.0.31)
- expo-modules-autolinking: 1.11.2
- expo-modules-core: 1.12.23
+ babel-preset-expo: 12.0.0-preview.1(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ expo-asset: 11.0.0(expo@52.0.0-preview.7)(react-native@0.76.0)(react@18.3.1)
+ expo-file-system: 18.0.0(expo@52.0.0-preview.7)(react-native@0.76.0)
+ expo-font: 13.0.0(expo@52.0.0-preview.7)(react@18.3.1)
+ expo-keep-awake: 14.0.1(expo@52.0.0-preview.7)(react@18.3.1)
+ expo-modules-autolinking: 2.0.0-preview.2
+ expo-modules-core: 2.0.0-preview.5
fbemitter: 3.0.0
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ web-streams-polyfill: 3.3.3
whatwg-url-without-unicode: 8.0.0-3
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
+ - babel-plugin-react-compiler
- bufferutil
- encoding
+ - react-compiler-runtime
- supports-color
- utf-8-validate
- dev: false
/exponential-backoff@3.1.1:
resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
- dev: false
/fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- dev: false
/fast-glob@3.3.2:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
@@ -4932,11 +4451,9 @@ packages:
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.8
- dev: false
/fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- dev: true
/fast-loops@1.1.4:
resolution: {integrity: sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg==}
@@ -4946,18 +4463,10 @@ packages:
resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
dev: false
- /fast-xml-parser@4.4.1:
- resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
- hasBin: true
- dependencies:
- strnum: 1.0.5
- dev: false
-
/fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
dependencies:
reusify: 1.0.4
- dev: false
/fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
@@ -4970,11 +4479,9 @@ packages:
fbjs: 3.0.5
transitivePeerDependencies:
- encoding
- dev: false
/fbjs-css-vars@1.0.2:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
- dev: false
/fbjs@3.0.5:
resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==}
@@ -4988,11 +4495,9 @@ packages:
ua-parser-js: 1.0.38
transitivePeerDependencies:
- encoding
- dev: false
/fetch-retry@4.1.1:
resolution: {integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==}
- dev: false
/fill-range@7.1.1:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
@@ -5018,7 +4523,6 @@ packages:
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
- dev: false
/find-babel-config@2.1.1:
resolution: {integrity: sha512-5Ji+EAysHGe1OipH7GN4qDjok5Z1uw5KAwDCbicU/4wyTZY7CqOCzcWbG7J5ad9mazq67k89fXlbc1MuIfl9uA==}
@@ -5034,7 +4538,6 @@ packages:
commondir: 1.0.1
make-dir: 2.1.0
pkg-dir: 3.0.0
- dev: false
/find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
@@ -5060,20 +4563,16 @@ packages:
resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==}
dependencies:
micromatch: 4.0.8
- dev: false
/flow-enums-runtime@0.0.6:
resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
- dev: false
/flow-parser@0.244.0:
resolution: {integrity: sha512-Dkc88m5k8bx1VvHTO9HEJ7tvMcSb3Zvcv1PY4OHK7pHdtdY2aUjhmPy6vpjVJ2uUUOIybRlb91sXE8g4doChtA==}
engines: {node: '>=0.4.0'}
- dev: false
/fontfaceobserver@2.3.0:
resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==}
- dev: false
/for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
@@ -5087,7 +4586,6 @@ packages:
dependencies:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- dev: false
/form-data@3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
@@ -5096,7 +4594,6 @@ packages:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- dev: false
/form-data@4.0.0:
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
@@ -5110,12 +4607,10 @@ packages:
/freeport-async@2.0.0:
resolution: {integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==}
engines: {node: '>=8'}
- dev: false
/fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- dev: false
/fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
@@ -5124,7 +4619,6 @@ packages:
graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
- dev: false
/fs-extra@9.0.0:
resolution: {integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==}
@@ -5134,7 +4628,6 @@ packages:
graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 1.0.0
- dev: false
/fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
@@ -5144,21 +4637,18 @@ packages:
graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.1
- dev: false
/fs-minipass@2.1.0:
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
- dev: false
/fs-minipass@3.0.3:
resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
minipass: 7.1.2
- dev: false
/fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
@@ -5173,20 +4663,6 @@ packages:
/function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- /function.prototype.name@1.1.6:
- resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- functions-have-names: 1.2.3
- dev: false
-
- /functions-have-names@1.2.3:
- resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- dev: false
-
/gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -5209,33 +4685,21 @@ packages:
/get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
- dev: true
/get-port@3.2.0:
resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==}
engines: {node: '>=4'}
- dev: false
/get-stream@4.1.0:
resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
engines: {node: '>=6'}
dependencies:
pump: 3.0.0
- dev: false
/get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- /get-symbol-description@1.0.2:
- resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- dev: false
-
/getenv@1.0.0:
resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==}
engines: {node: '>=6'}
@@ -5245,7 +4709,10 @@ packages:
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- dev: false
+
+ /glob-to-regexp@0.4.1:
+ resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
+ dev: true
/glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
@@ -5257,7 +4724,6 @@ packages:
minipass: 7.1.2
package-json-from-dist: 1.0.0
path-scurry: 1.11.1
- dev: false
/glob@7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
@@ -5295,26 +4761,6 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globalthis@1.0.4:
- resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- define-properties: 1.2.1
- gopd: 1.0.1
- dev: false
-
- /globby@11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
- dev: false
-
/gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
@@ -5332,16 +4778,10 @@ packages:
dependencies:
graphql: 15.8.0
tslib: 2.7.0
- dev: false
/graphql@15.8.0:
resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==}
engines: {node: '>= 10.x'}
- dev: false
-
- /has-bigints@1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- dev: false
/has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
@@ -5380,32 +4820,21 @@ packages:
dependencies:
function-bind: 1.1.2
- /hermes-estree@0.19.1:
- resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==}
- dev: false
-
- /hermes-estree@0.23.0:
- resolution: {integrity: sha512-Rkp0PNLGpORw4ktsttkVbpYJbrYKS3hAnkxu8D9nvQi6LvSbuPa+tYw/t2u3Gjc35lYd/k95YkjqyTcN4zspag==}
- dev: false
+ /hermes-estree@0.23.1:
+ resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==}
- /hermes-parser@0.19.1:
- resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==}
- dependencies:
- hermes-estree: 0.19.1
- dev: false
+ /hermes-estree@0.24.0:
+ resolution: {integrity: sha512-LyoXLB7IFzeZW0EvAbGZacbxBN7t6KKSDqFJPo3Ydow7wDlrDjXwsdiAHV6XOdvEN9MEuWXsSIFN4tzpyrXIHw==}
- /hermes-parser@0.23.0:
- resolution: {integrity: sha512-xLwM4ylfHGwrm+2qXfO1JT/fnqEDGSnpS/9hQ4VLtqTexSviu2ZpBgz07U8jVtndq67qdb/ps0qvaWDZ3fkTyg==}
+ /hermes-parser@0.23.1:
+ resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==}
dependencies:
- hermes-estree: 0.23.0
- dev: false
+ hermes-estree: 0.23.1
- /hermes-profile-transformer@0.0.6:
- resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
- engines: {node: '>=8'}
+ /hermes-parser@0.24.0:
+ resolution: {integrity: sha512-IJooSvvu2qNRe7oo9Rb04sUT4omtZqZqf9uq9WM25Tb6v3usmvA93UqfnnoWs5V0uYjEl9Al6MNU10MCGKLwpg==}
dependencies:
- source-map: 0.7.4
- dev: false
+ hermes-estree: 0.24.0
/hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
@@ -5418,7 +4847,12 @@ packages:
engines: {node: '>=10'}
dependencies:
lru-cache: 6.0.0
- dev: false
+
+ /hosted-git-info@7.0.2:
+ resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ dependencies:
+ lru-cache: 10.4.3
/html-encoding-sniffer@3.0.0:
resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==}
@@ -5440,7 +4874,6 @@ packages:
setprototypeof: 1.2.0
statuses: 2.0.1
toidentifier: 1.0.1
- dev: false
/http-proxy-agent@5.0.0:
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
@@ -5461,6 +4894,7 @@ packages:
debug: 4.3.6
transitivePeerDependencies:
- supports-color
+ dev: true
/human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
@@ -5477,22 +4911,15 @@ packages:
safer-buffer: 2.1.2
dev: true
- /ieee754@1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- dev: false
-
- /ignore@5.3.2:
- resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
- engines: {node: '>= 4'}
- dev: false
-
+ /ieee754@1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+
/image-size@1.1.1:
resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==}
engines: {node: '>=16.x'}
hasBin: true
dependencies:
queue: 6.0.2
- dev: false
/import-fresh@2.0.0:
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
@@ -5500,7 +4927,6 @@ packages:
dependencies:
caller-path: 2.0.0
resolve-from: 3.0.0
- dev: false
/import-local@3.2.0:
resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
@@ -5518,7 +4944,6 @@ packages:
/indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
- dev: false
/inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
@@ -5532,7 +4957,6 @@ packages:
/ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- dev: false
/inline-style-prefixer@6.0.4:
resolution: {integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==}
@@ -5547,32 +4971,19 @@ packages:
dependencies:
default-gateway: 4.2.0
ipaddr.js: 1.9.1
- dev: false
-
- /internal-slot@1.0.7:
- resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
- engines: {node: '>= 0.4'}
- dependencies:
- es-errors: 1.3.0
- hasown: 2.0.2
- side-channel: 1.0.6
- dev: false
/invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
- dev: false
/ip-regex@2.1.0:
resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==}
engines: {node: '>=4'}
- dev: false
/ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- dev: false
/is-arguments@1.1.1:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
@@ -5582,14 +4993,6 @@ packages:
has-tostringtag: 1.0.2
dev: false
- /is-array-buffer@3.0.4:
- resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- dev: false
-
/is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
@@ -5597,23 +5000,8 @@ packages:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
dev: false
- /is-bigint@1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
- dependencies:
- has-bigints: 1.0.2
- dev: false
-
- /is-boolean-object@1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
- dev: false
-
/is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- dev: false
/is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
@@ -5626,45 +5014,18 @@ packages:
dependencies:
hasown: 2.0.2
- /is-data-view@1.0.1:
- resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
- engines: {node: '>= 0.4'}
- dependencies:
- is-typed-array: 1.1.13
- dev: false
-
- /is-date-object@1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.2
- dev: false
-
/is-directory@0.3.1:
resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
engines: {node: '>=0.10.0'}
- dev: false
/is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
- dev: false
-
- /is-extglob@1.0.0:
- resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==}
- engines: {node: '>=0.10.0'}
- dev: false
/is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- dev: false
-
- /is-fullwidth-code-point@2.0.0:
- resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
- engines: {node: '>=4'}
- dev: false
/is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
@@ -5682,107 +5043,34 @@ packages:
has-tostringtag: 1.0.2
dev: false
- /is-glob@2.0.1:
- resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-extglob: 1.0.0
- dev: false
-
/is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- dev: false
-
- /is-interactive@1.0.0:
- resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
- engines: {node: '>=8'}
- dev: false
-
- /is-invalid-path@0.1.0:
- resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-glob: 2.0.1
- dev: false
-
- /is-negative-zero@2.0.3:
- resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
- engines: {node: '>= 0.4'}
- dev: false
-
- /is-number-object@1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.2
- dev: false
/is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-path-cwd@2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
- dev: false
-
- /is-path-inside@3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
- dev: false
-
/is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: false
/is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
dev: true
- /is-regex@1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
- dev: false
-
- /is-shared-array-buffer@1.0.3:
- resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- dev: false
-
/is-stream@1.1.0:
resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
engines: {node: '>=0.10.0'}
- dev: false
/is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- /is-string@1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-tostringtag: 1.0.2
- dev: false
-
- /is-symbol@1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
- dev: false
-
/is-typed-array@1.1.13:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
@@ -5790,43 +5078,14 @@ packages:
which-typed-array: 1.1.15
dev: false
- /is-unicode-supported@0.1.0:
- resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
- engines: {node: '>=10'}
- dev: false
-
- /is-valid-path@0.1.1:
- resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==}
- engines: {node: '>=0.10.0'}
- dependencies:
- is-invalid-path: 0.1.0
- dev: false
-
- /is-weakref@1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- dependencies:
- call-bind: 1.0.7
- dev: false
-
- /is-wsl@1.1.0:
- resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
- engines: {node: '>=4'}
- dev: false
-
/is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
- dev: false
/isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
- dev: false
-
- /isarray@2.0.5:
- resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- dev: false
/isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
@@ -5834,12 +5093,10 @@ packages:
/isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- dev: false
/istanbul-lib-coverage@3.2.2:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
- dev: true
/istanbul-lib-instrument@5.2.1:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
@@ -5852,7 +5109,6 @@ packages:
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
/istanbul-lib-instrument@6.0.3:
resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
@@ -5901,7 +5157,6 @@ packages:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- dev: false
/jest-changed-files@29.7.0:
resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
@@ -6071,30 +5326,43 @@ packages:
jest-mock: 29.7.0
jest-util: 29.7.0
- /jest-expo@51.0.4(@babel/core@7.25.2)(jest@29.7.0)(react@18.2.0):
- resolution: {integrity: sha512-WmlR4rUur1TNF/F14brKCmPdX3TWf7Bno/6A1PuxnflN79LEIXpXuPKMlMWwCCChTohGB5FRniknRibblWu1ug==}
+ /jest-expo@52.0.0-preview.1(@babel/core@7.25.2)(expo@52.0.0-preview.7)(jest@29.7.0)(react-dom@18.3.1)(react-native@0.76.0)(react@18.3.1)(webpack@5.95.0):
+ resolution: {integrity: sha512-J2dykImL5EUW+wPuDQnY48o6h4deLDbJzJfiKgwqhYH3FRsLp/mn1ewEMHkpCcmaaBA0VzG/nKcSI1B4NLXv7Q==}
hasBin: true
+ peerDependencies:
+ expo: '*'
+ react-native: '*'
dependencies:
- '@expo/config': 9.0.3
- '@expo/json-file': 8.3.3
+ '@expo/config': 10.0.0
+ '@expo/json-file': 9.0.0
'@jest/create-cache-key-function': 29.7.0
+ '@jest/globals': 29.7.0
babel-jest: 29.7.0(@babel/core@7.25.2)
+ expo: 52.0.0-preview.7(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(react-native@0.76.0)(react@18.3.1)
+ fbemitter: 3.0.0
find-up: 5.0.0
jest-environment-jsdom: 29.7.0
+ jest-snapshot: 29.7.0
jest-watch-select-projects: 2.0.0
jest-watch-typeahead: 2.2.1(jest@29.7.0)
json5: 2.2.3
lodash: 4.17.21
- react-test-renderer: 18.2.0(react@18.2.0)
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ react-server-dom-webpack: 19.0.0-rc-6230622a1a-20240610(react-dom@18.3.1)(react@18.3.1)(webpack@5.95.0)
+ react-test-renderer: 18.3.1(react@18.3.1)
+ server-only: 0.0.1
stacktrace-js: 2.0.2
transitivePeerDependencies:
- '@babel/core'
- bufferutil
- canvas
+ - encoding
- jest
- react
+ - react-dom
- supports-color
- utf-8-validate
+ - webpack
dev: true
/jest-get-type@29.6.3:
@@ -6118,7 +5386,6 @@ packages:
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
- dev: true
/jest-leak-detector@29.7.0:
resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
@@ -6175,7 +5442,6 @@ packages:
/jest-regex-util@29.6.3:
resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
/jest-resolve-dependencies@29.7.0:
resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
@@ -6349,6 +5615,15 @@ packages:
string-length: 4.0.2
dev: true
+ /jest-worker@27.5.1:
+ resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
+ engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/node': 22.5.0
+ merge-stream: 2.0.0
+ supports-color: 8.1.1
+ dev: true
+
/jest-worker@29.7.0:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -6381,21 +5656,9 @@ packages:
/jimp-compact@0.16.1:
resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==}
- dev: false
-
- /joi@17.13.3:
- resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
- dependencies:
- '@hapi/hoek': 9.3.0
- '@hapi/topo': 5.1.0
- '@sideway/address': 4.1.5
- '@sideway/formula': 3.0.1
- '@sideway/pinpoint': 2.0.0
- dev: false
/join-component@1.1.0:
resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==}
- dev: false
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -6412,15 +5675,12 @@ packages:
hasBin: true
dependencies:
argparse: 2.0.1
- dev: false
/jsc-android@250231.0.0:
resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==}
- dev: false
/jsc-safe-url@0.2.4:
resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==}
- dev: false
/jscodeshift@0.14.0(@babel/preset-env@7.25.4):
resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==}
@@ -6450,7 +5710,6 @@ packages:
write-file-atomic: 2.4.3
transitivePeerDependencies:
- supports-color
- dev: false
/jsdom@20.0.3:
resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==}
@@ -6496,7 +5755,6 @@ packages:
/jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- dev: false
/jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
@@ -6505,25 +5763,14 @@ packages:
/json-parse-better-errors@1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- dev: false
/json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
dev: true
- /json-schema-deref-sync@0.13.0:
- resolution: {integrity: sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- clone: 2.1.2
- dag-map: 1.0.2
- is-valid-path: 0.1.1
- lodash: 4.17.21
- md5: 2.2.1
- memory-cache: 0.2.0
- traverse: 0.6.9
- valid-url: 1.0.9
- dev: false
+ /json-schema-traverse@0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ dev: true
/json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
@@ -6538,7 +5785,6 @@ packages:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
graceful-fs: 4.2.11
- dev: false
/jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
@@ -6546,12 +5792,10 @@ packages:
universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
- dev: false
/kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- dev: false
/kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
@@ -6568,99 +5812,112 @@ packages:
marky: 1.2.5
transitivePeerDependencies:
- supports-color
- dev: false
- /lightningcss-darwin-arm64@1.19.0:
- resolution: {integrity: sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==}
+ /lightningcss-darwin-arm64@1.27.0:
+ resolution: {integrity: sha512-Gl/lqIXY+d+ySmMbgDf0pgaWSqrWYxVHoc88q+Vhf2YNzZ8DwoRzGt5NZDVqqIW5ScpSnmmjcgXP87Dn2ylSSQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
- /lightningcss-darwin-x64@1.19.0:
- resolution: {integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==}
+ /lightningcss-darwin-x64@1.27.0:
+ resolution: {integrity: sha512-0+mZa54IlcNAoQS9E0+niovhyjjQWEMrwW0p2sSdLRhLDc8LMQ/b67z7+B5q4VmjYCMSfnFi3djAAQFIDuj/Tg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
- /lightningcss-linux-arm-gnueabihf@1.19.0:
- resolution: {integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==}
+ /lightningcss-freebsd-x64@1.27.0:
+ resolution: {integrity: sha512-n1sEf85fePoU2aDN2PzYjoI8gbBqnmLGEhKq7q0DKLj0UTVmOTwDC7PtLcy/zFxzASTSBlVQYJUhwIStQMIpRA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+ requiresBuild: true
+ optional: true
+
+ /lightningcss-linux-arm-gnueabihf@1.27.0:
+ resolution: {integrity: sha512-MUMRmtdRkOkd5z3h986HOuNBD1c2lq2BSQA1Jg88d9I7bmPGx08bwGcnB75dvr17CwxjxD6XPi3Qh8ArmKFqCA==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /lightningcss-linux-arm64-gnu@1.19.0:
- resolution: {integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==}
+ /lightningcss-linux-arm64-gnu@1.27.0:
+ resolution: {integrity: sha512-cPsxo1QEWq2sfKkSq2Bq5feQDHdUEwgtA9KaB27J5AX22+l4l0ptgjMZZtYtUnteBofjee+0oW1wQ1guv04a7A==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /lightningcss-linux-arm64-musl@1.19.0:
- resolution: {integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==}
+ /lightningcss-linux-arm64-musl@1.27.0:
+ resolution: {integrity: sha512-rCGBm2ax7kQ9pBSeITfCW9XSVF69VX+fm5DIpvDZQl4NnQoMQyRwhZQm9pd59m8leZ1IesRqWk2v/DntMo26lg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /lightningcss-linux-x64-gnu@1.19.0:
- resolution: {integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==}
+ /lightningcss-linux-x64-gnu@1.27.0:
+ resolution: {integrity: sha512-Dk/jovSI7qqhJDiUibvaikNKI2x6kWPN79AQiD/E/KeQWMjdGe9kw51RAgoWFDi0coP4jinaH14Nrt/J8z3U4A==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /lightningcss-linux-x64-musl@1.19.0:
- resolution: {integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==}
+ /lightningcss-linux-x64-musl@1.27.0:
+ resolution: {integrity: sha512-QKjTxXm8A9s6v9Tg3Fk0gscCQA1t/HMoF7Woy1u68wCk5kS4fR+q3vXa1p3++REW784cRAtkYKrPy6JKibrEZA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /lightningcss-win32-x64-msvc@1.19.0:
- resolution: {integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==}
+ /lightningcss-win32-arm64-msvc@1.27.0:
+ resolution: {integrity: sha512-/wXegPS1hnhkeG4OXQKEMQeJd48RDC3qdh+OA8pCuOPCyvnm/yEayrJdJVqzBsqpy1aJklRCVxscpFur80o6iQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+ requiresBuild: true
+ optional: true
+
+ /lightningcss-win32-x64-msvc@1.27.0:
+ resolution: {integrity: sha512-/OJLj94Zm/waZShL8nB5jsNj3CfNATLCTyFxZyouilfTmSoLDX7VlVAmhPHoZWVFp4vdmoiEbPEYC8HID3m6yw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
- /lightningcss@1.19.0:
- resolution: {integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==}
+ /lightningcss@1.27.0:
+ resolution: {integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==}
engines: {node: '>= 12.0.0'}
dependencies:
detect-libc: 1.0.3
optionalDependencies:
- lightningcss-darwin-arm64: 1.19.0
- lightningcss-darwin-x64: 1.19.0
- lightningcss-linux-arm-gnueabihf: 1.19.0
- lightningcss-linux-arm64-gnu: 1.19.0
- lightningcss-linux-arm64-musl: 1.19.0
- lightningcss-linux-x64-gnu: 1.19.0
- lightningcss-linux-x64-musl: 1.19.0
- lightningcss-win32-x64-msvc: 1.19.0
- dev: false
+ lightningcss-darwin-arm64: 1.27.0
+ lightningcss-darwin-x64: 1.27.0
+ lightningcss-freebsd-x64: 1.27.0
+ lightningcss-linux-arm-gnueabihf: 1.27.0
+ lightningcss-linux-arm64-gnu: 1.27.0
+ lightningcss-linux-arm64-musl: 1.27.0
+ lightningcss-linux-x64-gnu: 1.27.0
+ lightningcss-linux-x64-musl: 1.27.0
+ lightningcss-win32-arm64-msvc: 1.27.0
+ lightningcss-win32-x64-msvc: 1.27.0
/lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+ /loader-runner@4.3.0:
+ resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
+ engines: {node: '>=6.11.5'}
+ dev: true
+
/locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -6682,11 +5939,9 @@ packages:
/lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- dev: false
/lodash.throttle@4.1.1:
resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==}
- dev: false
/lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -6696,24 +5951,6 @@ packages:
engines: {node: '>=4'}
dependencies:
chalk: 2.4.2
- dev: false
-
- /log-symbols@4.1.0:
- resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
- engines: {node: '>=10'}
- dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
- dev: false
-
- /logkitty@0.7.1:
- resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==}
- hasBin: true
- dependencies:
- ansi-fragments: 0.2.1
- dayjs: 1.11.13
- yargs: 15.4.1
- dev: false
/loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
@@ -6734,7 +5971,6 @@ packages:
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
- dev: false
/make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
@@ -6742,7 +5978,6 @@ packages:
dependencies:
pify: 4.0.1
semver: 5.7.2
- dev: false
/make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
@@ -6758,7 +5993,6 @@ packages:
/marky@1.2.5:
resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
- dev: false
/md5-file@3.2.3:
resolution: {integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==}
@@ -6766,15 +6000,6 @@ packages:
hasBin: true
dependencies:
buffer-alloc: 1.2.0
- dev: false
-
- /md5@2.2.1:
- resolution: {integrity: sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==}
- dependencies:
- charenc: 0.0.2
- crypt: 0.0.2
- is-buffer: 1.1.6
- dev: false
/md5@2.3.0:
resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
@@ -6782,91 +6007,74 @@ packages:
charenc: 0.0.2
crypt: 0.0.2
is-buffer: 1.1.6
- dev: false
-
- /md5hex@1.0.0:
- resolution: {integrity: sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==}
- dev: false
/memoize-one@5.2.1:
resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==}
- dev: false
/memoize-one@6.0.0:
resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
dev: false
- /memory-cache@0.2.0:
- resolution: {integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==}
- dev: false
-
/merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
/merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- dev: false
- /metro-babel-transformer@0.80.10:
- resolution: {integrity: sha512-GXHueUzgzcazfzORDxDzWS9jVVRV6u+cR6TGvHOfGdfLzJCj7/D0PretLfyq+MwN20twHxLW+BUXkoaB8sCQBg==}
- engines: {node: '>=18'}
+ /metro-babel-transformer@0.81.0:
+ resolution: {integrity: sha512-Dc0QWK4wZIeHnyZ3sevWGTnnSkIDDn/SWyfrn99zbKbDOCoCYy71PAn9uCRrP/hduKLJQOy+tebd63Rr9D8tXg==}
+ engines: {node: '>=18.18'}
dependencies:
'@babel/core': 7.25.2
flow-enums-runtime: 0.0.6
- hermes-parser: 0.23.0
+ hermes-parser: 0.24.0
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: false
- /metro-cache-key@0.80.10:
- resolution: {integrity: sha512-57qBhO3zQfoU/hP4ZlLW5hVej2jVfBX6B4NcSfMj4LgDPL3YknWg80IJBxzQfjQY/m+fmMLmPy8aUMHzUp/guA==}
- engines: {node: '>=18'}
+ /metro-cache-key@0.81.0:
+ resolution: {integrity: sha512-qX/IwtknP9bQZL78OK9xeSvLM/xlGfrs6SlUGgHvrxtmGTRSsxcyqxR+c+7ch1xr05n62Gin/O44QKg5V70rNQ==}
+ engines: {node: '>=18.18'}
dependencies:
flow-enums-runtime: 0.0.6
- dev: false
- /metro-cache@0.80.10:
- resolution: {integrity: sha512-8CBtDJwMguIE5RvV3PU1QtxUG8oSSX54mIuAbRZmcQ0MYiOl9JdrMd4JCBvIyhiZLoSStph425SMyCSnjtJsdA==}
- engines: {node: '>=18'}
+ /metro-cache@0.81.0:
+ resolution: {integrity: sha512-DyuqySicHXkHUDZFVJmh0ygxBSx6pCKUrTcSgb884oiscV/ROt1Vhye+x+OIHcsodyA10gzZtrVtxIFV4l9I4g==}
+ engines: {node: '>=18.18'}
dependencies:
exponential-backoff: 3.1.1
flow-enums-runtime: 0.0.6
- metro-core: 0.80.10
- dev: false
+ metro-core: 0.81.0
- /metro-config@0.80.10:
- resolution: {integrity: sha512-0GYAw0LkmGbmA81FepKQepL1KU/85Cyv7sAiWm6QWeV6AcVCpsKg6jGLqGHJ0LLPL60rWzA4TV1DQAlzdJAEtA==}
- engines: {node: '>=18'}
+ /metro-config@0.81.0:
+ resolution: {integrity: sha512-6CinEaBe3WLpRlKlYXXu8r1UblJhbwD6Gtnoib5U8j6Pjp7XxMG9h/DGMeNp9aGLDu1OieUqiXpFo7O0/rR5Kg==}
+ engines: {node: '>=18.18'}
dependencies:
connect: 3.7.0
cosmiconfig: 5.2.1
flow-enums-runtime: 0.0.6
jest-validate: 29.7.0
- metro: 0.80.10
- metro-cache: 0.80.10
- metro-core: 0.80.10
- metro-runtime: 0.80.10
+ metro: 0.81.0
+ metro-cache: 0.81.0
+ metro-core: 0.81.0
+ metro-runtime: 0.81.0
transitivePeerDependencies:
- bufferutil
- - encoding
- supports-color
- utf-8-validate
- dev: false
- /metro-core@0.80.10:
- resolution: {integrity: sha512-nwBB6HbpGlNsZMuzxVqxqGIOsn5F3JKpsp8PziS7Z4mV8a/jA1d44mVOgYmDa2q5WlH5iJfRIIhdz24XRNDlLA==}
- engines: {node: '>=18'}
+ /metro-core@0.81.0:
+ resolution: {integrity: sha512-CVkM5YCOAFkNMvJai6KzA0RpztzfEKRX62/PFMOJ9J7K0uq/UkOFLxcgpcncMIrfy0PbfEj811b69tjULUQe1Q==}
+ engines: {node: '>=18.18'}
dependencies:
flow-enums-runtime: 0.0.6
lodash.throttle: 4.1.1
- metro-resolver: 0.80.10
- dev: false
+ metro-resolver: 0.81.0
- /metro-file-map@0.80.10:
- resolution: {integrity: sha512-ytsUq8coneaN7ZCVk1IogojcGhLIbzWyiI2dNmw2nnBgV/0A+M5WaTTgZ6dJEz3dzjObPryDnkqWPvIGLCPtiw==}
- engines: {node: '>=18'}
+ /metro-file-map@0.81.0:
+ resolution: {integrity: sha512-zMDI5uYhQCyxbye/AuFx/pAbsz9K+vKL7h1ShUXdN2fz4VUPiyQYRsRqOoVG1DsiCgzd5B6LW0YW77NFpjDQeg==}
+ engines: {node: '>=18.18'}
dependencies:
anymatch: 3.1.3
debug: 2.6.9
@@ -6883,67 +6091,62 @@ packages:
fsevents: 2.3.3
transitivePeerDependencies:
- supports-color
- dev: false
- /metro-minify-terser@0.80.10:
- resolution: {integrity: sha512-Xyv9pEYpOsAerrld7cSLIcnCCpv8ItwysOmTA+AKf1q4KyE9cxrH2O2SA0FzMCkPzwxzBWmXwHUr+A89BpEM6g==}
- engines: {node: '>=18'}
+ /metro-minify-terser@0.81.0:
+ resolution: {integrity: sha512-U2ramh3W822ZR1nfXgIk+emxsf5eZSg10GbQrT0ZizImK8IZ5BmJY+BHRIkQgHzWFpExOVxC7kWbGL1bZALswA==}
+ engines: {node: '>=18.18'}
dependencies:
flow-enums-runtime: 0.0.6
terser: 5.31.6
- dev: false
- /metro-resolver@0.80.10:
- resolution: {integrity: sha512-EYC5CL7f+bSzrqdk1bylKqFNGabfiI5PDctxoPx70jFt89Jz+ThcOscENog8Jb4LEQFG6GkOYlwmPpsi7kx3QA==}
- engines: {node: '>=18'}
+ /metro-resolver@0.81.0:
+ resolution: {integrity: sha512-Uu2Q+buHhm571cEwpPek8egMbdSTqmwT/5U7ZVNpK6Z2ElQBBCxd7HmFAslKXa7wgpTO2FAn6MqGeERbAtVDUA==}
+ engines: {node: '>=18.18'}
dependencies:
flow-enums-runtime: 0.0.6
- dev: false
- /metro-runtime@0.80.10:
- resolution: {integrity: sha512-Xh0N589ZmSIgJYAM+oYwlzTXEHfASZac9TYPCNbvjNTn0EHKqpoJ/+Im5G3MZT4oZzYv4YnvzRtjqS5k0tK94A==}
- engines: {node: '>=18'}
+ /metro-runtime@0.81.0:
+ resolution: {integrity: sha512-6oYB5HOt37RuGz2eV4A6yhcl+PUTwJYLDlY9vhT+aVjbUWI6MdBCf69vc4f5K5Vpt+yOkjy+2LDwLS0ykWFwYw==}
+ engines: {node: '>=18.18'}
dependencies:
'@babel/runtime': 7.25.4
flow-enums-runtime: 0.0.6
- dev: false
- /metro-source-map@0.80.10:
- resolution: {integrity: sha512-EyZswqJW8Uukv/HcQr6K19vkMXW1nzHAZPWJSEyJFKIbgp708QfRZ6vnZGmrtFxeJEaFdNup4bGnu8/mIOYlyA==}
- engines: {node: '>=18'}
+ /metro-source-map@0.81.0:
+ resolution: {integrity: sha512-TzsVxhH83dyxg4A4+L1nzNO12I7ps5IHLjKGZH3Hrf549eiZivkdjYiq/S5lOB+p2HiQ+Ykcwtmcja95LIC62g==}
+ engines: {node: '>=18.18'}
dependencies:
'@babel/traverse': 7.25.4
+ '@babel/traverse--for-generate-function-map': /@babel/traverse@7.25.4
'@babel/types': 7.25.4
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-symbolicate: 0.80.10
+ metro-symbolicate: 0.81.0
nullthrows: 1.1.1
- ob1: 0.80.10
+ ob1: 0.81.0
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- dev: false
- /metro-symbolicate@0.80.10:
- resolution: {integrity: sha512-qAoVUoSxpfZ2DwZV7IdnQGXCSsf2cAUExUcZyuCqGlY5kaWBb0mx2BL/xbMFDJ4wBp3sVvSBPtK/rt4J7a0xBA==}
- engines: {node: '>=18'}
+ /metro-symbolicate@0.81.0:
+ resolution: {integrity: sha512-C/1rWbNTPYp6yzID8IPuQPpVGzJ2rbWYBATxlvQ9dfK5lVNoxcwz77hjcY8ISLsRRR15hyd/zbjCNKPKeNgE1Q==}
+ engines: {node: '>=18.18'}
hasBin: true
dependencies:
flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-source-map: 0.80.10
+ metro-source-map: 0.81.0
nullthrows: 1.1.1
source-map: 0.5.7
through2: 2.0.5
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- dev: false
- /metro-transform-plugins@0.80.10:
- resolution: {integrity: sha512-leAx9gtA+2MHLsCeWK6XTLBbv2fBnNFu/QiYhWzMq8HsOAP4u1xQAU0tSgPs8+1vYO34Plyn79xTLUtQCRSSUQ==}
- engines: {node: '>=18'}
+ /metro-transform-plugins@0.81.0:
+ resolution: {integrity: sha512-uErLAPBvttGCrmGSCa0dNHlOTk3uJFVEVWa5WDg6tQ79PRmuYRwzUgLhVzn/9/kyr75eUX3QWXN79Jvu4txt6Q==}
+ engines: {node: '>=18.18'}
dependencies:
'@babel/core': 7.25.2
'@babel/generator': 7.25.5
@@ -6953,35 +6156,32 @@ packages:
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- dev: false
- /metro-transform-worker@0.80.10:
- resolution: {integrity: sha512-zNfNLD8Rz99U+JdOTqtF2o7iTjcDMMYdVS90z6+81Tzd2D0lDWVpls7R1hadS6xwM+ymgXFQTjM6V6wFoZaC0g==}
- engines: {node: '>=18'}
+ /metro-transform-worker@0.81.0:
+ resolution: {integrity: sha512-HrQ0twiruhKy0yA+9nK5bIe3WQXZcC66PXTvRIos61/EASLAP2DzEmW7IxN/MGsfZegN2UzqL2CG38+mOB45vg==}
+ engines: {node: '>=18.18'}
dependencies:
'@babel/core': 7.25.2
'@babel/generator': 7.25.5
'@babel/parser': 7.25.4
'@babel/types': 7.25.4
flow-enums-runtime: 0.0.6
- metro: 0.80.10
- metro-babel-transformer: 0.80.10
- metro-cache: 0.80.10
- metro-cache-key: 0.80.10
- metro-minify-terser: 0.80.10
- metro-source-map: 0.80.10
- metro-transform-plugins: 0.80.10
+ metro: 0.81.0
+ metro-babel-transformer: 0.81.0
+ metro-cache: 0.81.0
+ metro-cache-key: 0.81.0
+ metro-minify-terser: 0.81.0
+ metro-source-map: 0.81.0
+ metro-transform-plugins: 0.81.0
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
- - encoding
- supports-color
- utf-8-validate
- dev: false
- /metro@0.80.10:
- resolution: {integrity: sha512-FDPi0X7wpafmDREXe1lgg3WzETxtXh6Kpq8+IwsG35R2tMyp2kFIqDdshdohuvDt1J/qDARcEPq7V/jElTb1kA==}
- engines: {node: '>=18'}
+ /metro@0.81.0:
+ resolution: {integrity: sha512-kzdzmpL0gKhEthZ9aOV7sTqvg6NuTxDV8SIm9pf9sO8VVEbKrQk5DNcwupOUjgPPFAuKUc2NkT0suyT62hm2xg==}
+ engines: {node: '>=18.18'}
hasBin: true
dependencies:
'@babel/code-frame': 7.24.7
@@ -7000,26 +6200,25 @@ packages:
error-stack-parser: 2.1.4
flow-enums-runtime: 0.0.6
graceful-fs: 4.2.11
- hermes-parser: 0.23.0
+ hermes-parser: 0.24.0
image-size: 1.1.1
invariant: 2.2.4
jest-worker: 29.7.0
jsc-safe-url: 0.2.4
lodash.throttle: 4.1.1
- metro-babel-transformer: 0.80.10
- metro-cache: 0.80.10
- metro-cache-key: 0.80.10
- metro-config: 0.80.10
- metro-core: 0.80.10
- metro-file-map: 0.80.10
- metro-resolver: 0.80.10
- metro-runtime: 0.80.10
- metro-source-map: 0.80.10
- metro-symbolicate: 0.80.10
- metro-transform-plugins: 0.80.10
- metro-transform-worker: 0.80.10
+ metro-babel-transformer: 0.81.0
+ metro-cache: 0.81.0
+ metro-cache-key: 0.81.0
+ metro-config: 0.81.0
+ metro-core: 0.81.0
+ metro-file-map: 0.81.0
+ metro-resolver: 0.81.0
+ metro-runtime: 0.81.0
+ metro-source-map: 0.81.0
+ metro-symbolicate: 0.81.0
+ metro-transform-plugins: 0.81.0
+ metro-transform-worker: 0.81.0
mime-types: 2.1.35
- node-fetch: 2.7.0
nullthrows: 1.1.1
serialize-error: 2.1.0
source-map: 0.5.7
@@ -7029,10 +6228,8 @@ packages:
yargs: 17.7.2
transitivePeerDependencies:
- bufferutil
- - encoding
- supports-color
- utf-8-validate
- dev: false
/micromatch@4.0.8:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
@@ -7048,7 +6245,6 @@ packages:
/mime-db@1.53.0:
resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
engines: {node: '>= 0.6'}
- dev: false
/mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
@@ -7060,18 +6256,10 @@ packages:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
- dev: false
-
- /mime@2.6.0:
- resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
- dev: false
/mimic-fn@1.2.0:
resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
engines: {node: '>=4'}
- dev: false
/mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
@@ -7094,39 +6282,33 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
brace-expansion: 2.0.1
- dev: false
/minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- dev: false
/minipass-collect@2.0.1:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
dependencies:
minipass: 7.1.2
- dev: false
/minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
dependencies:
minipass: 3.3.6
- dev: false
/minipass-pipeline@1.2.4:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
dependencies:
minipass: 3.3.6
- dev: false
/minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
dependencies:
yallist: 4.0.0
- dev: false
/minipass@4.2.8:
resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
@@ -7136,7 +6318,6 @@ packages:
/minipass@5.0.0:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- dev: false
/minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
@@ -7148,20 +6329,17 @@ packages:
dependencies:
minipass: 3.3.6
yallist: 4.0.0
- dev: false
/mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
dependencies:
minimist: 1.2.8
- dev: false
/mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
- dev: false
/mrmime@1.0.1:
resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
@@ -7170,14 +6348,12 @@ packages:
/ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- dev: false
/ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
/ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- dev: false
/mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -7190,7 +6366,6 @@ packages:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- dev: false
/natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -7199,35 +6374,24 @@ packages:
/negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
- dev: false
/neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- dev: false
/nested-error-stacks@2.0.1:
resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==}
- dev: false
/nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: false
-
- /nocache@3.0.4:
- resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==}
- engines: {node: '>=12.0.0'}
- dev: false
/node-abort-controller@3.1.1:
resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
- dev: false
/node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
engines: {node: '>= 0.10.5'}
dependencies:
minimatch: 3.1.2
- dev: false
/node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
@@ -7239,12 +6403,10 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
- dev: false
/node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
- dev: false
/node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
@@ -7252,15 +6414,19 @@ packages:
/node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
- /node-stream-zip@1.15.0:
- resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
- engines: {node: '>=0.12.0'}
- dev: false
-
/normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
+ /npm-package-arg@11.0.3:
+ resolution: {integrity: sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==}
+ engines: {node: ^16.14.0 || >=18.0.0}
+ dependencies:
+ hosted-git-info: 7.0.2
+ proc-log: 4.2.0
+ semver: 7.6.3
+ validate-npm-package-name: 5.0.1
+
/npm-package-arg@7.0.0:
resolution: {integrity: sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==}
dependencies:
@@ -7268,14 +6434,12 @@ packages:
osenv: 0.1.5
semver: 5.7.2
validate-npm-package-name: 3.0.0
- dev: false
/npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
engines: {node: '>=4'}
dependencies:
path-key: 2.0.1
- dev: false
/npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
@@ -7285,61 +6449,36 @@ packages:
/nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- dev: false
/nwsapi@2.2.12:
resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==}
dev: true
- /ob1@0.80.10:
- resolution: {integrity: sha512-dJHyB0S6JkMorUSfSGcYGkkg9kmq3qDUu3ygZUKIfkr47XOPuG35r2Sk6tbwtHXbdKIXmcMvM8DF2CwgdyaHfQ==}
- engines: {node: '>=18'}
+ /ob1@0.81.0:
+ resolution: {integrity: sha512-6Cvrkxt1tqaRdWqTAMcVYEiO5i1xcF9y7t06nFdjFqkfPsEloCf8WwhXdwBpNUkVYSQlSGS7cDgVQR86miBfBQ==}
+ engines: {node: '>=18.18'}
dependencies:
flow-enums-runtime: 0.0.6
- dev: false
/object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-inspect@1.13.2:
- resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
- engines: {node: '>= 0.4'}
- dev: false
-
- /object-keys@1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
- engines: {node: '>= 0.4'}
- dev: false
-
- /object.assign@4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- has-symbols: 1.0.3
- object-keys: 1.1.1
- dev: false
-
/on-finished@2.3.0:
resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
- dev: false
/on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
- dev: false
/on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
- dev: false
/once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
@@ -7351,7 +6490,6 @@ packages:
engines: {node: '>=4'}
dependencies:
mimic-fn: 1.2.0
- dev: false
/onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
@@ -7359,20 +6497,12 @@ packages:
dependencies:
mimic-fn: 2.1.0
- /open@6.4.0:
- resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==}
- engines: {node: '>=8'}
- dependencies:
- is-wsl: 1.1.0
- dev: false
-
/open@7.4.2:
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
is-wsl: 2.2.0
- dev: false
/open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
@@ -7381,7 +6511,6 @@ packages:
define-lazy-prop: 2.0.0
is-docker: 2.2.1
is-wsl: 2.2.0
- dev: false
/ora@3.4.0:
resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==}
@@ -7393,32 +6522,14 @@ packages:
log-symbols: 2.2.0
strip-ansi: 5.2.0
wcwidth: 1.0.1
- dev: false
-
- /ora@5.4.1:
- resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
- engines: {node: '>=10'}
- dependencies:
- bl: 4.1.0
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-spinners: 2.9.2
- is-interactive: 1.0.0
- is-unicode-supported: 0.1.0
- log-symbols: 4.1.0
- strip-ansi: 6.0.1
- wcwidth: 1.0.1
- dev: false
/os-homedir@1.0.2:
resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
engines: {node: '>=0.10.0'}
- dev: false
/os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- dev: false
/osenv@0.1.5:
resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==}
@@ -7426,12 +6537,10 @@ packages:
dependencies:
os-homedir: 1.0.2
os-tmpdir: 1.0.2
- dev: false
/p-finally@1.0.0:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
- dev: false
/p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
@@ -7468,7 +6577,6 @@ packages:
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
- dev: false
/p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
@@ -7476,7 +6584,6 @@ packages:
/package-json-from-dist@1.0.0:
resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
- dev: false
/parse-json@4.0.0:
resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
@@ -7484,7 +6591,6 @@ packages:
dependencies:
error-ex: 1.3.2
json-parse-better-errors: 1.0.2
- dev: false
/parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
@@ -7501,7 +6607,6 @@ packages:
engines: {node: '>=10'}
dependencies:
pngjs: 3.4.0
- dev: false
/parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
@@ -7512,14 +6617,12 @@ packages:
/parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- dev: false
/password-prompt@1.1.3:
resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==}
dependencies:
ansi-escapes: 4.3.2
cross-spawn: 7.0.3
- dev: false
/path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
@@ -7536,7 +6639,6 @@ packages:
/path-key@2.0.1:
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
- dev: false
/path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
@@ -7552,11 +6654,6 @@ packages:
lru-cache: 10.4.3
minipass: 7.1.2
- /path-type@4.0.0:
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
- engines: {node: '>=8'}
- dev: false
-
/picocolors@1.0.1:
resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
@@ -7567,12 +6664,10 @@ packages:
/picomatch@3.0.1:
resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==}
engines: {node: '>=10'}
- dev: false
/pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- dev: false
/pirates@4.0.6:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
@@ -7583,7 +6678,6 @@ packages:
engines: {node: '>=6'}
dependencies:
find-up: 3.0.0
- dev: false
/pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
@@ -7610,7 +6704,6 @@ packages:
/pngjs@3.4.0:
resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
engines: {node: '>=4.0.0'}
- dev: false
/possible-typed-array-names@1.0.0:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
@@ -7628,32 +6721,10 @@ packages:
nanoid: 3.3.7
picocolors: 1.0.1
source-map-js: 1.2.0
- dev: false
/pretty-bytes@5.6.0:
resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==}
engines: {node: '>=6'}
- dev: false
-
- /pretty-format@24.9.0:
- resolution: {integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==}
- engines: {node: '>= 6'}
- dependencies:
- '@jest/types': 24.9.0
- ansi-regex: 4.1.1
- ansi-styles: 3.2.1
- react-is: 16.13.1
- dev: false
-
- /pretty-format@26.6.2:
- resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
- engines: {node: '>= 10'}
- dependencies:
- '@jest/types': 26.6.2
- ansi-regex: 5.0.1
- ansi-styles: 4.3.0
- react-is: 17.0.2
- dev: false
/pretty-format@29.7.0:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
@@ -7663,26 +6734,26 @@ packages:
ansi-styles: 5.2.0
react-is: 18.3.1
+ /proc-log@4.2.0:
+ resolution: {integrity: sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
/process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- dev: false
/progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
- dev: false
/promise@7.3.1:
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
dependencies:
asap: 2.0.6
- dev: false
/promise@8.3.0:
resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==}
dependencies:
asap: 2.0.6
- dev: false
/prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
@@ -7697,7 +6768,6 @@ packages:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- dev: false
/psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
@@ -7708,7 +6778,6 @@ packages:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- dev: false
/punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
@@ -7721,7 +6790,6 @@ packages:
/qrcode-terminal@0.11.0:
resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==}
hasBin: true
- dev: false
/query-string@7.1.3:
resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
@@ -7733,30 +6801,27 @@ packages:
strict-uri-encode: 2.0.0
dev: false
- /querystring@0.2.1:
- resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
- engines: {node: '>=0.4.x'}
- deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
- dev: false
-
/querystringify@2.2.0:
resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
dev: true
/queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- dev: false
/queue@6.0.2:
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
dependencies:
inherits: 2.0.4
- dev: false
+
+ /randombytes@2.1.0:
+ resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
+ dependencies:
+ safe-buffer: 5.1.2
+ dev: true
/range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- dev: false
/rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
@@ -7766,7 +6831,6 @@ packages:
ini: 1.3.8
minimist: 1.2.8
strip-json-comments: 2.0.1
- dev: false
/react-devtools-core@5.3.1:
resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==}
@@ -7776,38 +6840,46 @@ packages:
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- dev: false
- /react-dom@18.2.0(react@18.2.0):
- resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ /react-dom@18.3.1(react@18.3.1):
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
- react: ^18.2.0
+ react: ^18.3.1
dependencies:
loose-envify: 1.4.0
- react: 18.2.0
+ react: 18.3.1
scheduler: 0.23.2
- dev: false
/react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
dev: false
- /react-freeze@1.0.4(react@18.2.0):
+ /react-freeze@1.0.4(react@18.3.1):
resolution: {integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==}
engines: {node: '>=10'}
peerDependencies:
react: '>=17.0.0'
dependencies:
- react: 18.2.0
+ react: 18.3.1
dev: false
- /react-is@16.13.1:
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+ /react-helmet-async@1.3.0(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
+ peerDependencies:
+ react: ^16.6.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ '@babel/runtime': 7.25.4
+ invariant: 2.2.4
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-fast-compare: 3.2.2
+ shallowequal: 1.1.0
dev: false
- /react-is@17.0.2:
- resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- dev: false
+ /react-is@16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
/react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
@@ -7818,7 +6890,7 @@ packages:
prop-types: 15.8.1
dev: false
- /react-native-confirmation-code-field@7.4.0(react-native@0.74.5)(react@18.2.0):
+ /react-native-confirmation-code-field@7.4.0(react-native@0.76.0)(react@18.3.1):
resolution: {integrity: sha512-Kw7rD0RXi6vZnt0Y67nkSW2wYmZFdnxJ23yxkKm3jqwvSxAvaA1NP3h3MHSPmJd25l0WK/+fjXOeCliDqWZ9rw==}
peerDependencies:
react: '>=16.4.0'
@@ -7829,12 +6901,12 @@ packages:
react-native:
optional: true
dependencies:
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
- /react-native-gesture-handler@2.16.2(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-vGFlrDKlmyI+BT+FemqVxmvO7nqxU33cgXVsn6IKAFishvlG3oV2Ds67D5nPkHMea8T+s1IcuMm0bF8ntZtAyg==}
+ /react-native-gesture-handler@2.20.2(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-HqzFpFczV4qCnwKlvSAvpzEXisL+Z9fsR08YV5LfJDkzuArMhBu2sOoSPUF/K62PCoAb+ObGlTC83TKHfUd0vg==}
peerDependencies:
react: '*'
react-native: '*'
@@ -7842,47 +6914,46 @@ packages:
'@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
invariant: 2.2.4
- lodash: 4.17.21
prop-types: 15.8.1
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
- /react-native-helmet-async@2.0.4(react@18.2.0):
+ /react-native-helmet-async@2.0.4(react@18.3.1):
resolution: {integrity: sha512-m3CkXWss6B1dd6mCMleLpzDCJJGGaHOLQsUzZv8kAASJmMfmVT4d2fx375iXKTRWT25ThBfae3dECuX5cq/8hg==}
peerDependencies:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
invariant: 2.2.4
- react: 18.2.0
+ react: 18.3.1
react-fast-compare: 3.2.2
shallowequal: 1.1.0
dev: false
- /react-native-modal@13.0.1(react-native@0.74.5)(react@18.2.0):
+ /react-native-modal@13.0.1(react-native@0.76.0)(react@18.3.1):
resolution: {integrity: sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==}
peerDependencies:
react: '*'
react-native: '>=0.65.0'
dependencies:
prop-types: 15.8.1
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
react-native-animatable: 1.3.3
dev: false
- /react-native-pager-view@6.2.2(react-native@0.74.5)(react@18.2.0):
+ /react-native-pager-view@6.2.2(react-native@0.76.0)(react@18.3.1):
resolution: {integrity: sha512-MLkJB7iP6v0Hd4/B4/R/gLCSE+YBtjxG/vHZYBDU+fI3U7HBYgKAg4o6ad8HxbKVcWWyRDNeeVRGISw1MUjlHw==}
peerDependencies:
react: '*'
react-native: '*'
dependencies:
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
- /react-native-reanimated@3.10.1(@babel/core@7.25.2)(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-sfxg6vYphrDc/g4jf/7iJ7NRi+26z2+BszPmvmk0Vnrz6FL7HYljJqTf531F1x6tFmsf+FEAmuCtTUIXFLVo9w==}
+ /react-native-reanimated@3.16.1(@babel/core@7.25.2)(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-Wnbo7toHZ6kPLAD8JWKoKCTfNoqYOMW5vUEP76Rr4RBmJCrdXj6oauYP0aZnZq8NCbiP5bwwu7+RECcWtoetnQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
react: '*'
@@ -7890,62 +6961,65 @@ packages:
dependencies:
'@babel/core': 7.25.2
'@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
+ '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
'@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
'@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
'@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
'@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
convert-source-map: 2.0.0
invariant: 2.2.4
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
transitivePeerDependencies:
- supports-color
dev: false
- /react-native-safe-area-context@4.10.5(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g==}
+ /react-native-safe-area-context@4.12.0(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-ukk5PxcF4p3yu6qMZcmeiZgowhb5AsKRnil54YFUUAXVIS7PJcMHGGC+q44fCiBg44/1AJk5njGMez1m9H0BVQ==}
peerDependencies:
react: '*'
react-native: '*'
dependencies:
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
- /react-native-screens@3.31.1(react-native@0.74.5)(react@18.2.0):
- resolution: {integrity: sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==}
+ /react-native-screens@4.0.0-beta.14(react-native@0.76.0)(react@18.3.1):
+ resolution: {integrity: sha512-O81GMV/ptGiOie+jpI2qdXZP4tktR0vdIw05m8eaAWJshMTC1cRxhmyF4puVKRFh8USN2b/awfA0ikLaTkeipQ==}
peerDependencies:
react: '*'
react-native: '*'
dependencies:
- react: 18.2.0
- react-freeze: 1.0.4(react@18.2.0)
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-freeze: 1.0.4(react@18.3.1)
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
warn-once: 0.1.1
dev: false
- /react-native-tab-view@3.5.2(react-native-pager-view@6.2.2)(react-native@0.74.5)(react@18.2.0):
+ /react-native-tab-view@3.5.2(react-native-pager-view@6.2.2)(react-native@0.76.0)(react@18.3.1):
resolution: {integrity: sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==}
peerDependencies:
react: '*'
react-native: '*'
react-native-pager-view: '*'
dependencies:
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
- react-native-pager-view: 6.2.2(react-native@0.74.5)(react@18.2.0)
- use-latest-callback: 0.1.11(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
+ react-native-pager-view: 6.2.2(react-native@0.76.0)(react@18.3.1)
+ use-latest-callback: 0.1.11(react@18.3.1)
dev: false
- /react-native-toast-message@2.1.6(react-native@0.74.5)(react@18.2.0):
+ /react-native-toast-message@2.1.6(react-native@0.76.0)(react@18.3.1):
resolution: {integrity: sha512-VctXuq20vmRa9AE13acaNZhrLcS3FaBS2zEevS3+vhBsnVZYG0FIlWIis9tVnpnNxUb3ART+BWtwQjzSttXTng==}
peerDependencies:
react: '*'
react-native: '*'
dependencies:
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
dev: false
/react-native-vector-icons@10.0.0:
@@ -7956,8 +7030,8 @@ packages:
yargs: 16.2.0
dev: false
- /react-native-web@0.19.12(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-o2T0oztoVDQjztt4YksO9S1XRjoH/AqcSvifgWLrPJgGVbMWsfhILgl6lfUdEamVZzZSVV/2gqDVMAk/qq7mZw==}
+ /react-native-web@0.19.13(react-dom@18.3.1)(react@18.3.1):
+ resolution: {integrity: sha512-etv3bN8rJglrRCp/uL4p7l8QvUNUC++QwDbdZ8CB7BvZiMvsxfFIRM1j04vxNldG3uo2puRd6OSWR3ibtmc29A==}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
@@ -7969,59 +7043,60 @@ packages:
memoize-one: 6.0.0
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
styleq: 0.1.3
transitivePeerDependencies:
- encoding
dev: false
- /react-native@0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0):
- resolution: {integrity: sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw==}
+ /react-native@0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1):
+ resolution: {integrity: sha512-isbLzmY7fhhLdN/oss4jlRHeDmEShuTYsp1Zq93UM0/JssQK4g+2Ub4mHdhxDFm2LN+0ryBgVJK1nO7l93cfsA==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
'@types/react': ^18.2.6
- react: 18.2.0
+ react: ^18.2.0
peerDependenciesMeta:
'@types/react':
optional: true
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native-community/cli': 13.6.9
- '@react-native-community/cli-platform-android': 13.6.9
- '@react-native-community/cli-platform-ios': 13.6.9
- '@react-native/assets-registry': 0.74.87
- '@react-native/codegen': 0.74.87(@babel/preset-env@7.25.4)
- '@react-native/community-cli-plugin': 0.74.87(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
- '@react-native/gradle-plugin': 0.74.87
- '@react-native/js-polyfills': 0.74.87
- '@react-native/normalize-colors': 0.74.87
- '@react-native/virtualized-lists': 0.74.87(@types/react@18.2.79)(react-native@0.74.5)(react@18.2.0)
- '@types/react': 18.2.79
+ '@react-native/assets-registry': 0.76.0
+ '@react-native/codegen': 0.76.0(@babel/preset-env@7.25.4)
+ '@react-native/community-cli-plugin': 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)
+ '@react-native/gradle-plugin': 0.76.0
+ '@react-native/js-polyfills': 0.76.0
+ '@react-native/normalize-colors': 0.76.0
+ '@react-native/virtualized-lists': 0.76.0(@types/react@18.3.12)(react-native@0.76.0)(react@18.3.1)
+ '@types/react': 18.3.12
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
+ babel-jest: 29.7.0(@babel/core@7.25.2)
+ babel-plugin-syntax-hermes-parser: 0.23.1
base64-js: 1.5.1
chalk: 4.1.2
+ commander: 12.1.0
event-target-shim: 5.0.1
flow-enums-runtime: 0.0.6
+ glob: 7.2.3
invariant: 2.2.4
jest-environment-node: 29.7.0
jsc-android: 250231.0.0
memoize-one: 5.2.1
- metro-runtime: 0.80.10
- metro-source-map: 0.80.10
+ metro-runtime: 0.81.0
+ metro-source-map: 0.81.0
mkdirp: 0.5.6
nullthrows: 1.1.1
- pretty-format: 26.6.2
+ pretty-format: 29.7.0
promise: 8.3.0
- react: 18.2.0
+ react: 18.3.1
react-devtools-core: 5.3.1
react-refresh: 0.14.2
- react-shallow-renderer: 16.15.0(react@18.2.0)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
+ semver: 7.6.3
stacktrace-parser: 0.1.10
whatwg-fetch: 3.6.20
ws: 6.2.3
@@ -8029,39 +7104,65 @@ packages:
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
+ - '@react-native-community/cli-server-api'
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: false
/react-refresh@0.14.2:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
- dev: false
- /react-shallow-renderer@16.15.0(react@18.2.0):
+ /react-server-dom-webpack@19.0.0-rc-6230622a1a-20240610(react-dom@18.3.1)(react@18.3.1)(webpack@5.95.0):
+ resolution: {integrity: sha512-nr+IsOVD07QdeCr4BLvR5TALfLaZLi9AIaoa6vXymBc051iDPWedJujYYrjRJy5+9jp9oCx3G8Tt/Bs//TckJw==}
+ engines: {node: '>=0.10.0'}
+ peerDependencies:
+ react: 19.0.0-rc-6230622a1a-20240610
+ react-dom: 19.0.0-rc-6230622a1a-20240610
+ webpack: ^5.59.0
+ dependencies:
+ acorn-loose: 8.4.0
+ neo-async: 2.6.2
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ webpack: 5.95.0
+ dev: true
+
+ /react-shallow-renderer@16.15.0(react@18.3.1):
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
object-assign: 4.1.1
- react: 18.2.0
+ react: 18.3.1
react-is: 18.3.1
+ dev: true
- /react-test-renderer@18.2.0(react@18.2.0):
+ /react-test-renderer@18.2.0(react@18.3.1):
resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==}
peerDependencies:
react: ^18.2.0
dependencies:
- react: 18.2.0
+ react: 18.3.1
+ react-is: 18.3.1
+ react-shallow-renderer: 16.15.0(react@18.3.1)
+ scheduler: 0.23.2
+ dev: true
+
+ /react-test-renderer@18.3.1(react@18.3.1):
+ resolution: {integrity: sha512-KkAgygexHUkQqtvvx/otwxtuFu5cVjfzTCtjXLH9boS19/Nbtg84zS7wIQn39G8IlrhThBpQsMKkq5ZHZIYFXA==}
+ peerDependencies:
+ react: ^18.3.1
+ dependencies:
+ react: 18.3.1
react-is: 18.3.1
- react-shallow-renderer: 16.15.0(react@18.2.0)
+ react-shallow-renderer: 16.15.0(react@18.3.1)
scheduler: 0.23.2
dev: true
- /react@18.2.0:
- resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ /react@18.3.1:
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
@@ -8076,20 +7177,9 @@ packages:
safe-buffer: 5.1.2
string_decoder: 1.1.1
util-deprecate: 1.0.2
- dev: false
-
- /readable-stream@3.6.2:
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
- engines: {node: '>= 6'}
- dependencies:
- inherits: 2.0.4
- string_decoder: 1.3.0
- util-deprecate: 1.0.2
- dev: false
/readline@1.3.0:
resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
- dev: false
/recast@0.21.5:
resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
@@ -8099,9 +7189,8 @@ packages:
esprima: 4.0.1
source-map: 0.6.1
tslib: 2.7.0
- dev: false
- /recyclerlistview@4.2.0(react-native@0.74.5)(react@18.2.0):
+ /recyclerlistview@4.2.0(react-native@0.76.0)(react@18.3.1):
resolution: {integrity: sha512-uuBCi0c+ggqHKwrzPX4Z/mJOzsBbjZEAwGGmlwpD/sD7raXixdAbdJ6BTcAmuWG50Cg4ru9p12M94Njwhr/27A==}
peerDependencies:
react: '>= 15.2.1'
@@ -8109,8 +7198,8 @@ packages:
dependencies:
lodash.debounce: 4.0.8
prop-types: 15.8.1
- react: 18.2.0
- react-native: 0.74.5(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.2.79)(react@18.2.0)
+ react: 18.3.1
+ react-native: 0.76.0(@babel/core@7.25.2)(@babel/preset-env@7.25.4)(@types/react@18.3.12)(react@18.3.1)
ts-object-utils: 0.0.5
dev: false
@@ -8119,35 +7208,20 @@ packages:
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
- dev: false
/regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- dev: false
/regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
- dev: false
/regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- dev: false
/regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
dependencies:
'@babel/runtime': 7.25.4
- dev: false
-
- /regexp.prototype.flags@1.5.2:
- resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-errors: 1.3.0
- set-function-name: 2.0.2
- dev: false
/regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
@@ -8159,18 +7233,15 @@ packages:
regjsparser: 0.9.1
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.1.0
- dev: false
/regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
hasBin: true
dependencies:
jsesc: 0.5.0
- dev: false
/remove-trailing-slash@0.1.1:
resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==}
- dev: false
/require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
@@ -8180,10 +7251,6 @@ packages:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- /require-main-filename@2.0.0:
- resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
- dev: false
-
/requireg@0.2.2:
resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==}
engines: {node: '>= 4.0.0'}
@@ -8191,7 +7258,6 @@ packages:
nested-error-stacks: 2.0.1
rc: 1.2.8
resolve: 1.7.1
- dev: false
/requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
@@ -8211,12 +7277,14 @@ packages:
/resolve-from@3.0.0:
resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
engines: {node: '>=4'}
- dev: false
/resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
+ /resolve-workspace-root@2.0.0:
+ resolution: {integrity: sha512-IsaBUZETJD5WsI11Wt8PKHwaIe45or6pwNc8yflvLJ4DWtImK9kuLoH5kUva/2Mmx/RdIyr4aONNSa2v9LTJsw==}
+
/resolve.exports@2.0.2:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
@@ -8233,7 +7301,6 @@ packages:
resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==}
dependencies:
path-parse: 1.0.7
- dev: false
/restore-cursor@2.0.0:
resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
@@ -8241,20 +7308,10 @@ packages:
dependencies:
onetime: 2.0.1
signal-exit: 3.0.7
- dev: false
-
- /restore-cursor@3.1.0:
- resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
- engines: {node: '>=8'}
- dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
- dev: false
/reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- dev: false
/rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
@@ -8262,7 +7319,6 @@ packages:
hasBin: true
dependencies:
glob: 7.2.3
- dev: false
/rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
@@ -8270,40 +7326,14 @@ packages:
hasBin: true
dependencies:
glob: 7.2.3
- dev: false
/run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- dev: false
-
- /safe-array-concat@1.1.2:
- resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
- engines: {node: '>=0.4'}
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- isarray: 2.0.5
- dev: false
/safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- dev: false
-
- /safe-buffer@5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- dev: false
-
- /safe-regex-test@1.0.3:
- resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-regex: 1.1.4
- dev: false
/safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
@@ -8328,7 +7358,15 @@ packages:
resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
dependencies:
loose-envify: 1.4.0
- dev: false
+
+ /schema-utils@3.3.0:
+ resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
+ engines: {node: '>= 10.13.0'}
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
+ dev: true
/schema-utils@4.2.0:
resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
@@ -8346,12 +7384,10 @@ packages:
dependencies:
'@types/node-forge': 1.3.11
node-forge: 1.3.1
- dev: false
/semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true
- dev: false
/semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
@@ -8381,12 +7417,16 @@ packages:
statuses: 2.0.1
transitivePeerDependencies:
- supports-color
- dev: false
/serialize-error@2.1.0:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
- dev: false
+
+ /serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ dependencies:
+ randombytes: 2.1.0
+ dev: true
/serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
@@ -8398,11 +7438,9 @@ packages:
send: 0.18.0
transitivePeerDependencies:
- supports-color
- dev: false
- /set-blocking@2.0.0:
- resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
- dev: false
+ /server-only@0.0.1:
+ resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
/set-cookie-parser@2.7.0:
resolution: {integrity: sha512-lXLOiqpkUumhRdFF3k1osNXCy9akgx/dyPZ5p8qAg9seJzXr5ZrlqZuWIMuY6ejOsVLE6flJ5/h3lsn57fQ/PQ==}
@@ -8420,30 +7458,17 @@ packages:
has-property-descriptors: 1.0.2
dev: false
- /set-function-name@2.0.2:
- resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- define-data-property: 1.1.4
- es-errors: 1.3.0
- functions-have-names: 1.2.3
- has-property-descriptors: 1.0.2
- dev: false
-
/setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
- dev: false
/setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- dev: false
/shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
- dev: false
/shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
@@ -8454,7 +7479,6 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
- dev: false
/shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
@@ -8465,7 +7489,6 @@ packages:
/shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
- dev: false
/shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
@@ -8473,17 +7496,6 @@ packages:
/shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- dev: false
-
- /side-channel@1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- object-inspect: 1.13.2
- dev: false
/signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -8491,7 +7503,6 @@ packages:
/signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- dev: false
/simple-plist@1.3.1:
resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==}
@@ -8518,15 +7529,6 @@ packages:
engines: {node: '>=14.16'}
dev: true
- /slice-ansi@2.1.0:
- resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==}
- engines: {node: '>=6'}
- dependencies:
- ansi-styles: 3.2.1
- astral-regex: 1.0.0
- is-fullwidth-code-point: 2.0.0
- dev: false
-
/slugify@1.6.6:
resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
engines: {node: '>=8.0.0'}
@@ -8534,7 +7536,6 @@ packages:
/source-map-js@1.2.0:
resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
engines: {node: '>=0.10.0'}
- dev: false
/source-map-support@0.5.13:
resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
@@ -8548,7 +7549,6 @@ packages:
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- dev: false
/source-map@0.5.6:
resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==}
@@ -8558,7 +7558,6 @@ packages:
/source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
- dev: false
/source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
@@ -8578,7 +7577,6 @@ packages:
resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
dependencies:
through: 2.3.8
- dev: false
/sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
@@ -8588,7 +7586,6 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
minipass: 7.1.2
- dev: false
/stack-generator@2.0.10:
resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==}
@@ -8625,17 +7622,14 @@ packages:
engines: {node: '>=6'}
dependencies:
type-fest: 0.7.1
- dev: false
/statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
- dev: false
/statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- dev: false
/stream-buffers@2.2.0:
resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==}
@@ -8681,53 +7675,17 @@ packages:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- dev: false
-
- /string.prototype.trim@1.2.9:
- resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
- dev: false
-
- /string.prototype.trimend@1.0.8:
- resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
- dev: false
-
- /string.prototype.trimstart@1.0.8:
- resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-object-atoms: 1.0.0
- dev: false
/string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
- dev: false
-
- /string_decoder@1.3.0:
- resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- dependencies:
- safe-buffer: 5.2.1
- dev: false
/strip-ansi@5.2.0:
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
engines: {node: '>=6'}
dependencies:
ansi-regex: 4.1.1
- dev: false
/strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
@@ -8749,7 +7707,6 @@ packages:
/strip-eof@1.0.0:
resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
engines: {node: '>=0.10.0'}
- dev: false
/strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
@@ -8758,20 +7715,14 @@ packages:
/strip-json-comments@2.0.1:
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
- dev: false
/strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
dev: true
- /strnum@1.0.5:
- resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
- dev: false
-
/structured-headers@0.4.1:
resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==}
- dev: false
/styleq@0.1.3:
resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==}
@@ -8790,17 +7741,24 @@ packages:
pirates: 4.0.6
ts-interface-checker: 0.1.13
+ /sucrase@3.35.0:
+ resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ hasBin: true
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.5
+ commander: 4.1.1
+ glob: 10.4.5
+ lines-and-columns: 1.2.4
+ mz: 2.7.0
+ pirates: 4.0.6
+ ts-interface-checker: 0.1.13
+
/sudo-prompt@8.2.5:
resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==}
- dev: false
/sudo-prompt@9.1.1:
resolution: {integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==}
- dev: false
-
- /sudo-prompt@9.2.1:
- resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
- dev: false
/supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
@@ -8826,7 +7784,6 @@ packages:
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
- dev: false
/supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
@@ -8836,6 +7793,11 @@ packages:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
+ /tapable@2.2.1:
+ resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ engines: {node: '>=6'}
+ dev: true
+
/tar@6.2.1:
resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
engines: {node: '>=10'}
@@ -8846,44 +7808,16 @@ packages:
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
- dev: false
-
- /temp-dir@1.0.0:
- resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
- engines: {node: '>=4'}
- dev: false
/temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
- dev: false
/temp@0.8.4:
resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==}
engines: {node: '>=6.0.0'}
dependencies:
rimraf: 2.6.3
- dev: false
-
- /tempy@0.3.0:
- resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==}
- engines: {node: '>=8'}
- dependencies:
- temp-dir: 1.0.0
- type-fest: 0.3.1
- unique-string: 1.0.0
- dev: false
-
- /tempy@0.7.1:
- resolution: {integrity: sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==}
- engines: {node: '>=10'}
- dependencies:
- del: 6.1.1
- is-stream: 2.0.1
- temp-dir: 2.0.0
- type-fest: 0.16.0
- unique-string: 2.0.0
- dev: false
/terminal-link@2.1.1:
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
@@ -8891,7 +7825,30 @@ packages:
dependencies:
ansi-escapes: 4.3.2
supports-hyperlinks: 2.3.0
- dev: false
+
+ /terser-webpack-plugin@5.3.10(webpack@5.95.0):
+ resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ '@swc/core': '*'
+ esbuild: '*'
+ uglify-js: '*'
+ webpack: ^5.1.0
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ esbuild:
+ optional: true
+ uglify-js:
+ optional: true
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ jest-worker: 27.5.1
+ schema-utils: 3.3.0
+ serialize-javascript: 6.0.2
+ terser: 5.31.6
+ webpack: 5.95.0
+ dev: true
/terser@5.31.6:
resolution: {integrity: sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==}
@@ -8902,7 +7859,6 @@ packages:
acorn: 8.12.1
commander: 2.20.3
source-map-support: 0.5.21
- dev: false
/test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
@@ -8911,11 +7867,6 @@ packages:
'@istanbuljs/schema': 0.1.3
glob: 7.2.3
minimatch: 3.1.2
- dev: true
-
- /text-table@0.2.0:
- resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- dev: false
/thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
@@ -8930,25 +7881,21 @@ packages:
/throat@5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
- dev: false
/through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
dependencies:
readable-stream: 2.3.8
xtend: 4.0.2
- dev: false
/through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- dev: false
/tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
dependencies:
os-tmpdir: 1.0.2
- dev: false
/tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
@@ -8966,7 +7913,6 @@ packages:
/toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- dev: false
/tough-cookie@4.1.4:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
@@ -8980,7 +7926,6 @@ packages:
/tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- dev: false
/tr46@3.0.0:
resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
@@ -8989,20 +7934,6 @@ packages:
punycode: 2.3.1
dev: true
- /traverse@0.6.9:
- resolution: {integrity: sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==}
- engines: {node: '>= 0.4'}
- dependencies:
- gopd: 1.0.1
- typedarray.prototype.slice: 1.0.3
- which-typed-array: 1.1.15
- dev: false
-
- /trim-right@1.0.1:
- resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==}
- engines: {node: '>=0.10.0'}
- dev: false
-
/ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
@@ -9016,90 +7947,22 @@ packages:
/tslib@2.7.0:
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
- dev: false
- /turbo-stream@2.3.0:
- resolution: {integrity: sha512-PhEr9mdexoVv+rJkQ3c8TjrN3DUghX37GNJkSMksoPR4KrXIPnM2MnqRt07sViIqX9IdlhrgtTSyjoVOASq6cg==}
+ /turbo-stream@2.4.0:
+ resolution: {integrity: sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==}
dev: false
/type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
- /type-fest@0.16.0:
- resolution: {integrity: sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==}
- engines: {node: '>=10'}
- dev: false
-
/type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- /type-fest@0.3.1:
- resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==}
- engines: {node: '>=6'}
- dev: false
-
/type-fest@0.7.1:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
- dev: false
-
- /typed-array-buffer@1.0.2:
- resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- es-errors: 1.3.0
- is-typed-array: 1.1.13
- dev: false
-
- /typed-array-byte-length@1.0.1:
- resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
- dev: false
-
- /typed-array-byte-offset@1.0.2:
- resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
- dev: false
-
- /typed-array-length@1.0.6:
- resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
- possible-typed-array-names: 1.0.0
- dev: false
-
- /typedarray.prototype.slice@1.0.3:
- resolution: {integrity: sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- typed-array-buffer: 1.0.2
- typed-array-byte-offset: 1.0.2
- dev: false
/typescript@5.3.3:
resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
@@ -9108,20 +7971,6 @@ packages:
/ua-parser-js@1.0.38:
resolution: {integrity: sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==}
- dev: false
-
- /unbox-primitive@1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
- dependencies:
- call-bind: 1.0.7
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
- dev: false
-
- /undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
- dev: false
/undici-types@6.19.8:
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
@@ -9129,12 +7978,10 @@ packages:
/undici@6.19.8:
resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==}
engines: {node: '>=18.17'}
- dev: false
/unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
- dev: false
/unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
@@ -9142,50 +7989,36 @@ packages:
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.1.0
- dev: false
/unicode-match-property-value-ecmascript@2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
- dev: false
/unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- dev: false
/unique-filename@3.0.0:
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
unique-slug: 4.0.0
- dev: false
/unique-slug@4.0.0:
resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
imurmurhash: 0.1.4
- dev: false
-
- /unique-string@1.0.0:
- resolution: {integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==}
- engines: {node: '>=4'}
- dependencies:
- crypto-random-string: 1.0.0
- dev: false
/unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
dependencies:
crypto-random-string: 2.0.0
- dev: false
/universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- dev: false
/universalify@0.2.0:
resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
@@ -9195,17 +8028,14 @@ packages:
/universalify@1.0.0:
resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==}
engines: {node: '>= 10.0.0'}
- dev: false
/universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- dev: false
/unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- dev: false
/update-browserslist-db@1.1.0(browserslist@4.23.3):
resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
@@ -9217,9 +8047,11 @@ packages:
escalade: 3.1.2
picocolors: 1.0.1
- /url-join@4.0.0:
- resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==}
- dev: false
+ /uri-js@4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ dependencies:
+ punycode: 2.3.1
+ dev: true
/url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
@@ -9228,25 +8060,32 @@ packages:
requires-port: 1.0.0
dev: true
- /use-latest-callback@0.1.11(react@18.2.0):
+ /use-latest-callback@0.1.11(react@18.3.1):
resolution: {integrity: sha512-8nhb73STSD/z3GTHklvNjL8F9wMOo0bj0AFnulpIYuFTm6aQlT3ZcNbXF2YurKImIY8+kpSFSDHZZyQmurGrhw==}
peerDependencies:
react: '>=16.8'
dependencies:
- react: 18.2.0
+ react: 18.3.1
dev: false
- /use-latest-callback@0.2.1(react@18.2.0):
+ /use-latest-callback@0.2.1(react@18.3.1):
resolution: {integrity: sha512-QWlq8Is8BGWBf883QOEQP5HWYX/kMI+JTbJ5rdtvJLmXTIh9XoHIO3PQcmQl8BU44VKxow1kbQUHa6mQSMALDQ==}
peerDependencies:
react: '>=16.8'
dependencies:
- react: 18.2.0
+ react: 18.3.1
+ dev: false
+
+ /use-sync-external-store@1.2.2(react@18.3.1):
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.3.1
dev: false
/util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- dev: false
/util@0.12.5:
resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
@@ -9261,7 +8100,6 @@ packages:
/utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
- dev: false
/uuid@7.0.3:
resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==}
@@ -9270,7 +8108,6 @@ packages:
/uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- dev: false
/v8-to-istanbul@9.3.0:
resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
@@ -9281,10 +8118,6 @@ packages:
convert-source-map: 2.0.0
dev: true
- /valid-url@1.0.9:
- resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==}
- dev: false
-
/validate-color@2.2.1:
resolution: {integrity: sha512-1eDb1zqP6W6bbfKKl6dRXObelNoQpW7aF3BUTh2AivWuhcD0pa3ejwURWqrVsyKJMLBMlHLFcM3sj5J+dSFhbg==}
dev: false
@@ -9293,16 +8126,17 @@ packages:
resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==}
dependencies:
builtins: 1.0.3
- dev: false
+
+ /validate-npm-package-name@5.0.1:
+ resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
/vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- dev: false
/vlq@1.0.1:
resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==}
- dev: false
/w3c-xmlserializer@4.0.0:
resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==}
@@ -9320,11 +8154,18 @@ packages:
resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==}
dev: false
+ /watchpack@2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ engines: {node: '>=10.13.0'}
+ dependencies:
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ dev: true
+
/wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
dependencies:
defaults: 1.0.4
- dev: false
/web-encoding@1.1.5:
resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==}
@@ -9337,22 +8178,63 @@ packages:
/web-streams-polyfill@3.3.3:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
- dev: false
/webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- dev: false
/webidl-conversions@5.0.0:
resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
engines: {node: '>=8'}
- dev: false
/webidl-conversions@7.0.0:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
dev: true
+ /webpack-sources@3.2.3:
+ resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
+ engines: {node: '>=10.13.0'}
+ dev: true
+
+ /webpack@5.95.0:
+ resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+ dependencies:
+ '@types/estree': 1.0.6
+ '@webassemblyjs/ast': 1.12.1
+ '@webassemblyjs/wasm-edit': 1.12.1
+ '@webassemblyjs/wasm-parser': 1.12.1
+ acorn: 8.12.1
+ acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ browserslist: 4.23.3
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.5.4
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 3.3.0
+ tapable: 2.2.1
+ terser-webpack-plugin: 5.3.10(webpack@5.95.0)
+ watchpack: 2.4.2
+ webpack-sources: 3.2.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+ dev: true
+
/whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
engines: {node: '>=12'}
@@ -9362,7 +8244,6 @@ packages:
/whatwg-fetch@3.6.20:
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
- dev: false
/whatwg-mimetype@3.0.0:
resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==}
@@ -9376,7 +8257,6 @@ packages:
buffer: 5.7.1
punycode: 2.3.1
webidl-conversions: 5.0.0
- dev: false
/whatwg-url@11.0.0:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
@@ -9391,21 +8271,6 @@ packages:
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- dev: false
-
- /which-boxed-primitive@1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
- is-symbol: 1.0.4
- dev: false
-
- /which-module@2.0.1:
- resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- dev: false
/which-typed-array@1.1.15:
resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
@@ -9423,7 +8288,6 @@ packages:
hasBin: true
dependencies:
isexe: 2.0.0
- dev: false
/which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
@@ -9434,16 +8298,6 @@ packages:
/wonka@4.0.15:
resolution: {integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==}
- dev: false
-
- /wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
- dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
- dev: false
/wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
@@ -9460,7 +8314,6 @@ packages:
ansi-styles: 6.2.1
string-width: 5.1.2
strip-ansi: 7.1.0
- dev: false
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -9478,7 +8331,6 @@ packages:
dependencies:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- dev: true
/ws@6.2.3:
resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
@@ -9492,7 +8344,6 @@ packages:
optional: true
dependencies:
async-limiter: 1.0.1
- dev: false
/ws@7.5.10:
resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
@@ -9505,7 +8356,6 @@ packages:
optional: true
utf-8-validate:
optional: true
- dev: false
/ws@8.18.0:
resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
@@ -9557,11 +8407,6 @@ packages:
/xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- dev: false
-
- /y18n@4.0.3:
- resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
- dev: false
/y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
@@ -9572,21 +8417,6 @@ packages:
/yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- dev: false
-
- /yaml@2.5.0:
- resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
- engines: {node: '>= 14'}
- hasBin: true
- dev: false
-
- /yargs-parser@18.1.3:
- resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
- engines: {node: '>=6'}
- dependencies:
- camelcase: 5.3.1
- decamelize: 1.2.0
- dev: false
/yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
@@ -9597,23 +8427,6 @@ packages:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- /yargs@15.4.1:
- resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
- engines: {node: '>=8'}
- dependencies:
- cliui: 6.0.0
- decamelize: 1.2.0
- find-up: 4.1.0
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- require-main-filename: 2.0.0
- set-blocking: 2.0.0
- string-width: 4.2.3
- which-module: 2.0.1
- y18n: 4.0.3
- yargs-parser: 18.1.3
- dev: false
-
/yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
@@ -9642,16 +8455,3 @@ packages:
/yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
-
- /zod-validation-error@2.1.0(zod@3.23.8):
- resolution: {integrity: sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- zod: ^3.18.0
- dependencies:
- zod: 3.23.8
- dev: false
-
- /zod@3.23.8:
- resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
- dev: false
diff --git a/jest-setup.ts b/jest-setup.ts
index 9f28ad21..43f0c1cc 100644
--- a/jest-setup.ts
+++ b/jest-setup.ts
@@ -1 +1,2 @@
import '@testing-library/jest-native/extend-expect';
+import 'react-native-gesture-handler/jestSetup';
diff --git a/package.json b/package.json
index f868c1bd..9ca45219 100644
--- a/package.json
+++ b/package.json
@@ -50,12 +50,14 @@
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
+ "@gorhom/bottom-sheet": "5.0.4",
"@react-native-community/slider": "4.5.4",
"@shopify/flash-list": "1.5.0",
"color": "4.2.3",
"deepmerge": "4.2.2",
"react-native-animatable": "1.3.3",
"react-native-confirmation-code-field": "7.4.0",
+ "react-native-gesture-handler": "2.20.2",
"react-native-modal": "13.0.1",
"react-native-pager-view": "6.2.2",
"react-native-reanimated": "3.5.4",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 36842489..c08f771b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -8,6 +8,9 @@ overrides:
'@types/react': 18.2.14
dependencies:
+ '@gorhom/bottom-sheet':
+ specifier: 5.0.4
+ version: 5.0.4(@types/react-native@0.72.1)(@types/react@18.2.14)(react-native-gesture-handler@2.20.2)(react-native-reanimated@3.5.4)(react-native@0.72.1)(react@18.2.0)
'@react-native-community/slider':
specifier: 4.5.4
version: 4.5.4
@@ -26,6 +29,9 @@ dependencies:
react-native-confirmation-code-field:
specifier: 7.4.0
version: 7.4.0(react-native@0.72.1)(react@18.2.0)
+ react-native-gesture-handler:
+ specifier: 2.20.2
+ version: 2.20.2(react-native@0.72.1)(react@18.2.0)
react-native-modal:
specifier: 13.0.1
version: 13.0.1(react-native@0.72.1)(react@18.2.0)
@@ -1775,6 +1781,13 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: true
+ /@egjs/hammerjs@2.0.17:
+ resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==}
+ engines: {node: '>=0.8.0'}
+ dependencies:
+ '@types/hammerjs': 2.0.46
+ dev: false
+
/@eslint-community/eslint-utils@4.4.0(eslint@8.4.1):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1815,6 +1828,42 @@ packages:
requiresBuild: true
dev: true
+ /@gorhom/bottom-sheet@5.0.4(@types/react-native@0.72.1)(@types/react@18.2.14)(react-native-gesture-handler@2.20.2)(react-native-reanimated@3.5.4)(react-native@0.72.1)(react@18.2.0):
+ resolution: {integrity: sha512-DTKFE+KwcS4Du5hbzTzh3r9hdfEfYmChcRi6hSeiDPGiCMq8GQ7VD5VE1WaFRrEbcc0+Seu1ZEjsf+JMcFM4vg==}
+ peerDependencies:
+ '@types/react': 18.2.14
+ '@types/react-native': '*'
+ react: '*'
+ react-native: '*'
+ react-native-gesture-handler: '>=2.16.1'
+ react-native-reanimated: '>=3.10.1'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-native':
+ optional: true
+ dependencies:
+ '@gorhom/portal': 1.0.14(react-native@0.72.1)(react@18.2.0)
+ '@types/react': 18.2.14
+ '@types/react-native': 0.72.1(react-native@0.72.1)
+ invariant: 2.2.4
+ react: 18.2.0
+ react-native: 0.72.1(@babel/core@7.25.2)(@babel/preset-env@7.22.20)(react@18.2.0)
+ react-native-gesture-handler: 2.20.2(react-native@0.72.1)(react@18.2.0)
+ react-native-reanimated: 3.5.4(@babel/core@7.25.2)(@babel/plugin-proposal-nullish-coalescing-operator@7.18.6)(@babel/plugin-proposal-optional-chaining@7.21.0)(@babel/plugin-transform-arrow-functions@7.24.7)(@babel/plugin-transform-shorthand-properties@7.24.7)(@babel/plugin-transform-template-literals@7.24.7)(react-native@0.72.1)(react@18.2.0)
+ dev: false
+
+ /@gorhom/portal@1.0.14(react-native@0.72.1)(react@18.2.0):
+ resolution: {integrity: sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ nanoid: 3.3.7
+ react: 18.2.0
+ react-native: 0.72.1(@babel/core@7.25.2)(@babel/preset-env@7.22.20)(react@18.2.0)
+ dev: false
+
/@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
@@ -2710,6 +2759,10 @@ packages:
'@types/node': 22.5.0
dev: true
+ /@types/hammerjs@2.0.46:
+ resolution: {integrity: sha512-ynRvcq6wvqexJ9brDMS4BnBLzmr0e14d6ZJTEShTBWKymQiHwlAyGu0ZPEFI2Fh1U53F7tN9ufClWM5KvqkKOw==}
+ dev: false
+
/@types/http-cache-semantics@4.0.4:
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
dev: true
@@ -2767,7 +2820,6 @@ packages:
/@types/prop-types@15.7.12:
resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
- dev: true
/@types/react-native-vector-icons@6.4.18:
resolution: {integrity: sha512-YGlNWb+k5laTBHd7+uZowB9DpIK3SXUneZqAiKQaj1jnJCZM0x71GDim5JCTMi4IFkhc9m8H/Gm28T5BjyivUw==}
@@ -2789,7 +2841,6 @@ packages:
'@types/react': 18.2.14
transitivePeerDependencies:
- react-native
- dev: true
/@types/react-test-renderer@18.0.0:
resolution: {integrity: sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==}
@@ -2803,7 +2854,6 @@ packages:
'@types/prop-types': 15.7.12
'@types/scheduler': 0.23.0
csstype: 3.1.3
- dev: true
/@types/responselike@1.0.3:
resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
@@ -2813,7 +2863,6 @@ packages:
/@types/scheduler@0.23.0:
resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
- dev: true
/@types/semver@7.5.8:
resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
@@ -4216,7 +4265,6 @@ packages:
/csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- dev: true
/dargs@7.0.0:
resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
@@ -5669,6 +5717,12 @@ packages:
dependencies:
source-map: 0.7.4
+ /hoist-non-react-statics@3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+ dependencies:
+ react-is: 16.13.1
+ dev: false
+
/hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
dev: true
@@ -7648,6 +7702,12 @@ packages:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
dev: true
+ /nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+ dev: false
+
/natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
dev: true
@@ -8445,6 +8505,20 @@ packages:
react-native: 0.72.1(@babel/core@7.25.2)(@babel/preset-env@7.22.20)(react@18.2.0)
dev: false
+ /react-native-gesture-handler@2.20.2(react-native@0.72.1)(react@18.2.0):
+ resolution: {integrity: sha512-HqzFpFczV4qCnwKlvSAvpzEXisL+Z9fsR08YV5LfJDkzuArMhBu2sOoSPUF/K62PCoAb+ObGlTC83TKHfUd0vg==}
+ peerDependencies:
+ react: '*'
+ react-native: '*'
+ dependencies:
+ '@egjs/hammerjs': 2.0.17
+ hoist-non-react-statics: 3.3.2
+ invariant: 2.2.4
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-native: 0.72.1(@babel/core@7.25.2)(@babel/preset-env@7.22.20)(react@18.2.0)
+ dev: false
+
/react-native-modal@13.0.1(react-native@0.72.1)(react@18.2.0):
resolution: {integrity: sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==}
peerDependencies:
diff --git a/src/components/avatar/avatar.component.tsx b/src/components/avatar/avatar.component.tsx
index 01905c43..02be89cf 100644
--- a/src/components/avatar/avatar.component.tsx
+++ b/src/components/avatar/avatar.component.tsx
@@ -90,6 +90,8 @@ const Avatar: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/badge/badge.component.tsx b/src/components/badge/badge.component.tsx
index 37bf8dc5..9575abe5 100644
--- a/src/components/badge/badge.component.tsx
+++ b/src/components/badge/badge.component.tsx
@@ -91,6 +91,8 @@ const Badge: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/box/box.component.tsx b/src/components/box/box.component.tsx
index bf8662cf..9e398b1f 100644
--- a/src/components/box/box.component.tsx
+++ b/src/components/box/box.component.tsx
@@ -89,6 +89,8 @@ const Box: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/center/center.component.tsx b/src/components/center/center.component.tsx
index 49121a18..cd445113 100644
--- a/src/components/center/center.component.tsx
+++ b/src/components/center/center.component.tsx
@@ -90,6 +90,8 @@ const Center: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/checkbox/checkbox.component.tsx b/src/components/checkbox/checkbox.component.tsx
index 02203427..f1d50c90 100644
--- a/src/components/checkbox/checkbox.component.tsx
+++ b/src/components/checkbox/checkbox.component.tsx
@@ -90,6 +90,8 @@ const Checkbox: CompundedCheckbox = (incomingProps) => {
borderEndWidth,
shadow,
shadowColor,
+ boxShadow,
+ filter,
full,
alignSelf,
icon,
diff --git a/src/components/divider/divider.component.tsx b/src/components/divider/divider.component.tsx
index 30a09dad..57cee1ab 100644
--- a/src/components/divider/divider.component.tsx
+++ b/src/components/divider/divider.component.tsx
@@ -83,6 +83,8 @@ const Divider: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/draggable-modal/draggable-modal.component.tsx b/src/components/draggable-modal/draggable-modal.component.tsx
new file mode 100644
index 00000000..2676fa96
--- /dev/null
+++ b/src/components/draggable-modal/draggable-modal.component.tsx
@@ -0,0 +1,100 @@
+import { SafeAreaView } from 'react-native';
+
+import { useTheme } from '../../theme';
+import { Box } from '../box/box.component';
+import { useDefaultProps } from '../../utilities/useDefaultProps';
+import { getStyle } from './draggable-modal.style';
+import { handleResponsiveProps } from '../../types';
+import { DraggableModalProps } from './draggable-modal.type';
+import { BottomSheetModal, BottomSheetView } from '@gorhom/bottom-sheet';
+import React, { useRef, useEffect } from 'react';
+
+const DraggableModal: React.FunctionComponent = (
+ incomingProps
+) => {
+ const bottomSheetModalRef = useRef(null);
+ const { theme, windowWidth } = useTheme();
+ const props = useDefaultProps(
+ 'DraggableModal',
+ handleResponsiveProps(incomingProps, theme, windowWidth),
+ {
+ bg: 'white',
+ h: '100%',
+ isOpen: false,
+ justifyContent: 'flex-end',
+ }
+ );
+
+ const {
+ bg,
+ h,
+ m,
+ mt,
+ mr,
+ mb,
+ ml,
+ ms,
+ p,
+ pr,
+ pt,
+ pb,
+ pl,
+ borderRadius,
+ borderTopRadius,
+ borderTopLeftRadius,
+ borderTopRightRadius,
+ borderBottomLeftRadius,
+ borderBottomRightRadius,
+ borderLeftRadius,
+ borderRightRadius,
+ borderBottomRadius,
+ borderColor,
+ borderBottomColor,
+ borderLeftColor,
+ borderTopColor,
+ borderRightColor,
+ borderWidth,
+ borderLeftWidth,
+ borderRightWidth,
+ borderBottomWidth,
+ borderEndWidth,
+ borderTopWidth,
+ justifyContent,
+ children,
+ isOpen,
+ isVisible,
+ onClose,
+ ...rest
+ } = props;
+ const computedStyle = getStyle(theme, props as DraggableModalProps);
+
+ useEffect(() => {
+ if (isOpen) {
+ bottomSheetModalRef.current?.present();
+ bottomSheetModalRef.current?.snapToIndex(0);
+ } else {
+ bottomSheetModalRef.current?.close();
+ }
+ }, [isOpen]);
+
+ return (
+ {
+ if (index === -1) {
+ onClose();
+ }
+ }}
+ style={computedStyle.modal}
+ {...rest}
+ >
+
+
+ {children}
+
+
+
+ );
+};
+
+export { DraggableModal };
diff --git a/src/components/draggable-modal/draggable-modal.style.tsx b/src/components/draggable-modal/draggable-modal.style.tsx
new file mode 100644
index 00000000..148863b0
--- /dev/null
+++ b/src/components/draggable-modal/draggable-modal.style.tsx
@@ -0,0 +1,46 @@
+import { StyleSheet } from 'react-native';
+import { ThemeType } from '../../theme';
+import {
+ createSpacingStyles,
+ createBorderWidthStyles,
+ createBorderColorStyles,
+ createBorderRadiusStyles,
+} from '../../theme/theme.service';
+import { DraggableModalProps } from './draggable-modal.type';
+
+/**
+ * computed style
+ *
+ * @param theme
+ * @param props
+ */
+export const getStyle = (theme: ThemeType, props: DraggableModalProps) => {
+ const computedStyle: any = {};
+
+ computedStyle.modal = {
+ margin: 0,
+ justifyContent: props.justifyContent,
+ };
+
+ computedStyle.container = {
+ ...createBorderWidthStyles(props),
+ ...createSpacingStyles(props, theme.spacing),
+ ...createBorderColorStyles(props, theme.colors),
+ ...createBorderRadiusStyles(props, theme.borderRadius),
+ };
+
+ computedStyle.safeView = {
+ flex: 1,
+ };
+
+ // merging style props to computed style
+ if (props.style) {
+ computedStyle.modal = {
+ ...computedStyle.modal,
+ // @ts-ignore
+ ...props.style,
+ };
+ }
+
+ return StyleSheet.create(computedStyle);
+};
diff --git a/src/components/draggable-modal/draggable-modal.type.tsx b/src/components/draggable-modal/draggable-modal.type.tsx
new file mode 100644
index 00000000..a8646b45
--- /dev/null
+++ b/src/components/draggable-modal/draggable-modal.type.tsx
@@ -0,0 +1,24 @@
+import { BottomSheetModalProps } from '@gorhom/bottom-sheet';
+import {
+ BorderPropsType,
+ SpacingPropsType,
+ BorderRadiusPropsType,
+ BackgroundPropsType,
+ DimensionPropsType,
+ FlexPropsType,
+ VariantPropsType,
+} from '../../types';
+
+export interface DraggableModalProps
+ extends BottomSheetModalProps,
+ BorderPropsType,
+ SpacingPropsType,
+ BorderRadiusPropsType,
+ Pick,
+ Pick,
+ Pick,
+ VariantPropsType {
+ children: React.ReactElement[] | React.ReactElement;
+ isOpen?: boolean;
+ onClose?: () => void;
+}
diff --git a/src/components/flashlist/flashlist.component.tsx b/src/components/flashlist/flashlist.component.tsx
index cc54581a..f6f260c0 100644
--- a/src/components/flashlist/flashlist.component.tsx
+++ b/src/components/flashlist/flashlist.component.tsx
@@ -74,6 +74,8 @@ const FlashList: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/flex/flex.component.tsx b/src/components/flex/flex.component.tsx
index 942ecd21..1e8439ab 100644
--- a/src/components/flex/flex.component.tsx
+++ b/src/components/flex/flex.component.tsx
@@ -89,6 +89,8 @@ const Flex: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/icon/icon.component.tsx b/src/components/icon/icon.component.tsx
index b11c21fe..9954176c 100644
--- a/src/components/icon/icon.component.tsx
+++ b/src/components/icon/icon.component.tsx
@@ -58,6 +58,8 @@ const Icon: React.FunctionComponent = (incomingProps) => {
borderBottomRadius,
shadow,
shadowColor,
+ boxShadow,
+ filter,
borderColor,
borderBottomColor,
borderLeftColor,
diff --git a/src/components/image/image.component.tsx b/src/components/image/image.component.tsx
index 7e69bd7e..70caa80f 100644
--- a/src/components/image/image.component.tsx
+++ b/src/components/image/image.component.tsx
@@ -72,6 +72,8 @@ const Image: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/index.ts b/src/components/index.ts
index 7c61beb5..ffdc2bc1 100644
--- a/src/components/index.ts
+++ b/src/components/index.ts
@@ -70,6 +70,8 @@ export { RadioProps, RadioGroupProps } from './radio/radio.type';
export { RadioGroup } from './radio/group.component';
export { Modal } from './modal/modal.component';
export { ModalProps } from './modal/modal.type';
+export { DraggableModal } from './draggable-modal/draggable-modal.component';
+export { DraggableModalProps } from './draggable-modal/draggable-modal.type';
export { Slider } from './slider/slider.component';
export { SliderProps } from './slider/slider.type';
export { Tab, TabList, TabPanel, TabPanels, Tabs } from './tabs/tabs.component';
diff --git a/src/components/list/list.component.tsx b/src/components/list/list.component.tsx
index 6546e40d..9f580848 100644
--- a/src/components/list/list.component.tsx
+++ b/src/components/list/list.component.tsx
@@ -73,6 +73,8 @@ const List: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/pressable/pressable.component.tsx b/src/components/pressable/pressable.component.tsx
index a3a2e7fe..67e2fb62 100644
--- a/src/components/pressable/pressable.component.tsx
+++ b/src/components/pressable/pressable.component.tsx
@@ -73,6 +73,8 @@ const Pressable: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/radio/radio.component.tsx b/src/components/radio/radio.component.tsx
index c6a6248b..2af1bdb5 100644
--- a/src/components/radio/radio.component.tsx
+++ b/src/components/radio/radio.component.tsx
@@ -96,6 +96,8 @@ const Radio: CompoundedRadio = (incomingProps) => {
borderEndWidth,
shadow,
shadowColor,
+ boxShadow,
+ filter,
full,
alignSelf,
icon,
diff --git a/src/components/safeareabox/safeareabox.component.tsx b/src/components/safeareabox/safeareabox.component.tsx
index da623626..ee578600 100644
--- a/src/components/safeareabox/safeareabox.component.tsx
+++ b/src/components/safeareabox/safeareabox.component.tsx
@@ -84,6 +84,8 @@ const SafeAreaBox: React.FunctionComponent = (
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/scrollbox/scrollbox.component.tsx b/src/components/scrollbox/scrollbox.component.tsx
index 3e493c07..ed7449b3 100644
--- a/src/components/scrollbox/scrollbox.component.tsx
+++ b/src/components/scrollbox/scrollbox.component.tsx
@@ -83,6 +83,8 @@ const ScrollBox: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/sectionlist/sectionlist.component.tsx b/src/components/sectionlist/sectionlist.component.tsx
index ce6eae22..a347eeff 100644
--- a/src/components/sectionlist/sectionlist.component.tsx
+++ b/src/components/sectionlist/sectionlist.component.tsx
@@ -75,6 +75,8 @@ const SectionList: React.FunctionComponent = (
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/spinner/spinner.component.tsx b/src/components/spinner/spinner.component.tsx
index 460b1636..d7d061d8 100644
--- a/src/components/spinner/spinner.component.tsx
+++ b/src/components/spinner/spinner.component.tsx
@@ -74,6 +74,8 @@ const Spinner: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/stack/stack.component.tsx b/src/components/stack/stack.component.tsx
index 268e62ab..253c43e4 100644
--- a/src/components/stack/stack.component.tsx
+++ b/src/components/stack/stack.component.tsx
@@ -83,6 +83,8 @@ const Stack: React.FunctionComponent = (incomingProps) => {
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/touchable-highlight/touchable-highlight.component.tsx b/src/components/touchable-highlight/touchable-highlight.component.tsx
index 70b40dba..3cd00dae 100644
--- a/src/components/touchable-highlight/touchable-highlight.component.tsx
+++ b/src/components/touchable-highlight/touchable-highlight.component.tsx
@@ -75,6 +75,8 @@ const TouchableHighlight: React.FunctionComponent = (
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/touchable-opacity/touchable-opacity.component.tsx b/src/components/touchable-opacity/touchable-opacity.component.tsx
index 4d6770fb..43fa9217 100644
--- a/src/components/touchable-opacity/touchable-opacity.component.tsx
+++ b/src/components/touchable-opacity/touchable-opacity.component.tsx
@@ -75,6 +75,8 @@ const TouchableOpacity: React.FunctionComponent = (
shrink,
shadow,
shadowColor,
+ boxShadow,
+ filter,
opacity,
overflow,
top,
diff --git a/src/components/touchable-without-feedback/touchable-without-feedback.component.tsx b/src/components/touchable-without-feedback/touchable-without-feedback.component.tsx
index 93ea0559..1339a4b5 100644
--- a/src/components/touchable-without-feedback/touchable-without-feedback.component.tsx
+++ b/src/components/touchable-without-feedback/touchable-without-feedback.component.tsx
@@ -78,6 +78,8 @@ const TouchableWithoutFeedback: React.FunctionComponent = (
};
return (
-
- {children}
-
-
+ // eslint-disable-next-line react-native/no-inline-styles
+
+
+
+ {children}
+
+
+
+
);
};
diff --git a/src/theme/theme.service.ts b/src/theme/theme.service.ts
index ab09b909..d3b87d3f 100644
--- a/src/theme/theme.service.ts
+++ b/src/theme/theme.service.ts
@@ -358,7 +358,11 @@ export const createBorderColorStyles = (
export const createShadowStyles = (props: any, theme: ThemeType) => {
let computedStyle: any = {};
- if (props.shadow) {
+ if (props.boxShadow) {
+ computedStyle = {
+ boxShadow: props.boxShadow,
+ };
+ } else if (props.shadow) {
computedStyle = {
...(theme.shadow && theme.shadow[props.shadow]),
shadowColor: props.shadowColor
@@ -368,6 +372,13 @@ export const createShadowStyles = (props: any, theme: ThemeType) => {
};
}
+ if (props.filter) {
+ computedStyle = {
+ ...computedStyle,
+ filter: props.filter,
+ };
+ }
+
return computedStyle;
};
diff --git a/src/theme/type.ts b/src/theme/type.ts
index cef161b9..8975f943 100644
--- a/src/theme/type.ts
+++ b/src/theme/type.ts
@@ -28,6 +28,7 @@ import type {
} from 'components/checkbox/checkbox.type';
import type { RadioGroupProps, RadioProps } from 'components/radio/radio.type';
import type { ModalProps } from 'components/modal/modal.type';
+import type { DraggableModalProps } from 'components/draggable-modal/draggable-modal.type';
import { ToastProps } from 'react-native-toast-message';
import type { DividerProps } from 'components/divider/divider.type';
import { BadgeProps } from 'components/badge/badge.type';
@@ -89,6 +90,7 @@ export interface ThemeType {
Radio?: VariantType;
RadioGroup?: VariantType;
Modal?: VariantType;
+ DraggableModal?: VariantType;
Divider?: VariantType;
Slider?: VariantType;
};
diff --git a/src/types.ts b/src/types.ts
index 8d1a3666..be6e6169 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -146,6 +146,9 @@ export const shadowProps = ['shadow', 'shadowColor'] as const;
export interface ShadowPropsType {
shadow?: ResponsiveValue;
shadowColor?: ResponsiveValue;
+ // New React Native 0.76 props
+ boxShadow?: ResponsiveValue;
+ filter?: ResponsiveValue;
}
export const dimensionProps = [