From f0f9e0276036a0e656301c10554176c910a4b657 Mon Sep 17 00:00:00 2001 From: Mateusz Rostkowski Date: Tue, 5 Mar 2024 14:31:09 +0100 Subject: [PATCH 1/4] chore: change import structure --- .nx/cache/file-map.json | 1730 + .nx/cache/lockfile.hash | 1 + .nx/cache/parsed-lock-file.json | 39279 ++++++++++++++++ .nx/cache/project-graph.json | 35728 ++++++++++++++ App.tsx | 5 +- app/(app)/(authorized)/(tabs)/_layout.tsx | 4 +- .../(authorized)/(tabs)/example/colors.tsx | 2 +- .../(tabs)/example/components.tsx | 2 +- .../(tabs)/example/data-from-be.tsx | 2 +- .../(authorized)/(tabs)/example/index.tsx | 2 +- .../(authorized)/(tabs)/example/test-form.tsx | 2 +- .../(tabs)/example/typography.tsx | 2 +- .../(authorized)/(tabs)/home/details.tsx | 2 +- app/(app)/(authorized)/(tabs)/home/index.tsx | 2 +- .../(authorized)/(tabs)/settings/index.tsx | 2 +- app/(app)/(authorized)/_layout.tsx | 3 +- app/(app)/(authorized)/big-form.tsx | 2 +- app/(app)/(common)/blog.tsx | 2 +- app/(app)/(modals)/application-info.tsx | 2 +- app/(app)/(not-authorized)/_layout.tsx | 2 +- app/(app)/(not-authorized)/sign-in.tsx | 2 +- app/(app)/(not-authorized)/sign-up.tsx | 2 +- app/[...unmatched].tsx | 2 +- app/_layout.tsx | 9 +- app/index.tsx | 5 +- babel.config.js | 4 +- scripts/create_new_screen.js | 4 +- src/components/AppLoading.tsx | 5 +- src/components/Header.tsx | 3 +- src/components/KeyboardAwareScrollView.tsx | 3 +- src/components/LandingHeader.tsx | 13 +- src/components/LanguagePicker.tsx | 3 +- src/components/Modal.tsx | 3 +- src/components/README.md | 16 +- src/components/StatusBar.tsx | 3 +- src/components/atoms/BricksLoader.tsx | 3 +- src/components/atoms/BubblesLoader.tsx | 3 +- src/components/atoms/Button/Button.test.tsx | 5 +- src/components/atoms/Button/Button.tsx | 9 +- src/components/atoms/Checkbox.tsx | 3 +- src/components/atoms/CircleLoader.tsx | 3 +- src/components/atoms/FormErrorMessage.tsx | 3 +- src/components/atoms/FormLabel.tsx | 3 +- src/components/atoms/Icon.tsx | 7 +- src/components/atoms/Input.tsx | 21 +- src/components/atoms/Select.tsx | 7 +- src/components/atoms/Text/Text.test.tsx | 6 +- src/components/atoms/Text/Text.tsx | 7 +- src/components/atoms/Touchables/Pressable.tsx | 3 +- src/components/atoms/Touchables/Touchable.tsx | 3 +- src/components/atoms/Touchables/useFocus.ts | 2 +- src/components/atoms/Touchables/useHover.ts | 2 +- .../atoms/Touchables/useIsPressed.ts | 2 +- src/components/atoms/types.ts | 5 +- src/components/bottomSheets/BottomSheet.tsx | 5 +- .../bottomSheets/BottomSheet.web.tsx | 5 +- .../bottomSheets/BottomSheetHeader.tsx | 10 +- src/components/molecules/Field/Select.tsx | 3 +- src/components/molecules/Field/types.ts | 8 +- .../organisms/ControlledField/Checkbox.tsx | 3 +- .../organisms/ControlledField/Radio.tsx | 3 +- .../organisms/ControlledField/Select.tsx | 3 +- .../organisms/ControlledField/types.ts | 13 +- src/components/organisms/Menu/index.tsx | 3 +- src/components/utils/generateSize.ts | 5 +- .../utils/generateStyledComponent.tsx | 5 +- src/components/utils/generateStyledSystem.ts | 3 +- src/constants/images.ts | 12 +- src/constants/textVariants.ts | 2 +- src/contexts/ColorSchemeContext.ts | 4 +- src/contexts/NotificationContext.ts | 3 +- src/hooks/forms/useSignInForm.ts | 9 +- src/hooks/forms/useSignUpForm.ts | 7 +- src/hooks/forms/useTestForm.ts | 3 +- .../useNavigationStatePersistence.ts | 3 +- src/hooks/navigation/useNavigationTheme.ts | 5 +- src/hooks/navigation/usePreventGoBack.ts | 3 +- src/hooks/navigation/useScreenTracker.ts | 3 +- src/hooks/navigation/useWeb.ts | 3 +- src/hooks/useAppStateActive.ts | 3 +- src/hooks/useCachedResources.ts | 2 +- src/hooks/useSecurePassword.ts | 2 +- src/hooks/useTheme.ts | 4 +- src/hooks/useTimestamp.ts | 3 +- src/i18n/languageDetector.ts | 2 +- src/logic/AuthLogic.tsx | 7 +- .../tabNavigator/components/AppHeader.tsx | 5 +- .../tabNavigator/components/BottomBar.tsx | 7 +- .../tabNavigator/components/HeaderLogo.tsx | 7 +- .../tabNavigator/components/SideBar.tsx | 5 +- .../components/SideBarTabItem.tsx | 9 +- src/navigation/tabNavigator/config.ts | 6 +- src/navigation/tabNavigator/navigator.tsx | 3 +- src/providers/ColorSchemeProvider.tsx | 13 +- src/providers/NotificationProvider.tsx | 11 +- src/providers/Providers.tsx | 11 +- src/query-hooks/useGetData_EXAMPLE.ts | 7 +- src/screens/ApplicationInfoScreen.tsx | 19 +- src/screens/BlogScreen.tsx | 4 +- src/screens/ColorsScreen.tsx | 4 +- src/screens/ComponentsScreen.tsx | 5 +- src/screens/DataFromBeScreen_EXAMPLE.tsx | 9 +- src/screens/DetailsScreen.tsx | 5 +- src/screens/ExamplesScreen.tsx | 5 +- src/screens/HomeScreen.tsx | 9 +- src/screens/LandingScreen.tsx | 11 +- src/screens/NotFoundScreen.tsx | 4 +- src/screens/SettingsScreen.tsx | 12 +- src/screens/SignInScreen.tsx | 19 +- src/screens/SignUpScreen.tsx | 7 +- src/screens/TestFormScreen.tsx | 5 +- src/screens/TypographyScreen.tsx | 7 +- src/services/TokenService.ts | 4 +- src/services/api/apiClient.ts | 5 +- src/services/requests/AnyService_EXAMPLE.ts | 4 +- src/store/auth/authActions.ts | 6 +- src/types/i18next.d.ts | 2 +- src/types/react-i18next.d.ts | 2 +- src/types/theme.d.ts | 4 +- src/utils/checkForUpdates.ts | 3 +- src/utils/getFontWeight.ts | 3 +- src/utils/testUtils.tsx | 5 +- templates/component_template.tsx | 5 +- templates/screen_template.tsx | 4 +- tsconfig.json | 4 +- 125 files changed, 77018 insertions(+), 341 deletions(-) create mode 100644 .nx/cache/file-map.json create mode 100644 .nx/cache/lockfile.hash create mode 100644 .nx/cache/parsed-lock-file.json create mode 100644 .nx/cache/project-graph.json diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json new file mode 100644 index 00000000..44764e6e --- /dev/null +++ b/.nx/cache/file-map.json @@ -0,0 +1,1730 @@ +{ + "version": "6.0", + "nxVersion": "18.0.5", + "deps": { + "@bacons/react-views": "^1.1.3", + "@expo/config-plugins": "~7.8.0", + "@expo/prebuild-config": "~6.7.0", + "@expo/vector-icons": "^14.0.0", + "@gorhom/bottom-sheet": "^4.6.0", + "@motify/interactions": "^0.17.1", + "@motify/skeleton": "^0.18.0", + "@react-native-async-storage/async-storage": "1.21.0", + "@react-native-community/netinfo": "11.1.0", + "@react-navigation/bottom-tabs": "^6.5.11", + "@react-navigation/native": "^6.1.9", + "@react-navigation/native-stack": "^6.9.17", + "@react-navigation/stack": "^6.3.20", + "@tanstack/react-query": "^4.29.19", + "axios": "^0.27.2", + "expo": "^50.0.3", + "expo-app-loading": "^2.1.1", + "expo-application": "~5.8.3", + "expo-asset": "~9.0.2", + "expo-clipboard": "~5.0.1", + "expo-constants": "~15.4.5", + "expo-crypto": "~12.8.0", + "expo-dev-client": "~3.3.7", + "expo-device": "~5.9.3", + "expo-font": "~11.10.2", + "expo-haptics": "~12.8.1", + "expo-linear-gradient": "~12.7.1", + "expo-linking": "~6.2.2", + "expo-local-authentication": "~13.8.0", + "expo-localization": "~14.8.3", + "expo-network": "~5.8.0", + "expo-notifications": "~0.27.5", + "expo-router": "~3.4.6", + "expo-screen-orientation": "~6.4.1", + "expo-secure-store": "~12.8.1", + "expo-splash-screen": "~0.26.4", + "expo-status-bar": "~1.11.1", + "expo-system-ui": "~2.9.3", + "expo-updates": "~0.24.8", + "expo-web-browser": "~12.8.2", + "i18next": "^23.7.20", + "jotai": "^2.4.3", + "moti": "^0.25.3", + "react": "18.2.0", + "react-dom": "18.2.0", + "react-hook-form": "^7.49.3", + "react-i18next": "^14.0.1", + "react-native": "0.73.2", + "react-native-gesture-handler": "~2.14.0", + "react-native-keyboard-aware-scroll-view": "^0.9.5", + "react-native-notificated": "^0.0.1-beta.2", + "react-native-pager-view": "6.2.3", + "react-native-reanimated": "~3.6.2", + "react-native-safe-area-context": "4.8.2", + "react-native-screens": "~3.29.0", + "react-native-svg": "14.1.0", + "react-native-web": "~0.19.6", + "reactotron-react-native": "^5.0.3", + "sass": "^1.70.0", + "setimmediate": "^1.0.5", + "use-debounce": "^9.0.4", + "@babel/core": "^7.20.0", + "@babel/plugin-transform-export-namespace-from": "^7.23.4", + "@babel/preset-react": "^7.23.3", + "@expo/config": "~8.5.0", + "@expo/webpack-config": "~19.0.1", + "@testing-library/jest-native": "^5.4.2", + "@testing-library/react-native": "^12.4.3", + "@types/jest": "^29.5.3", + "@types/react": "~18.2.45", + "@types/react-native": "^0.72.2", + "@types/react-test-renderer": "^18.0.0", + "@typescript-eslint/eslint-plugin": "^6.19.1", + "@typescript-eslint/parser": "^6.19.1", + "@welldone-software/why-did-you-render": "^7.0.1", + "babel-loader": "^9.1.3", + "babel-plugin-module-resolver": "^5.0.0", + "babel-preset-expo": "^10.0.0", + "cross-env": "^7.0.3", + "dotenv": "^16.4.1", + "eslint": "^8.56.0", + "eslint-config-prettier": "^8.8.0", + "eslint-config-universe": "^11.2.0", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-native": "^4.0.0", + "eslint-plugin-react-native-globals": "^0.1.2", + "husky": "^8.0.3", + "jest": "^29.6.1", + "jest-expo": "~50.0.1", + "lint-staged": "^13.2.3", + "miragejs": "^0.1.48", + "patch-package": "^7.0.1", + "prettier": "^2.8.8", + "pretty-quick": "^4.0.0", + "prompt-sync": "^4.2.0", + "react-test-renderer": "^18.2.0", + "readline": "^1.3.0", + "select-prompt": "^0.3.2", + "typescript": "^5.3.0", + "xmlhttprequest": "^1.8.0" + }, + "pathMappings": { + "@baca/*": ["src/*"], + "@baca/assets": ["assets"] + }, + "nxJsonPlugins": [], + "fileMap": { + "projectFileMap": {}, + "nonProjectFiles": [ + { + "file": ".env", + "hash": "8941937231948495185" + }, + { + "file": ".env.production", + "hash": "15051416829832645510" + }, + { + "file": ".env.qa", + "hash": "8941937231948495185" + }, + { + "file": ".env.staging", + "hash": "16943473544490898149" + }, + { + "file": ".eslintignore", + "hash": "6362453565095005619" + }, + { + "file": ".eslintrc.js", + "hash": "15515311826055747163" + }, + { + "file": ".expo-shared/assets.json", + "hash": "14366155298413333343" + }, + { + "file": ".github/ISSUE_TEMPLATE/BUG-REPORT.yml", + "hash": "15017482256175696537" + }, + { + "file": ".github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml", + "hash": "12548442114824159194" + }, + { + "file": ".github/ISSUE_TEMPLATE/config.yml", + "hash": "17858606678031151155" + }, + { + "file": ".github/pull_request_template.md", + "hash": "5459460039162421041" + }, + { + "file": ".github/workflows/nodejs.yml", + "hash": "7014902562553630567" + }, + { + "file": ".gitignore", + "hash": "16118499907584407224" + }, + { + "file": ".husky/pre-commit", + "hash": "2583450222814972446" + }, + { + "file": ".prettierrc.json", + "hash": "603439696811686289" + }, + { + "file": ".vscode/settings.json", + "hash": "8912310731745577745" + }, + { + "file": "App.tsx", + "hash": "3432125951128798835" + }, + { + "file": "CONTRIBUTING.md", + "hash": "1133974508887394371" + }, + { + "file": "README.md", + "hash": "2010667023079277963" + }, + { + "file": "ReactotronConfig.ts", + "hash": "5543399854263958242" + }, + { + "file": "__mocks__/moti.ts", + "hash": "26788166116207504" + }, + { + "file": "app.config.ts", + "hash": "7509822783014014241" + }, + { + "file": "app.json", + "hash": "15782984755317767525" + }, + { + "file": "app/(app)/(authorized)/(tabs)/_layout.tsx", + "hash": "16775937341385365892" + }, + { + "file": "app/(app)/(authorized)/(tabs)/example/_layout.tsx", + "hash": "12039244030940678028" + }, + { + "file": "app/(app)/(authorized)/(tabs)/example/colors.tsx", + "hash": "9222055008911336953" + }, + { + "file": "app/(app)/(authorized)/(tabs)/example/components.tsx", + "hash": "517220493687429902" + }, + { + "file": "app/(app)/(authorized)/(tabs)/example/data-from-be.tsx", + "hash": "15027638579828332511" + }, + { + "file": "app/(app)/(authorized)/(tabs)/example/index.tsx", + "hash": "5962902535356252777" + }, + { + "file": "app/(app)/(authorized)/(tabs)/example/test-form.tsx", + "hash": "8243729862376180640" + }, + { + "file": "app/(app)/(authorized)/(tabs)/example/typography.tsx", + "hash": "8936806035251389752" + }, + { + "file": "app/(app)/(authorized)/(tabs)/home/_layout.tsx", + "hash": "12039244030940678028" + }, + { + "file": "app/(app)/(authorized)/(tabs)/home/details.tsx", + "hash": "4483067426556258949" + }, + { + "file": "app/(app)/(authorized)/(tabs)/home/index.tsx", + "hash": "10151636406867198793" + }, + { + "file": "app/(app)/(authorized)/(tabs)/settings/_layout.tsx", + "hash": "12039244030940678028" + }, + { + "file": "app/(app)/(authorized)/(tabs)/settings/index.tsx", + "hash": "14078863721716229184" + }, + { + "file": "app/(app)/(authorized)/_layout.tsx", + "hash": "13495600574558907509" + }, + { + "file": "app/(app)/(authorized)/big-form.tsx", + "hash": "8243729862376180640" + }, + { + "file": "app/(app)/(common)/blog.tsx", + "hash": "2111459794174140336" + }, + { + "file": "app/(app)/(modals)/_layout.tsx", + "hash": "9497547590693834669" + }, + { + "file": "app/(app)/(modals)/application-info.tsx", + "hash": "10808360863473583457" + }, + { + "file": "app/(app)/(not-authorized)/_layout.tsx", + "hash": "13176451877109339936" + }, + { + "file": "app/(app)/(not-authorized)/sign-in.tsx", + "hash": "5112874984883597760" + }, + { + "file": "app/(app)/(not-authorized)/sign-up.tsx", + "hash": "8158307425873478482" + }, + { + "file": "app/(app)/_layout.tsx", + "hash": "17929842024264486116" + }, + { + "file": "app/+html.tsx", + "hash": "17244293808408072149" + }, + { + "file": "app/[...unmatched].tsx", + "hash": "12233292659150683715" + }, + { + "file": "app/_layout.tsx", + "hash": "10639769468827773526" + }, + { + "file": "app/index.tsx", + "hash": "13198455955292342476" + }, + { + "file": "assets/figma/variables.json", + "hash": "10207225446290554705" + }, + { + "file": "assets/fonts/Lato_Black.ttf", + "hash": "7554918420529320063" + }, + { + "file": "assets/fonts/Lato_Bold.ttf", + "hash": "3297032094754642625" + }, + { + "file": "assets/fonts/Lato_Light.ttf", + "hash": "11662692782042457121" + }, + { + "file": "assets/fonts/Lato_Regular.ttf", + "hash": "3318709706417761337" + }, + { + "file": "assets/fonts/Lato_Thin.ttf", + "hash": "10106614687229089345" + }, + { + "file": "assets/icomoon/icomoon.ttf", + "hash": "607006765776686889" + }, + { + "file": "assets/icomoon/selection.json", + "hash": "10726602406530237231" + }, + { + "file": "assets/icons/android/adaptive-icon-production.png", + "hash": "16328803799443571359" + }, + { + "file": "assets/icons/android/adaptive-icon-qa.png", + "hash": "16328803799443571359" + }, + { + "file": "assets/icons/android/adaptive-icon-staging.png", + "hash": "16328803799443571359" + }, + { + "file": "assets/icons/ios/icon-production.png", + "hash": "3705425919829894958" + }, + { + "file": "assets/icons/ios/icon-qa.png", + "hash": "3705425919829894958" + }, + { + "file": "assets/icons/ios/icon-staging.png", + "hash": "3705425919829894958" + }, + { + "file": "assets/icons/web/favicon-production.png", + "hash": "10556792184362654649" + }, + { + "file": "assets/icons/web/favicon-qa.png", + "hash": "10556792184362654649" + }, + { + "file": "assets/icons/web/favicon-staging.png", + "hash": "10556792184362654649" + }, + { + "file": "assets/languages.json", + "hash": "12362774187921168980" + }, + { + "file": "assets/logo-dark.png", + "hash": "13514093848832008410" + }, + { + "file": "assets/logo-light.png", + "hash": "15112035124529429355" + }, + { + "file": "assets/logo/logo-full-dark.png", + "hash": "15578919071920371328" + }, + { + "file": "assets/logo/logo-full-light.png", + "hash": "14451461565546478129" + }, + { + "file": "assets/logo/logo-sygnet-dark.png", + "hash": "9290399853222058284" + }, + { + "file": "assets/logo/logo-sygnet-light.png", + "hash": "9798056798915001847" + }, + { + "file": "assets/splash.png", + "hash": "6261865686403574905" + }, + { + "file": "assets/tutorials/demo-dark.png", + "hash": "11372818248951908104" + }, + { + "file": "assets/tutorials/demo-light.png", + "hash": "9357227069134945412" + }, + { + "file": "assets/tutorials/demo-web-dark.png", + "hash": "5916620377625467470" + }, + { + "file": "assets/tutorials/demo-web-light.png", + "hash": "2227645904507164850" + }, + { + "file": "assets/tutorials/demo.mp4", + "hash": "10464491032565430919" + }, + { + "file": "babel.config.js", + "hash": "17665124311381491054" + }, + { + "file": "declaration.d.ts", + "hash": "8020384496060713473" + }, + { + "file": "docs/.gitignore", + "hash": "16129839563478165234" + }, + { + "file": "docs/README.md", + "hash": "1980246878577320622" + }, + { + "file": "docs/babel.config.js", + "hash": "12603636193646100930" + }, + { + "file": "docs/docs/bootstrap/BOOTSTRAP_INTRO.md", + "hash": "4484937867077512180" + }, + { + "file": "docs/docs/bootstrap/BOOTSTRAP_TESTING.mdx", + "hash": "1350098321983269063" + }, + { + "file": "docs/docs/bootstrap/_category_.json", + "hash": "13240284551415435057" + }, + { + "file": "docs/docs/deploy/DEPLOY_ANDROID.md", + "hash": "2986211801325424892" + }, + { + "file": "docs/docs/deploy/DEPLOY_BOTH.md", + "hash": "13067729267896144606" + }, + { + "file": "docs/docs/deploy/DEPLOY_EXPO_GO.md", + "hash": "10583554073010044387" + }, + { + "file": "docs/docs/deploy/DEPLOY_INTRO.md", + "hash": "11886934227619605334" + }, + { + "file": "docs/docs/deploy/DEPLOY_IOS.md", + "hash": "15340626339076892401" + }, + { + "file": "docs/docs/deploy/DEPLOY_UPDATE.md", + "hash": "5956395428756511226" + }, + { + "file": "docs/docs/deploy/_category_.json", + "hash": "17751302214829613621" + }, + { + "file": "docs/docs/tutorials/DOPPLER_CONFIG.mdx", + "hash": "13965575952127238790" + }, + { + "file": "docs/docs/tutorials/ICONS.md", + "hash": "3237544788124598942" + }, + { + "file": "docs/docs/tutorials/JOTAI.md", + "hash": "15447829528394957174" + }, + { + "file": "docs/docs/tutorials/NOTIFICATIONS_SETUP.md", + "hash": "152614396336684863" + }, + { + "file": "docs/docs/tutorials/_category_.json", + "hash": "7760577911856148779" + }, + { + "file": "docs/docusaurus.config.ts", + "hash": "94846999672700562" + }, + { + "file": "docs/package.json", + "hash": "5396909740897104622" + }, + { + "file": "docs/sidebars.ts", + "hash": "13566122366347499334" + }, + { + "file": "docs/src/components/Details.tsx", + "hash": "4972155526725104325" + }, + { + "file": "docs/src/components/HomepageFeatures/index.tsx", + "hash": "150496967724314727" + }, + { + "file": "docs/src/components/HomepageFeatures/styles.module.css", + "hash": "14149773169115351739" + }, + { + "file": "docs/src/css/custom.css", + "hash": "9203620918389163801" + }, + { + "file": "docs/src/pages/index.module.css", + "hash": "2272732276868299116" + }, + { + "file": "docs/src/pages/index.tsx", + "hash": "1201541901040548810" + }, + { + "file": "docs/src/pages/markdown-page.md", + "hash": "2637912770613796076" + }, + { + "file": "docs/static/.nojekyll", + "hash": "3244421341483603138" + }, + { + "file": "docs/static/img/android_accept_invite.png", + "hash": "15006715016788752032" + }, + { + "file": "docs/static/img/android_account.png", + "hash": "1792977879323533070" + }, + { + "file": "docs/static/img/android_builds.png", + "hash": "13343318192199550595" + }, + { + "file": "docs/static/img/android_choose_testers.png", + "hash": "13787676269497787839" + }, + { + "file": "docs/static/img/android_confirm_rollout.png", + "hash": "2014629161281800031" + }, + { + "file": "docs/static/img/android_copy_link.png", + "hash": "18012515418866719694" + }, + { + "file": "docs/static/img/android_create_button.png", + "hash": "15827610770391758952" + }, + { + "file": "docs/static/img/android_create_form.png", + "hash": "16163694221239684758" + }, + { + "file": "docs/static/img/android_download.png", + "hash": "15290388595532032567" + }, + { + "file": "docs/static/img/android_install_app.png", + "hash": "18307443302547338546" + }, + { + "file": "docs/static/img/android_new_release.png", + "hash": "7146021066903146323" + }, + { + "file": "docs/static/img/android_pick_build.png", + "hash": "4428540443733486555" + }, + { + "file": "docs/static/img/android_review_release.png", + "hash": "15866338507015279430" + }, + { + "file": "docs/static/img/android_start_rollout.png", + "hash": "5853161308600097681" + }, + { + "file": "docs/static/img/android_testers_tab.png", + "hash": "13680480268630284692" + }, + { + "file": "docs/static/img/android_upload_binary.png", + "hash": "16422790610867316287" + }, + { + "file": "docs/static/img/androind_internal_testing.png", + "hash": "15376765401758944890" + }, + { + "file": "docs/static/img/bootstrap_eas_id.png", + "hash": "4362398687102136271" + }, + { + "file": "docs/static/img/bootstrap_owner.png", + "hash": "1674509474584214180" + }, + { + "file": "docs/static/img/bootstrap_slug.png", + "hash": "11176851495548021733" + }, + { + "file": "docs/static/img/check-last-release-date.png", + "hash": "7915502638987240509" + }, + { + "file": "docs/static/img/deploy_add_button.png", + "hash": "17770846762481172581" + }, + { + "file": "docs/static/img/deploy_apps.png", + "hash": "567558839155423744" + }, + { + "file": "docs/static/img/deploy_new_app.png", + "hash": "10854539621982586537" + }, + { + "file": "docs/static/img/deploy_new_form.png", + "hash": "11973629579023909705" + }, + { + "file": "docs/static/img/docusaurus-social-card.jpg", + "hash": "11663222046504176426" + }, + { + "file": "docs/static/img/docusaurus.png", + "hash": "11805897491343913808" + }, + { + "file": "docs/static/img/doppler_access_confirm.png", + "hash": "7385558227572301296" + }, + { + "file": "docs/static/img/doppler_access_copy.png", + "hash": "8455686693359253463" + }, + { + "file": "docs/static/img/doppler_access_generate.png", + "hash": "11308716166852131036" + }, + { + "file": "docs/static/img/doppler_access_name.png", + "hash": "4373948471998351844" + }, + { + "file": "docs/static/img/doppler_access_tab.png", + "hash": "14600252940533528347" + }, + { + "file": "docs/static/img/doppler_create_workspace.png", + "hash": "10871064069389164357" + }, + { + "file": "docs/static/img/doppler_envirnoments.png", + "hash": "7008817338073770528" + }, + { + "file": "docs/static/img/doppler_open_dropdown.png", + "hash": "10890199977916883965" + }, + { + "file": "docs/static/img/doppler_project_button.png", + "hash": "17770548224784006611" + }, + { + "file": "docs/static/img/doppler_project_confirm.jpg", + "hash": "7457495518769740177" + }, + { + "file": "docs/static/img/doppler_project_name.png", + "hash": "11113195125055716063" + }, + { + "file": "docs/static/img/doppler_project_select.png", + "hash": "7412289783462138044" + }, + { + "file": "docs/static/img/doppler_secret_add.png", + "hash": "4959334712072025888" + }, + { + "file": "docs/static/img/doppler_secret_confirm.png", + "hash": "7355368474016303434" + }, + { + "file": "docs/static/img/doppler_secret_list.png", + "hash": "14145228324317888126" + }, + { + "file": "docs/static/img/doppler_secret_more.png", + "hash": "6688005562919132833" + }, + { + "file": "docs/static/img/doppler_secrets_save.png", + "hash": "9916111659479849719" + }, + { + "file": "docs/static/img/doppler_workspace_button.png", + "hash": "16753907838694160833" + }, + { + "file": "docs/static/img/doppler_workspace_name.jpg", + "hash": "16909953108456155117" + }, + { + "file": "docs/static/img/expo_all.png", + "hash": "16933781359282221891" + }, + { + "file": "docs/static/img/expo_create.png", + "hash": "9477563108672055439" + }, + { + "file": "docs/static/img/expo_new.png", + "hash": "5138242439308194062" + }, + { + "file": "docs/static/img/expo_select.jpg", + "hash": "7874643677978894073" + }, + { + "file": "docs/static/img/favicon.ico", + "hash": "12887840092079912286" + }, + { + "file": "docs/static/img/github-repository-template.png", + "hash": "8564193000062028816" + }, + { + "file": "docs/static/img/logo-dark.png", + "hash": "13514093848832008410" + }, + { + "file": "docs/static/img/logo-light.png", + "hash": "15112035124529429355" + }, + { + "file": "docs/static/img/logo.svg", + "hash": "15756779054106865036" + }, + { + "file": "docs/static/img/undraw_docusaurus_mountain.svg", + "hash": "14081778507541877421" + }, + { + "file": "docs/static/img/undraw_docusaurus_react.svg", + "hash": "17162343818337932230" + }, + { + "file": "docs/static/img/undraw_docusaurus_tree.svg", + "hash": "12684630426846910715" + }, + { + "file": "docs/tsconfig.json", + "hash": "6554115139338757959" + }, + { + "file": "docs/yarn.lock", + "hash": "1344615037763403702" + }, + { + "file": "eas.json", + "hash": "12069267315941841789" + }, + { + "file": "jest.config.json", + "hash": "15973312349008245544" + }, + { + "file": "jest.setup.js", + "hash": "10976856620478355139" + }, + { + "file": "package.json", + "hash": "16184325745217966966" + }, + { + "file": "patches/react-native-keyboard-aware-scroll-view+0.9.5.patch", + "hash": "17037331704880684500" + }, + { + "file": "scripts/README.md", + "hash": "1676246788836216293" + }, + { + "file": "scripts/bootstrap.js", + "hash": "8658370276024427710" + }, + { + "file": "scripts/contents/content.js", + "hash": "2461807724915314375" + }, + { + "file": "scripts/create_new_component.js", + "hash": "9183614266748780974" + }, + { + "file": "scripts/create_new_screen.js", + "hash": "7677799887541583668" + }, + { + "file": "scripts/generate_dotenv.sh", + "hash": "11294477836839082733" + }, + { + "file": "scripts/generate_icon_types.js", + "hash": "654432155340022283" + }, + { + "file": "scripts/generate_theme.js", + "hash": "8997467211765449347" + }, + { + "file": "scripts/upload_env.sh", + "hash": "5059767885715405099" + }, + { + "file": "scripts/utils.js", + "hash": "1598072878137162150" + }, + { + "file": "src/components/AppLoading.tsx", + "hash": "16957027588722365148" + }, + { + "file": "src/components/COMPONENTS.md", + "hash": "6011268020999452912" + }, + { + "file": "src/components/Header.tsx", + "hash": "9449303751552189110" + }, + { + "file": "src/components/KeyboardAwareScrollView.tsx", + "hash": "10641172719546107373" + }, + { + "file": "src/components/LandingHeader.tsx", + "hash": "15930464234146003677" + }, + { + "file": "src/components/LanguagePicker.tsx", + "hash": "1005226961279146695" + }, + { + "file": "src/components/Modal.tsx", + "hash": "4809490722064940886" + }, + { + "file": "src/components/README.md", + "hash": "5503919720339567747" + }, + { + "file": "src/components/StatusBar.tsx", + "hash": "4122253449852050734" + }, + { + "file": "src/components/Version.tsx", + "hash": "5818484172636431138" + }, + { + "file": "src/components/atoms/Absolute.tsx", + "hash": "15082349672358232284" + }, + { + "file": "src/components/atoms/Box.tsx", + "hash": "2209749632546129938" + }, + { + "file": "src/components/atoms/BricksLoader.tsx", + "hash": "12716640090634482544" + }, + { + "file": "src/components/atoms/BubblesLoader.tsx", + "hash": "9496402640470220190" + }, + { + "file": "src/components/atoms/Button/Button.test.tsx", + "hash": "1754326576086755288" + }, + { + "file": "src/components/atoms/Button/Button.tsx", + "hash": "15406773606074306271" + }, + { + "file": "src/components/atoms/Button/__snapshots__/Button.test.tsx.snap", + "hash": "13036643887006940581" + }, + { + "file": "src/components/atoms/Button/index.ts", + "hash": "11936205126108115086" + }, + { + "file": "src/components/atoms/Center.tsx", + "hash": "3682428934238380040" + }, + { + "file": "src/components/atoms/Checkbox.tsx", + "hash": "9862373001395780173" + }, + { + "file": "src/components/atoms/CircleLoader.tsx", + "hash": "5121887556815852972" + }, + { + "file": "src/components/atoms/Column.tsx", + "hash": "18281641675047479893" + }, + { + "file": "src/components/atoms/DiskLoader.tsx", + "hash": "15004111668246313188" + }, + { + "file": "src/components/atoms/FormErrorMessage.tsx", + "hash": "8166068283668867839" + }, + { + "file": "src/components/atoms/FormLabel.tsx", + "hash": "15265558975048493660" + }, + { + "file": "src/components/atoms/GradientBox.tsx", + "hash": "16645400007287825470" + }, + { + "file": "src/components/atoms/Icon.tsx", + "hash": "726707270198572327" + }, + { + "file": "src/components/atoms/Input.tsx", + "hash": "6579095480279518141" + }, + { + "file": "src/components/atoms/Loader.tsx", + "hash": "4165066725013499724" + }, + { + "file": "src/components/atoms/Row.tsx", + "hash": "4797531319416598820" + }, + { + "file": "src/components/atoms/ScrollView.tsx", + "hash": "16842807677653704023" + }, + { + "file": "src/components/atoms/Select.tsx", + "hash": "14864352869405059625" + }, + { + "file": "src/components/atoms/Spacer.tsx", + "hash": "2958601898866063681" + }, + { + "file": "src/components/atoms/Text/Text.test.tsx", + "hash": "4070838192421154686" + }, + { + "file": "src/components/atoms/Text/Text.tsx", + "hash": "8239194005027975136" + }, + { + "file": "src/components/atoms/Text/index.ts", + "hash": "13696411482562354027" + }, + { + "file": "src/components/atoms/Touchables/Pressable.tsx", + "hash": "4745640857051940509" + }, + { + "file": "src/components/atoms/Touchables/Touchable.tsx", + "hash": "15476864584972792645" + }, + { + "file": "src/components/atoms/Touchables/index.ts", + "hash": "13481069130617450418" + }, + { + "file": "src/components/atoms/Touchables/useFocus.ts", + "hash": "845933541372790663" + }, + { + "file": "src/components/atoms/Touchables/useHover.ts", + "hash": "12035457070430245906" + }, + { + "file": "src/components/atoms/Touchables/useIsPressed.ts", + "hash": "4387371735535821645" + }, + { + "file": "src/components/atoms/index.ts", + "hash": "15710350753459796208" + }, + { + "file": "src/components/atoms/types.ts", + "hash": "3486614015438132425" + }, + { + "file": "src/components/bottomSheets/BottomSheet.tsx", + "hash": "3454253101716571605" + }, + { + "file": "src/components/bottomSheets/BottomSheet.web.tsx", + "hash": "9028090935835934306" + }, + { + "file": "src/components/bottomSheets/BottomSheetFlatList.tsx", + "hash": "403466135632793510" + }, + { + "file": "src/components/bottomSheets/BottomSheetFlatList.web.tsx", + "hash": "2184984987472540579" + }, + { + "file": "src/components/bottomSheets/BottomSheetHeader.tsx", + "hash": "5791280130042782721" + }, + { + "file": "src/components/bottomSheets/index.tsx", + "hash": "7549245674089521705" + }, + { + "file": "src/components/bottomSheets/useBottomSheets.tsx", + "hash": "17016893928484498332" + }, + { + "file": "src/components/index.ts", + "hash": "10157556475702070247" + }, + { + "file": "src/components/molecules/Field/Checkbox.tsx", + "hash": "9460852231745840142" + }, + { + "file": "src/components/molecules/Field/Input.tsx", + "hash": "14292870419888248000" + }, + { + "file": "src/components/molecules/Field/Radio.tsx", + "hash": "3977126159990026348" + }, + { + "file": "src/components/molecules/Field/Select.tsx", + "hash": "605225748308942294" + }, + { + "file": "src/components/molecules/Field/index.tsx", + "hash": "187339777244965983" + }, + { + "file": "src/components/molecules/Field/types.ts", + "hash": "6414120266795182693" + }, + { + "file": "src/components/molecules/MenuItem.tsx", + "hash": "9095027106494854145" + }, + { + "file": "src/components/molecules/TextArea.tsx", + "hash": "14733098802128805733" + }, + { + "file": "src/components/molecules/index.ts", + "hash": "5360256293546580689" + }, + { + "file": "src/components/organisms/ControlledField/Checkbox.tsx", + "hash": "1524884679124226168" + }, + { + "file": "src/components/organisms/ControlledField/Input.tsx", + "hash": "13278847575248279830" + }, + { + "file": "src/components/organisms/ControlledField/Radio.tsx", + "hash": "18393524301091813263" + }, + { + "file": "src/components/organisms/ControlledField/Select.tsx", + "hash": "14026946301869219292" + }, + { + "file": "src/components/organisms/ControlledField/index.tsx", + "hash": "1079826559500969069" + }, + { + "file": "src/components/organisms/ControlledField/types.ts", + "hash": "9957489760953806839" + }, + { + "file": "src/components/organisms/Menu/index.tsx", + "hash": "10544061452708431200" + }, + { + "file": "src/components/organisms/index.ts", + "hash": "16675575206616089652" + }, + { + "file": "src/components/utils/generateSize.test.ts", + "hash": "15084989583075556243" + }, + { + "file": "src/components/utils/generateSize.ts", + "hash": "7625013241353024001" + }, + { + "file": "src/components/utils/generateStyledComponent.tsx", + "hash": "12382388355550177584" + }, + { + "file": "src/components/utils/generateStyledSystem.ts", + "hash": "15180469589750946925" + }, + { + "file": "src/components/utils/index.ts", + "hash": "15227454944847285333" + }, + { + "file": "src/constants/asyncStorageKeys.test.ts", + "hash": "4471249081264990977" + }, + { + "file": "src/constants/asyncStorageKeys.ts", + "hash": "7530999383319886295" + }, + { + "file": "src/constants/breakpoints.ts", + "hash": "5932455886761320177" + }, + { + "file": "src/constants/buttonVariants.ts", + "hash": "17278881127761522230" + }, + { + "file": "src/constants/colorSchemes.ts", + "hash": "8311404195254594842" + }, + { + "file": "src/constants/colors.ts", + "hash": "7703790479813226526" + }, + { + "file": "src/constants/env.ts", + "hash": "15694237031158292113" + }, + { + "file": "src/constants/environments.ts", + "hash": "6462925094621866783" + }, + { + "file": "src/constants/images.ts", + "hash": "15863656951953578488" + }, + { + "file": "src/constants/index.ts", + "hash": "11357346957528778797" + }, + { + "file": "src/constants/navigation.ts", + "hash": "10166447341881299191" + }, + { + "file": "src/constants/regex.ts", + "hash": "642166028200098242" + }, + { + "file": "src/constants/textVariants.ts", + "hash": "11986419058060264126" + }, + { + "file": "src/constants/theme.ts", + "hash": "15380751935719025447" + }, + { + "file": "src/constants/time.ts", + "hash": "1339200255929519859" + }, + { + "file": "src/contexts/ColorSchemeContext.ts", + "hash": "8868644817397954028" + }, + { + "file": "src/contexts/NotificationContext.ts", + "hash": "17378180327217406818" + }, + { + "file": "src/contexts/index.ts", + "hash": "9071452686146101800" + }, + { + "file": "src/enums/index.ts", + "hash": "6171415267444698980" + }, + { + "file": "src/enums/queryKeys.ts", + "hash": "11356421190365898588" + }, + { + "file": "src/hooks/forms/index.ts", + "hash": "17271927819339279123" + }, + { + "file": "src/hooks/forms/useSignInForm.ts", + "hash": "13333952302054271000" + }, + { + "file": "src/hooks/forms/useSignUpForm.ts", + "hash": "15595907409574925197" + }, + { + "file": "src/hooks/forms/useTestForm.ts", + "hash": "15264830886587295728" + }, + { + "file": "src/hooks/index.ts", + "hash": "7560712131694712327" + }, + { + "file": "src/hooks/loaders/index.ts", + "hash": "13806526488025589789" + }, + { + "file": "src/hooks/loaders/useBricksLoader.ts", + "hash": "13177841413020729291" + }, + { + "file": "src/hooks/loaders/useBubblesLoader.ts", + "hash": "10158714878564656459" + }, + { + "file": "src/hooks/loaders/useCircleLoader.ts", + "hash": "17952711721268113104" + }, + { + "file": "src/hooks/navigation/index.ts", + "hash": "10796279288091477437" + }, + { + "file": "src/hooks/navigation/useNavigationStatePersistence.ts", + "hash": "1513941764225445974" + }, + { + "file": "src/hooks/navigation/useNavigationTheme.ts", + "hash": "6501358688836046348" + }, + { + "file": "src/hooks/navigation/usePreventGoBack.ts", + "hash": "5328265897035839152" + }, + { + "file": "src/hooks/navigation/useRouterNotifications.ts", + "hash": "18117056565988349538" + }, + { + "file": "src/hooks/navigation/useScreenOptions.ts", + "hash": "5785238465622711283" + }, + { + "file": "src/hooks/navigation/useScreenTracker.ts", + "hash": "17428313843311903069" + }, + { + "file": "src/hooks/navigation/useWeb.ts", + "hash": "3322673041542335890" + }, + { + "file": "src/hooks/useAppStateActive.ts", + "hash": "7592725653435242278" + }, + { + "file": "src/hooks/useBoolean.ts", + "hash": "15064134222257154647" + }, + { + "file": "src/hooks/useCachedResources.ts", + "hash": "3101295520434892053" + }, + { + "file": "src/hooks/useKeyboardHeight.ts", + "hash": "1053054474544428777" + }, + { + "file": "src/hooks/useSafeAreaInsetsStyle.ts", + "hash": "8852044882753298993" + }, + { + "file": "src/hooks/useSecurePassword.ts", + "hash": "857331871247482477" + }, + { + "file": "src/hooks/useTheme.ts", + "hash": "6901636005813436918" + }, + { + "file": "src/hooks/useTimestamp.ts", + "hash": "15240857280726995402" + }, + { + "file": "src/hooks/useToggle.ts", + "hash": "11461537781491476290" + }, + { + "file": "src/i18n/i18nForTests.ts", + "hash": "4666672696951147844" + }, + { + "file": "src/i18n/index.ts", + "hash": "18299406002291098741" + }, + { + "file": "src/i18n/languageDetector.ts", + "hash": "463775853539731425" + }, + { + "file": "src/i18n/translations/en.json", + "hash": "1608814946585324347" + }, + { + "file": "src/i18n/translations/pl.json", + "hash": "4869622452139388861" + }, + { + "file": "src/logic/AuthLogic.tsx", + "hash": "16049493280559033942" + }, + { + "file": "src/logic/index.ts", + "hash": "3244421341483603138" + }, + { + "file": "src/navigation/tabNavigator/components/AppHeader.tsx", + "hash": "7715869571813526605" + }, + { + "file": "src/navigation/tabNavigator/components/BottomBar.tsx", + "hash": "14073665193417913684" + }, + { + "file": "src/navigation/tabNavigator/components/HeaderLogo.tsx", + "hash": "2864502147417342306" + }, + { + "file": "src/navigation/tabNavigator/components/SideBar.tsx", + "hash": "12045534224905606366" + }, + { + "file": "src/navigation/tabNavigator/components/SideBarTabItem.tsx", + "hash": "16392445940914216663" + }, + { + "file": "src/navigation/tabNavigator/components/TabBarItemWrapper.tsx", + "hash": "5590993292478114218" + }, + { + "file": "src/navigation/tabNavigator/components/index.ts", + "hash": "4213473592452267957" + }, + { + "file": "src/navigation/tabNavigator/config.ts", + "hash": "11795598356857279134" + }, + { + "file": "src/navigation/tabNavigator/hooks/index.ts", + "hash": "12338499285074412974" + }, + { + "file": "src/navigation/tabNavigator/hooks/useContextRoute.ts", + "hash": "9217256906281357223" + }, + { + "file": "src/navigation/tabNavigator/hooks/useIsTabSelected.ts", + "hash": "13458514500615389471" + }, + { + "file": "src/navigation/tabNavigator/hooks/useLinkBuilder.tsx", + "hash": "1525764324240210019" + }, + { + "file": "src/navigation/tabNavigator/hooks/useNavigatorContext.ts", + "hash": "1588641436443923639" + }, + { + "file": "src/navigation/tabNavigator/hooks/useWidth.ts", + "hash": "2858017802317839026" + }, + { + "file": "src/navigation/tabNavigator/navigator.tsx", + "hash": "1860831050691747412" + }, + { + "file": "src/navigation/tabNavigator/tab-slot.tsx", + "hash": "10731003404175489325" + }, + { + "file": "src/navigation/tabNavigator/utils/cns.ts", + "hash": "7193914733798713423" + }, + { + "file": "src/navigation/tabNavigator/utils/index.ts", + "hash": "1781913147302345443" + }, + { + "file": "src/providers/ColorSchemeProvider.tsx", + "hash": "16444078799372466057" + }, + { + "file": "src/providers/NotificatedProvider.tsx", + "hash": "11207403325919307749" + }, + { + "file": "src/providers/NotificationProvider.tsx", + "hash": "5349318008092754176" + }, + { + "file": "src/providers/Providers.tsx", + "hash": "4762181393690134386" + }, + { + "file": "src/providers/index.ts", + "hash": "10523175739397548776" + }, + { + "file": "src/query-hooks/index.ts", + "hash": "15602501319673947274" + }, + { + "file": "src/query-hooks/useGetData_EXAMPLE.ts", + "hash": "14130072731168168391" + }, + { + "file": "src/screens/ApplicationInfoScreen.tsx", + "hash": "5492842909904945749" + }, + { + "file": "src/screens/BlogScreen.tsx", + "hash": "11952207058013874274" + }, + { + "file": "src/screens/ColorsScreen.tsx", + "hash": "9053424676138748193" + }, + { + "file": "src/screens/ComponentsScreen.tsx", + "hash": "15924000592874024465" + }, + { + "file": "src/screens/DataFromBeScreen_EXAMPLE.tsx", + "hash": "634309004082714263" + }, + { + "file": "src/screens/DetailsScreen.tsx", + "hash": "3745291865829972765" + }, + { + "file": "src/screens/ExamplesScreen.tsx", + "hash": "10947535736371494888" + }, + { + "file": "src/screens/HomeScreen.tsx", + "hash": "9754377687014910402" + }, + { + "file": "src/screens/LandingScreen.tsx", + "hash": "9801184363626554005" + }, + { + "file": "src/screens/NotFoundScreen.tsx", + "hash": "977280752402402679" + }, + { + "file": "src/screens/SettingsScreen.tsx", + "hash": "13834686244739681171" + }, + { + "file": "src/screens/SignInScreen.tsx", + "hash": "15952768680106274392" + }, + { + "file": "src/screens/SignUpScreen.tsx", + "hash": "3527040121555083461" + }, + { + "file": "src/screens/TestFormScreen.tsx", + "hash": "15783836185900241475" + }, + { + "file": "src/screens/TypographyScreen.tsx", + "hash": "3228241379119583240" + }, + { + "file": "src/screens/index.ts", + "hash": "8543781507251895919" + }, + { + "file": "src/services/MockedServerService.ts", + "hash": "9060057850251722088" + }, + { + "file": "src/services/NotificationService.ts", + "hash": "12211015062274649953" + }, + { + "file": "src/services/TokenService.ts", + "hash": "2655877949019559655" + }, + { + "file": "src/services/api/apiClient.ts", + "hash": "11240390962543035049" + }, + { + "file": "src/services/api/index.ts", + "hash": "12235305835072896869" + }, + { + "file": "src/services/index.ts", + "hash": "10875047377727947788" + }, + { + "file": "src/services/interceptors/injectToken.ts", + "hash": "8658116713546351419" + }, + { + "file": "src/services/requests/AnyService_EXAMPLE.ts", + "hash": "3559154686510975631" + }, + { + "file": "src/services/requests/index.ts", + "hash": "16798303174629640789" + }, + { + "file": "src/store/auth/authActions.ts", + "hash": "2386712367715131347" + }, + { + "file": "src/store/auth/authState.ts", + "hash": "8456598002970636079" + }, + { + "file": "src/store/auth/index.ts", + "hash": "16642586777905033591" + }, + { + "file": "src/store/index.ts", + "hash": "5029109546585808742" + }, + { + "file": "src/store/store.ts", + "hash": "10294035652390588528" + }, + { + "file": "src/styles/index.ts", + "hash": "8008331729337354469" + }, + { + "file": "src/styles/root-layout.module.scss", + "hash": "2060547991753715075" + }, + { + "file": "src/types/authForms.ts", + "hash": "386774086284532835" + }, + { + "file": "src/types/global.d.ts", + "hash": "635318313691600830" + }, + { + "file": "src/types/i18next.d.ts", + "hash": "13996001322736385261" + }, + { + "file": "src/types/icon.d.ts", + "hash": "911054344008657768" + }, + { + "file": "src/types/react-i18next.d.ts", + "hash": "4951087371925837478" + }, + { + "file": "src/types/testForm.ts", + "hash": "302751465239627241" + }, + { + "file": "src/types/theme.d.ts", + "hash": "17374553206506145675" + }, + { + "file": "src/types/todos.ts", + "hash": "14691166469154891111" + }, + { + "file": "src/utils/alert.ts", + "hash": "14971819840630424802" + }, + { + "file": "src/utils/checkForUpdates.ts", + "hash": "2803043772072222879" + }, + { + "file": "src/utils/convertEmToNumber.ts", + "hash": "11529947235485843624" + }, + { + "file": "src/utils/createGenericContext.ts", + "hash": "7541142818533258904" + }, + { + "file": "src/utils/getApiError.ts", + "hash": "4855170982144469794" + }, + { + "file": "src/utils/getColorValue.ts", + "hash": "10729707445928438651" + }, + { + "file": "src/utils/getFontWeight.ts", + "hash": "15653122983671892311" + }, + { + "file": "src/utils/getNavigator.ts", + "hash": "7357839614603048214" + }, + { + "file": "src/utils/hapticImpact.ts", + "hash": "13981120877608165312" + }, + { + "file": "src/utils/hex2rgba.ts", + "hash": "2958889430405488106" + }, + { + "file": "src/utils/index.ts", + "hash": "15356218109072174571" + }, + { + "file": "src/utils/noop.ts", + "hash": "7191457754250985784" + }, + { + "file": "src/utils/removeFalsyProperties.test.ts", + "hash": "18325594995088514473" + }, + { + "file": "src/utils/removeFalsyProperties.ts", + "hash": "14967616767506612799" + }, + { + "file": "src/utils/secureStore.tsx", + "hash": "6414282529903447870" + }, + { + "file": "src/utils/testUtils.tsx", + "hash": "17851167488228739794" + }, + { + "file": "src/utils/wait.ts", + "hash": "8105682325221601677" + }, + { + "file": "src/wdyr.ts", + "hash": "15734091208795798433" + }, + { + "file": "templates/component_template.tsx", + "hash": "8999961463816009022" + }, + { + "file": "templates/pull_request_template.md", + "hash": "17152142272450741057" + }, + { + "file": "templates/readme_template.md", + "hash": "101331792217002585" + }, + { + "file": "templates/screen_template.tsx", + "hash": "4023492766610837178" + }, + { + "file": "tsconfig.json", + "hash": "14701674480042683090" + }, + { + "file": "web/_redirects", + "hash": "7930790779227108493" + }, + { + "file": "webpack.config.js", + "hash": "465218852528784385" + }, + { + "file": "yarn.lock", + "hash": "8936136592604700" + } + ] + } +} diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash new file mode 100644 index 00000000..ef927b47 --- /dev/null +++ b/.nx/cache/lockfile.hash @@ -0,0 +1 @@ +263016385813637415 \ No newline at end of file diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json new file mode 100644 index 00000000..1bcc792d --- /dev/null +++ b/.nx/cache/parsed-lock-file.json @@ -0,0 +1,39279 @@ +{ + "externalNodes": { + "npm:@0no-co/graphql.web": { + "type": "npm", + "name": "npm:@0no-co/graphql.web", + "data": { + "version": "1.0.4", + "packageName": "@0no-co/graphql.web", + "hash": "sha512-W3ezhHGfO0MS1PtGloaTpg0PbaT8aZSmmaerL7idtU5F7oCI+uu25k+MsMS31BVFlp4aMkHSrNRxiD72IlK8TA==" + } + }, + "npm:@aashutoshrathi/word-wrap": { + "type": "npm", + "name": "npm:@aashutoshrathi/word-wrap", + "data": { + "version": "1.2.6", + "packageName": "@aashutoshrathi/word-wrap", + "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.1", + "packageName": "@ampproject/remapping", + "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" + } + }, + "npm:@babel/code-frame@7.10.4": { + "type": "npm", + "name": "npm:@babel/code-frame@7.10.4", + "data": { + "version": "7.10.4", + "packageName": "@babel/code-frame", + "hash": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.23.5", + "packageName": "@babel/code-frame", + "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.23.5", + "packageName": "@babel/compat-data", + "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.23.9", + "packageName": "@babel/core", + "hash": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.23.6", + "packageName": "@babel/generator", + "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.23.6", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" + } + }, + "npm:@babel/helper-create-class-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin", + "data": { + "version": "7.23.9", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" + } + }, + "npm:@babel/helper-define-polyfill-provider": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider", + "data": { + "version": "0.5.0", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==" + } + }, + "npm:@babel/helper-environment-visitor": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-function-name", + "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:@babel/helper-member-expression-to-functions": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.23.3", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" + } + }, + "npm:@babel/helper-optimise-call-expression": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@babel/helper-remap-async-to-generator": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" + } + }, + "npm:@babel/helper-replace-supers": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.23.4", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.23.5", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" + } + }, + "npm:@babel/helper-wrap-function": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.23.9", + "packageName": "@babel/helpers", + "hash": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.23.4", + "packageName": "@babel/highlight", + "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.23.9", + "packageName": "@babel/parser", + "hash": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "data": { + "version": "7.23.7", + "packageName": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "hash": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==" + } + }, + "npm:@babel/plugin-proposal-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-async-generator-functions", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-async-generator-functions", + "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" + } + }, + "npm:@babel/plugin-proposal-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-properties", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-class-properties", + "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + } + }, + "npm:@babel/plugin-proposal-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==" + } + }, + "npm:@babel/plugin-proposal-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-default-from", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-proposal-export-default-from", + "hash": "sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==" + } + }, + "npm:@babel/plugin-proposal-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", + "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + } + }, + "npm:@babel/plugin-proposal-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-numeric-separator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-numeric-separator", + "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" + } + }, + "npm:@babel/plugin-proposal-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-catch-binding", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-optional-catch-binding", + "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" + } + }, + "npm:@babel/plugin-proposal-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-chaining", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-optional-chaining", + "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object", + "data": { + "version": "7.21.0-placeholder-for-preset-env.2", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@babel/plugin-syntax-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@babel/plugin-syntax-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-default-from", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-export-default-from", + "hash": "sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@babel/plugin-syntax-flow": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-flow", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-flow", + "hash": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==" + } + }, + "npm:@babel/plugin-syntax-import-assertions": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" + } + }, + "npm:@babel/plugin-syntax-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" + } + }, + "npm:@babel/plugin-syntax-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-unicode-sets-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-syntax-unicode-sets-regex", + "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" + } + }, + "npm:@babel/plugin-transform-arrow-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" + } + }, + "npm:@babel/plugin-transform-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-generator-functions", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-transform-async-generator-functions", + "hash": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==" + } + }, + "npm:@babel/plugin-transform-async-to-generator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" + } + }, + "npm:@babel/plugin-transform-block-scoping": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" + } + }, + "npm:@babel/plugin-transform-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-class-properties", + "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" + } + }, + "npm:@babel/plugin-transform-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-static-block", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-class-static-block", + "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" + } + }, + "npm:@babel/plugin-transform-classes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes", + "data": { + "version": "7.23.8", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==" + } + }, + "npm:@babel/plugin-transform-computed-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" + } + }, + "npm:@babel/plugin-transform-destructuring": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" + } + }, + "npm:@babel/plugin-transform-dotall-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" + } + }, + "npm:@babel/plugin-transform-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dynamic-import", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-dynamic-import", + "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" + } + }, + "npm:@babel/plugin-transform-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-transform-export-namespace-from", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-export-namespace-from", + "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" + } + }, + "npm:@babel/plugin-transform-flow-strip-types": { + "type": "npm", + "name": "npm:@babel/plugin-transform-flow-strip-types", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-flow-strip-types", + "hash": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==" + } + }, + "npm:@babel/plugin-transform-for-of": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" + } + }, + "npm:@babel/plugin-transform-function-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" + } + }, + "npm:@babel/plugin-transform-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-transform-json-strings", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-json-strings", + "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" + } + }, + "npm:@babel/plugin-transform-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" + } + }, + "npm:@babel/plugin-transform-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-transform-logical-assignment-operators", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-logical-assignment-operators", + "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" + } + }, + "npm:@babel/plugin-transform-modules-amd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==" + } + }, + "npm:@babel/plugin-transform-modules-umd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" + } + }, + "npm:@babel/plugin-transform-new-target": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" + } + }, + "npm:@babel/plugin-transform-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-nullish-coalescing-operator", + "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" + } + }, + "npm:@babel/plugin-transform-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-numeric-separator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-numeric-separator", + "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" + } + }, + "npm:@babel/plugin-transform-object-assign": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-assign", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-object-assign", + "hash": "sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA==" + } + }, + "npm:@babel/plugin-transform-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-rest-spread", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-object-rest-spread", + "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" + } + }, + "npm:@babel/plugin-transform-object-super": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" + } + }, + "npm:@babel/plugin-transform-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-catch-binding", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-catch-binding", + "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" + } + }, + "npm:@babel/plugin-transform-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-chaining", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-chaining", + "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" + } + }, + "npm:@babel/plugin-transform-parameters": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" + } + }, + "npm:@babel/plugin-transform-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-methods", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-private-methods", + "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" + } + }, + "npm:@babel/plugin-transform-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-property-in-object", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-private-property-in-object", + "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" + } + }, + "npm:@babel/plugin-transform-property-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" + } + }, + "npm:@babel/plugin-transform-react-jsx-self": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-self", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-jsx-self", + "hash": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==" + } + }, + "npm:@babel/plugin-transform-react-jsx-source": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-source", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-jsx-source", + "hash": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==" + } + }, + "npm:@babel/plugin-transform-regenerator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" + } + }, + "npm:@babel/plugin-transform-reserved-words": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" + } + }, + "npm:@babel/plugin-transform-runtime": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" + } + }, + "npm:@babel/plugin-transform-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" + } + }, + "npm:@babel/plugin-transform-sticky-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" + } + }, + "npm:@babel/plugin-transform-template-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" + } + }, + "npm:@babel/plugin-transform-typeof-symbol": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" + } + }, + "npm:@babel/plugin-transform-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" + } + }, + "npm:@babel/plugin-transform-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-property-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-property-regex", + "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" + } + }, + "npm:@babel/plugin-transform-unicode-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" + } + }, + "npm:@babel/plugin-transform-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-sets-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-sets-regex", + "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" + } + }, + "npm:@babel/preset-env": { + "type": "npm", + "name": "npm:@babel/preset-env", + "data": { + "version": "7.23.9", + "packageName": "@babel/preset-env", + "hash": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==" + } + }, + "npm:@babel/preset-flow": { + "type": "npm", + "name": "npm:@babel/preset-flow", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-flow", + "hash": "sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==" + } + }, + "npm:@babel/preset-modules": { + "type": "npm", + "name": "npm:@babel/preset-modules", + "data": { + "version": "0.1.6-no-external-plugins", + "packageName": "@babel/preset-modules", + "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" + } + }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-react", + "hash": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==" + } + }, + "npm:@babel/preset-typescript": { + "type": "npm", + "name": "npm:@babel/preset-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-typescript", + "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" + } + }, + "npm:@babel/register": { + "type": "npm", + "name": "npm:@babel/register", + "data": { + "version": "7.23.7", + "packageName": "@babel/register", + "hash": "sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.9", + "packageName": "@babel/runtime", + "hash": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.23.9", + "packageName": "@babel/template", + "hash": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.23.9", + "packageName": "@babel/traverse", + "hash": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.23.9", + "packageName": "@babel/types", + "hash": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==" + } + }, + "npm:@bacons/react-views": { + "type": "npm", + "name": "npm:@bacons/react-views", + "data": { + "version": "1.1.3", + "packageName": "@bacons/react-views", + "hash": "sha512-aLipQAkQKRzG64e28XHBpByyBPfANz0A6POqYHGyryHizG9vLCLNQwLe8gwFANEMBWW2Mx5YdQ7RkNdQMQ+CXQ==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@egjs/hammerjs": { + "type": "npm", + "name": "npm:@egjs/hammerjs", + "data": { + "version": "2.0.17", + "packageName": "@egjs/hammerjs", + "hash": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==" + } + }, + "npm:@emotion/is-prop-valid": { + "type": "npm", + "name": "npm:@emotion/is-prop-valid", + "data": { + "version": "0.8.8", + "packageName": "@emotion/is-prop-valid", + "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" + } + }, + "npm:@emotion/memoize": { + "type": "npm", + "name": "npm:@emotion/memoize", + "data": { + "version": "0.7.4", + "packageName": "@emotion/memoize", + "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:@eslint-community/regexpp": { + "type": "npm", + "name": "npm:@eslint-community/regexpp", + "data": { + "version": "4.10.0", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "2.1.4", + "packageName": "@eslint/eslintrc", + "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" + } + }, + "npm:@eslint/js": { + "type": "npm", + "name": "npm:@eslint/js", + "data": { + "version": "8.56.0", + "packageName": "@eslint/js", + "hash": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==" + } + }, + "npm:@expo/bunyan": { + "type": "npm", + "name": "npm:@expo/bunyan", + "data": { + "version": "4.0.0", + "packageName": "@expo/bunyan", + "hash": "sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==" + } + }, + "npm:@expo/cli@0.17.2": { + "type": "npm", + "name": "npm:@expo/cli@0.17.2", + "data": { + "version": "0.17.2", + "packageName": "@expo/cli", + "hash": "sha512-0uJGuiV8XGjsTGnga95CiCZAtAymtQlo8FxRBp7AjLKpG/oTXG7+s368H7ZIC+XQBsvWx83iv+HyXQfOtPbsxQ==" + } + }, + "npm:@expo/code-signing-certificates": { + "type": "npm", + "name": "npm:@expo/code-signing-certificates", + "data": { + "version": "0.0.5", + "packageName": "@expo/code-signing-certificates", + "hash": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==" + } + }, + "npm:@expo/config-plugins": { + "type": "npm", + "name": "npm:@expo/config-plugins", + "data": { + "version": "7.8.4", + "packageName": "@expo/config-plugins", + "hash": "sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==" + } + }, + "npm:@expo/config-plugins@5.0.4": { + "type": "npm", + "name": "npm:@expo/config-plugins@5.0.4", + "data": { + "version": "5.0.4", + "packageName": "@expo/config-plugins", + "hash": "sha512-vzUcVpqOMs3h+hyRdhGwk+eGIOhXa5xYdd92yO17RMNHav3v/+ekMbs7XA2c3lepMO8Yd4/5hqmRw9ZTL6jGzg==" + } + }, + "npm:@expo/config-types@47.0.0": { + "type": "npm", + "name": "npm:@expo/config-types@47.0.0", + "data": { + "version": "47.0.0", + "packageName": "@expo/config-types", + "hash": "sha512-r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g==" + } + }, + "npm:@expo/config-types": { + "type": "npm", + "name": "npm:@expo/config-types", + "data": { + "version": "50.0.0", + "packageName": "@expo/config-types", + "hash": "sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==" + } + }, + "npm:@expo/config": { + "type": "npm", + "name": "npm:@expo/config", + "data": { + "version": "8.5.4", + "packageName": "@expo/config", + "hash": "sha512-ggOLJPHGzJSJHVBC1LzwXwR6qUn8Mw7hkc5zEKRIdhFRuIQ6s2FE4eOvP87LrNfDF7eZGa6tJQYsiHSmZKG+8Q==" + } + }, + "npm:@expo/config@7.0.3": { + "type": "npm", + "name": "npm:@expo/config@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "@expo/config", + "hash": "sha512-joVtB5o+NF40Tmsdp65UzryRtbnCuMbXkVO4wJnNJO4aaK0EYLdHCYSewORVqNcDfGN0LphQr8VTG2npbd9CJA==" + } + }, + "npm:@expo/configure-splash-screen": { + "type": "npm", + "name": "npm:@expo/configure-splash-screen", + "data": { + "version": "0.6.0", + "packageName": "@expo/configure-splash-screen", + "hash": "sha512-4DyPoNXJqx9bN4nEwF3HQreo//ECu7gDe1Xor3dnnzFm9P/VDxAKdbEhA0n+R6fgkNfT2onVHWijqvdpTS3Xew==" + } + }, + "npm:@expo/devcert": { + "type": "npm", + "name": "npm:@expo/devcert", + "data": { + "version": "1.1.0", + "packageName": "@expo/devcert", + "hash": "sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==" + } + }, + "npm:@expo/env": { + "type": "npm", + "name": "npm:@expo/env", + "data": { + "version": "0.2.1", + "packageName": "@expo/env", + "hash": "sha512-deZmRS7Dvp18VM8s559dq/ZjPlV1D9vtLoLXwHmCK/JYOvtNptdKsfxcWjI7ewmo6ln2PqgNI9HRI74q6Wk2eA==" + } + }, + "npm:@expo/fingerprint": { + "type": "npm", + "name": "npm:@expo/fingerprint", + "data": { + "version": "0.6.0", + "packageName": "@expo/fingerprint", + "hash": "sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==" + } + }, + "npm:@expo/image-utils@0.3.22": { + "type": "npm", + "name": "npm:@expo/image-utils@0.3.22", + "data": { + "version": "0.3.22", + "packageName": "@expo/image-utils", + "hash": "sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==" + } + }, + "npm:@expo/image-utils@0.3.23": { + "type": "npm", + "name": "npm:@expo/image-utils@0.3.23", + "data": { + "version": "0.3.23", + "packageName": "@expo/image-utils", + "hash": "sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==" + } + }, + "npm:@expo/image-utils": { + "type": "npm", + "name": "npm:@expo/image-utils", + "data": { + "version": "0.4.1", + "packageName": "@expo/image-utils", + "hash": "sha512-EZb+VHSmw+a5s2hS9qksTcWylY0FDaIAVufcxoaRS9tHIXLjW5zcKW7Rhj9dSEbZbRVy9yXXdHKa3GQdUQIOFw==" + } + }, + "npm:@expo/json-file@8.2.36": { + "type": "npm", + "name": "npm:@expo/json-file@8.2.36", + "data": { + "version": "8.2.36", + "packageName": "@expo/json-file", + "hash": "sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==" + } + }, + "npm:@expo/json-file": { + "type": "npm", + "name": "npm:@expo/json-file", + "data": { + "version": "8.3.0", + "packageName": "@expo/json-file", + "hash": "sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==" + } + }, + "npm:@expo/metro-config": { + "type": "npm", + "name": "npm:@expo/metro-config", + "data": { + "version": "0.17.3", + "packageName": "@expo/metro-config", + "hash": "sha512-YW8ixbaz6yL7/Mg1rJJejiAAVQQKjGY1wXvT2Dh487r/r9/j1yE1YRS/oRY1yItYzbnHvO0p0jMnEGfiFYL3Tg==" + } + }, + "npm:@expo/metro-runtime": { + "type": "npm", + "name": "npm:@expo/metro-runtime", + "data": { + "version": "3.1.2", + "packageName": "@expo/metro-runtime", + "hash": "sha512-Wekv2AZ3HY0NG9Im8AMB1KHGyHjmALg6xekVK34724I/DLtcocLKtQEP04oI9GcAZBotAhROHH5E4ADhJAEgYg==" + } + }, + "npm:@expo/osascript": { + "type": "npm", + "name": "npm:@expo/osascript", + "data": { + "version": "2.1.0", + "packageName": "@expo/osascript", + "hash": "sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==" + } + }, + "npm:@expo/package-manager": { + "type": "npm", + "name": "npm:@expo/package-manager", + "data": { + "version": "1.4.2", + "packageName": "@expo/package-manager", + "hash": "sha512-LKdo/6y4W7llZ6ghsg1kdx2CeH/qR/c6QI/JI8oPUvppsZoeIYjSkdflce978fAMfR8IXoi0wt0jA2w0kWpwbg==" + } + }, + "npm:@expo/plist@0.0.18": { + "type": "npm", + "name": "npm:@expo/plist@0.0.18", + "data": { + "version": "0.0.18", + "packageName": "@expo/plist", + "hash": "sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==" + } + }, + "npm:@expo/plist": { + "type": "npm", + "name": "npm:@expo/plist", + "data": { + "version": "0.1.0", + "packageName": "@expo/plist", + "hash": "sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==" + } + }, + "npm:@expo/prebuild-config@5.0.7": { + "type": "npm", + "name": "npm:@expo/prebuild-config@5.0.7", + "data": { + "version": "5.0.7", + "packageName": "@expo/prebuild-config", + "hash": "sha512-D+TBpJUHe4+oTGFPb4o0rrw/h1xxc6wF+abJnbDHUkhnaeiHkE2O3ByS7FdiZ2FT36t0OKqeSKG/xFwWT3m1Ew==" + } + }, + "npm:@expo/prebuild-config": { + "type": "npm", + "name": "npm:@expo/prebuild-config", + "data": { + "version": "6.7.4", + "packageName": "@expo/prebuild-config", + "hash": "sha512-x8EUdCa8DTMZ/dtEXjHAdlP+ljf6oSeSKNzhycXiHhpMSMG9jEhV28ocCwc6cKsjK5GziweEiHwvrj6+vsBlhA==" + } + }, + "npm:@expo/rudder-sdk-node": { + "type": "npm", + "name": "npm:@expo/rudder-sdk-node", + "data": { + "version": "1.1.1", + "packageName": "@expo/rudder-sdk-node", + "hash": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==" + } + }, + "npm:@expo/sdk-runtime-versions": { + "type": "npm", + "name": "npm:@expo/sdk-runtime-versions", + "data": { + "version": "1.0.0", + "packageName": "@expo/sdk-runtime-versions", + "hash": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==" + } + }, + "npm:@expo/server": { + "type": "npm", + "name": "npm:@expo/server", + "data": { + "version": "0.3.0", + "packageName": "@expo/server", + "hash": "sha512-5oIqedpLVMnf1LGI9Xd5OOGmK3DjgH9VpuqVN4e/6DwLT05RZJMyI7ylfG6QSy1e44yOgjv242tLyg0e/zdZ+A==" + } + }, + "npm:@expo/spawn-async": { + "type": "npm", + "name": "npm:@expo/spawn-async", + "data": { + "version": "1.5.0", + "packageName": "@expo/spawn-async", + "hash": "sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==" + } + }, + "npm:@expo/spawn-async@1.7.2": { + "type": "npm", + "name": "npm:@expo/spawn-async@1.7.2", + "data": { + "version": "1.7.2", + "packageName": "@expo/spawn-async", + "hash": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==" + } + }, + "npm:@expo/vector-icons": { + "type": "npm", + "name": "npm:@expo/vector-icons", + "data": { + "version": "14.0.0", + "packageName": "@expo/vector-icons", + "hash": "sha512-5orm59pdnBQlovhU9k4DbjMUZBHNlku7IRgFY56f7pcaaCnXq9yaLJoOQl9sMwNdFzf4gnkTyHmR5uN10mI9rA==" + } + }, + "npm:@expo/webpack-config": { + "type": "npm", + "name": "npm:@expo/webpack-config", + "data": { + "version": "19.0.1", + "packageName": "@expo/webpack-config", + "hash": "sha512-5bSxXTUd/DCF44+1dSyU23YKLOOYCr9pMJ+C5Vw7PAi6v6OEyNp4uOVMk2x5DAEpXtvOsJCxvNZdmtY/IqmO/A==" + } + }, + "npm:@expo/xcpretty": { + "type": "npm", + "name": "npm:@expo/xcpretty", + "data": { + "version": "4.3.1", + "packageName": "@expo/xcpretty", + "hash": "sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==" + } + }, + "npm:@gar/promisify": { + "type": "npm", + "name": "npm:@gar/promisify", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:@gorhom/bottom-sheet": { + "type": "npm", + "name": "npm:@gorhom/bottom-sheet", + "data": { + "version": "4.6.0", + "packageName": "@gorhom/bottom-sheet", + "hash": "sha512-XgNflkhATUqTIiMDGuLaQZAtjUzcrhGOEJGHT+7Tou1ctTMb958YRGGnU9KFo5TkD6YCZcfWfxHPi9F0FF+DjA==" + } + }, + "npm:@gorhom/portal": { + "type": "npm", + "name": "npm:@gorhom/portal", + "data": { + "version": "1.0.14", + "packageName": "@gorhom/portal", + "hash": "sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==" + } + }, + "npm:@graphql-typed-document-node/core": { + "type": "npm", + "name": "npm:@graphql-typed-document-node/core", + "data": { + "version": "3.2.0", + "packageName": "@graphql-typed-document-node/core", + "hash": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==" + } + }, + "npm:@hapi/hoek": { + "type": "npm", + "name": "npm:@hapi/hoek", + "data": { + "version": "9.3.0", + "packageName": "@hapi/hoek", + "hash": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + } + }, + "npm:@hapi/topo": { + "type": "npm", + "name": "npm:@hapi/topo", + "data": { + "version": "5.1.0", + "packageName": "@hapi/topo", + "hash": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==" + } + }, + "npm:@humanwhocodes/config-array": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array", + "data": { + "version": "0.11.14", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/object-schema": { + "type": "npm", + "name": "npm:@humanwhocodes/object-schema", + "data": { + "version": "2.0.2", + "packageName": "@humanwhocodes/object-schema", + "hash": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==" + } + }, + "npm:@ide/backoff": { + "type": "npm", + "name": "npm:@ide/backoff", + "data": { + "version": "1.0.0", + "packageName": "@ide/backoff", + "hash": "sha512-F0YfUDjvT+Mtt/R4xdl2X0EYCHMMiJqNLdxHD++jDT5ydEFIyqbCHh51Qx2E211dgZprPKhV7sHmnXKpLuvc5g==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:@isaacs/ttlcache": { + "type": "npm", + "name": "npm:@isaacs/ttlcache", + "data": { + "version": "1.4.1", + "packageName": "@isaacs/ttlcache", + "hash": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.3", + "packageName": "@istanbuljs/schema", + "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + } + }, + "npm:@jest/console": { + "type": "npm", + "name": "npm:@jest/console", + "data": { + "version": "29.7.0", + "packageName": "@jest/console", + "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" + } + }, + "npm:@jest/core": { + "type": "npm", + "name": "npm:@jest/core", + "data": { + "version": "29.7.0", + "packageName": "@jest/core", + "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" + } + }, + "npm:@jest/create-cache-key-function": { + "type": "npm", + "name": "npm:@jest/create-cache-key-function", + "data": { + "version": "29.7.0", + "packageName": "@jest/create-cache-key-function", + "hash": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==" + } + }, + "npm:@jest/environment": { + "type": "npm", + "name": "npm:@jest/environment", + "data": { + "version": "29.7.0", + "packageName": "@jest/environment", + "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" + } + }, + "npm:@jest/expect-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "npm:@jest/fake-timers": { + "type": "npm", + "name": "npm:@jest/fake-timers", + "data": { + "version": "29.7.0", + "packageName": "@jest/fake-timers", + "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" + } + }, + "npm:@jest/globals": { + "type": "npm", + "name": "npm:@jest/globals", + "data": { + "version": "29.7.0", + "packageName": "@jest/globals", + "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" + } + }, + "npm:@jest/reporters": { + "type": "npm", + "name": "npm:@jest/reporters", + "data": { + "version": "29.7.0", + "packageName": "@jest/reporters", + "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "29.6.3", + "packageName": "@jest/schemas", + "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" + } + }, + "npm:@jest/source-map": { + "type": "npm", + "name": "npm:@jest/source-map", + "data": { + "version": "29.6.3", + "packageName": "@jest/source-map", + "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" + } + }, + "npm:@jest/test-result": { + "type": "npm", + "name": "npm:@jest/test-result", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-result", + "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" + } + }, + "npm:@jest/test-sequencer": { + "type": "npm", + "name": "npm:@jest/test-sequencer", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" + } + }, + "npm:@jest/transform": { + "type": "npm", + "name": "npm:@jest/transform", + "data": { + "version": "29.7.0", + "packageName": "@jest/transform", + "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" + } + }, + "npm:@jest/types@26.6.2": { + "type": "npm", + "name": "npm:@jest/types@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "@jest/types", + "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" + } + }, + "npm:@jest/types": { + "type": "npm", + "name": "npm:@jest/types", + "data": { + "version": "29.6.3", + "packageName": "@jest/types", + "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.1", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.5", + "packageName": "@jridgewell/source-map", + "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.15", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.22", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.4", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + } + }, + "npm:@miragejs/pretender-node-polyfill": { + "type": "npm", + "name": "npm:@miragejs/pretender-node-polyfill", + "data": { + "version": "0.1.2", + "packageName": "@miragejs/pretender-node-polyfill", + "hash": "sha512-M/BexG/p05C5lFfMunxo/QcgIJnMT2vDVCd00wNqK2ImZONIlEETZwWJu1QtLxtmYlSHlCFl3JNzp0tLe7OJ5g==" + } + }, + "npm:@motify/components": { + "type": "npm", + "name": "npm:@motify/components", + "data": { + "version": "0.17.1", + "packageName": "@motify/components", + "hash": "sha512-nUOEuNDmnjRVFD202goOilPYtjrZGr26/VCIMnPE5Jpfs9ds/4ezIhQ75zBXd3BuCcgfMRsKrnw01/O0rdWYsg==" + } + }, + "npm:@motify/components@0.18.0": { + "type": "npm", + "name": "npm:@motify/components@0.18.0", + "data": { + "version": "0.18.0", + "packageName": "@motify/components", + "hash": "sha512-1StICST4CKXvWwkkoKtt6Pml//gE2fPI99Byxa+TbrFw4KieATeCYBRjSKD0BghmFmoF+2mRM2uf9FRYfJCGtQ==" + } + }, + "npm:@motify/core": { + "type": "npm", + "name": "npm:@motify/core", + "data": { + "version": "0.17.1", + "packageName": "@motify/core", + "hash": "sha512-czFnaE4o0gCNS7F3u0CdSxzx72b6Yzw2LGD/e/J5DPM7KPL70qyzj5cZ8Rq1sKnUZMfgvCfxyGql21FbGdyhew==" + } + }, + "npm:@motify/core@0.18.0": { + "type": "npm", + "name": "npm:@motify/core@0.18.0", + "data": { + "version": "0.18.0", + "packageName": "@motify/core", + "hash": "sha512-8C4xnC5dZ+S/NEx5wIsHAccofffSOzo7M6lKYR8Ty0QA/XtfwNRL9jQBQafj0pon4h2XP7u2NcJ4lc0ANOsx3A==" + } + }, + "npm:@motify/interactions": { + "type": "npm", + "name": "npm:@motify/interactions", + "data": { + "version": "0.17.1", + "packageName": "@motify/interactions", + "hash": "sha512-RrlFdotOJCnSnwPLFibJyr3GxxTPeRwFhyrXKWKfqVg54D0Ez8JRFCszb90gpnGBSKft1T8FCgMnem8GOHTDfw==" + } + }, + "npm:@motify/skeleton": { + "type": "npm", + "name": "npm:@motify/skeleton", + "data": { + "version": "0.18.0", + "packageName": "@motify/skeleton", + "hash": "sha512-RoS1yVQjs0LhlYCZUUprOVfYeTrtynwhlYZN6upHetvl/CXuxCHt9mV0vChfL/mmRkpS5sOPgEkSlzmJj5uEsg==" + } + }, + "npm:@motionone/animation": { + "type": "npm", + "name": "npm:@motionone/animation", + "data": { + "version": "10.17.0", + "packageName": "@motionone/animation", + "hash": "sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==" + } + }, + "npm:@motionone/dom": { + "type": "npm", + "name": "npm:@motionone/dom", + "data": { + "version": "10.12.0", + "packageName": "@motionone/dom", + "hash": "sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==" + } + }, + "npm:@motionone/easing": { + "type": "npm", + "name": "npm:@motionone/easing", + "data": { + "version": "10.17.0", + "packageName": "@motionone/easing", + "hash": "sha512-Bxe2wSuLu/qxqW4rBFS5m9tMLOw+QBh8v5A7Z5k4Ul4sTj5jAOfZG5R0bn5ywmk+Fs92Ij1feZ5pmC4TeXA8Tg==" + } + }, + "npm:@motionone/generators": { + "type": "npm", + "name": "npm:@motionone/generators", + "data": { + "version": "10.17.0", + "packageName": "@motionone/generators", + "hash": "sha512-T6Uo5bDHrZWhIfxG/2Aut7qyWQyJIWehk6OB4qNvr/jwA/SRmixwbd7SOrxZi1z5rH3LIeFFBKK1xHnSbGPZSQ==" + } + }, + "npm:@motionone/types": { + "type": "npm", + "name": "npm:@motionone/types", + "data": { + "version": "10.17.0", + "packageName": "@motionone/types", + "hash": "sha512-EgeeqOZVdRUTEHq95Z3t8Rsirc7chN5xFAPMYFobx8TPubkEfRSm5xihmMUkbaR2ErKJTUw3347QDPTHIW12IA==" + } + }, + "npm:@motionone/utils": { + "type": "npm", + "name": "npm:@motionone/utils", + "data": { + "version": "10.17.0", + "packageName": "@motionone/utils", + "hash": "sha512-bGwrki4896apMWIj9yp5rAS2m0xyhxblg6gTB/leWDPt+pb410W8lYWsxyurX+DH+gO1zsQsfx2su/c1/LtTpg==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "1.1.1", + "packageName": "@npmcli/fs", + "hash": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==" + } + }, + "npm:@npmcli/move-file": { + "type": "npm", + "name": "npm:@npmcli/move-file", + "data": { + "version": "1.1.2", + "packageName": "@npmcli/move-file", + "hash": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@radix-ui/react-compose-refs": { + "type": "npm", + "name": "npm:@radix-ui/react-compose-refs", + "data": { + "version": "1.0.0", + "packageName": "@radix-ui/react-compose-refs", + "hash": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==" + } + }, + "npm:@radix-ui/react-slot": { + "type": "npm", + "name": "npm:@radix-ui/react-slot", + "data": { + "version": "1.0.1", + "packageName": "@radix-ui/react-slot", + "hash": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==" + } + }, + "npm:@react-native-async-storage/async-storage": { + "type": "npm", + "name": "npm:@react-native-async-storage/async-storage", + "data": { + "version": "1.21.0", + "packageName": "@react-native-async-storage/async-storage", + "hash": "sha512-JL0w36KuFHFCvnbOXRekqVAUplmOyT/OuCQkogo6X98MtpSaJOKEAeZnYO8JB0U/RIEixZaGI5px73YbRm/oag==" + } + }, + "npm:@react-native-community/cli-clean": { + "type": "npm", + "name": "npm:@react-native-community/cli-clean", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-clean", + "hash": "sha512-iAgLCOWYRGh9ukr+eVQnhkV/OqN3V2EGd/in33Ggn/Mj4uO6+oUncXFwB+yjlyaUNz6FfjudhIz09yYGSF+9sg==" + } + }, + "npm:@react-native-community/cli-config": { + "type": "npm", + "name": "npm:@react-native-community/cli-config", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-config", + "hash": "sha512-BrTn5ndFD9uOxO8kxBQ32EpbtOvAsQExGPI7SokdI4Zlve70FziLtTq91LTlTUgMq1InVZn/jJb3VIDk6BTInQ==" + } + }, + "npm:@react-native-community/cli-debugger-ui": { + "type": "npm", + "name": "npm:@react-native-community/cli-debugger-ui", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-debugger-ui", + "hash": "sha512-w3b0iwjQlk47GhZWHaeTG8kKH09NCMUJO729xSdMBXE8rlbm4kHpKbxQY9qKb6NlfWSJN4noGY+FkNZS2rRwnQ==" + } + }, + "npm:@react-native-community/cli-doctor": { + "type": "npm", + "name": "npm:@react-native-community/cli-doctor", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-doctor", + "hash": "sha512-BPCwNNesoQMkKsxB08Ayy6URgGQ8Kndv6mMhIvJSNdST3J1+x3ehBHXzG9B9Vfi+DrTKRb8lmEl/b/7VkDlPkA==" + } + }, + "npm:@react-native-community/cli-hermes": { + "type": "npm", + "name": "npm:@react-native-community/cli-hermes", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-hermes", + "hash": "sha512-G6FxpeZBO4AimKZwtWR3dpXRqTvsmEqlIkkxgwthdzn3LbVjDVIXKpVYU9PkR5cnT+KuAUxO0WwthrJ6Nmrrlg==" + } + }, + "npm:@react-native-community/cli-platform-android": { + "type": "npm", + "name": "npm:@react-native-community/cli-platform-android", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-platform-android", + "hash": "sha512-VU1NZw63+GLU2TnyQ919bEMThpHQ/oMFju9MCfrd3pyPJz4Sn+vc3NfnTDUVA5Z5yfLijFOkHIHr4vo/C9bjnw==" + } + }, + "npm:@react-native-community/cli-platform-ios": { + "type": "npm", + "name": "npm:@react-native-community/cli-platform-ios", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-platform-ios", + "hash": "sha512-H95Sgt3wT7L8V75V0syFJDtv4YgqK5zbu69ko4yrXGv8dv2EBi6qZP0VMmkqXDamoPm9/U7tDTdbcf26ctnLfg==" + } + }, + "npm:@react-native-community/cli-plugin-metro": { + "type": "npm", + "name": "npm:@react-native-community/cli-plugin-metro", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-plugin-metro", + "hash": "sha512-tYNHIYnNmxrBcsqbE2dAnLMzlKI3Cp1p1xUgTrNaOMsGPDN1epzNfa34n6Nps3iwKElSL7Js91CzYNqgTalucA==" + } + }, + "npm:@react-native-community/cli-server-api": { + "type": "npm", + "name": "npm:@react-native-community/cli-server-api", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-server-api", + "hash": "sha512-Rode8NrdyByC+lBKHHn+/W8Zu0c+DajJvLmOWbe2WY/ECvnwcd9MHHbu92hlT2EQaJ9LbLhGrSbQE3cQy9EOCw==" + } + }, + "npm:@react-native-community/cli-tools": { + "type": "npm", + "name": "npm:@react-native-community/cli-tools", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-tools", + "hash": "sha512-2GafnCr8D88VdClwnm9KZfkEb+lzVoFdr/7ybqhdeYM0Vnt/tr2N+fM1EQzwI1DpzXiBzTYemw8GjRq+Utcz2Q==" + } + }, + "npm:@react-native-community/cli-types": { + "type": "npm", + "name": "npm:@react-native-community/cli-types", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-types", + "hash": "sha512-MgOkmrXH4zsGxhte4YqKL7d+N8ZNEd3w1wo56MZlhu5WabwCJh87wYpU5T8vyfujFLYOFuFK5jjlcbs8F4/WDw==" + } + }, + "npm:@react-native-community/cli": { + "type": "npm", + "name": "npm:@react-native-community/cli", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli", + "hash": "sha512-XeQohi2E+S2+MMSz97QcEZ/bWpi8sfKiQg35XuYeJkc32Til2g0b97jRpn0/+fV0BInHoG1CQYWwHA7opMsrHg==" + } + }, + "npm:@react-native-community/netinfo": { + "type": "npm", + "name": "npm:@react-native-community/netinfo", + "data": { + "version": "11.1.0", + "packageName": "@react-native-community/netinfo", + "hash": "sha512-pIbCuqgrY7SkngAcjUs9fMzNh1h4soQMVw1IeGp1HN5//wox3fUVOuvyIubTscUbdLFKiltJAiuQek7Nhx1bqA==" + } + }, + "npm:@react-native/assets-registry": { + "type": "npm", + "name": "npm:@react-native/assets-registry", + "data": { + "version": "0.73.1", + "packageName": "@react-native/assets-registry", + "hash": "sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==" + } + }, + "npm:@react-native/babel-plugin-codegen@0.73.2": { + "type": "npm", + "name": "npm:@react-native/babel-plugin-codegen@0.73.2", + "data": { + "version": "0.73.2", + "packageName": "@react-native/babel-plugin-codegen", + "hash": "sha512-PadyFZWVaWXIBP7Q5dgEL7eAd7tnsgsLjoHJB1hIRZZuVUg1Zqe3nULwC7RFAqOtr5Qx7KXChkFFcKQ3WnZzGw==" + } + }, + "npm:@react-native/babel-plugin-codegen": { + "type": "npm", + "name": "npm:@react-native/babel-plugin-codegen", + "data": { + "version": "0.73.3", + "packageName": "@react-native/babel-plugin-codegen", + "hash": "sha512-+zQrDDbz6lB48LyzFHxNCgXDCBHH+oTRdXAjikRcBUdeG9St9ABbYFLtb799zSxLOrCqFVyXqhJR2vlgLLEbcg==" + } + }, + "npm:@react-native/babel-preset@0.73.19": { + "type": "npm", + "name": "npm:@react-native/babel-preset@0.73.19", + "data": { + "version": "0.73.19", + "packageName": "@react-native/babel-preset", + "hash": "sha512-ujon01uMOREZecIltQxPDmJ6xlVqAUFGI/JCSpeVYdxyXBoBH5dBb0ihj7h6LKH1q1jsnO9z4MxfddtypKkIbg==" + } + }, + "npm:@react-native/babel-preset": { + "type": "npm", + "name": "npm:@react-native/babel-preset", + "data": { + "version": "0.73.20", + "packageName": "@react-native/babel-preset", + "hash": "sha512-fU9NqkusbfFq71l4BWQfqqD/lLcLC0MZ++UYgieA3j8lIEppJTLVauv2RwtD2yltBkjebgYEC5Rwvt1l0MUBXw==" + } + }, + "npm:@react-native/codegen": { + "type": "npm", + "name": "npm:@react-native/codegen", + "data": { + "version": "0.73.2", + "packageName": "@react-native/codegen", + "hash": "sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==" + } + }, + "npm:@react-native/community-cli-plugin": { + "type": "npm", + "name": "npm:@react-native/community-cli-plugin", + "data": { + "version": "0.73.12", + "packageName": "@react-native/community-cli-plugin", + "hash": "sha512-xWU06OkC1cX++Duh/cD/Wv+oZ0oSY3yqbtxAqQA2H3Q+MQltNNJM6MqIHt1VOZSabRf/LVlR1JL6U9TXJirkaw==" + } + }, + "npm:@react-native/debugger-frontend": { + "type": "npm", + "name": "npm:@react-native/debugger-frontend", + "data": { + "version": "0.73.3", + "packageName": "@react-native/debugger-frontend", + "hash": "sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==" + } + }, + "npm:@react-native/dev-middleware": { + "type": "npm", + "name": "npm:@react-native/dev-middleware", + "data": { + "version": "0.73.7", + "packageName": "@react-native/dev-middleware", + "hash": "sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==" + } + }, + "npm:@react-native/gradle-plugin": { + "type": "npm", + "name": "npm:@react-native/gradle-plugin", + "data": { + "version": "0.73.4", + "packageName": "@react-native/gradle-plugin", + "hash": "sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==" + } + }, + "npm:@react-native/js-polyfills": { + "type": "npm", + "name": "npm:@react-native/js-polyfills", + "data": { + "version": "0.73.1", + "packageName": "@react-native/js-polyfills", + "hash": "sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==" + } + }, + "npm:@react-native/metro-babel-transformer": { + "type": "npm", + "name": "npm:@react-native/metro-babel-transformer", + "data": { + "version": "0.73.13", + "packageName": "@react-native/metro-babel-transformer", + "hash": "sha512-k9AQifogQfgUXPlqQSoMtX2KUhniw4XvJl+nZ4hphCH7qiMDAwuP8OmkJbz5E/N+Ro9OFuLE7ax4GlwxaTsAWg==" + } + }, + "npm:@react-native/normalize-color": { + "type": "npm", + "name": "npm:@react-native/normalize-color", + "data": { + "version": "2.1.0", + "packageName": "@react-native/normalize-color", + "hash": "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==" + } + }, + "npm:@react-native/normalize-colors": { + "type": "npm", + "name": "npm:@react-native/normalize-colors", + "data": { + "version": "0.73.2", + "packageName": "@react-native/normalize-colors", + "hash": "sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==" + } + }, + "npm:@react-native/virtualized-lists": { + "type": "npm", + "name": "npm:@react-native/virtualized-lists", + "data": { + "version": "0.73.4", + "packageName": "@react-native/virtualized-lists", + "hash": "sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==" + } + }, + "npm:@react-native/virtualized-lists@0.72.8": { + "type": "npm", + "name": "npm:@react-native/virtualized-lists@0.72.8", + "data": { + "version": "0.72.8", + "packageName": "@react-native/virtualized-lists", + "hash": "sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==" + } + }, + "npm:@react-navigation/bottom-tabs": { + "type": "npm", + "name": "npm:@react-navigation/bottom-tabs", + "data": { + "version": "6.5.11", + "packageName": "@react-navigation/bottom-tabs", + "hash": "sha512-CBN/NOdxnMvmjw+AJQI1kltOYaClTZmGec5pQ3ZNTPX86ytbIOylDIITKMfTgHZcIEFQDymx1SHeS++PIL3Szw==" + } + }, + "npm:@react-navigation/core": { + "type": "npm", + "name": "npm:@react-navigation/core", + "data": { + "version": "6.4.10", + "packageName": "@react-navigation/core", + "hash": "sha512-oYhqxETRHNHKsipm/BtGL0LI43Hs2VSFoWMbBdHK9OqgQPjTVUitslgLcPpo4zApCcmBWoOLX2qPxhsBda644A==" + } + }, + "npm:@react-navigation/elements": { + "type": "npm", + "name": "npm:@react-navigation/elements", + "data": { + "version": "1.3.21", + "packageName": "@react-navigation/elements", + "hash": "sha512-eyS2C6McNR8ihUoYfc166O1D8VYVh9KIl0UQPI8/ZJVsStlfSTgeEEh+WXge6+7SFPnZ4ewzEJdSAHH+jzcEfg==" + } + }, + "npm:@react-navigation/native-stack": { + "type": "npm", + "name": "npm:@react-navigation/native-stack", + "data": { + "version": "6.9.17", + "packageName": "@react-navigation/native-stack", + "hash": "sha512-X8p8aS7JptQq7uZZNFEvfEcPf6tlK4PyVwYDdryRbG98B4bh2wFQYMThxvqa+FGEN7USEuHdv2mF0GhFKfX0ew==" + } + }, + "npm:@react-navigation/native": { + "type": "npm", + "name": "npm:@react-navigation/native", + "data": { + "version": "6.1.9", + "packageName": "@react-navigation/native", + "hash": "sha512-AMuJDpwXE7UlfyhIXaUCCynXmv69Kb8NzKgKJO7v0k0L+u6xUTbt6xvshmJ79vsvaFyaEH9Jg5FMzek5/S5qNw==" + } + }, + "npm:@react-navigation/routers": { + "type": "npm", + "name": "npm:@react-navigation/routers", + "data": { + "version": "6.1.9", + "packageName": "@react-navigation/routers", + "hash": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==" + } + }, + "npm:@react-navigation/stack": { + "type": "npm", + "name": "npm:@react-navigation/stack", + "data": { + "version": "6.3.20", + "packageName": "@react-navigation/stack", + "hash": "sha512-vE6mgZzOgoa5Uy7ayT97Cj+ZIK7DK+JBYVuKUViILlWZy6IWK7HFDuqoChSbZ1ajTIfAxj/acVGg1jkbAKsToA==" + } + }, + "npm:@remix-run/node": { + "type": "npm", + "name": "npm:@remix-run/node", + "data": { + "version": "1.19.3", + "packageName": "@remix-run/node", + "hash": "sha512-z5qrVL65xLXIUpU4mkR4MKlMeKARLepgHAk4W5YY3IBXOreRqOGUC70POViYmY7x38c2Ia1NwqL80H+0h7jbMw==" + } + }, + "npm:@remix-run/router": { + "type": "npm", + "name": "npm:@remix-run/router", + "data": { + "version": "1.7.2", + "packageName": "@remix-run/router", + "hash": "sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==" + } + }, + "npm:@remix-run/server-runtime": { + "type": "npm", + "name": "npm:@remix-run/server-runtime", + "data": { + "version": "1.19.3", + "packageName": "@remix-run/server-runtime", + "hash": "sha512-KzQ+htUsKqpBgKE2tWo7kIIGy3MyHP58Io/itUPvV+weDjApwr9tQr9PZDPA3yAY6rAzLax7BU0NMSYCXWFY5A==" + } + }, + "npm:@remix-run/web-blob": { + "type": "npm", + "name": "npm:@remix-run/web-blob", + "data": { + "version": "3.1.0", + "packageName": "@remix-run/web-blob", + "hash": "sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==" + } + }, + "npm:@remix-run/web-fetch": { + "type": "npm", + "name": "npm:@remix-run/web-fetch", + "data": { + "version": "4.4.2", + "packageName": "@remix-run/web-fetch", + "hash": "sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==" + } + }, + "npm:@remix-run/web-file": { + "type": "npm", + "name": "npm:@remix-run/web-file", + "data": { + "version": "3.1.0", + "packageName": "@remix-run/web-file", + "hash": "sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==" + } + }, + "npm:@remix-run/web-form-data": { + "type": "npm", + "name": "npm:@remix-run/web-form-data", + "data": { + "version": "3.1.0", + "packageName": "@remix-run/web-form-data", + "hash": "sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==" + } + }, + "npm:@remix-run/web-stream": { + "type": "npm", + "name": "npm:@remix-run/web-stream", + "data": { + "version": "1.1.0", + "packageName": "@remix-run/web-stream", + "hash": "sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==" + } + }, + "npm:@segment/loosely-validate-event": { + "type": "npm", + "name": "npm:@segment/loosely-validate-event", + "data": { + "version": "2.0.0", + "packageName": "@segment/loosely-validate-event", + "hash": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==" + } + }, + "npm:@sideway/address": { + "type": "npm", + "name": "npm:@sideway/address", + "data": { + "version": "4.1.4", + "packageName": "@sideway/address", + "hash": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" + } + }, + "npm:@sideway/formula": { + "type": "npm", + "name": "npm:@sideway/formula", + "data": { + "version": "3.0.1", + "packageName": "@sideway/formula", + "hash": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" + } + }, + "npm:@sideway/pinpoint": { + "type": "npm", + "name": "npm:@sideway/pinpoint", + "data": { + "version": "2.0.0", + "packageName": "@sideway/pinpoint", + "hash": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.1", + "packageName": "@sinonjs/commons", + "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.3.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" + } + }, + "npm:@tanstack/query-core": { + "type": "npm", + "name": "npm:@tanstack/query-core", + "data": { + "version": "4.36.1", + "packageName": "@tanstack/query-core", + "hash": "sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==" + } + }, + "npm:@tanstack/react-query": { + "type": "npm", + "name": "npm:@tanstack/react-query", + "data": { + "version": "4.36.1", + "packageName": "@tanstack/react-query", + "hash": "sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==" + } + }, + "npm:@testing-library/jest-native": { + "type": "npm", + "name": "npm:@testing-library/jest-native", + "data": { + "version": "5.4.3", + "packageName": "@testing-library/jest-native", + "hash": "sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==" + } + }, + "npm:@testing-library/react-native": { + "type": "npm", + "name": "npm:@testing-library/react-native", + "data": { + "version": "12.4.3", + "packageName": "@testing-library/react-native", + "hash": "sha512-WLE7VbbR5jZJQl3vfNK7Wt+IHnzhOxyu95Mr56EHmzH3XhC8DkrPVAnUq9asq/QWj4aGnymbinFx6zZys/WZmA==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__core", + "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.8", + "packageName": "@types/babel__generator", + "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.4", + "packageName": "@types/babel__template", + "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__traverse", + "hash": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.5", + "packageName": "@types/body-parser", + "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.13", + "packageName": "@types/bonjour", + "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.5.4", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/cookie": { + "type": "npm", + "name": "npm:@types/cookie", + "data": { + "version": "0.4.1", + "packageName": "@types/cookie", + "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.7", + "packageName": "@types/eslint-scope", + "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "8.56.2", + "packageName": "@types/eslint", + "hash": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.5", + "packageName": "@types/estree", + "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.42", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.21", + "packageName": "@types/express", + "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "7.2.0", + "packageName": "@types/glob", + "hash": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.9", + "packageName": "@types/graceful-fs", + "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" + } + }, + "npm:@types/hammerjs": { + "type": "npm", + "name": "npm:@types/hammerjs", + "data": { + "version": "2.0.45", + "packageName": "@types/hammerjs", + "hash": "sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==" + } + }, + "npm:@types/html-minifier-terser": { + "type": "npm", + "name": "npm:@types/html-minifier-terser", + "data": { + "version": "6.1.0", + "packageName": "@types/html-minifier-terser", + "hash": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + } + }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.4", + "packageName": "@types/http-errors", + "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.14", + "packageName": "@types/http-proxy", + "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.6", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "3.0.3", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.4", + "packageName": "@types/istanbul-reports", + "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.5.11", + "packageName": "@types/jest", + "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" + } + }, + "npm:@types/jsdom": { + "type": "npm", + "name": "npm:@types/jsdom", + "data": { + "version": "20.0.1", + "packageName": "@types/jsdom", + "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.15", + "packageName": "@types/json-schema", + "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "3.0.4", + "packageName": "@types/mime", + "hash": "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==" + } + }, + "npm:@types/mime@1.3.5": { + "type": "npm", + "name": "npm:@types/mime@1.3.5", + "data": { + "version": "1.3.5", + "packageName": "@types/mime", + "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "5.1.2", + "packageName": "@types/minimatch", + "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + } + }, + "npm:@types/node-forge": { + "type": "npm", + "name": "npm:@types/node-forge", + "data": { + "version": "1.3.11", + "packageName": "@types/node-forge", + "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "20.11.7", + "packageName": "@types/node", + "hash": "sha512-GPmeN1C3XAyV5uybAf4cMLWT9fDWcmQhZVtMFu7OR32WjrqGG+Wnk2V1d0bmtUyE/Zy1QJ9BxyiTih9z8Oks8A==" + } + }, + "npm:@types/prop-types": { + "type": "npm", + "name": "npm:@types/prop-types", + "data": { + "version": "15.7.11", + "packageName": "@types/prop-types", + "hash": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.11", + "packageName": "@types/qs", + "hash": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/react-native": { + "type": "npm", + "name": "npm:@types/react-native", + "data": { + "version": "0.72.8", + "packageName": "@types/react-native", + "hash": "sha512-St6xA7+EoHN5mEYfdWnfYt0e8u6k2FR0P9s2arYgakQGFgU1f9FlPrIEcj0X24pLCF5c5i3WVuLCUdiCYHmOoA==" + } + }, + "npm:@types/react-test-renderer": { + "type": "npm", + "name": "npm:@types/react-test-renderer", + "data": { + "version": "18.0.7", + "packageName": "@types/react-test-renderer", + "hash": "sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==" + } + }, + "npm:@types/react": { + "type": "npm", + "name": "npm:@types/react", + "data": { + "version": "18.2.48", + "packageName": "@types/react", + "hash": "sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/scheduler": { + "type": "npm", + "name": "npm:@types/scheduler", + "data": { + "version": "0.16.8", + "packageName": "@types/scheduler", + "hash": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "7.5.6", + "packageName": "@types/semver", + "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "0.17.4", + "packageName": "@types/send", + "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.4", + "packageName": "@types/serve-index", + "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.5", + "packageName": "@types/serve-static", + "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.36", + "packageName": "@types/sockjs", + "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.3", + "packageName": "@types/stack-utils", + "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + } + }, + "npm:@types/tough-cookie": { + "type": "npm", + "name": "npm:@types/tough-cookie", + "data": { + "version": "4.0.5", + "packageName": "@types/tough-cookie", + "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.10", + "packageName": "@types/ws", + "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "21.0.3", + "packageName": "@types/yargs-parser", + "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + } + }, + "npm:@types/yargs@15.0.19": { + "type": "npm", + "name": "npm:@types/yargs@15.0.19", + "data": { + "version": "15.0.19", + "packageName": "@types/yargs", + "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.32", + "packageName": "@types/yargs", + "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" + } + }, + "npm:@typescript-eslint/eslint-plugin@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==" + } + }, + "npm:@typescript-eslint/parser@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/parser@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==" + } + }, + "npm:@typescript-eslint/scope-manager@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==" + } + }, + "npm:@typescript-eslint/type-utils@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==" + } + }, + "npm:@typescript-eslint/type-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" + } + }, + "npm:@typescript-eslint/types@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/types@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==" + } + }, + "npm:@typescript-eslint/typescript-estree@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==" + } + }, + "npm:@typescript-eslint/utils@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/utils@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==" + } + }, + "npm:@typescript-eslint/visitor-keys@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==" + } + }, + "npm:@ungap/structured-clone": { + "type": "npm", + "name": "npm:@ungap/structured-clone", + "data": { + "version": "1.2.0", + "packageName": "@ungap/structured-clone", + "hash": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" + } + }, + "npm:@urql/core": { + "type": "npm", + "name": "npm:@urql/core", + "data": { + "version": "2.3.6", + "packageName": "@urql/core", + "hash": "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==" + } + }, + "npm:@urql/core@4.2.3": { + "type": "npm", + "name": "npm:@urql/core@4.2.3", + "data": { + "version": "4.2.3", + "packageName": "@urql/core", + "hash": "sha512-DJ9q9+lcs5JL8DcU2J3NqsgeXYJva+1+Qt8HU94kzTPqVOIRRA7ouvy4ksUfPY+B5G2PQ+vLh+JJGyZCNXv0cg==" + } + }, + "npm:@urql/exchange-retry": { + "type": "npm", + "name": "npm:@urql/exchange-retry", + "data": { + "version": "0.3.0", + "packageName": "@urql/exchange-retry", + "hash": "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==" + } + }, + "npm:@web3-storage/multipart-parser": { + "type": "npm", + "name": "npm:@web3-storage/multipart-parser", + "data": { + "version": "1.0.0", + "packageName": "@web3-storage/multipart-parser", + "hash": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" + } + }, + "npm:@welldone-software/why-did-you-render": { + "type": "npm", + "name": "npm:@welldone-software/why-did-you-render", + "data": { + "version": "7.0.1", + "packageName": "@welldone-software/why-did-you-render", + "hash": "sha512-Qe/8Xxa2G+LMdI6VoazescPzjjkHYduCDa8aHOJR50e9Bgs8ihkfMBY+ev7B4oc3N59Zm547Sgjf8h5y0FOyoA==" + } + }, + "npm:@xmldom/xmldom@0.8.10": { + "type": "npm", + "name": "npm:@xmldom/xmldom@0.8.10", + "data": { + "version": "0.8.10", + "packageName": "@xmldom/xmldom", + "hash": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==" + } + }, + "npm:@xmldom/xmldom": { + "type": "npm", + "name": "npm:@xmldom/xmldom", + "data": { + "version": "0.7.13", + "packageName": "@xmldom/xmldom", + "hash": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@zxing/text-encoding": { + "type": "npm", + "name": "npm:@zxing/text-encoding", + "data": { + "version": "0.9.0", + "packageName": "@zxing/text-encoding", + "hash": "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==" + } + }, + "npm:abab": { + "type": "npm", + "name": "npm:abab", + "data": { + "version": "2.0.6", + "packageName": "abab", + "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + } + }, + "npm:abort-controller": { + "type": "npm", + "name": "npm:abort-controller", + "data": { + "version": "3.0.0", + "packageName": "abort-controller", + "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.9.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.3.2", + "packageName": "acorn-walk", + "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.11.3", + "packageName": "acorn", + "hash": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:ajv-formats@2.1.1": { + "type": "npm", + "name": "npm:ajv-formats@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ajv-keywords@5.1.0": { + "type": "npm", + "name": "npm:ajv-keywords@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv@8.11.0": { + "type": "npm", + "name": "npm:ajv@8.11.0", + "data": { + "version": "8.11.0", + "packageName": "ajv", + "hash": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:ajv@8.12.0": { + "type": "npm", + "name": "npm:ajv@8.12.0", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:anser": { + "type": "npm", + "name": "npm:anser", + "data": { + "version": "1.4.10", + "packageName": "anser", + "hash": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==" + } + }, + "npm:ansi-escapes@1.4.0": { + "type": "npm", + "name": "npm:ansi-escapes@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "ansi-escapes", + "hash": "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.2", + "packageName": "ansi-escapes", + "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + } + }, + "npm:ansi-escapes@5.0.0": { + "type": "npm", + "name": "npm:ansi-escapes@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ansi-escapes", + "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" + } + }, + "npm:ansi-escapes@6.2.0": { + "type": "npm", + "name": "npm:ansi-escapes@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "ansi-escapes", + "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" + } + }, + "npm:ansi-fragments": { + "type": "npm", + "name": "npm:ansi-fragments", + "data": { + "version": "0.2.1", + "packageName": "ansi-fragments", + "hash": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:ansi-regex@2.1.1": { + "type": "npm", + "name": "npm:ansi-regex@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ansi-regex", + "hash": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + } + }, + "npm:ansi-regex@4.1.1": { + "type": "npm", + "name": "npm:ansi-regex@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ansi-regex", + "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:ansi-styles@2.2.1": { + "type": "npm", + "name": "npm:ansi-styles@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "ansi-styles", + "hash": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:any-promise": { + "type": "npm", + "name": "npm:any-promise", + "data": { + "version": "1.3.0", + "packageName": "any-promise", + "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:appdirsjs": { + "type": "npm", + "name": "npm:appdirsjs", + "data": { + "version": "1.2.7", + "packageName": "appdirsjs", + "hash": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==" + } + }, + "npm:application-config-path": { + "type": "npm", + "name": "npm:application-config-path", + "data": { + "version": "0.1.1", + "packageName": "application-config-path", + "hash": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==" + } + }, + "npm:arg@4.1.0": { + "type": "npm", + "name": "npm:arg@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "arg", + "hash": "sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "5.0.2", + "packageName": "arg", + "hash": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.0", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + } + }, + "npm:array-includes": { + "type": "npm", + "name": "npm:array-includes", + "data": { + "version": "3.1.7", + "packageName": "array-includes", + "hash": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==" + } + }, + "npm:array-union@1.0.2": { + "type": "npm", + "name": "npm:array-union@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "array-union", + "hash": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:array-union@3.0.1": { + "type": "npm", + "name": "npm:array-union@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "array-union", + "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" + } + }, + "npm:array-uniq": { + "type": "npm", + "name": "npm:array-uniq", + "data": { + "version": "1.0.3", + "packageName": "array-uniq", + "hash": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==" + } + }, + "npm:array.prototype.findlastindex": { + "type": "npm", + "name": "npm:array.prototype.findlastindex", + "data": { + "version": "1.2.3", + "packageName": "array.prototype.findlastindex", + "hash": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flat", + "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flatmap", + "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" + } + }, + "npm:array.prototype.tosorted": { + "type": "npm", + "name": "npm:array.prototype.tosorted", + "data": { + "version": "1.1.2", + "packageName": "array.prototype.tosorted", + "hash": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.2", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" + } + }, + "npm:asap": { + "type": "npm", + "name": "npm:asap", + "data": { + "version": "2.0.6", + "packageName": "asap", + "hash": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + } + }, + "npm:assert": { + "type": "npm", + "name": "npm:assert", + "data": { + "version": "2.1.0", + "packageName": "assert", + "hash": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==" + } + }, + "npm:ast-types": { + "type": "npm", + "name": "npm:ast-types", + "data": { + "version": "0.15.2", + "packageName": "ast-types", + "hash": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "1.0.0", + "packageName": "astral-regex", + "hash": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + } + }, + "npm:async-limiter": { + "type": "npm", + "name": "npm:async-limiter", + "data": { + "version": "1.0.1", + "packageName": "async-limiter", + "hash": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + } + }, + "npm:asynciterator.prototype": { + "type": "npm", + "name": "npm:asynciterator.prototype", + "data": { + "version": "1.0.0", + "packageName": "asynciterator.prototype", + "hash": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.5", + "packageName": "available-typed-arrays", + "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "0.27.2", + "packageName": "axios", + "hash": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==" + } + }, + "npm:babel-core": { + "type": "npm", + "name": "npm:babel-core", + "data": { + "version": "7.0.0-bridge.0", + "packageName": "babel-core", + "hash": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==" + } + }, + "npm:babel-jest": { + "type": "npm", + "name": "npm:babel-jest", + "data": { + "version": "29.7.0", + "packageName": "babel-jest", + "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" + } + }, + "npm:babel-loader@8.3.0": { + "type": "npm", + "name": "npm:babel-loader@8.3.0", + "data": { + "version": "8.3.0", + "packageName": "babel-loader", + "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "9.1.3", + "packageName": "babel-loader", + "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:babel-plugin-jest-hoist": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist", + "data": { + "version": "29.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:babel-plugin-module-resolver": { + "type": "npm", + "name": "npm:babel-plugin-module-resolver", + "data": { + "version": "5.0.0", + "packageName": "babel-plugin-module-resolver", + "hash": "sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==" + } + }, + "npm:babel-plugin-polyfill-corejs2": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2", + "data": { + "version": "0.4.8", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==" + } + }, + "npm:babel-plugin-polyfill-corejs3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3", + "data": { + "version": "0.9.0", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==" + } + }, + "npm:babel-plugin-polyfill-regenerator": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator", + "data": { + "version": "0.5.5", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==" + } + }, + "npm:babel-plugin-react-native-web": { + "type": "npm", + "name": "npm:babel-plugin-react-native-web", + "data": { + "version": "0.18.12", + "packageName": "babel-plugin-react-native-web", + "hash": "sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==" + } + }, + "npm:babel-plugin-syntax-trailing-function-commas": { + "type": "npm", + "name": "npm:babel-plugin-syntax-trailing-function-commas", + "data": { + "version": "7.0.0-beta.0", + "packageName": "babel-plugin-syntax-trailing-function-commas", + "hash": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" + } + }, + "npm:babel-plugin-transform-flow-enums": { + "type": "npm", + "name": "npm:babel-plugin-transform-flow-enums", + "data": { + "version": "0.0.2", + "packageName": "babel-plugin-transform-flow-enums", + "hash": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:babel-preset-expo": { + "type": "npm", + "name": "npm:babel-preset-expo", + "data": { + "version": "10.0.1", + "packageName": "babel-preset-expo", + "hash": "sha512-uWIGmLfbP3dS5+8nesxaW6mQs41d4iP7X82ZwRdisB/wAhKQmuJM9Y1jQe4006uNYkw6Phf2TT03ykLVro7KuQ==" + } + }, + "npm:babel-preset-fbjs": { + "type": "npm", + "name": "npm:babel-preset-fbjs", + "data": { + "version": "3.4.0", + "packageName": "babel-preset-fbjs", + "hash": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==" + } + }, + "npm:babel-preset-jest": { + "type": "npm", + "name": "npm:babel-preset-jest", + "data": { + "version": "29.6.3", + "packageName": "babel-preset-jest", + "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" + } + }, + "npm:badgin": { + "type": "npm", + "name": "npm:badgin", + "data": { + "version": "1.2.3", + "packageName": "badgin", + "hash": "sha512-NQGA7LcfCpSzIbGRbkgjgdWkjy7HI+Th5VLxTJfW5EeaAf3fnS+xWQaQOCYiny+q6QSvxqoSO04vCx+4u++EJw==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + } + }, + "npm:better-opn": { + "type": "npm", + "name": "npm:better-opn", + "data": { + "version": "3.0.2", + "packageName": "better-opn", + "hash": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==" + } + }, + "npm:big-integer": { + "type": "npm", + "name": "npm:big-integer", + "data": { + "version": "1.6.52", + "packageName": "big-integer", + "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.2.0", + "packageName": "binary-extensions", + "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:blueimp-md5": { + "type": "npm", + "name": "npm:blueimp-md5", + "data": { + "version": "2.19.0", + "packageName": "blueimp-md5", + "hash": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.20.1", + "packageName": "body-parser", + "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" + } + }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.2.1", + "packageName": "bonjour-service", + "hash": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, + "npm:bplist-creator": { + "type": "npm", + "name": "npm:bplist-creator", + "data": { + "version": "0.1.0", + "packageName": "bplist-creator", + "hash": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==" + } + }, + "npm:bplist-parser@0.3.1": { + "type": "npm", + "name": "npm:bplist-parser@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "bplist-parser", + "hash": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==" + } + }, + "npm:bplist-parser": { + "type": "npm", + "name": "npm:bplist-parser", + "data": { + "version": "0.3.2", + "packageName": "bplist-parser", + "hash": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==" + } + }, + "npm:brace-expansion@1.1.11": { + "type": "npm", + "name": "npm:brace-expansion@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.22.2", + "packageName": "browserslist", + "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.1", + "packageName": "bser", + "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + } + }, + "npm:buffer-alloc-unsafe": { + "type": "npm", + "name": "npm:buffer-alloc-unsafe", + "data": { + "version": "1.1.0", + "packageName": "buffer-alloc-unsafe", + "hash": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + } + }, + "npm:buffer-alloc": { + "type": "npm", + "name": "npm:buffer-alloc", + "data": { + "version": "1.2.0", + "packageName": "buffer-alloc", + "hash": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==" + } + }, + "npm:buffer-fill": { + "type": "npm", + "name": "npm:buffer-fill", + "data": { + "version": "1.0.0", + "packageName": "buffer-fill", + "hash": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" + } + }, + "npm:bytes@3.0.0": { + "type": "npm", + "name": "npm:bytes@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "15.3.0", + "packageName": "cacache", + "hash": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.5", + "packageName": "call-bind", + "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" + } + }, + "npm:caller-callsite": { + "type": "npm", + "name": "npm:caller-callsite", + "data": { + "version": "2.0.0", + "packageName": "caller-callsite", + "hash": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==" + } + }, + "npm:caller-path": { + "type": "npm", + "name": "npm:caller-path", + "data": { + "version": "2.0.0", + "packageName": "caller-path", + "hash": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==" + } + }, + "npm:callsites@2.0.0": { + "type": "npm", + "name": "npm:callsites@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "callsites", + "hash": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camel-case": { + "type": "npm", + "name": "npm:camel-case", + "data": { + "version": "4.1.2", + "packageName": "camel-case", + "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:camelcase@6.3.0": { + "type": "npm", + "name": "npm:camelcase@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001580", + "packageName": "caniuse-lite", + "hash": "sha512-mtj5ur2FFPZcCEpXFy8ADXbDACuNFXg6mxVDqp7tqooX6l3zwm+d8EPoeOSIFRDvHs8qu7/SLFOGniULkcH2iA==" + } + }, + "npm:chalk@5.3.0": { + "type": "npm", + "name": "npm:chalk@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + } + }, + "npm:chalk@1.1.3": { + "type": "npm", + "name": "npm:chalk@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "chalk", + "hash": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk@3.0.0": { + "type": "npm", + "name": "npm:chalk@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chalk", + "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:char-regex@2.0.1": { + "type": "npm", + "name": "npm:char-regex@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "char-regex", + "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" + } + }, + "npm:charenc": { + "type": "npm", + "name": "npm:charenc", + "data": { + "version": "0.0.2", + "packageName": "charenc", + "hash": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==" + } + }, + "npm:chokidar@3.6.0": { + "type": "npm", + "name": "npm:chokidar@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "chokidar", + "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:chrome-launcher": { + "type": "npm", + "name": "npm:chrome-launcher", + "data": { + "version": "0.15.2", + "packageName": "chrome-launcher", + "hash": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.3", + "packageName": "chrome-trace-event", + "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + } + }, + "npm:chromium-edge-launcher": { + "type": "npm", + "name": "npm:chromium-edge-launcher", + "data": { + "version": "1.0.0", + "packageName": "chromium-edge-launcher", + "hash": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==" + } + }, + "npm:ci-info@2.0.0": { + "type": "npm", + "name": "npm:ci-info@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ci-info", + "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.9.0", + "packageName": "ci-info", + "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.3", + "packageName": "cjs-module-lexer", + "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + } + }, + "npm:clean-css": { + "type": "npm", + "name": "npm:clean-css", + "data": { + "version": "5.3.3", + "packageName": "clean-css", + "hash": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:clean-webpack-plugin": { + "type": "npm", + "name": "npm:clean-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "clean-webpack-plugin", + "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" + } + }, + "npm:cli-cursor@2.1.0": { + "type": "npm", + "name": "npm:cli-cursor@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "cli-cursor", + "hash": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-cursor@4.0.0": { + "type": "npm", + "name": "npm:cli-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-cursor", + "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.9.2", + "packageName": "cli-spinners", + "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" + } + }, + "npm:cli-styles": { + "type": "npm", + "name": "npm:cli-styles", + "data": { + "version": "0.4.0", + "packageName": "cli-styles", + "hash": "sha512-vftbMiExtwwZn/sEFdD4Niw76lfKCmVSJkWHFyO9kqsNPiE6ngiXfP4sJaO9ak1XC1aNKpY53Fu8uMDy3UjhNA==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" + } + }, + "npm:cliui@6.0.0": { + "type": "npm", + "name": "npm:cliui@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cliui", + "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:clone@1.0.4": { + "type": "npm", + "name": "npm:clone@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "2.1.2", + "packageName": "clone", + "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.2", + "packageName": "collect-v8-coverage", + "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + } + }, + "npm:color-convert@1.9.3": { + "type": "npm", + "name": "npm:color-convert@1.9.3", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name@1.1.3": { + "type": "npm", + "name": "npm:color-name@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:color-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.9.1", + "packageName": "color-string", + "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" + } + }, + "npm:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "4.2.3", + "packageName": "color", + "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette@1.4.0": { + "type": "npm", + "name": "npm:colorette@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "colorette", + "hash": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:command-exists": { + "type": "npm", + "name": "npm:command-exists", + "data": { + "version": "1.2.9", + "packageName": "command-exists", + "hash": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:commander@2.20.0": { + "type": "npm", + "name": "npm:commander@2.20.0", + "data": { + "version": "2.20.0", + "packageName": "commander", + "hash": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==" + } + }, + "npm:commander@2.20.3": { + "type": "npm", + "name": "npm:commander@2.20.3", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:commander@4.1.1": { + "type": "npm", + "name": "npm:commander@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "commander", + "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + } + }, + "npm:commander@5.1.0": { + "type": "npm", + "name": "npm:commander@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "commander", + "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@8.3.0": { + "type": "npm", + "name": "npm:commander@8.3.0", + "data": { + "version": "8.3.0", + "packageName": "commander", + "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + } + }, + "npm:commander@9.5.0": { + "type": "npm", + "name": "npm:commander@9.5.0", + "data": { + "version": "9.5.0", + "packageName": "commander", + "hash": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + } + }, + "npm:compare-urls": { + "type": "npm", + "name": "npm:compare-urls", + "data": { + "version": "2.0.0", + "packageName": "compare-urls", + "hash": "sha512-eCJcWn2OYFEIqbm70ta7LQowJOOZZqq1a2YbbFCFI1uwSvj+TWMwXVn7vPR1ceFNcAIt5RSTDbwdlX82gYLTkA==" + } + }, + "npm:component-type": { + "type": "npm", + "name": "npm:component-type", + "data": { + "version": "1.2.2", + "packageName": "component-type", + "hash": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, + "npm:connect": { + "type": "npm", + "name": "npm:connect", + "data": { + "version": "3.7.0", + "packageName": "connect", + "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.5", + "packageName": "content-type", + "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + } + }, + "npm:cookie-signature@1.2.1": { + "type": "npm", + "name": "npm:cookie-signature@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "cookie-signature", + "hash": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.5.0", + "packageName": "cookie", + "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + }, + "npm:cookie@0.4.2": { + "type": "npm", + "name": "npm:cookie@0.4.2", + "data": { + "version": "0.4.2", + "packageName": "cookie", + "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "10.2.4", + "packageName": "copy-webpack-plugin", + "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" + } + }, + "npm:core-js-compat": { + "type": "npm", + "name": "npm:core-js-compat", + "data": { + "version": "3.35.1", + "packageName": "core-js-compat", + "hash": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "5.2.1", + "packageName": "cosmiconfig", + "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:cross-env": { + "type": "npm", + "name": "npm:cross-env", + "data": { + "version": "7.0.3", + "packageName": "cross-env", + "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" + } + }, + "npm:cross-fetch": { + "type": "npm", + "name": "npm:cross-fetch", + "data": { + "version": "3.1.8", + "packageName": "cross-fetch", + "hash": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:crypt": { + "type": "npm", + "name": "npm:crypt", + "data": { + "version": "0.0.2", + "packageName": "crypt", + "hash": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==" + } + }, + "npm:crypto-random-string": { + "type": "npm", + "name": "npm:crypto-random-string", + "data": { + "version": "1.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==" + } + }, + "npm:crypto-random-string@2.0.0": { + "type": "npm", + "name": "npm:crypto-random-string@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "6.4.1", + "packageName": "css-declaration-sorter", + "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" + } + }, + "npm:css-in-js-utils": { + "type": "npm", + "name": "npm:css-in-js-utils", + "data": { + "version": "3.1.0", + "packageName": "css-in-js-utils", + "hash": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.9.1", + "packageName": "css-loader", + "hash": "sha512-OzABOh0+26JKFdMzlK6PY1u5Zx8+Ck7CVRlcGNZoY9qwJjdfu2VWFuprTIpPW+Av5TZTVViYWcFQaEEQURLknQ==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "3.4.1", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "4.3.0", + "packageName": "css-select", + "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" + } + }, + "npm:css-select@5.1.0": { + "type": "npm", + "name": "npm:css-select@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "1.1.3", + "packageName": "css-tree", + "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "5.2.14", + "packageName": "cssnano-preset-default", + "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "3.1.0", + "packageName": "cssnano-utils", + "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "5.1.15", + "packageName": "cssnano", + "hash": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==" + } + }, + "npm:csso@4.2.0": { + "type": "npm", + "name": "npm:csso@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "csso", + "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + } + }, + "npm:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssom@0.3.8": { + "type": "npm", + "name": "npm:cssom@0.3.8", + "data": { + "version": "0.3.8", + "packageName": "cssom", + "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.1.3", + "packageName": "csstype", + "hash": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + } + }, + "npm:dag-map": { + "type": "npm", + "name": "npm:dag-map", + "data": { + "version": "1.0.2", + "packageName": "dag-map", + "hash": "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "3.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" + } + }, + "npm:data-urls": { + "type": "npm", + "name": "npm:data-urls", + "data": { + "version": "3.0.2", + "packageName": "data-urls", + "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" + } + }, + "npm:dayjs": { + "type": "npm", + "name": "npm:dayjs", + "data": { + "version": "1.11.10", + "packageName": "dayjs", + "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:decode-uri-component": { + "type": "npm", + "name": "npm:decode-uri-component", + "data": { + "version": "0.2.2", + "packageName": "decode-uri-component", + "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "1.5.1", + "packageName": "dedent", + "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.3.1", + "packageName": "deepmerge", + "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "4.2.0", + "packageName": "default-gateway", + "hash": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==" + } + }, + "npm:default-gateway@6.0.3": { + "type": "npm", + "name": "npm:default-gateway@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.1", + "packageName": "define-data-property", + "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.1", + "packageName": "define-properties", + "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" + } + }, + "npm:del": { + "type": "npm", + "name": "npm:del", + "data": { + "version": "4.1.1", + "packageName": "del", + "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" + } + }, + "npm:del@6.1.1": { + "type": "npm", + "name": "npm:del@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "del", + "hash": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:denodeify": { + "type": "npm", + "name": "npm:denodeify", + "data": { + "version": "1.2.1", + "packageName": "denodeify", + "hash": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + } + }, + "npm:deprecated-react-native-prop-types": { + "type": "npm", + "name": "npm:deprecated-react-native-prop-types", + "data": { + "version": "5.0.0", + "packageName": "deprecated-react-native-prop-types", + "hash": "sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.2.0", + "packageName": "destroy", + "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + } + }, + "npm:detect-libc": { + "type": "npm", + "name": "npm:detect-libc", + "data": { + "version": "1.0.3", + "packageName": "detect-libc", + "hash": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.6.1", + "packageName": "dns-packet", + "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:doctrine@3.0.0": { + "type": "npm", + "name": "npm:doctrine@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:dom-converter": { + "type": "npm", + "name": "npm:dom-converter", + "data": { + "version": "0.2.0", + "packageName": "dom-converter", + "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "1.4.1", + "packageName": "dom-serializer", + "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" + } + }, + "npm:dom-serializer@2.0.0": { + "type": "npm", + "name": "npm:dom-serializer@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "4.3.1", + "packageName": "domhandler", + "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" + } + }, + "npm:domhandler@5.0.3": { + "type": "npm", + "name": "npm:domhandler@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "2.8.0", + "packageName": "domutils", + "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + } + }, + "npm:domutils@3.1.0": { + "type": "npm", + "name": "npm:domutils@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "domutils", + "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "16.4.1", + "packageName": "dotenv", + "hash": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==" + } + }, + "npm:dotenv@16.0.3": { + "type": "npm", + "name": "npm:dotenv@16.0.3", + "data": { + "version": "16.0.3", + "packageName": "dotenv", + "hash": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.4.647", + "packageName": "electron-to-chromium", + "hash": "sha512-Z/fTNGwc45WrYQhPaEcz5tAJuZZ8G7S/DBnhS6Kgp4BxnS40Z/HqlJ0hHg3Z79IGVzuVartIlTcjw/cQbPLgOw==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.15.0", + "packageName": "enhanced-resolve", + "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" + } + }, + "npm:entities@2.2.0": { + "type": "npm", + "name": "npm:entities@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "entities", + "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:env-editor": { + "type": "npm", + "name": "npm:env-editor", + "data": { + "version": "0.4.2", + "packageName": "env-editor", + "hash": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.11.0", + "packageName": "envinfo", + "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" + } + }, + "npm:eol": { + "type": "npm", + "name": "npm:eol", + "data": { + "version": "0.9.1", + "packageName": "eol", + "hash": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.1.4", + "packageName": "error-stack-parser", + "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" + } + }, + "npm:errorhandler": { + "type": "npm", + "name": "npm:errorhandler", + "data": { + "version": "1.5.1", + "packageName": "errorhandler", + "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.22.3", + "packageName": "es-abstract", + "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" + } + }, + "npm:es-iterator-helpers": { + "type": "npm", + "name": "npm:es-iterator-helpers", + "data": { + "version": "1.0.15", + "packageName": "es-iterator-helpers", + "hash": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.4.1", + "packageName": "es-module-lexer", + "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.2", + "packageName": "es-set-tostringtag", + "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.0.2", + "packageName": "es-shim-unscopables", + "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + } + }, + "npm:escape-string-regexp@1.0.5": { + "type": "npm", + "name": "npm:escape-string-regexp@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "8.10.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==" + } + }, + "npm:eslint-config-universe": { + "type": "npm", + "name": "npm:eslint-config-universe", + "data": { + "version": "11.3.0", + "packageName": "eslint-config-universe", + "hash": "sha512-CL6v7IxV+OJn0q1vqtFVtX+sNUdY7MiIy3/XD0dy96D7RsDvYBWWqs4S1AIB4AdVgraNnv829q1+asluAePSSw==" + } + }, + "npm:eslint-import-resolver-node": { + "type": "npm", + "name": "npm:eslint-import-resolver-node", + "data": { + "version": "0.3.9", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.8.0", + "packageName": "eslint-module-utils", + "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" + } + }, + "npm:eslint-plugin-es": { + "type": "npm", + "name": "npm:eslint-plugin-es", + "data": { + "version": "3.0.1", + "packageName": "eslint-plugin-es", + "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" + } + }, + "npm:eslint-plugin-import": { + "type": "npm", + "name": "npm:eslint-plugin-import", + "data": { + "version": "2.29.1", + "packageName": "eslint-plugin-import", + "hash": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==" + } + }, + "npm:eslint-plugin-node": { + "type": "npm", + "name": "npm:eslint-plugin-node", + "data": { + "version": "11.1.0", + "packageName": "eslint-plugin-node", + "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" + } + }, + "npm:eslint-plugin-prettier": { + "type": "npm", + "name": "npm:eslint-plugin-prettier", + "data": { + "version": "4.2.1", + "packageName": "eslint-plugin-prettier", + "hash": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==" + } + }, + "npm:eslint-plugin-react-hooks": { + "type": "npm", + "name": "npm:eslint-plugin-react-hooks", + "data": { + "version": "4.6.0", + "packageName": "eslint-plugin-react-hooks", + "hash": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==" + } + }, + "npm:eslint-plugin-react-native-globals": { + "type": "npm", + "name": "npm:eslint-plugin-react-native-globals", + "data": { + "version": "0.1.2", + "packageName": "eslint-plugin-react-native-globals", + "hash": "sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==" + } + }, + "npm:eslint-plugin-react-native": { + "type": "npm", + "name": "npm:eslint-plugin-react-native", + "data": { + "version": "4.1.0", + "packageName": "eslint-plugin-react-native", + "hash": "sha512-QLo7rzTBOl43FvVqDdq5Ql9IoElIuTdjrz9SKAXCvULvBoRZ44JGSkx9z4999ZusCsb4rK3gjS8gOGyeYqZv2Q==" + } + }, + "npm:eslint-plugin-react": { + "type": "npm", + "name": "npm:eslint-plugin-react", + "data": { + "version": "7.33.2", + "packageName": "eslint-plugin-react", + "hash": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-scope@7.2.2": { + "type": "npm", + "name": "npm:eslint-scope@7.2.2", + "data": { + "version": "7.2.2", + "packageName": "eslint-scope", + "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "2.1.0", + "packageName": "eslint-utils", + "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + } + }, + "npm:eslint-visitor-keys@1.3.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "3.4.3", + "packageName": "eslint-visitor-keys", + "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "8.56.0", + "packageName": "eslint", + "hash": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + } + }, + "npm:event-target-shim": { + "type": "npm", + "name": "npm:event-target-shim", + "data": { + "version": "5.0.1", + "packageName": "event-target-shim", + "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + } + }, + "npm:eventemitter3@4.0.7": { + "type": "npm", + "name": "npm:eventemitter3@4.0.7", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "5.0.1", + "packageName": "eventemitter3", + "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:exec-async": { + "type": "npm", + "name": "npm:exec-async", + "data": { + "version": "2.2.0", + "packageName": "exec-async", + "hash": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==" + } + }, + "npm:execa@7.2.0": { + "type": "npm", + "name": "npm:execa@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "execa", + "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" + } + }, + "npm:execa@1.0.0": { + "type": "npm", + "name": "npm:execa@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "execa", + "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expect": { + "type": "npm", + "name": "npm:expect", + "data": { + "version": "29.7.0", + "packageName": "expect", + "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" + } + }, + "npm:expo-app-loading": { + "type": "npm", + "name": "npm:expo-app-loading", + "data": { + "version": "2.1.1", + "packageName": "expo-app-loading", + "hash": "sha512-b3VNkPuFaI9J847HSpjI4uiuyE4+IWyAIPT9uzbkS7QFknL99DMoihtgzeWzKaJKSAmbYc3ph2Vl9skJAkVYUg==" + } + }, + "npm:expo-application": { + "type": "npm", + "name": "npm:expo-application", + "data": { + "version": "5.8.3", + "packageName": "expo-application", + "hash": "sha512-IISxzpPX+Xe4ynnwX8yY52T6dm1g9sME1GCj4lvUlrdc5xeTPM6U35x7Wj82V7lLWBaVGe+/Tg9EeKqfylCEwA==" + } + }, + "npm:expo-asset": { + "type": "npm", + "name": "npm:expo-asset", + "data": { + "version": "9.0.2", + "packageName": "expo-asset", + "hash": "sha512-PzYKME1MgUOoUvwtdzhAyXkjXOXGiSYqGKG/MsXwWr0Ef5wlBaBm2DCO9V6KYbng5tBPFu6hTjoRNil1tBOSow==" + } + }, + "npm:expo-clipboard": { + "type": "npm", + "name": "npm:expo-clipboard", + "data": { + "version": "5.0.1", + "packageName": "expo-clipboard", + "hash": "sha512-JH853QJPr5W3h87If3aDTnMK+ESSIrwzU2TdfZrqZttVDY2pMIf/w37mVHHNYodXM4ATHXadtOkjKbAa0DWwUg==" + } + }, + "npm:expo-constants": { + "type": "npm", + "name": "npm:expo-constants", + "data": { + "version": "15.4.5", + "packageName": "expo-constants", + "hash": "sha512-1pVVjwk733hbbIjtQcvUFCme540v4gFemdNlaxM2UXKbfRCOh2hzgKN5joHMOysoXQe736TTUrRj7UaZI5Yyhg==" + } + }, + "npm:expo-crypto": { + "type": "npm", + "name": "npm:expo-crypto", + "data": { + "version": "12.8.0", + "packageName": "expo-crypto", + "hash": "sha512-67CoxXz+b4VU1zMo/2kUp+9t6TiVs8HvCvHsW8zoLLAZkVNa3YW1l0arLtQ4oR4HQpEr1i9rAZhP0/mvo+fg5A==" + } + }, + "npm:expo-dev-client": { + "type": "npm", + "name": "npm:expo-dev-client", + "data": { + "version": "3.3.7", + "packageName": "expo-dev-client", + "hash": "sha512-dsucMzezNuP7zxSxYi1EbIA16j491tD9joUlGlpvBW1IylxUmbPraOqUqdXsDxRIAJh5HgJx/8X03Xoo1j7YKw==" + } + }, + "npm:expo-dev-launcher": { + "type": "npm", + "name": "npm:expo-dev-launcher", + "data": { + "version": "3.6.4", + "packageName": "expo-dev-launcher", + "hash": "sha512-i5NGm2QeVl7ePk9nyvW1hAEg29FRMltNNEkRiK/AF77ObrD0YG/FhhidQL8C/SIIm/3RcsjAiw4buF5QRoieKg==" + } + }, + "npm:expo-dev-menu-interface": { + "type": "npm", + "name": "npm:expo-dev-menu-interface", + "data": { + "version": "1.7.2", + "packageName": "expo-dev-menu-interface", + "hash": "sha512-V/geSB9rW0IPTR+d7E5CcvkV0uVUCE7SMHZqE/J0/dH06Wo8AahB16fimXeh5/hTL2Qztq8CQ41xpFUBoA9TEw==" + } + }, + "npm:expo-dev-menu@4.5.4": { + "type": "npm", + "name": "npm:expo-dev-menu@4.5.4", + "data": { + "version": "4.5.4", + "packageName": "expo-dev-menu", + "hash": "sha512-TLCfXKI7r5PJpMKUcslKz9J7tChdYdm6DmOEYwFQC3OLcegXzCT/H92WfTdVXU+xz5XYTcyvnIZQa7/d2Ig90g==" + } + }, + "npm:expo-dev-menu": { + "type": "npm", + "name": "npm:expo-dev-menu", + "data": { + "version": "4.5.5", + "packageName": "expo-dev-menu", + "hash": "sha512-PcbI/SqAvueOIEtR1O0s+WvVD7yizQSqXisDSkBrTym3u8XZSN+K730kz2Z64ukY9YIPG4qWR4sd+9rcjsbMWw==" + } + }, + "npm:expo-device": { + "type": "npm", + "name": "npm:expo-device", + "data": { + "version": "5.9.3", + "packageName": "expo-device", + "hash": "sha512-azH5rz8krDZUJb/arqkcA6oZGaX2T5s4aaXIMFsDDzvq8TW0CttZZy2HFp6itmFdiKGdRpFX3/Gj0n6ZmPoJ/w==" + } + }, + "npm:expo-eas-client": { + "type": "npm", + "name": "npm:expo-eas-client", + "data": { + "version": "0.11.2", + "packageName": "expo-eas-client", + "hash": "sha512-SY7rVFxb4ut/OMTgR7A39Jg+8+hXwQNRpZd+RBpB+B5XV2STj/pWXHnGFhBayEF4umI4SxrOvisY90rlPWVO9Q==" + } + }, + "npm:expo-file-system": { + "type": "npm", + "name": "npm:expo-file-system", + "data": { + "version": "16.0.5", + "packageName": "expo-file-system", + "hash": "sha512-JpKMbKfwTaMCbwUwq7MwcSbPR7r+IqZEL3RFam3ClPHDtKLnlEoywREeaDsWjSZb7dS25hG3WqXspfTuugCDvg==" + } + }, + "npm:expo-font": { + "type": "npm", + "name": "npm:expo-font", + "data": { + "version": "11.10.2", + "packageName": "expo-font", + "hash": "sha512-AE0Q0LiWiVosQ/jlKUPoWoob7p3GwYM2xmLoUkuopO9RYh9NL1hZKHiMKcWBZyDG8Gww1GtBQwh7ZREST8+jjQ==" + } + }, + "npm:expo-haptics": { + "type": "npm", + "name": "npm:expo-haptics", + "data": { + "version": "12.8.1", + "packageName": "expo-haptics", + "hash": "sha512-ntLsHkfle8K8w9MW8pZEw92ZN3sguaGUSSIxv30fPKNeQFu7Cq/h47Qv3tONv2MO3wU48N9FbKnant6XlfptpA==" + } + }, + "npm:expo-json-utils": { + "type": "npm", + "name": "npm:expo-json-utils", + "data": { + "version": "0.12.3", + "packageName": "expo-json-utils", + "hash": "sha512-4pypQdinpNc6XY9wsZk56njvzDh+B/9mISr7FPP3CVk1QGB1nSLh883/BCDSgnsephATZkC5HG+cdE60kCAR6A==" + } + }, + "npm:expo-keep-awake": { + "type": "npm", + "name": "npm:expo-keep-awake", + "data": { + "version": "12.8.2", + "packageName": "expo-keep-awake", + "hash": "sha512-uiQdGbSX24Pt8nGbnmBtrKq6xL/Tm3+DuDRGBk/3ZE/HlizzNosGRIufIMJ/4B4FRw4dw8KU81h2RLuTjbay6g==" + } + }, + "npm:expo-linear-gradient": { + "type": "npm", + "name": "npm:expo-linear-gradient", + "data": { + "version": "12.7.1", + "packageName": "expo-linear-gradient", + "hash": "sha512-2obkeC1hyOlljCpTbO3xS4WkEEYA9UtgDO486H+8wYYl1qf6C05d+LgWEVMD7B7CKI3xG/g5chPr9T0BLMSY4w==" + } + }, + "npm:expo-linking": { + "type": "npm", + "name": "npm:expo-linking", + "data": { + "version": "6.2.2", + "packageName": "expo-linking", + "hash": "sha512-FEe6lP4f7xFT/vjoHRG+tt6EPVtkEGaWNK1smpaUevmNdyCJKqW0PDB8o8sfG6y7fly8ULe8qg3HhKh5J7aqUQ==" + } + }, + "npm:expo-local-authentication": { + "type": "npm", + "name": "npm:expo-local-authentication", + "data": { + "version": "13.8.0", + "packageName": "expo-local-authentication", + "hash": "sha512-h0YA7grVdo3834AS70EUCsalaXrrEnoq+yTvIhRTxiPmzWxUv7rNo5ff+XsIEYNElKPmT/wh/xPV1yo3l3fhGg==" + } + }, + "npm:expo-localization": { + "type": "npm", + "name": "npm:expo-localization", + "data": { + "version": "14.8.3", + "packageName": "expo-localization", + "hash": "sha512-leg1e+7ocUgfNWa7Men/g16waXtdSpBMR9tCdv3CG4wztmFU8C+87VAnnVkvHi4CCUkTLzhP3y0FcE6KIWTwdw==" + } + }, + "npm:expo-manifests": { + "type": "npm", + "name": "npm:expo-manifests", + "data": { + "version": "0.13.2", + "packageName": "expo-manifests", + "hash": "sha512-l0Sia1WmLULx8V41K8RzGLsFoTe4qqthPRGpHjItsYn8ZB6lRrdTBM9OYp2McIflgqN1HAimUCQMFIwJyH+UmA==" + } + }, + "npm:expo-modules-autolinking": { + "type": "npm", + "name": "npm:expo-modules-autolinking", + "data": { + "version": "1.10.2", + "packageName": "expo-modules-autolinking", + "hash": "sha512-OEeoz0+zGx5EJwGtDm9pSywCr+gUCaisZV0mNkK7V3fuRl+EVPBSsI+957JwAc4ZxVps95jy28eLcRRtQ33yVg==" + } + }, + "npm:expo-modules-core": { + "type": "npm", + "name": "npm:expo-modules-core", + "data": { + "version": "1.11.8", + "packageName": "expo-modules-core", + "hash": "sha512-rlctE3nCNLCGv3LosGQNaTuwGrr2SyQA+hOgci/0l+VRc0gFNtvl0gskph9C0tnN1jzBeb8rRZQYVj5ih1yxcA==" + } + }, + "npm:expo-network": { + "type": "npm", + "name": "npm:expo-network", + "data": { + "version": "5.8.0", + "packageName": "expo-network", + "hash": "sha512-mTtyqRgLKvXWB+xCoY5WMtRrpVqYmcXWz3YbyN+X0HRGqXg7a+UYOXeKlxrkwBiadsElhmfMeaj1UpmW79Zw/w==" + } + }, + "npm:expo-notifications": { + "type": "npm", + "name": "npm:expo-notifications", + "data": { + "version": "0.27.5", + "packageName": "expo-notifications", + "hash": "sha512-Ym1vl6/w5X4qEmVmO78T2GapsVeRp2/G2d+0NEUJufh57l6S/KTOlhjtXPJakDmefPcftc2Co5vHsF03Wpd2Bw==" + } + }, + "npm:expo-pwa": { + "type": "npm", + "name": "npm:expo-pwa", + "data": { + "version": "0.0.127", + "packageName": "expo-pwa", + "hash": "sha512-8D9wEDkEXG9r6TPvAFpWt27IiP1cLm/4RWVRUHzFZflbWYLi8GkYArj5LHbbfokybRm1GVAanSrrYFEqHoIUiA==" + } + }, + "npm:expo-router": { + "type": "npm", + "name": "npm:expo-router", + "data": { + "version": "3.4.6", + "packageName": "expo-router", + "hash": "sha512-yxl0QE4KAqLmLyH8AxWsGSV3M34jsAE8X75cOB2oaK0+Pu9VHSUf6w3iRi93IiJ0rOUXm8jKrjhfhZOrrNh7EA==" + } + }, + "npm:expo-screen-orientation": { + "type": "npm", + "name": "npm:expo-screen-orientation", + "data": { + "version": "6.4.1", + "packageName": "expo-screen-orientation", + "hash": "sha512-VM0C9ORNL1aT6Dr2OUeryzV519n0FjtXI2m+HlijOMi1QT2bPg4tBkCd7HLgywU4dZ1Esa46ewUudmk+fOqmMQ==" + } + }, + "npm:expo-secure-store": { + "type": "npm", + "name": "npm:expo-secure-store", + "data": { + "version": "12.8.1", + "packageName": "expo-secure-store", + "hash": "sha512-Ju3jmkHby4w7rIzdYAt9kQyQ7HhHJ0qRaiQOInknhOLIltftHjEgF4I1UmzKc7P5RCfGNmVbEH729Pncp/sHXQ==" + } + }, + "npm:expo-splash-screen": { + "type": "npm", + "name": "npm:expo-splash-screen", + "data": { + "version": "0.26.4", + "packageName": "expo-splash-screen", + "hash": "sha512-2DwofTQ0FFQCsvDysm/msENsbyNsJiAJwK3qK/oXeizECAPqD7bK19J4z9kuEbr7ORPX9MLnTQYKl6kmX3keUg==" + } + }, + "npm:expo-splash-screen@0.17.5": { + "type": "npm", + "name": "npm:expo-splash-screen@0.17.5", + "data": { + "version": "0.17.5", + "packageName": "expo-splash-screen", + "hash": "sha512-ejSO78hwHXz8T9u8kh8t4r6CR4h70iBvA65gX8GK+dYxZl6/IANPbIb2VnUpND9vqfW+JnkDw+ZFst+gDnkpcQ==" + } + }, + "npm:expo-status-bar": { + "type": "npm", + "name": "npm:expo-status-bar", + "data": { + "version": "1.11.1", + "packageName": "expo-status-bar", + "hash": "sha512-ddQEtCOgYHTLlFUe/yH67dDBIoct5VIULthyT3LRJbEwdpzAgueKsX2FYK02ldh440V87PWKCamh7R9evk1rrg==" + } + }, + "npm:expo-structured-headers": { + "type": "npm", + "name": "npm:expo-structured-headers", + "data": { + "version": "3.7.2", + "packageName": "expo-structured-headers", + "hash": "sha512-/nGOyeWUXSUy4aIYKJTwQOznRNs0yKqKPAyEE6jtwvOl9qvfDWx9xskNtShioggBhFAssFkV6RBbPn+xZMQtvw==" + } + }, + "npm:expo-system-ui": { + "type": "npm", + "name": "npm:expo-system-ui", + "data": { + "version": "2.9.3", + "packageName": "expo-system-ui", + "hash": "sha512-RNFNBLJ9lhnjOGrHhtfDc15Ry/lF+SA4kwulmHzYGqaTeYvsL9q0K0+m9qmxuDdrbKJkuurvzvjVylDNnKNFVg==" + } + }, + "npm:expo-updates-interface": { + "type": "npm", + "name": "npm:expo-updates-interface", + "data": { + "version": "0.15.3", + "packageName": "expo-updates-interface", + "hash": "sha512-uLvsbaCmUsXgJqeen8rYH/jPr874ZUCXEvWpKHxrCv5/XATPlYEaDuecbNSGQ+cu78i6MdtB4BHOwZmoH2d47A==" + } + }, + "npm:expo-updates": { + "type": "npm", + "name": "npm:expo-updates", + "data": { + "version": "0.24.8", + "packageName": "expo-updates", + "hash": "sha512-jsnMAMG+Ib5At94LwuA94mQMmHSg4vmI5E0RpTjQ5kRxE10cX4QSzQyvmETnKrD6x+KsZPzEUFD7RIudEnx9JA==" + } + }, + "npm:expo-web-browser": { + "type": "npm", + "name": "npm:expo-web-browser", + "data": { + "version": "12.8.2", + "packageName": "expo-web-browser", + "hash": "sha512-Mw8WoFMSADecNjtC4PZVsVj1/lYdxIAH1jOVV+F8v8SEWYxORWofoShfXg7oUxRLu0iUG8JETfO5y4m8+fOgdg==" + } + }, + "npm:expo": { + "type": "npm", + "name": "npm:expo", + "data": { + "version": "50.0.3", + "packageName": "expo", + "hash": "sha512-3Yk42YShkugC90S24Dbo0mhrq/N3Kfn30FscrjCk3o8ldXh9OdE5RhVi/mc5Cqp28nw5a4DfiGSDFs0mA0t2ng==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.18.2", + "packageName": "express", + "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" + } + }, + "npm:fake-xml-http-request": { + "type": "npm", + "name": "npm:fake-xml-http-request", + "data": { + "version": "2.1.2", + "packageName": "fake-xml-http-request", + "hash": "sha512-HaFMBi7r+oEC9iJNpc3bvcW7Z7iLmM26hPDmlb0mFwyANSsOQAtJxbdWsXITKOzZUyMYK0zYCv3h5yDj9TsiXg==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-diff": { + "type": "npm", + "name": "npm:fast-diff", + "data": { + "version": "1.3.0", + "packageName": "fast-diff", + "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-loops": { + "type": "npm", + "name": "npm:fast-loops", + "data": { + "version": "1.1.3", + "packageName": "fast-loops", + "hash": "sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==" + } + }, + "npm:fast-xml-parser": { + "type": "npm", + "name": "npm:fast-xml-parser", + "data": { + "version": "4.3.3", + "packageName": "fast-xml-parser", + "hash": "sha512-coV/D1MhrShMvU6D0I+VAK3umz6hUaxxhL0yp/9RjfiYUfAv14rDhGQL+PLForhMdr0wq3PiV07WtkkNjJjNHg==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.16.0", + "packageName": "fastq", + "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fbemitter": { + "type": "npm", + "name": "npm:fbemitter", + "data": { + "version": "3.0.0", + "packageName": "fbemitter", + "hash": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" + } + }, + "npm:fbjs-css-vars": { + "type": "npm", + "name": "npm:fbjs-css-vars", + "data": { + "version": "1.0.2", + "packageName": "fbjs-css-vars", + "hash": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + } + }, + "npm:fbjs": { + "type": "npm", + "name": "npm:fbjs", + "data": { + "version": "3.0.5", + "packageName": "fbjs", + "hash": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==" + } + }, + "npm:fetch-retry": { + "type": "npm", + "name": "npm:fetch-retry", + "data": { + "version": "4.1.1", + "packageName": "fetch-retry", + "hash": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==" + } + }, + "npm:figures@1.7.0": { + "type": "npm", + "name": "npm:figures@1.7.0", + "data": { + "version": "1.7.0", + "packageName": "figures", + "hash": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==" + } + }, + "npm:figures@2.0.0": { + "type": "npm", + "name": "npm:figures@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "figures", + "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:filter-obj": { + "type": "npm", + "name": "npm:filter-obj", + "data": { + "version": "1.1.0", + "packageName": "filter-obj", + "hash": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.1.2", + "packageName": "finalhandler", + "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" + } + }, + "npm:finalhandler@1.2.0": { + "type": "npm", + "name": "npm:finalhandler@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:find-babel-config": { + "type": "npm", + "name": "npm:find-babel-config", + "data": { + "version": "2.0.0", + "packageName": "find-babel-config", + "hash": "sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==" + } + }, + "npm:find-cache-dir@2.1.0": { + "type": "npm", + "name": "npm:find-cache-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-cache-dir", + "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" + } + }, + "npm:find-cache-dir@3.3.2": { + "type": "npm", + "name": "npm:find-cache-dir@3.3.2", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "4.0.0", + "packageName": "find-cache-dir", + "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:find-up@4.1.0": { + "type": "npm", + "name": "npm:find-up@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, + "npm:find-yarn-workspace-root": { + "type": "npm", + "name": "npm:find-yarn-workspace-root", + "data": { + "version": "2.0.0", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.2.0", + "packageName": "flat-cache", + "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.9", + "packageName": "flatted", + "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + } + }, + "npm:flow-enums-runtime": { + "type": "npm", + "name": "npm:flow-enums-runtime", + "data": { + "version": "0.0.6", + "packageName": "flow-enums-runtime", + "hash": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==" + } + }, + "npm:flow-parser@0.227.0": { + "type": "npm", + "name": "npm:flow-parser@0.227.0", + "data": { + "version": "0.227.0", + "packageName": "flow-parser", + "hash": "sha512-nOygtGKcX/siZK/lFzpfdHEfOkfGcTW7rNroR1Zsz6T/JxSahPALXVt5qVHq/fgvMJuv096BTKbgxN3PzVBaDA==" + } + }, + "npm:flow-parser": { + "type": "npm", + "name": "npm:flow-parser", + "data": { + "version": "0.206.0", + "packageName": "flow-parser", + "hash": "sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.5", + "packageName": "follow-redirects", + "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" + } + }, + "npm:fontfaceobserver": { + "type": "npm", + "name": "npm:fontfaceobserver", + "data": { + "version": "2.3.0", + "packageName": "fontfaceobserver", + "hash": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:form-data@3.0.1": { + "type": "npm", + "name": "npm:form-data@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "form-data", + "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:framer-motion@3.10.6": { + "type": "npm", + "name": "npm:framer-motion@3.10.6", + "data": { + "version": "3.10.6", + "packageName": "framer-motion", + "hash": "sha512-OxOtKgQS4km9a8dm0IMBtNNp4f0DiHfQ/IzxKs818+Kg9V/Ve/pRUJ2dtWBb6+W4lIPNLgRSpbOwOACVj15XcQ==" + } + }, + "npm:framer-motion": { + "type": "npm", + "name": "npm:framer-motion", + "data": { + "version": "6.5.1", + "packageName": "framer-motion", + "hash": "sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==" + } + }, + "npm:framesync": { + "type": "npm", + "name": "npm:framesync", + "data": { + "version": "5.2.0", + "packageName": "framesync", + "hash": "sha512-dcl92w5SHc0o6pRK3//VBVNvu6WkYkiXmHG6ZIXrVzmgh0aDYMDAaoA3p3LH71JIdN5qmhDcfONFA4Lmq22tNA==" + } + }, + "npm:framesync@6.0.1": { + "type": "npm", + "name": "npm:framesync@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "framesync", + "hash": "sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==" + } + }, + "npm:freeport-async": { + "type": "npm", + "name": "npm:freeport-async", + "data": { + "version": "2.0.0", + "packageName": "freeport-async", + "hash": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + } + }, + "npm:fs-extra@9.0.0": { + "type": "npm", + "name": "npm:fs-extra@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "fs-extra", + "hash": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==" + } + }, + "npm:fs-extra@11.2.0": { + "type": "npm", + "name": "npm:fs-extra@11.2.0", + "data": { + "version": "11.2.0", + "packageName": "fs-extra", + "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" + } + }, + "npm:fs-extra@8.1.0": { + "type": "npm", + "name": "npm:fs-extra@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "fs-extra", + "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.5", + "packageName": "fs-monkey", + "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents": { + "type": "npm", + "name": "npm:fsevents", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.2", + "packageName": "function-bind", + "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.6", + "packageName": "function.prototype.name", + "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.2.2", + "packageName": "get-intrinsic", + "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "3.2.0", + "packageName": "get-port", + "hash": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" + } + }, + "npm:get-stream@4.1.0": { + "type": "npm", + "name": "npm:get-stream@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "get-stream", + "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:getenv": { + "type": "npm", + "name": "npm:getenv", + "data": { + "version": "1.0.0", + "packageName": "getenv", + "hash": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent@6.0.2": { + "type": "npm", + "name": "npm:glob-parent@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:glob@7.1.6": { + "type": "npm", + "name": "npm:glob@7.1.6", + "data": { + "version": "7.1.6", + "packageName": "glob", + "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" + } + }, + "npm:glob@10.3.10": { + "type": "npm", + "name": "npm:glob@10.3.10", + "data": { + "version": "10.3.10", + "packageName": "glob", + "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" + } + }, + "npm:glob@6.0.4": { + "type": "npm", + "name": "npm:glob@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "glob", + "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" + } + }, + "npm:glob@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:globals@11.12.0": { + "type": "npm", + "name": "npm:globals@11.12.0", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "13.24.0", + "packageName": "globals", + "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.3", + "packageName": "globalthis", + "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:globby@12.2.0": { + "type": "npm", + "name": "npm:globby@12.2.0", + "data": { + "version": "12.2.0", + "packageName": "globby", + "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" + } + }, + "npm:globby@6.1.0": { + "type": "npm", + "name": "npm:globby@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "globby", + "hash": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:graphemer": { + "type": "npm", + "name": "npm:graphemer", + "data": { + "version": "1.4.0", + "packageName": "graphemer", + "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + } + }, + "npm:graphql-tag": { + "type": "npm", + "name": "npm:graphql-tag", + "data": { + "version": "2.12.6", + "packageName": "graphql-tag", + "hash": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==" + } + }, + "npm:graphql": { + "type": "npm", + "name": "npm:graphql", + "data": { + "version": "15.8.0", + "packageName": "graphql", + "hash": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, + "npm:has-ansi": { + "type": "npm", + "name": "npm:has-ansi", + "data": { + "version": "2.0.0", + "packageName": "has-ansi", + "hash": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.2", + "packageName": "has-bigints", + "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + } + }, + "npm:has-flag@3.0.0": { + "type": "npm", + "name": "npm:has-flag@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.1", + "packageName": "has-property-descriptors", + "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.1", + "packageName": "has-proto", + "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.3", + "packageName": "has-symbols", + "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.0", + "packageName": "hasown", + "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:hermes-estree@0.15.0": { + "type": "npm", + "name": "npm:hermes-estree@0.15.0", + "data": { + "version": "0.15.0", + "packageName": "hermes-estree", + "hash": "sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==" + } + }, + "npm:hermes-estree": { + "type": "npm", + "name": "npm:hermes-estree", + "data": { + "version": "0.18.2", + "packageName": "hermes-estree", + "hash": "sha512-KoLsoWXJ5o81nit1wSyEZnWUGy9cBna9iYMZBR7skKh7okYAYKqQ9/OczwpMHn/cH0hKDyblulGsJ7FknlfVxQ==" + } + }, + "npm:hermes-parser@0.15.0": { + "type": "npm", + "name": "npm:hermes-parser@0.15.0", + "data": { + "version": "0.15.0", + "packageName": "hermes-parser", + "hash": "sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==" + } + }, + "npm:hermes-parser": { + "type": "npm", + "name": "npm:hermes-parser", + "data": { + "version": "0.18.2", + "packageName": "hermes-parser", + "hash": "sha512-1eQfvib+VPpgBZ2zYKQhpuOjw1tH+Emuib6QmjkJWJMhyjM8xnXMvA+76o9LhF0zOAJDZgPfQhg43cyXEyl5Ew==" + } + }, + "npm:hermes-profile-transformer": { + "type": "npm", + "name": "npm:hermes-profile-transformer", + "data": { + "version": "0.0.6", + "packageName": "hermes-profile-transformer", + "hash": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==" + } + }, + "npm:hey-listen": { + "type": "npm", + "name": "npm:hey-listen", + "data": { + "version": "1.0.8", + "packageName": "hey-listen", + "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" + } + }, + "npm:hoist-non-react-statics": { + "type": "npm", + "name": "npm:hoist-non-react-statics", + "data": { + "version": "3.3.2", + "packageName": "hoist-non-react-statics", + "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.4.0", + "packageName": "html-entities", + "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.2", + "packageName": "html-escaper", + "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + } + }, + "npm:html-minifier-terser": { + "type": "npm", + "name": "npm:html-minifier-terser", + "data": { + "version": "6.1.0", + "packageName": "html-minifier-terser", + "hash": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" + } + }, + "npm:html-parse-stringify": { + "type": "npm", + "name": "npm:html-parse-stringify", + "data": { + "version": "3.0.1", + "packageName": "html-parse-stringify", + "hash": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==" + } + }, + "npm:html-webpack-plugin": { + "type": "npm", + "name": "npm:html-webpack-plugin", + "data": { + "version": "5.6.0", + "packageName": "html-webpack-plugin", + "hash": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "6.1.0", + "packageName": "htmlparser2", + "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.0", + "packageName": "http-errors", + "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.8", + "packageName": "http-parser-js", + "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:human-signals@4.3.1": { + "type": "npm", + "name": "npm:human-signals@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "human-signals", + "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + } + }, + "npm:husky": { + "type": "npm", + "name": "npm:husky", + "data": { + "version": "8.0.3", + "packageName": "husky", + "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" + } + }, + "npm:hyphenate-style-name": { + "type": "npm", + "name": "npm:hyphenate-style-name", + "data": { + "version": "1.0.4", + "packageName": "hyphenate-style-name", + "hash": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + } + }, + "npm:i18next": { + "type": "npm", + "name": "npm:i18next", + "data": { + "version": "23.7.20", + "packageName": "i18next", + "hash": "sha512-6qykxPpFPuzxC/VlVCXn3JxkHY5VCxf1w+/8Hz+Wxu4ZvfB+m3sbVruJ3C/rDWlE0Z1GCZTR6sBHIx7KGp0yXA==" + } + }, + "npm:iconv-lite@0.4.24": { + "type": "npm", + "name": "npm:iconv-lite@0.4.24", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.0", + "packageName": "ignore", + "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" + } + }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "1.1.1", + "packageName": "image-size", + "hash": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "4.3.5", + "packageName": "immutable", + "hash": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==" + } + }, + "npm:import-fresh@2.0.0": { + "type": "npm", + "name": "npm:import-fresh@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "import-fresh", + "hash": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:infer-owner": { + "type": "npm", + "name": "npm:infer-owner", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "npm:inflected": { + "type": "npm", + "name": "npm:inflected", + "data": { + "version": "2.1.0", + "packageName": "inflected", + "hash": "sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:inline-style-prefixer": { + "type": "npm", + "name": "npm:inline-style-prefixer", + "data": { + "version": "6.0.4", + "packageName": "inline-style-prefixer", + "hash": "sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==" + } + }, + "npm:internal-ip": { + "type": "npm", + "name": "npm:internal-ip", + "data": { + "version": "4.3.0", + "packageName": "internal-ip", + "hash": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.6", + "packageName": "internal-slot", + "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" + } + }, + "npm:invariant": { + "type": "npm", + "name": "npm:invariant", + "data": { + "version": "2.2.4", + "packageName": "invariant", + "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" + } + }, + "npm:ip-regex": { + "type": "npm", + "name": "npm:ip-regex", + "data": { + "version": "2.1.0", + "packageName": "ip-regex", + "hash": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "1.1.8", + "packageName": "ip", + "hash": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js@2.1.0": { + "type": "npm", + "name": "npm:ipaddr.js@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "ipaddr.js", + "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" + } + }, + "npm:is-arguments": { + "type": "npm", + "name": "npm:is-arguments", + "data": { + "version": "1.1.1", + "packageName": "is-arguments", + "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.2", + "packageName": "is-array-buffer", + "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-arrayish@0.3.2": { + "type": "npm", + "name": "npm:is-arrayish@0.3.2", + "data": { + "version": "0.3.2", + "packageName": "is-arrayish", + "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + }, + "npm:is-async-function": { + "type": "npm", + "name": "npm:is-async-function", + "data": { + "version": "2.0.0", + "packageName": "is-async-function", + "hash": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.2", + "packageName": "is-boolean-object", + "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "1.1.6", + "packageName": "is-buffer", + "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.13.1", + "packageName": "is-core-module", + "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.5", + "packageName": "is-date-object", + "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + } + }, + "npm:is-directory": { + "type": "npm", + "name": "npm:is-directory", + "data": { + "version": "0.3.1", + "packageName": "is-directory", + "hash": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extglob@1.0.0": { + "type": "npm", + "name": "npm:is-extglob@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "is-extglob", + "hash": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-finalizationregistry": { + "type": "npm", + "name": "npm:is-finalizationregistry", + "data": { + "version": "1.0.2", + "packageName": "is-finalizationregistry", + "hash": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==" + } + }, + "npm:is-fullwidth-code-point@2.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-fullwidth-code-point@4.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:is-generator-function": { + "type": "npm", + "name": "npm:is-generator-function", + "data": { + "version": "1.0.10", + "packageName": "is-generator-function", + "hash": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==" + } + }, + "npm:is-glob@2.0.1": { + "type": "npm", + "name": "npm:is-glob@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "is-glob", + "hash": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-invalid-path": { + "type": "npm", + "name": "npm:is-invalid-path", + "data": { + "version": "0.1.0", + "packageName": "is-invalid-path", + "hash": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==" + } + }, + "npm:is-map": { + "type": "npm", + "name": "npm:is-map", + "data": { + "version": "2.0.2", + "packageName": "is-map", + "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + } + }, + "npm:is-nan": { + "type": "npm", + "name": "npm:is-nan", + "data": { + "version": "1.3.2", + "packageName": "is-nan", + "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.2", + "packageName": "is-negative-zero", + "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.7", + "packageName": "is-number-object", + "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-path-cwd": { + "type": "npm", + "name": "npm:is-path-cwd", + "data": { + "version": "2.2.0", + "packageName": "is-path-cwd", + "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + } + }, + "npm:is-path-in-cwd": { + "type": "npm", + "name": "npm:is-path-in-cwd", + "data": { + "version": "2.1.0", + "packageName": "is-path-in-cwd", + "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" + } + }, + "npm:is-path-inside@2.1.0": { + "type": "npm", + "name": "npm:is-path-inside@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "is-path-inside", + "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.3", + "packageName": "is-path-inside", + "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + }, + "npm:is-plain-obj@1.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "2.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:is-potential-custom-element-name": { + "type": "npm", + "name": "npm:is-potential-custom-element-name", + "data": { + "version": "1.0.1", + "packageName": "is-potential-custom-element-name", + "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:is-set": { + "type": "npm", + "name": "npm:is-set", + "data": { + "version": "2.0.2", + "packageName": "is-set", + "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "is-shared-array-buffer", + "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" + } + }, + "npm:is-stream@1.1.0": { + "type": "npm", + "name": "npm:is-stream@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + }, + "npm:is-stream@3.0.0": { + "type": "npm", + "name": "npm:is-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.4", + "packageName": "is-symbol", + "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.12", + "packageName": "is-typed-array", + "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-valid-path": { + "type": "npm", + "name": "npm:is-valid-path", + "data": { + "version": "0.1.1", + "packageName": "is-valid-path", + "hash": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==" + } + }, + "npm:is-weakmap": { + "type": "npm", + "name": "npm:is-weakmap", + "data": { + "version": "2.0.1", + "packageName": "is-weakmap", + "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.2", + "packageName": "is-weakref", + "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" + } + }, + "npm:is-weakset": { + "type": "npm", + "name": "npm:is-weakset", + "data": { + "version": "2.0.2", + "packageName": "is-weakset", + "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" + } + }, + "npm:is-wsl@1.1.0": { + "type": "npm", + "name": "npm:is-wsl@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-wsl", + "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isarray@1.0.0": { + "type": "npm", + "name": "npm:isarray@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.2", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" + } + }, + "npm:istanbul-lib-instrument@5.2.1": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "6.0.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.1", + "packageName": "istanbul-lib-report", + "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.6", + "packageName": "istanbul-reports", + "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" + } + }, + "npm:iterator.prototype": { + "type": "npm", + "name": "npm:iterator.prototype", + "data": { + "version": "1.1.2", + "packageName": "iterator.prototype", + "hash": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "2.3.6", + "packageName": "jackspeak", + "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" + } + }, + "npm:jest-changed-files": { + "type": "npm", + "name": "npm:jest-changed-files", + "data": { + "version": "29.7.0", + "packageName": "jest-changed-files", + "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" + } + }, + "npm:jest-circus": { + "type": "npm", + "name": "npm:jest-circus", + "data": { + "version": "29.7.0", + "packageName": "jest-circus", + "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" + } + }, + "npm:jest-cli": { + "type": "npm", + "name": "npm:jest-cli", + "data": { + "version": "29.7.0", + "packageName": "jest-cli", + "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" + } + }, + "npm:jest-config": { + "type": "npm", + "name": "npm:jest-config", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "29.7.0", + "packageName": "jest-diff", + "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" + } + }, + "npm:jest-docblock": { + "type": "npm", + "name": "npm:jest-docblock", + "data": { + "version": "29.7.0", + "packageName": "jest-docblock", + "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" + } + }, + "npm:jest-each": { + "type": "npm", + "name": "npm:jest-each", + "data": { + "version": "29.7.0", + "packageName": "jest-each", + "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" + } + }, + "npm:jest-environment-jsdom": { + "type": "npm", + "name": "npm:jest-environment-jsdom", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-jsdom", + "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" + } + }, + "npm:jest-environment-node": { + "type": "npm", + "name": "npm:jest-environment-node", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:jest-expo": { + "type": "npm", + "name": "npm:jest-expo", + "data": { + "version": "50.0.1", + "packageName": "jest-expo", + "hash": "sha512-osvA63UDLJ/v7MG9UHjU7WJ0oZ0Krq9UhXxm2s6rdOlnt85ARocyMU57RC0T0yzPN47C9Ref45sEeOIxoV4Mzg==" + } + }, + "npm:jest-get-type": { + "type": "npm", + "name": "npm:jest-get-type", + "data": { + "version": "29.6.3", + "packageName": "jest-get-type", + "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + } + }, + "npm:jest-haste-map": { + "type": "npm", + "name": "npm:jest-haste-map", + "data": { + "version": "29.7.0", + "packageName": "jest-haste-map", + "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" + } + }, + "npm:jest-leak-detector": { + "type": "npm", + "name": "npm:jest-leak-detector", + "data": { + "version": "29.7.0", + "packageName": "jest-leak-detector", + "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" + } + }, + "npm:jest-matcher-utils": { + "type": "npm", + "name": "npm:jest-matcher-utils", + "data": { + "version": "29.7.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" + } + }, + "npm:jest-message-util": { + "type": "npm", + "name": "npm:jest-message-util", + "data": { + "version": "29.7.0", + "packageName": "jest-message-util", + "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" + } + }, + "npm:jest-mock": { + "type": "npm", + "name": "npm:jest-mock", + "data": { + "version": "29.7.0", + "packageName": "jest-mock", + "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.3", + "packageName": "jest-pnp-resolver", + "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" + } + }, + "npm:jest-regex-util": { + "type": "npm", + "name": "npm:jest-regex-util", + "data": { + "version": "29.6.3", + "packageName": "jest-regex-util", + "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" + } + }, + "npm:jest-resolve-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "npm:jest-runner": { + "type": "npm", + "name": "npm:jest-runner", + "data": { + "version": "29.7.0", + "packageName": "jest-runner", + "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" + } + }, + "npm:jest-runtime": { + "type": "npm", + "name": "npm:jest-runtime", + "data": { + "version": "29.7.0", + "packageName": "jest-runtime", + "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" + } + }, + "npm:jest-snapshot": { + "type": "npm", + "name": "npm:jest-snapshot", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:jest-util": { + "type": "npm", + "name": "npm:jest-util", + "data": { + "version": "29.7.0", + "packageName": "jest-util", + "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" + } + }, + "npm:jest-validate": { + "type": "npm", + "name": "npm:jest-validate", + "data": { + "version": "29.7.0", + "packageName": "jest-validate", + "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" + } + }, + "npm:jest-watch-select-projects": { + "type": "npm", + "name": "npm:jest-watch-select-projects", + "data": { + "version": "2.0.0", + "packageName": "jest-watch-select-projects", + "hash": "sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==" + } + }, + "npm:jest-watch-typeahead": { + "type": "npm", + "name": "npm:jest-watch-typeahead", + "data": { + "version": "2.2.1", + "packageName": "jest-watch-typeahead", + "hash": "sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==" + } + }, + "npm:jest-watcher": { + "type": "npm", + "name": "npm:jest-watcher", + "data": { + "version": "29.7.0", + "packageName": "jest-watcher", + "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.7.0", + "packageName": "jest", + "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" + } + }, + "npm:jimp-compact": { + "type": "npm", + "name": "npm:jimp-compact", + "data": { + "version": "0.16.1", + "packageName": "jimp-compact", + "hash": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==" + } + }, + "npm:joi": { + "type": "npm", + "name": "npm:joi", + "data": { + "version": "17.12.0", + "packageName": "joi", + "hash": "sha512-HSLsmSmXz+PV9PYoi3p7cgIbj06WnEBNT28n+bbBNcPZXZFqCzzvGqpTBPujx/Z0nh1+KNQPDrNgdmQ8dq0qYw==" + } + }, + "npm:join-component": { + "type": "npm", + "name": "npm:join-component", + "data": { + "version": "1.1.0", + "packageName": "join-component", + "hash": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==" + } + }, + "npm:jotai": { + "type": "npm", + "name": "npm:jotai", + "data": { + "version": "2.4.3", + "packageName": "jotai", + "hash": "sha512-CSAHX9LqWG5WCrU8OgBoZbBJ+Bo9rQU0mPusEF4e0CZ/SNFgurG26vb3UpgvCSJZgYVcUQNiUBM5q86PA8rstQ==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "3.14.1", + "packageName": "js-yaml", + "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + } + }, + "npm:js-yaml@4.1.0": { + "type": "npm", + "name": "npm:js-yaml@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:jsc-android": { + "type": "npm", + "name": "npm:jsc-android", + "data": { + "version": "250231.0.0", + "packageName": "jsc-android", + "hash": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==" + } + }, + "npm:jsc-safe-url": { + "type": "npm", + "name": "npm:jsc-safe-url", + "data": { + "version": "0.2.4", + "packageName": "jsc-safe-url", + "hash": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==" + } + }, + "npm:jscodeshift": { + "type": "npm", + "name": "npm:jscodeshift", + "data": { + "version": "0.14.0", + "packageName": "jscodeshift", + "hash": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==" + } + }, + "npm:jsdom": { + "type": "npm", + "name": "npm:jsdom", + "data": { + "version": "20.0.3", + "packageName": "jsdom", + "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:jsesc@0.5.0": { + "type": "npm", + "name": "npm:jsesc@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-schema-deref-sync": { + "type": "npm", + "name": "npm:json-schema-deref-sync", + "data": { + "version": "0.13.0", + "packageName": "json-schema-deref-sync", + "hash": "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==" + } + }, + "npm:json-schema-traverse@0.4.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json5@1.0.2": { + "type": "npm", + "name": "npm:json5@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json5", + "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonfile@4.0.0": { + "type": "npm", + "name": "npm:jsonfile@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.3.5", + "packageName": "jsx-ast-utils", + "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:klaw-sync": { + "type": "npm", + "name": "npm:klaw-sync", + "data": { + "version": "6.0.0", + "packageName": "klaw-sync", + "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:launch-editor": { + "type": "npm", + "name": "npm:launch-editor", + "data": { + "version": "2.6.1", + "packageName": "launch-editor", + "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:lighthouse-logger": { + "type": "npm", + "name": "npm:lighthouse-logger", + "data": { + "version": "1.4.2", + "packageName": "lighthouse-logger", + "hash": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==" + } + }, + "npm:lightningcss-darwin-arm64": { + "type": "npm", + "name": "npm:lightningcss-darwin-arm64", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-darwin-arm64", + "hash": "sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==" + } + }, + "npm:lightningcss-darwin-x64@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-darwin-x64@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-darwin-x64", + "hash": "sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==" + } + }, + "npm:lightningcss-linux-arm-gnueabihf@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-arm-gnueabihf", + "hash": "sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==" + } + }, + "npm:lightningcss-linux-arm64-gnu@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-gnu@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-arm64-gnu", + "hash": "sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==" + } + }, + "npm:lightningcss-linux-arm64-musl@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-musl@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-arm64-musl", + "hash": "sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==" + } + }, + "npm:lightningcss-linux-x64-gnu@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-gnu@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-x64-gnu", + "hash": "sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==" + } + }, + "npm:lightningcss-linux-x64-musl@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-musl@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-x64-musl", + "hash": "sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==" + } + }, + "npm:lightningcss-win32-x64-msvc@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-win32-x64-msvc@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-win32-x64-msvc", + "hash": "sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==" + } + }, + "npm:lightningcss": { + "type": "npm", + "name": "npm:lightningcss", + "data": { + "version": "1.19.0", + "packageName": "lightningcss", + "hash": "sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "13.3.0", + "packageName": "lint-staged", + "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "6.6.1", + "packageName": "listr2", + "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:locate-path@5.0.0": { + "type": "npm", + "name": "npm:locate-path@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:locate-path@7.2.0": { + "type": "npm", + "name": "npm:locate-path@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "locate-path", + "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.throttle": { + "type": "npm", + "name": "npm:lodash.throttle", + "data": { + "version": "4.1.1", + "packageName": "lodash.throttle", + "hash": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:log-symbols@2.2.0": { + "type": "npm", + "name": "npm:log-symbols@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "log-symbols", + "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "5.0.1", + "packageName": "log-update", + "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" + } + }, + "npm:logkitty": { + "type": "npm", + "name": "npm:logkitty", + "data": { + "version": "0.7.1", + "packageName": "logkitty", + "hash": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, + "npm:lru-cache@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:lru-cache@10.2.0": { + "type": "npm", + "name": "npm:lru-cache@10.2.0", + "data": { + "version": "10.2.0", + "packageName": "lru-cache", + "hash": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir@3.1.0": { + "type": "npm", + "name": "npm:make-dir@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:make-dir@4.0.0": { + "type": "npm", + "name": "npm:make-dir@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:marky": { + "type": "npm", + "name": "npm:marky", + "data": { + "version": "1.2.5", + "packageName": "marky", + "hash": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" + } + }, + "npm:md5-file": { + "type": "npm", + "name": "npm:md5-file", + "data": { + "version": "3.2.3", + "packageName": "md5-file", + "hash": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==" + } + }, + "npm:md5": { + "type": "npm", + "name": "npm:md5", + "data": { + "version": "2.3.0", + "packageName": "md5", + "hash": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==" + } + }, + "npm:md5@2.2.1": { + "type": "npm", + "name": "npm:md5@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "md5", + "hash": "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==" + } + }, + "npm:md5hex": { + "type": "npm", + "name": "npm:md5hex", + "data": { + "version": "1.0.0", + "packageName": "md5hex", + "hash": "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.14", + "packageName": "mdn-data", + "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.6.0", + "packageName": "memfs", + "hash": "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==" + } + }, + "npm:memoize-one": { + "type": "npm", + "name": "npm:memoize-one", + "data": { + "version": "5.2.1", + "packageName": "memoize-one", + "hash": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" + } + }, + "npm:memoize-one@6.0.0": { + "type": "npm", + "name": "npm:memoize-one@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "memoize-one", + "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + } + }, + "npm:memory-cache": { + "type": "npm", + "name": "npm:memory-cache", + "data": { + "version": "0.2.0", + "packageName": "memory-cache", + "hash": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + } + }, + "npm:merge-options": { + "type": "npm", + "name": "npm:merge-options", + "data": { + "version": "3.0.4", + "packageName": "merge-options", + "hash": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + } + }, + "npm:metro-babel-transformer": { + "type": "npm", + "name": "npm:metro-babel-transformer", + "data": { + "version": "0.80.5", + "packageName": "metro-babel-transformer", + "hash": "sha512-sxH6hcWCorhTbk4kaShCWsadzu99WBL4Nvq4m/sDTbp32//iGuxtAnUK+ZV+6IEygr2u9Z0/4XoZ8Sbcl71MpA==" + } + }, + "npm:metro-cache-key": { + "type": "npm", + "name": "npm:metro-cache-key", + "data": { + "version": "0.80.5", + "packageName": "metro-cache-key", + "hash": "sha512-fr3QLZUarsB3tRbVcmr34kCBsTHk0Sh9JXGvBY/w3b2lbre+Lq5gtgLyFElHPecGF7o4z1eK9r3ubxtScHWcbA==" + } + }, + "npm:metro-cache": { + "type": "npm", + "name": "npm:metro-cache", + "data": { + "version": "0.80.5", + "packageName": "metro-cache", + "hash": "sha512-2u+dQ4PZwmC7eZo9uMBNhQQMig9f+w4QWBZwXCdVy/RYOHM0eObgGdMEOwODo73uxie82T9lWzxr3aZOZ+Nqtw==" + } + }, + "npm:metro-config": { + "type": "npm", + "name": "npm:metro-config", + "data": { + "version": "0.80.5", + "packageName": "metro-config", + "hash": "sha512-elqo/lwvF+VjZ1OPyvmW/9hSiGlmcqu+rQvDKw5F5WMX48ZC+ySTD1WcaD7e97pkgAlJHVYqZ98FCjRAYOAFRQ==" + } + }, + "npm:metro-core": { + "type": "npm", + "name": "npm:metro-core", + "data": { + "version": "0.80.5", + "packageName": "metro-core", + "hash": "sha512-vkLuaBhnZxTVpaZO8ZJVEHzjaqSXpOdpAiztSZ+NDaYM6jEFgle3/XIbLW91jTSf2+T8Pj5yB1G7KuOX+BcVwg==" + } + }, + "npm:metro-file-map": { + "type": "npm", + "name": "npm:metro-file-map", + "data": { + "version": "0.80.5", + "packageName": "metro-file-map", + "hash": "sha512-bKCvJ05drjq6QhQxnDUt3I8x7bTcHo3IIKVobEr14BK++nmxFGn/BmFLRzVBlghM6an3gqwpNEYxS5qNc+VKcg==" + } + }, + "npm:metro-minify-terser": { + "type": "npm", + "name": "npm:metro-minify-terser", + "data": { + "version": "0.80.5", + "packageName": "metro-minify-terser", + "hash": "sha512-S7oZLLcab6YXUT6jYFX/ZDMN7Fq6xBGGAG8liMFU1UljX6cTcEC2u+UIafYgCLrdVexp/+ClxrIetVPZ5LtL/g==" + } + }, + "npm:metro-resolver@0.80.5": { + "type": "npm", + "name": "npm:metro-resolver@0.80.5", + "data": { + "version": "0.80.5", + "packageName": "metro-resolver", + "hash": "sha512-haJ/Hveio3zv/Fr4eXVdKzjUeHHDogYok7OpRqPSXGhTXisNXB+sLN7CpcUrCddFRUDLnVaqQOYwhYsFndgUwA==" + } + }, + "npm:metro-runtime": { + "type": "npm", + "name": "npm:metro-runtime", + "data": { + "version": "0.80.5", + "packageName": "metro-runtime", + "hash": "sha512-L0syTWJUdWzfUmKgkScr6fSBVTh6QDr8eKEkRtn40OBd8LPagrJGySBboWSgbyn9eIb4ayW3Y347HxgXBSAjmg==" + } + }, + "npm:metro-source-map": { + "type": "npm", + "name": "npm:metro-source-map", + "data": { + "version": "0.80.5", + "packageName": "metro-source-map", + "hash": "sha512-DwSF4l03mKPNqCtyQ6K23I43qzU1BViAXnuH81eYWdHglP+sDlPpY+/7rUahXEo6qXEHXfAJgVoo1sirbXbmsQ==" + } + }, + "npm:metro-symbolicate": { + "type": "npm", + "name": "npm:metro-symbolicate", + "data": { + "version": "0.80.5", + "packageName": "metro-symbolicate", + "hash": "sha512-IsM4mTYvmo9JvIqwEkCZ5+YeDVPST78Q17ZgljfLdHLSpIivOHp9oVoiwQ/YGbLx0xRHRIS/tKiXueWBnj3UWA==" + } + }, + "npm:metro-transform-plugins": { + "type": "npm", + "name": "npm:metro-transform-plugins", + "data": { + "version": "0.80.5", + "packageName": "metro-transform-plugins", + "hash": "sha512-7IdlTqK/k5+qE3RvIU5QdCJUPk4tHWEqgVuYZu8exeW+s6qOJ66hGIJjXY/P7ccucqF+D4nsbAAW5unkoUdS6g==" + } + }, + "npm:metro-transform-worker": { + "type": "npm", + "name": "npm:metro-transform-worker", + "data": { + "version": "0.80.5", + "packageName": "metro-transform-worker", + "hash": "sha512-Q1oM7hfP+RBgAtzRFBDjPhArELUJF8iRCZ8OidqCpYzQJVGuJZ7InSnIf3hn1JyqiUQwv2f1LXBO78i2rAjzyA==" + } + }, + "npm:metro": { + "type": "npm", + "name": "npm:metro", + "data": { + "version": "0.80.5", + "packageName": "metro", + "hash": "sha512-OE/CGbOgbi8BlTN1QqJgKOBaC27dS0JBQw473JcivrpgVnqIsluROA7AavEaTVUrB9wPUZvoNVDROn5uiM2jfw==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.5", + "packageName": "micromatch", + "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime@2.6.0": { + "type": "npm", + "name": "npm:mime@2.6.0", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mimic-fn@1.2.0": { + "type": "npm", + "name": "npm:mimic-fn@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "mimic-fn", + "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:mimic-fn@4.0.0": { + "type": "npm", + "name": "npm:mimic-fn@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.1", + "packageName": "min-indent", + "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.7.7", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-+0n11YGyRavUR3IlaOzJ0/4Il1avMvJ1VJfhWfCn24ITQXhRr1gghbhhrda6tgtNcpZaWKdSuwKq20Jb7fnlyw==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "npm:minimatch@9.0.3": { + "type": "npm", + "name": "npm:minimatch@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "minimatch", + "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" + } + }, + "npm:minimatch@5.1.6": { + "type": "npm", + "name": "npm:minimatch@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "minimatch", + "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "1.0.2", + "packageName": "minipass-collect", + "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "3.3.6", + "packageName": "minipass", + "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:minipass@7.0.4": { + "type": "npm", + "name": "npm:minipass@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "minipass", + "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:miragejs": { + "type": "npm", + "name": "npm:miragejs", + "data": { + "version": "0.1.48", + "packageName": "miragejs", + "hash": "sha512-MGZAq0Q3OuRYgZKvlB69z4gLN4G3PvgC4A2zhkCXCXrLD5wm2cCnwNB59xOBVA+srZ0zEes6u+VylcPIkB4SqA==" + } + }, + "npm:mitt": { + "type": "npm", + "name": "npm:mitt", + "data": { + "version": "3.0.1", + "packageName": "mitt", + "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "0.5.6", + "packageName": "mkdirp", + "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" + } + }, + "npm:mkdirp@1.0.4": { + "type": "npm", + "name": "npm:mkdirp@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:moti": { + "type": "npm", + "name": "npm:moti", + "data": { + "version": "0.25.4", + "packageName": "moti", + "hash": "sha512-UiH0WcWzUYlUmo8Y1F+iyVW+qVVZ3YkXO3Q/gQUZzOhje6+Q0MdllYfqKW2m5IhFs+Vxt2i+osjvWBxXKK2yOw==" + } + }, + "npm:mri": { + "type": "npm", + "name": "npm:mri", + "data": { + "version": "1.2.0", + "packageName": "mri", + "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" + } + }, + "npm:mrmime": { + "type": "npm", + "name": "npm:mrmime", + "data": { + "version": "1.0.1", + "packageName": "mrmime", + "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + }, + "npm:ms@2.1.2": { + "type": "npm", + "name": "npm:ms@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.5", + "packageName": "multicast-dns", + "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + } + }, + "npm:mv": { + "type": "npm", + "name": "npm:mv", + "data": { + "version": "2.1.1", + "packageName": "mv", + "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" + } + }, + "npm:mz": { + "type": "npm", + "name": "npm:mz", + "data": { + "version": "2.7.0", + "packageName": "mz", + "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.7", + "packageName": "nanoid", + "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" + } + }, + "npm:natural-compare-lite": { + "type": "npm", + "name": "npm:natural-compare-lite", + "data": { + "version": "1.4.0", + "packageName": "natural-compare-lite", + "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:ncp": { + "type": "npm", + "name": "npm:ncp", + "data": { + "version": "2.0.0", + "packageName": "ncp", + "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:nested-error-stacks": { + "type": "npm", + "name": "npm:nested-error-stacks", + "data": { + "version": "2.0.1", + "packageName": "nested-error-stacks", + "hash": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:nocache": { + "type": "npm", + "name": "npm:nocache", + "data": { + "version": "3.0.4", + "packageName": "nocache", + "hash": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==" + } + }, + "npm:node-abort-controller": { + "type": "npm", + "name": "npm:node-abort-controller", + "data": { + "version": "3.1.1", + "packageName": "node-abort-controller", + "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + } + }, + "npm:node-dir": { + "type": "npm", + "name": "npm:node-dir", + "data": { + "version": "0.1.17", + "packageName": "node-dir", + "hash": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.7.0", + "packageName": "node-fetch", + "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:node-html-parser": { + "type": "npm", + "name": "npm:node-html-parser", + "data": { + "version": "5.4.2", + "packageName": "node-html-parser", + "hash": "sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.14", + "packageName": "node-releases", + "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + } + }, + "npm:node-stream-zip": { + "type": "npm", + "name": "npm:node-stream-zip", + "data": { + "version": "1.15.0", + "packageName": "node-stream-zip", + "hash": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "2.0.1", + "packageName": "normalize-url", + "hash": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==" + } + }, + "npm:normalize-url@6.1.0": { + "type": "npm", + "name": "npm:normalize-url@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "7.0.0", + "packageName": "npm-package-arg", + "hash": "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==" + } + }, + "npm:npm-run-path@2.0.2": { + "type": "npm", + "name": "npm:npm-run-path@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "npm-run-path", + "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:npm-run-path@5.2.0": { + "type": "npm", + "name": "npm:npm-run-path@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "npm-run-path", + "hash": "sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:nullthrows": { + "type": "npm", + "name": "npm:nullthrows", + "data": { + "version": "1.1.1", + "packageName": "nullthrows", + "hash": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.7", + "packageName": "nwsapi", + "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + } + }, + "npm:ob1": { + "type": "npm", + "name": "npm:ob1", + "data": { + "version": "0.80.5", + "packageName": "ob1", + "hash": "sha512-zYDMnnNrFi/1Tqh0vo3PE4p97Tpl9/4MP2k2ECvkbLOZzQuAYZJLTUYVLZb7hJhbhjT+JJxAwBGS8iu5hCSd1w==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.13.1", + "packageName": "object-inspect", + "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + } + }, + "npm:object-is": { + "type": "npm", + "name": "npm:object-is", + "data": { + "version": "1.1.5", + "packageName": "object-is", + "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.5", + "packageName": "object.assign", + "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.7", + "packageName": "object.entries", + "hash": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==" + } + }, + "npm:object.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.7", + "packageName": "object.fromentries", + "hash": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==" + } + }, + "npm:object.groupby": { + "type": "npm", + "name": "npm:object.groupby", + "data": { + "version": "1.0.1", + "packageName": "object.groupby", + "hash": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==" + } + }, + "npm:object.hasown": { + "type": "npm", + "name": "npm:object.hasown", + "data": { + "version": "1.1.3", + "packageName": "object.hasown", + "hash": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.1.7", + "packageName": "object.values", + "hash": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:on-finished@2.3.0": { + "type": "npm", + "name": "npm:on-finished@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:onetime@2.0.1": { + "type": "npm", + "name": "npm:onetime@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "onetime", + "hash": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:onetime@6.0.0": { + "type": "npm", + "name": "npm:onetime@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "onetime", + "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" + } + }, + "npm:open@6.4.0": { + "type": "npm", + "name": "npm:open@6.4.0", + "data": { + "version": "6.4.0", + "packageName": "open", + "hash": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.3", + "packageName": "optionator", + "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "3.4.0", + "packageName": "ora", + "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:os-homedir": { + "type": "npm", + "name": "npm:os-homedir", + "data": { + "version": "1.0.2", + "packageName": "os-homedir", + "hash": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:osenv": { + "type": "npm", + "name": "npm:osenv", + "data": { + "version": "0.1.5", + "packageName": "osenv", + "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:p-locate@4.1.0": { + "type": "npm", + "name": "npm:p-locate@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, + "npm:p-map@2.1.0": { + "type": "npm", + "name": "npm:p-map@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "p-map", + "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.2", + "packageName": "p-retry", + "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:param-case": { + "type": "npm", + "name": "npm:param-case", + "data": { + "version": "3.0.4", + "packageName": "param-case", + "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:parse-png": { + "type": "npm", + "name": "npm:parse-png", + "data": { + "version": "2.1.0", + "packageName": "parse-png", + "hash": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:pascal-case": { + "type": "npm", + "name": "npm:pascal-case", + "data": { + "version": "3.1.2", + "packageName": "pascal-case", + "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + } + }, + "npm:pass-stream": { + "type": "npm", + "name": "npm:pass-stream", + "data": { + "version": "0.1.5", + "packageName": "pass-stream", + "hash": "sha512-pGa0s6MkFFPNs9tN3tYbZTaelRX8YIvsb/qmaJ3zjoMd5IJwOvy+sMvdieUDV03MF0O+dklnwG3hJBb2RYbxFA==" + } + }, + "npm:password-prompt": { + "type": "npm", + "name": "npm:password-prompt", + "data": { + "version": "1.1.3", + "packageName": "password-prompt", + "hash": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==" + } + }, + "npm:patch-package": { + "type": "npm", + "name": "npm:patch-package", + "data": { + "version": "7.0.2", + "packageName": "patch-package", + "hash": "sha512-PMYfL8LXxGIRmxXLqlEaBxzKPu7/SdP13ld6GSfAUJUZRmBDPp8chZs0dpzaAFn9TSPnFiMwkC6PJt6pBiAl8Q==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + } + }, + "npm:path-is-inside": { + "type": "npm", + "name": "npm:path-is-inside", + "data": { + "version": "1.0.2", + "packageName": "path-is-inside", + "hash": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + } + }, + "npm:path-key@3.1.1": { + "type": "npm", + "name": "npm:path-key@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:picomatch@3.0.1": { + "type": "npm", + "name": "npm:picomatch@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "picomatch", + "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pinkie-promise": { + "type": "npm", + "name": "npm:pinkie-promise", + "data": { + "version": "2.0.1", + "packageName": "pinkie-promise", + "hash": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==" + } + }, + "npm:pinkie": { + "type": "npm", + "name": "npm:pinkie", + "data": { + "version": "2.0.4", + "packageName": "pinkie", + "hash": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "npm:pkg-dir@3.0.0": { + "type": "npm", + "name": "npm:pkg-dir@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pkg-dir", + "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:pkg-dir@7.0.0": { + "type": "npm", + "name": "npm:pkg-dir@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "pkg-dir", + "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:plist": { + "type": "npm", + "name": "npm:plist", + "data": { + "version": "3.1.0", + "packageName": "plist", + "hash": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==" + } + }, + "npm:pngjs": { + "type": "npm", + "name": "npm:pngjs", + "data": { + "version": "3.4.0", + "packageName": "pngjs", + "hash": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" + } + }, + "npm:pngjs@5.0.0": { + "type": "npm", + "name": "npm:pngjs@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pngjs", + "hash": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" + } + }, + "npm:popmotion": { + "type": "npm", + "name": "npm:popmotion", + "data": { + "version": "11.0.3", + "packageName": "popmotion", + "hash": "sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==" + } + }, + "npm:popmotion@9.3.1": { + "type": "npm", + "name": "npm:popmotion@9.3.1", + "data": { + "version": "9.3.1", + "packageName": "popmotion", + "hash": "sha512-Qozvg8rz2OGeZwWuIjqlSXqqgWto/+QL24ll8sAAc0n71KY/wvN1W4sAASxTuHv8YWdDnk9u9IdadyPo2DGvDA==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "8.2.4", + "packageName": "postcss-calc", + "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "5.3.1", + "packageName": "postcss-colormin", + "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-convert-values", + "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "5.1.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "5.1.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-overridden", + "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "5.1.7", + "packageName": "postcss-merge-longhand", + "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "5.1.4", + "packageName": "postcss-merge-rules", + "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "5.1.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "5.1.4", + "packageName": "postcss-minify-params", + "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "5.2.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.4", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.1.1", + "packageName": "postcss-modules-scope", + "hash": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-charset", + "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-string", + "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-url", + "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-ordered-values", + "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "5.1.2", + "packageName": "postcss-reduce-initial", + "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.15", + "packageName": "postcss-selector-parser", + "hash": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "5.1.0", + "packageName": "postcss-svgo", + "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "5.1.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.33", + "packageName": "postcss", + "hash": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prepend-http": { + "type": "npm", + "name": "npm:prepend-http", + "data": { + "version": "2.0.0", + "packageName": "prepend-http", + "hash": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==" + } + }, + "npm:pretender": { + "type": "npm", + "name": "npm:pretender", + "data": { + "version": "3.4.7", + "packageName": "pretender", + "hash": "sha512-jkPAvt1BfRi0RKamweJdEcnjkeu7Es8yix3bJ+KgBC5VpG/Ln4JE3hYN6vJym4qprm8Xo5adhWpm3HCoft1dOw==" + } + }, + "npm:prettier-linter-helpers": { + "type": "npm", + "name": "npm:prettier-linter-helpers", + "data": { + "version": "1.0.0", + "packageName": "prettier-linter-helpers", + "hash": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "2.8.8", + "packageName": "prettier", + "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:pretty-error": { + "type": "npm", + "name": "npm:pretty-error", + "data": { + "version": "4.0.0", + "packageName": "pretty-error", + "hash": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" + } + }, + "npm:pretty-format@26.6.2": { + "type": "npm", + "name": "npm:pretty-format@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "pretty-format", + "hash": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "29.7.0", + "packageName": "pretty-format", + "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" + } + }, + "npm:pretty-quick": { + "type": "npm", + "name": "npm:pretty-quick", + "data": { + "version": "4.0.0", + "packageName": "pretty-quick", + "hash": "sha512-M+2MmeufXb/M7Xw3Afh1gxcYpj+sK0AxEfnfF958ktFeAyi5MsKY5brymVURQLgPLV1QaF5P4pb2oFJ54H3yzQ==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + } + }, + "npm:promise@7.3.1": { + "type": "npm", + "name": "npm:promise@7.3.1", + "data": { + "version": "7.3.1", + "packageName": "promise", + "hash": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" + } + }, + "npm:promise": { + "type": "npm", + "name": "npm:promise", + "data": { + "version": "8.3.0", + "packageName": "promise", + "hash": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==" + } + }, + "npm:prompt-skeleton": { + "type": "npm", + "name": "npm:prompt-skeleton", + "data": { + "version": "0.1.3", + "packageName": "prompt-skeleton", + "hash": "sha512-sv95G/H7jWjfs5SnNaXeMtiwcUXL3RId8JIvcyej6i3v1UPLVitA2DtLi+LlEzsLlOYudBoSQZL3A8rCqT1kpw==" + } + }, + "npm:prompt-sync": { + "type": "npm", + "name": "npm:prompt-sync", + "data": { + "version": "4.2.0", + "packageName": "prompt-sync", + "hash": "sha512-BuEzzc5zptP5LsgV5MZETjDaKSWfchl5U9Luiu8SKp7iZWD5tZalOxvNcZRwv+d2phNFr8xlbxmFNcRKfJOzJw==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:psl": { + "type": "npm", + "name": "npm:psl", + "data": { + "version": "1.9.0", + "packageName": "psl", + "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:punycode@1.4.1": { + "type": "npm", + "name": "npm:punycode@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "punycode", + "hash": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.1", + "packageName": "punycode", + "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.4", + "packageName": "pure-rand", + "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" + } + }, + "npm:qrcode-terminal": { + "type": "npm", + "name": "npm:qrcode-terminal", + "data": { + "version": "0.11.0", + "packageName": "qrcode-terminal", + "hash": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.11.0", + "packageName": "qs", + "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" + } + }, + "npm:qs@6.11.2": { + "type": "npm", + "name": "npm:qs@6.11.2", + "data": { + "version": "6.11.2", + "packageName": "qs", + "hash": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==" + } + }, + "npm:query-string": { + "type": "npm", + "name": "npm:query-string", + "data": { + "version": "6.14.1", + "packageName": "query-string", + "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" + } + }, + "npm:query-string@5.1.1": { + "type": "npm", + "name": "npm:query-string@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "query-string", + "hash": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==" + } + }, + "npm:query-string@7.1.3": { + "type": "npm", + "name": "npm:query-string@7.1.3", + "data": { + "version": "7.1.3", + "packageName": "query-string", + "hash": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==" + } + }, + "npm:querystringify": { + "type": "npm", + "name": "npm:querystringify", + "data": { + "version": "2.2.0", + "packageName": "querystringify", + "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:queue": { + "type": "npm", + "name": "npm:queue", + "data": { + "version": "6.0.2", + "packageName": "queue", + "hash": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.5.1", + "packageName": "raw-body", + "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:react-devtools-core": { + "type": "npm", + "name": "npm:react-devtools-core", + "data": { + "version": "4.28.5", + "packageName": "react-devtools-core", + "hash": "sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "18.2.0", + "packageName": "react-dom", + "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" + } + }, + "npm:react-error-overlay@6.0.9": { + "type": "npm", + "name": "npm:react-error-overlay@6.0.9", + "data": { + "version": "6.0.9", + "packageName": "react-error-overlay", + "hash": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + } + }, + "npm:react-fast-compare": { + "type": "npm", + "name": "npm:react-fast-compare", + "data": { + "version": "3.2.2", + "packageName": "react-fast-compare", + "hash": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" + } + }, + "npm:react-freeze": { + "type": "npm", + "name": "npm:react-freeze", + "data": { + "version": "1.0.3", + "packageName": "react-freeze", + "hash": "sha512-ZnXwLQnGzrDpHBHiC56TXFXvmolPeMjTn1UOm610M4EXGzbEDR7oOIyS2ZiItgbs6eZc4oU/a0hpk8PrcKvv5g==" + } + }, + "npm:react-helmet-async": { + "type": "npm", + "name": "npm:react-helmet-async", + "data": { + "version": "1.3.0", + "packageName": "react-helmet-async", + "hash": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" + } + }, + "npm:react-hook-form": { + "type": "npm", + "name": "npm:react-hook-form", + "data": { + "version": "7.49.3", + "packageName": "react-hook-form", + "hash": "sha512-foD6r3juidAT1cOZzpmD/gOKt7fRsDhXXZ0y28+Al1CHgX+AY1qIN9VSIIItXRq1dN68QrRwl1ORFlwjBaAqeQ==" + } + }, + "npm:react-i18next": { + "type": "npm", + "name": "npm:react-i18next", + "data": { + "version": "14.0.1", + "packageName": "react-i18next", + "hash": "sha512-TMV8hFismBmpMdIehoFHin/okfvgjFhp723RYgIqB4XyhDobVMyukyM3Z8wtTRmajyFMZrBl/OaaXF2P6WjUAw==" + } + }, + "npm:react-is@18.2.0": { + "type": "npm", + "name": "npm:react-is@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:react-is@17.0.2": { + "type": "npm", + "name": "npm:react-is@17.0.2", + "data": { + "version": "17.0.2", + "packageName": "react-is", + "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + } + }, + "npm:react-native-flipper": { + "type": "npm", + "name": "npm:react-native-flipper", + "data": { + "version": "0.164.0", + "packageName": "react-native-flipper", + "hash": "sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==" + } + }, + "npm:react-native-gesture-handler": { + "type": "npm", + "name": "npm:react-native-gesture-handler", + "data": { + "version": "2.14.1", + "packageName": "react-native-gesture-handler", + "hash": "sha512-YiM1BApV4aKeuwsM6O4C2ufwewYEKk6VMXOt0YqEZFMwABBFWhXLySFZYjBSNRU2USGppJbfHP1q1DfFQpKhdA==" + } + }, + "npm:react-native-iphone-x-helper": { + "type": "npm", + "name": "npm:react-native-iphone-x-helper", + "data": { + "version": "1.3.1", + "packageName": "react-native-iphone-x-helper", + "hash": "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==" + } + }, + "npm:react-native-keyboard-aware-scroll-view": { + "type": "npm", + "name": "npm:react-native-keyboard-aware-scroll-view", + "data": { + "version": "0.9.5", + "packageName": "react-native-keyboard-aware-scroll-view", + "hash": "sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==" + } + }, + "npm:react-native-notificated": { + "type": "npm", + "name": "npm:react-native-notificated", + "data": { + "version": "0.0.1-beta.2", + "packageName": "react-native-notificated", + "hash": "sha512-nOztCH/ja+Qb3bxtzSTmKv9FzOQS0pnfeS5s88wCjNbYiLFFi7RxMXKThkf8ONDLk0rA/PICdtzQvZkmxd9gXg==" + } + }, + "npm:react-native-pager-view": { + "type": "npm", + "name": "npm:react-native-pager-view", + "data": { + "version": "6.2.3", + "packageName": "react-native-pager-view", + "hash": "sha512-dqVpXWFtPNfD3D2QQQr8BP+ullS5MhjRJuF8Z/qml4QTILcrWaW8F5iAxKkQR3Jl0ikcEryG/+SQlNcwlo0Ggg==" + } + }, + "npm:react-native-reanimated": { + "type": "npm", + "name": "npm:react-native-reanimated", + "data": { + "version": "3.6.2", + "packageName": "react-native-reanimated", + "hash": "sha512-IIMREMOrxhtK35drfpzh2UhxNqAOHnuvGgtMofj7yHcMj16tmWZR2zFvMUf6z2MfmXv+aVgFQ6TRZ6yKYf7LNA==" + } + }, + "npm:react-native-safe-area-context": { + "type": "npm", + "name": "npm:react-native-safe-area-context", + "data": { + "version": "4.8.2", + "packageName": "react-native-safe-area-context", + "hash": "sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ==" + } + }, + "npm:react-native-screens": { + "type": "npm", + "name": "npm:react-native-screens", + "data": { + "version": "3.29.0", + "packageName": "react-native-screens", + "hash": "sha512-yB1GoAMamFAcYf4ku94uBPn0/ani9QG7NdI98beJ5cet2YFESYYzuEIuU+kt+CNRcO8qqKeugxlfgAa3HyTqlg==" + } + }, + "npm:react-native-svg": { + "type": "npm", + "name": "npm:react-native-svg", + "data": { + "version": "14.1.0", + "packageName": "react-native-svg", + "hash": "sha512-HeseElmEk+AXGwFZl3h56s0LtYD9HyGdrpg8yd9QM26X+d7kjETrRQ9vCjtxuT5dCZEIQ5uggU1dQhzasnsCWA==" + } + }, + "npm:react-native-web": { + "type": "npm", + "name": "npm:react-native-web", + "data": { + "version": "0.19.10", + "packageName": "react-native-web", + "hash": "sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==" + } + }, + "npm:react-native": { + "type": "npm", + "name": "npm:react-native", + "data": { + "version": "0.73.2", + "packageName": "react-native", + "hash": "sha512-7zj9tcUYpJUBdOdXY6cM8RcXYWkyql4kMyGZflW99E5EuFPoC7Ti+ZQSl7LP9ZPzGD0vMfslwyDW0I4tPWUCFw==" + } + }, + "npm:react-refresh": { + "type": "npm", + "name": "npm:react-refresh", + "data": { + "version": "0.14.0", + "packageName": "react-refresh", + "hash": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==" + } + }, + "npm:react-shallow-renderer": { + "type": "npm", + "name": "npm:react-shallow-renderer", + "data": { + "version": "16.15.0", + "packageName": "react-shallow-renderer", + "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" + } + }, + "npm:react-test-renderer": { + "type": "npm", + "name": "npm:react-test-renderer", + "data": { + "version": "18.2.0", + "packageName": "react-test-renderer", + "hash": "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "18.2.0", + "packageName": "react", + "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" + } + }, + "npm:reactotron-core-client": { + "type": "npm", + "name": "npm:reactotron-core-client", + "data": { + "version": "2.8.13", + "packageName": "reactotron-core-client", + "hash": "sha512-oI4dooNO6wjT42npHLXyBPHfjTUI499BiD4I4/YN86Tzv6WpuGD2kXOTZQl1jU1EhaZxSB/jl2G3p6sz/XvZsQ==" + } + }, + "npm:reactotron-core-contract": { + "type": "npm", + "name": "npm:reactotron-core-contract", + "data": { + "version": "0.2.1", + "packageName": "reactotron-core-contract", + "hash": "sha512-u92hDAuFLj1/OBXkUhyMHJR5TUZQqI4SWZqGlr6Zs5/apwAN11bGi5dbs5r3dUKZLWZvOgvQ/DT6L06JwJQPjw==" + } + }, + "npm:reactotron-react-native": { + "type": "npm", + "name": "npm:reactotron-react-native", + "data": { + "version": "5.0.5", + "packageName": "reactotron-react-native", + "hash": "sha512-/Eai1cKwRRGusOe3poLDM0SMOy6dHTf8iBYd5wSYwqznTz5vUlu0Jkoa8n4O00udoIEA3XSRqre7pAdr035vWQ==" + } + }, + "npm:readable-stream@2.3.8": { + "type": "npm", + "name": "npm:readable-stream@2.3.8", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readable-stream@1.0.2": { + "type": "npm", + "name": "npm:readable-stream@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "readable-stream", + "hash": "8630138425327017741" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:readline": { + "type": "npm", + "name": "npm:readline", + "data": { + "version": "1.3.0", + "packageName": "readline", + "hash": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + } + }, + "npm:recast": { + "type": "npm", + "name": "npm:recast", + "data": { + "version": "0.21.5", + "packageName": "recast", + "hash": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:reflect.getprototypeof": { + "type": "npm", + "name": "npm:reflect.getprototypeof", + "data": { + "version": "1.0.4", + "packageName": "reflect.getprototypeof", + "hash": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.1", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.13.11", + "packageName": "regenerator-runtime", + "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + }, + "npm:regenerator-runtime@0.14.1": { + "type": "npm", + "name": "npm:regenerator-runtime@0.14.1", + "data": { + "version": "0.14.1", + "packageName": "regenerator-runtime", + "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + }, + "npm:regenerator-transform": { + "type": "npm", + "name": "npm:regenerator-transform", + "data": { + "version": "0.15.2", + "packageName": "regenerator-transform", + "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.1", + "packageName": "regexp.prototype.flags", + "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" + } + }, + "npm:regexpp": { + "type": "npm", + "name": "npm:regexpp", + "data": { + "version": "3.2.0", + "packageName": "regexpp", + "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "3.3.2", + "packageName": "registry-auth-token", + "hash": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==" + } + }, + "npm:registry-url": { + "type": "npm", + "name": "npm:registry-url", + "data": { + "version": "3.1.0", + "packageName": "registry-url", + "hash": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:relateurl": { + "type": "npm", + "name": "npm:relateurl", + "data": { + "version": "0.2.7", + "packageName": "relateurl", + "hash": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" + } + }, + "npm:remove-trailing-slash": { + "type": "npm", + "name": "npm:remove-trailing-slash", + "data": { + "version": "0.1.1", + "packageName": "remove-trailing-slash", + "hash": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==" + } + }, + "npm:renderkid": { + "type": "npm", + "name": "npm:renderkid", + "data": { + "version": "3.0.0", + "packageName": "renderkid", + "hash": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:require-main-filename": { + "type": "npm", + "name": "npm:require-main-filename", + "data": { + "version": "2.0.0", + "packageName": "require-main-filename", + "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + } + }, + "npm:requireg": { + "type": "npm", + "name": "npm:requireg", + "data": { + "version": "0.2.2", + "packageName": "requireg", + "hash": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "npm:reselect": { + "type": "npm", + "name": "npm:reselect", + "data": { + "version": "4.1.8", + "packageName": "reselect", + "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:resolve-from@3.0.0": { + "type": "npm", + "name": "npm:resolve-from@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "resolve-from", + "hash": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.8", + "packageName": "resolve", + "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + } + }, + "npm:resolve@2.0.0-next.5": { + "type": "npm", + "name": "npm:resolve@2.0.0-next.5", + "data": { + "version": "2.0.0-next.5", + "packageName": "resolve", + "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" + } + }, + "npm:resolve@1.7.1": { + "type": "npm", + "name": "npm:resolve@1.7.1", + "data": { + "version": "1.7.1", + "packageName": "resolve", + "hash": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==" + } + }, + "npm:restore-cursor@2.0.0": { + "type": "npm", + "name": "npm:restore-cursor@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "restore-cursor", + "hash": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:restore-cursor@4.0.0": { + "type": "npm", + "name": "npm:restore-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "restore-cursor", + "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.1", + "packageName": "rfdc", + "hash": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@2.4.5": { + "type": "npm", + "name": "npm:rimraf@2.4.5", + "data": { + "version": "2.4.5", + "packageName": "rimraf", + "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" + } + }, + "npm:rimraf@2.6.3": { + "type": "npm", + "name": "npm:rimraf@2.6.3", + "data": { + "version": "2.6.3", + "packageName": "rimraf", + "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" + } + }, + "npm:route-recognizer": { + "type": "npm", + "name": "npm:route-recognizer", + "data": { + "version": "0.3.4", + "packageName": "route-recognizer", + "hash": "sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==" + } + }, + "npm:rtl-detect": { + "type": "npm", + "name": "npm:rtl-detect", + "data": { + "version": "1.1.2", + "packageName": "rtl-detect", + "hash": "sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:safe-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.1.0", + "packageName": "safe-array-concat", + "hash": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-json-stringify": { + "type": "npm", + "name": "npm:safe-json-stringify", + "data": { + "version": "1.2.0", + "packageName": "safe-json-stringify", + "hash": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.2", + "packageName": "safe-regex-test", + "hash": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.70.0", + "packageName": "sass", + "hash": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.3.0", + "packageName": "sax", + "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:scheduler@0.24.0-canary-efb381bbf-20230505": { + "type": "npm", + "name": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", + "data": { + "version": "0.24.0-canary-efb381bbf-20230505", + "packageName": "scheduler", + "hash": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.23.0", + "packageName": "scheduler", + "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" + } + }, + "npm:schema-utils@2.7.1": { + "type": "npm", + "name": "npm:schema-utils@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "schema-utils", + "hash": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + } + }, + "npm:schema-utils@3.3.0": { + "type": "npm", + "name": "npm:schema-utils@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "4.2.0", + "packageName": "schema-utils", + "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + } + }, + "npm:select-prompt": { + "type": "npm", + "name": "npm:select-prompt", + "data": { + "version": "0.3.2", + "packageName": "select-prompt", + "hash": "sha512-UcsoayiSDNyp8z3iaLfu/OxosdcCxrJ/FoV4iYkrYZkRrxN2Iepmdj1Fx6neHEMUWNzsbQjKhykaCaLIUUuRFg==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.4.1", + "packageName": "selfsigned", + "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" + } + }, + "npm:semver@7.3.2": { + "type": "npm", + "name": "npm:semver@7.3.2", + "data": { + "version": "7.3.2", + "packageName": "semver", + "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver@5.7.2": { + "type": "npm", + "name": "npm:semver@5.7.2", + "data": { + "version": "5.7.2", + "packageName": "semver", + "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + }, + "npm:semver@6.3.1": { + "type": "npm", + "name": "npm:semver@6.3.1", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:serialize-error": { + "type": "npm", + "name": "npm:serialize-error", + "data": { + "version": "2.1.0", + "packageName": "serialize-error", + "hash": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.2", + "packageName": "serialize-javascript", + "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + } + }, + "npm:set-cookie-parser": { + "type": "npm", + "name": "npm:set-cookie-parser", + "data": { + "version": "2.6.0", + "packageName": "set-cookie-parser", + "hash": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.2.0", + "packageName": "set-function-length", + "hash": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.1", + "packageName": "set-function-name", + "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shallowequal": { + "type": "npm", + "name": "npm:shallowequal", + "data": { + "version": "1.1.0", + "packageName": "shallowequal", + "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + } + }, + "npm:shebang-command@1.2.0": { + "type": "npm", + "name": "npm:shebang-command@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:shebang-regex@1.0.0": { + "type": "npm", + "name": "npm:shebang-regex@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.1", + "packageName": "shell-quote", + "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:signal-exit@4.1.0": { + "type": "npm", + "name": "npm:signal-exit@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "signal-exit", + "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + }, + "npm:simple-plist": { + "type": "npm", + "name": "npm:simple-plist", + "data": { + "version": "1.3.1", + "packageName": "simple-plist", + "hash": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.2", + "packageName": "simple-swizzle", + "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:slash@2.0.0": { + "type": "npm", + "name": "npm:slash@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "slash", + "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash@5.1.0": { + "type": "npm", + "name": "npm:slash@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:slice-ansi@2.1.0": { + "type": "npm", + "name": "npm:slice-ansi@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "slice-ansi", + "hash": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "5.0.0", + "packageName": "slice-ansi", + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + } + }, + "npm:slugify": { + "type": "npm", + "name": "npm:slugify", + "data": { + "version": "1.6.6", + "packageName": "slugify", + "hash": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" + } + }, + "npm:source-list-map": { + "type": "npm", + "name": "npm:source-list-map", + "data": { + "version": "2.0.1", + "packageName": "source-list-map", + "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "3.0.2", + "packageName": "source-map-loader", + "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map@0.5.6": { + "type": "npm", + "name": "npm:source-map@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "source-map", + "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" + } + }, + "npm:source-map@0.5.7": { + "type": "npm", + "name": "npm:source-map@0.5.7", + "data": { + "version": "0.5.7", + "packageName": "source-map", + "hash": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map@0.7.4": { + "type": "npm", + "name": "npm:source-map@0.7.4", + "data": { + "version": "0.7.4", + "packageName": "source-map", + "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:split-on-first": { + "type": "npm", + "name": "npm:split-on-first", + "data": { + "version": "1.1.0", + "packageName": "split-on-first", + "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "8.0.1", + "packageName": "ssri", + "hash": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:stack-generator": { + "type": "npm", + "name": "npm:stack-generator", + "data": { + "version": "2.0.10", + "packageName": "stack-generator", + "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:stackframe": { + "type": "npm", + "name": "npm:stackframe", + "data": { + "version": "1.3.4", + "packageName": "stackframe", + "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + } + }, + "npm:stacktrace-gps": { + "type": "npm", + "name": "npm:stacktrace-gps", + "data": { + "version": "3.1.2", + "packageName": "stacktrace-gps", + "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" + } + }, + "npm:stacktrace-js": { + "type": "npm", + "name": "npm:stacktrace-js", + "data": { + "version": "2.0.2", + "packageName": "stacktrace-js", + "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" + } + }, + "npm:stacktrace-parser": { + "type": "npm", + "name": "npm:stacktrace-parser", + "data": { + "version": "0.1.10", + "packageName": "stacktrace-parser", + "hash": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:stream-buffers": { + "type": "npm", + "name": "npm:stream-buffers", + "data": { + "version": "2.2.0", + "packageName": "stream-buffers", + "hash": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==" + } + }, + "npm:stream-slice": { + "type": "npm", + "name": "npm:stream-slice", + "data": { + "version": "0.1.2", + "packageName": "stream-slice", + "hash": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==" + } + }, + "npm:strict-uri-encode@1.1.0": { + "type": "npm", + "name": "npm:strict-uri-encode@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "strict-uri-encode", + "hash": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" + } + }, + "npm:strict-uri-encode": { + "type": "npm", + "name": "npm:strict-uri-encode", + "data": { + "version": "2.0.0", + "packageName": "strict-uri-encode", + "hash": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.2", + "packageName": "string-argv", + "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string-length@5.0.1": { + "type": "npm", + "name": "npm:string-length@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "string-length", + "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@^4.2.0", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.10", + "packageName": "string.prototype.matchall", + "hash": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.8", + "packageName": "string.prototype.trim", + "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimend", + "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimstart", + "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@^6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi@3.0.1": { + "type": "npm", + "name": "npm:strip-ansi@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "strip-ansi", + "hash": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==" + } + }, + "npm:strip-ansi@5.2.0": { + "type": "npm", + "name": "npm:strip-ansi@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "strip-ansi", + "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + } + }, + "npm:strip-ansi@7.1.0": { + "type": "npm", + "name": "npm:strip-ansi@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "strip-ansi", + "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-bom@4.0.0": { + "type": "npm", + "name": "npm:strip-bom@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:strip-eof": { + "type": "npm", + "name": "npm:strip-eof", + "data": { + "version": "1.0.0", + "packageName": "strip-eof", + "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:strip-final-newline@3.0.0": { + "type": "npm", + "name": "npm:strip-final-newline@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + } + }, + "npm:strnum": { + "type": "npm", + "name": "npm:strnum", + "data": { + "version": "1.0.5", + "packageName": "strnum", + "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + } + }, + "npm:structured-headers": { + "type": "npm", + "name": "npm:structured-headers", + "data": { + "version": "0.4.1", + "packageName": "structured-headers", + "hash": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==" + } + }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "3.3.4", + "packageName": "style-loader", + "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" + } + }, + "npm:style-value-types": { + "type": "npm", + "name": "npm:style-value-types", + "data": { + "version": "4.1.1", + "packageName": "style-value-types", + "hash": "sha512-cNLrl6jk+I1T18ZI2KIp/fcqKVuykcNELDrOz7y+TYZR97xmNdN0ewupURvVFnQxVrRJv98TMBq92VMsggq3kw==" + } + }, + "npm:style-value-types@5.0.0": { + "type": "npm", + "name": "npm:style-value-types@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "style-value-types", + "hash": "sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "5.1.1", + "packageName": "stylehacks", + "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" + } + }, + "npm:styleq": { + "type": "npm", + "name": "npm:styleq", + "data": { + "version": "0.1.3", + "packageName": "styleq", + "hash": "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==" + } + }, + "npm:sucrase": { + "type": "npm", + "name": "npm:sucrase", + "data": { + "version": "3.34.0", + "packageName": "sucrase", + "hash": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==" + } + }, + "npm:sucrase@3.35.0": { + "type": "npm", + "name": "npm:sucrase@3.35.0", + "data": { + "version": "3.35.0", + "packageName": "sucrase", + "hash": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==" + } + }, + "npm:sudo-prompt": { + "type": "npm", + "name": "npm:sudo-prompt", + "data": { + "version": "9.1.1", + "packageName": "sudo-prompt", + "hash": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==" + } + }, + "npm:sudo-prompt@8.2.5": { + "type": "npm", + "name": "npm:sudo-prompt@8.2.5", + "data": { + "version": "8.2.5", + "packageName": "sudo-prompt", + "hash": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" + } + }, + "npm:sudo-prompt@9.2.1": { + "type": "npm", + "name": "npm:sudo-prompt@9.2.1", + "data": { + "version": "9.2.1", + "packageName": "sudo-prompt", + "hash": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==" + } + }, + "npm:supports-color@2.0.0": { + "type": "npm", + "name": "npm:supports-color@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "supports-color", + "hash": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:supports-color@8.1.1": { + "type": "npm", + "name": "npm:supports-color@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "2.3.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svgo@2.8.0": { + "type": "npm", + "name": "npm:svgo@2.8.0", + "data": { + "version": "2.8.0", + "packageName": "svgo", + "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" + } + }, + "npm:symbol-tree": { + "type": "npm", + "name": "npm:symbol-tree", + "data": { + "version": "3.2.4", + "packageName": "symbol-tree", + "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.2.0", + "packageName": "tar", + "hash": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==" + } + }, + "npm:temp-dir@1.0.0": { + "type": "npm", + "name": "npm:temp-dir@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "2.0.0", + "packageName": "temp-dir", + "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + } + }, + "npm:temp": { + "type": "npm", + "name": "npm:temp", + "data": { + "version": "0.8.4", + "packageName": "temp", + "hash": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==" + } + }, + "npm:tempy": { + "type": "npm", + "name": "npm:tempy", + "data": { + "version": "0.3.0", + "packageName": "tempy", + "hash": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==" + } + }, + "npm:tempy@0.7.1": { + "type": "npm", + "name": "npm:tempy@0.7.1", + "data": { + "version": "0.7.1", + "packageName": "tempy", + "hash": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==" + } + }, + "npm:terminal-link": { + "type": "npm", + "name": "npm:terminal-link", + "data": { + "version": "2.1.1", + "packageName": "terminal-link", + "hash": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.10", + "packageName": "terser-webpack-plugin", + "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.27.0", + "packageName": "terser", + "hash": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + } + }, + "npm:thenify-all": { + "type": "npm", + "name": "npm:thenify-all", + "data": { + "version": "1.6.0", + "packageName": "thenify-all", + "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" + } + }, + "npm:thenify": { + "type": "npm", + "name": "npm:thenify", + "data": { + "version": "3.3.1", + "packageName": "thenify", + "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" + } + }, + "npm:throat": { + "type": "npm", + "name": "npm:throat", + "data": { + "version": "5.0.0", + "packageName": "throat", + "hash": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "4.1.3", + "packageName": "tough-cookie", + "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:tr46@0.0.3": { + "type": "npm", + "name": "npm:tr46@0.0.3", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.6.8", + "packageName": "traverse", + "hash": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==" + } + }, + "npm:ts-api-utils": { + "type": "npm", + "name": "npm:ts-api-utils", + "data": { + "version": "1.0.3", + "packageName": "ts-api-utils", + "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" + } + }, + "npm:ts-interface-checker": { + "type": "npm", + "name": "npm:ts-interface-checker", + "data": { + "version": "0.1.13", + "packageName": "ts-interface-checker", + "hash": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + } + }, + "npm:tsconfig-paths@3.15.0": { + "type": "npm", + "name": "npm:tsconfig-paths@3.15.0", + "data": { + "version": "3.15.0", + "packageName": "tsconfig-paths", + "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" + } + }, + "npm:tslib@1.14.1": { + "type": "npm", + "name": "npm:tslib@1.14.1", + "data": { + "version": "1.14.1", + "packageName": "tslib", + "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.2", + "packageName": "tslib", + "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:type-fest@0.16.0": { + "type": "npm", + "name": "npm:type-fest@0.16.0", + "data": { + "version": "0.16.0", + "packageName": "type-fest", + "hash": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest@0.21.3": { + "type": "npm", + "name": "npm:type-fest@0.21.3", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:type-fest@0.3.1": { + "type": "npm", + "name": "npm:type-fest@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "type-fest", + "hash": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + } + }, + "npm:type-fest@0.7.1": { + "type": "npm", + "name": "npm:type-fest@0.7.1", + "data": { + "version": "0.7.1", + "packageName": "type-fest", + "hash": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" + } + }, + "npm:type-fest@1.4.0": { + "type": "npm", + "name": "npm:type-fest@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "type-fest", + "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" + } + }, + "npm:type-fest@3.13.1": { + "type": "npm", + "name": "npm:type-fest@3.13.1", + "data": { + "version": "3.13.1", + "packageName": "type-fest", + "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.0", + "packageName": "typed-array-buffer", + "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-length", + "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-offset", + "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.4", + "packageName": "typed-array-length", + "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "5.3.3", + "packageName": "typescript", + "hash": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "0.7.37", + "packageName": "ua-parser-js", + "hash": "sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA==" + } + }, + "npm:ua-parser-js@1.0.37": { + "type": "npm", + "name": "npm:ua-parser-js@1.0.37", + "data": { + "version": "1.0.37", + "packageName": "ua-parser-js", + "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:undici-types": { + "type": "npm", + "name": "npm:undici-types", + "data": { + "version": "5.26.5", + "packageName": "undici-types", + "hash": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "1.1.1", + "packageName": "unique-filename", + "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "2.0.2", + "packageName": "unique-slug", + "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "1.0.0", + "packageName": "unique-string", + "hash": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==" + } + }, + "npm:unique-string@2.0.0": { + "type": "npm", + "name": "npm:unique-string@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "unique-string", + "hash": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:universalify@1.0.0": { + "type": "npm", + "name": "npm:universalify@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "universalify", + "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.1", + "packageName": "universalify", + "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.13", + "packageName": "update-browserslist-db", + "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" + } + }, + "npm:update-check": { + "type": "npm", + "name": "npm:update-check", + "data": { + "version": "1.5.3", + "packageName": "update-check", + "hash": "sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.0", + "packageName": "url-join", + "hash": "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:url": { + "type": "npm", + "name": "npm:url", + "data": { + "version": "0.11.3", + "packageName": "url", + "hash": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==" + } + }, + "npm:use-debounce": { + "type": "npm", + "name": "npm:use-debounce", + "data": { + "version": "9.0.4", + "packageName": "use-debounce", + "hash": "sha512-6X8H/mikbrt0XE8e+JXRtZ8yYVvKkdYRfmIhWZYsP8rcNs9hk3APV8Ua2mFkKRLcJKVdnX2/Vwrmg2GWKUQEaQ==" + } + }, + "npm:use-latest-callback": { + "type": "npm", + "name": "npm:use-latest-callback", + "data": { + "version": "0.1.9", + "packageName": "use-latest-callback", + "hash": "sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==" + } + }, + "npm:use-sync-external-store": { + "type": "npm", + "name": "npm:use-sync-external-store", + "data": { + "version": "1.2.0", + "packageName": "use-sync-external-store", + "hash": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + } + }, + "npm:util": { + "type": "npm", + "name": "npm:util", + "data": { + "version": "0.12.5", + "packageName": "util", + "hash": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==" + } + }, + "npm:utila": { + "type": "npm", + "name": "npm:utila", + "data": { + "version": "0.4.0", + "packageName": "utila", + "hash": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + } + }, + "npm:uuid@7.0.3": { + "type": "npm", + "name": "npm:uuid@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "uuid", + "hash": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.2.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" + } + }, + "npm:valid-url": { + "type": "npm", + "name": "npm:valid-url", + "data": { + "version": "1.0.9", + "packageName": "valid-url", + "hash": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + }, + "npm:vlq": { + "type": "npm", + "name": "npm:vlq", + "data": { + "version": "1.0.1", + "packageName": "vlq", + "hash": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" + } + }, + "npm:void-elements": { + "type": "npm", + "name": "npm:void-elements", + "data": { + "version": "3.1.0", + "packageName": "void-elements", + "hash": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==" + } + }, + "npm:w3c-xmlserializer": { + "type": "npm", + "name": "npm:w3c-xmlserializer", + "data": { + "version": "4.0.0", + "packageName": "w3c-xmlserializer", + "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:warn-once": { + "type": "npm", + "name": "npm:warn-once", + "data": { + "version": "0.1.1", + "packageName": "warn-once", + "hash": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" + } + }, + "npm:web-encoding": { + "type": "npm", + "name": "npm:web-encoding", + "data": { + "version": "1.1.5", + "packageName": "web-encoding", + "hash": "sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.3.2", + "packageName": "web-streams-polyfill", + "hash": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==" + } + }, + "npm:webidl-conversions@3.0.1": { + "type": "npm", + "name": "npm:webidl-conversions@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webidl-conversions@5.0.0": { + "type": "npm", + "name": "npm:webidl-conversions@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "7.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "5.3.3", + "packageName": "webpack-dev-middleware", + "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.15.1", + "packageName": "webpack-dev-server", + "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" + } + }, + "npm:webpack-manifest-plugin": { + "type": "npm", + "name": "npm:webpack-manifest-plugin", + "data": { + "version": "4.1.1", + "packageName": "webpack-manifest-plugin", + "hash": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==" + } + }, + "npm:webpack-sources@2.3.1": { + "type": "npm", + "name": "npm:webpack-sources@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "webpack-sources", + "hash": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.90.0", + "packageName": "webpack", + "hash": "sha512-bdmyXRCXeeNIePv6R6tGPyy20aUobw4Zy8r0LUS2EWO+U+Ke/gYDgsCh7bl5rB6jPpr4r0SZa6dPxBxLooDT3w==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-fetch": { + "type": "npm", + "name": "npm:whatwg-fetch", + "data": { + "version": "3.6.20", + "packageName": "whatwg-fetch", + "hash": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" + } + }, + "npm:whatwg-mimetype": { + "type": "npm", + "name": "npm:whatwg-mimetype", + "data": { + "version": "3.0.0", + "packageName": "whatwg-mimetype", + "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + } + }, + "npm:whatwg-url-without-unicode": { + "type": "npm", + "name": "npm:whatwg-url-without-unicode", + "data": { + "version": "8.0.0-3", + "packageName": "whatwg-url-without-unicode", + "hash": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:whatwg-url@5.0.0": { + "type": "npm", + "name": "npm:whatwg-url@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:which-builtin-type": { + "type": "npm", + "name": "npm:which-builtin-type", + "data": { + "version": "1.1.3", + "packageName": "which-builtin-type", + "hash": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==" + } + }, + "npm:which-collection": { + "type": "npm", + "name": "npm:which-collection", + "data": { + "version": "1.0.1", + "packageName": "which-collection", + "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" + } + }, + "npm:which-module": { + "type": "npm", + "name": "npm:which-module", + "data": { + "version": "2.0.1", + "packageName": "which-module", + "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.13", + "packageName": "which-typed-array", + "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" + } + }, + "npm:which@1.3.1": { + "type": "npm", + "name": "npm:which@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:wonka": { + "type": "npm", + "name": "npm:wonka", + "data": { + "version": "4.0.15", + "packageName": "wonka", + "hash": "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==" + } + }, + "npm:wonka@6.3.4": { + "type": "npm", + "name": "npm:wonka@6.3.4", + "data": { + "version": "6.3.4", + "packageName": "wonka", + "hash": "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@^7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi@6.2.0": { + "type": "npm", + "name": "npm:wrap-ansi@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:ws@6.2.2": { + "type": "npm", + "name": "npm:ws@6.2.2", + "data": { + "version": "6.2.2", + "packageName": "ws", + "hash": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "7.5.9", + "packageName": "ws", + "hash": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==" + } + }, + "npm:ws@8.16.0": { + "type": "npm", + "name": "npm:ws@8.16.0", + "data": { + "version": "8.16.0", + "packageName": "ws", + "hash": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==" + } + }, + "npm:xcode": { + "type": "npm", + "name": "npm:xcode", + "data": { + "version": "3.0.1", + "packageName": "xcode", + "hash": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==" + } + }, + "npm:xml-js": { + "type": "npm", + "name": "npm:xml-js", + "data": { + "version": "1.6.11", + "packageName": "xml-js", + "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:xml2js@0.4.23": { + "type": "npm", + "name": "npm:xml2js@0.4.23", + "data": { + "version": "0.4.23", + "packageName": "xml2js", + "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" + } + }, + "npm:xml2js": { + "type": "npm", + "name": "npm:xml2js", + "data": { + "version": "0.6.0", + "packageName": "xml2js", + "hash": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==" + } + }, + "npm:xmlbuilder@14.0.0": { + "type": "npm", + "name": "npm:xmlbuilder@14.0.0", + "data": { + "version": "14.0.0", + "packageName": "xmlbuilder", + "hash": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==" + } + }, + "npm:xmlbuilder@15.1.1": { + "type": "npm", + "name": "npm:xmlbuilder@15.1.1", + "data": { + "version": "15.1.1", + "packageName": "xmlbuilder", + "hash": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==" + } + }, + "npm:xmlbuilder": { + "type": "npm", + "name": "npm:xmlbuilder", + "data": { + "version": "11.0.1", + "packageName": "xmlbuilder", + "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + } + }, + "npm:xmlchars": { + "type": "npm", + "name": "npm:xmlchars", + "data": { + "version": "2.2.0", + "packageName": "xmlchars", + "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + } + }, + "npm:xmlhttprequest": { + "type": "npm", + "name": "npm:xmlhttprequest", + "data": { + "version": "1.8.0", + "packageName": "xmlhttprequest", + "hash": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:y18n@4.0.3": { + "type": "npm", + "name": "npm:y18n@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "y18n", + "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yallist@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yaml@2.3.1": { + "type": "npm", + "name": "npm:yaml@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "yaml", + "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:yaml@2.3.4": { + "type": "npm", + "name": "npm:yaml@2.3.4", + "data": { + "version": "2.3.4", + "packageName": "yaml", + "hash": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==" + } + }, + "npm:yargs-parser@18.1.3": { + "type": "npm", + "name": "npm:yargs-parser@18.1.3", + "data": { + "version": "18.1.3", + "packageName": "yargs-parser", + "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs@15.4.1": { + "type": "npm", + "name": "npm:yargs@15.4.1", + "data": { + "version": "15.4.1", + "packageName": "yargs", + "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:yocto-queue@1.0.0": { + "type": "npm", + "name": "npm:yocto-queue@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "yocto-queue", + "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" + } + } + }, + "dependencies": [ + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.10.4", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame@7.10.4", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-optimise-call-expression", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals@11.12.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals@11.12.0", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-assign", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-self", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx-source", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:regenerator-transform", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:find-cache-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals@11.12.0", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals@11.12.0", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + }, + { + "source": "npm:@egjs/hammerjs", + "target": "npm:@types/hammerjs", + "type": "static" + }, + { + "source": "npm:@emotion/is-prop-valid", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:@expo/bunyan", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@expo/bunyan", + "target": "npm:mv", + "type": "static" + }, + { + "source": "npm:@expo/bunyan", + "target": "npm:safe-json-stringify", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/code-signing-certificates", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/devcert", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/env", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/image-utils", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/metro-config", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/osascript", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/package-manager", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/plist", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/prebuild-config", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/rudder-sdk-node", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/xcpretty", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@react-native/dev-middleware", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@urql/core", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@urql/exchange-retry", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:better-opn", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:bplist-parser", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:env-editor", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:form-data@3.0.1", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:freeport-async", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:graphql", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:graphql-tag", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:internal-ip", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:json-schema-deref-sync", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:md5hex", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:picomatch@3.0.1", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:qrcode-terminal", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:requireg", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:structured-headers", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:tempy@0.7.1", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:terminal-link", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:url-join", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:ws@8.16.0", + "type": "static" + }, + { + "source": "npm:@expo/code-signing-certificates", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:@expo/code-signing-certificates", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/fingerprint", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/plist", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/sdk-runtime-versions", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xml2js", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/fingerprint", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/plist", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/sdk-runtime-versions", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xml2js", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/fingerprint", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/plist", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/sdk-runtime-versions", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xml2js", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/config-types@47.0.0", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/json-file@8.2.36", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/plist@0.0.18", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/sdk-runtime-versions", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:xml2js@0.4.23", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:sucrase", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:sucrase", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@expo/config-plugins@5.0.4", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@expo/config-types@47.0.0", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@expo/json-file@8.2.36", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:sucrase@3.35.0", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:color-string", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:pngjs@5.0.0", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:xml-js", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:application-config-path", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:command-exists", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:eol", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:password-prompt", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:sudo-prompt@8.2.5", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:dotenv@16.0.3", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:fs-extra@9.0.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:jimp-compact", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:mime@2.6.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:parse-png", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:tempy", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:fs-extra@9.0.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:jimp-compact", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:mime@2.6.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:parse-png", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:tempy", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:fs-extra@9.0.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:jimp-compact", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:parse-png", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:tempy", + "type": "static" + }, + { + "source": "npm:@expo/json-file@8.2.36", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/json-file@8.2.36", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:@expo/json-file@8.2.36", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/env", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:babel-preset-fbjs", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:jsc-safe-url", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:lightningcss", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:sucrase", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/env", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:babel-preset-fbjs", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:jsc-safe-url", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:lightningcss", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:sucrase", + "type": "static" + }, + { + "source": "npm:@expo/osascript", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/osascript", + "target": "npm:exec-async", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:split", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:sudo-prompt", + "type": "static" + }, + { + "source": "npm:@expo/plist@0.0.18", + "target": "npm:@xmldom/xmldom", + "type": "static" + }, + { + "source": "npm:@expo/plist@0.0.18", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:@expo/plist@0.0.18", + "target": "npm:xmlbuilder@14.0.0", + "type": "static" + }, + { + "source": "npm:@expo/plist", + "target": "npm:@xmldom/xmldom", + "type": "static" + }, + { + "source": "npm:@expo/plist", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:@expo/plist", + "target": "npm:xmlbuilder@14.0.0", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/config@7.0.3", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/config-plugins@5.0.4", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/config-types@47.0.0", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/image-utils@0.3.22", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/json-file@8.2.36", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:xml2js@0.4.23", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/image-utils", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:xml2js", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/image-utils", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:xml2js", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:@expo/bunyan", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:@segment/loosely-validate-event", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:fetch-retry", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:md5", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:remove-trailing-slash", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@expo/server", + "target": "npm:@remix-run/node", + "type": "static" + }, + { + "source": "npm:@expo/server", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:@expo/server", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/server", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@expo/spawn-async", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:@expo/spawn-async@1.7.2", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:@expo/spawn-async@1.7.2", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:babel-loader@8.3.0", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:clean-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:expo-pwa", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:node-html-parser", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:source-map-loader", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:webpack-manifest-plugin", + "type": "static" + }, + { + "source": "npm:@expo/xcpretty", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/xcpretty", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/xcpretty", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/xcpretty", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@gorhom/bottom-sheet", + "target": "npm:@gorhom/portal", + "type": "static" + }, + { + "source": "npm:@gorhom/bottom-sheet", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:@gorhom/portal", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@hapi/topo", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-changed-files", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve-dependencies", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/create-cache-key-function", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/create-cache-key-function", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:write-file-atomic@4.0.2", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/yargs@15.0.19", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/yargs", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@motify/components", + "target": "npm:@motify/core", + "type": "static" + }, + { + "source": "npm:@motify/components@0.18.0", + "target": "npm:@motify/core@0.18.0", + "type": "static" + }, + { + "source": "npm:@motify/core", + "target": "npm:framer-motion@3.10.6", + "type": "static" + }, + { + "source": "npm:@motify/core@0.18.0", + "target": "npm:framer-motion", + "type": "static" + }, + { + "source": "npm:@motify/interactions", + "target": "npm:@motify/components", + "type": "static" + }, + { + "source": "npm:@motify/interactions", + "target": "npm:@motify/core", + "type": "static" + }, + { + "source": "npm:@motify/skeleton", + "target": "npm:@motify/components@0.18.0", + "type": "static" + }, + { + "source": "npm:@motify/skeleton", + "target": "npm:@motify/core@0.18.0", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/easing", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/animation", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/generators", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/easing", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/easing", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:@gar/promisify", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:@radix-ui/react-compose-refs", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@radix-ui/react-slot", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@radix-ui/react-slot", + "target": "npm:@radix-ui/react-compose-refs", + "type": "static" + }, + { + "source": "npm:@react-native-async-storage/async-storage", + "target": "npm:merge-options", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-clean", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-clean", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-clean", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-debugger-ui", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-config", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-platform-android", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-platform-ios", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:command-exists", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:hermes-profile-transformer", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:node-stream-zip", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:yaml@2.3.4", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:@react-native-community/cli-platform-android", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:hermes-profile-transformer", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:fast-xml-parser", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:logkitty", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:fast-xml-parser", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:@react-native-community/cli-debugger-ui", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:errorhandler", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:nocache", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:pretty-format@26.6.2", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:appdirsjs", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:mime@2.6.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:open@6.4.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:sudo-prompt@9.2.1", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-types", + "target": "npm:joi", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-clean", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-config", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-debugger-ui", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-doctor", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-hermes", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-plugin-metro", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-server-api", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-types", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:commander@9.5.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@react-native/babel-plugin-codegen@0.73.2", + "target": "npm:@react-native/codegen", + "type": "static" + }, + { + "source": "npm:@react-native/babel-plugin-codegen", + "target": "npm:@react-native/codegen", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-numeric-separator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-jsx-self", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-jsx-source", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@react-native/babel-plugin-codegen@0.73.2", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:babel-plugin-transform-flow-enums", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-numeric-separator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-jsx-self", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-jsx-source", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@react-native/babel-plugin-codegen", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:babel-plugin-transform-flow-enums", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:flow-parser", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:jscodeshift", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native-community/cli-server-api", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native/dev-middleware", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native/metro-babel-transformer", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:metro", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:metro-config", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:readline", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:@isaacs/ttlcache", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:@react-native/debugger-frontend", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:chrome-launcher", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:chromium-edge-launcher", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:@isaacs/ttlcache", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:@react-native/debugger-frontend", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:chrome-launcher", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:chromium-edge-launcher", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:@react-native/babel-preset@0.73.19", + "type": "static" + }, + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:hermes-parser@0.15.0", + "type": "static" + }, + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:@react-native/virtualized-lists", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:@react-native/virtualized-lists", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:@react-native/virtualized-lists@0.72.8", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:@react-native/virtualized-lists@0.72.8", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:warn-once", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:warn-once", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:@react-navigation/routers", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:query-string@7.1.3", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:use-latest-callback", + "type": "static" + }, + { + "source": "npm:@react-navigation/native-stack", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/native-stack", + "target": "npm:warn-once", + "type": "static" + }, + { + "source": "npm:@react-navigation/native-stack", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/native-stack", + "target": "npm:warn-once", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:@react-navigation/core", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:@react-navigation/core", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@react-navigation/routers", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@react-navigation/stack", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/stack", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:@react-navigation/stack", + "target": "npm:warn-once", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/server-runtime", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/web-fetch", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/web-file", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/web-stream", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@web3-storage/multipart-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:cookie-signature@1.2.1", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:stream-slice", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:@remix-run/router", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:@types/cookie", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:@web3-storage/multipart-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:cookie@0.4.2", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:set-cookie-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:source-map@0.7.4", + "type": "static" + }, + { + "source": "npm:@remix-run/web-blob", + "target": "npm:@remix-run/web-stream", + "type": "static" + }, + { + "source": "npm:@remix-run/web-blob", + "target": "npm:web-encoding", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-blob", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-file", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-form-data", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-stream", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@web3-storage/multipart-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:@remix-run/web-file", + "target": "npm:@remix-run/web-blob", + "type": "static" + }, + { + "source": "npm:@remix-run/web-file", + "target": "npm:@remix-run/web-blob", + "type": "static" + }, + { + "source": "npm:@remix-run/web-form-data", + "target": "npm:web-encoding", + "type": "static" + }, + { + "source": "npm:@remix-run/web-stream", + "target": "npm:web-streams-polyfill", + "type": "static" + }, + { + "source": "npm:@remix-run/web-stream", + "target": "npm:web-streams-polyfill", + "type": "static" + }, + { + "source": "npm:@segment/loosely-validate-event", + "target": "npm:component-type", + "type": "static" + }, + { + "source": "npm:@segment/loosely-validate-event", + "target": "npm:join-component", + "type": "static" + }, + { + "source": "npm:@sideway/address", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + }, + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + }, + { + "source": "npm:@tanstack/react-query", + "target": "npm:@tanstack/query-core", + "type": "static" + }, + { + "source": "npm:@tanstack/react-query", + "target": "npm:use-sync-external-store", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:@testing-library/react-native", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:@testing-library/react-native", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@testing-library/react-native", + "target": "npm:redent", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:@types/node-forge", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/node", + "target": "npm:undici-types", + "type": "static" + }, + { + "source": "npm:@types/react-native", + "target": "npm:@react-native/virtualized-lists@0.72.8", + "type": "static" + }, + { + "source": "npm:@types/react-native", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react-test-renderer", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/mime@1.3.5", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/ws", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/yargs@15.0.19", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@typescript-eslint/type-utils@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:natural-compare-lite", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@6.19.1", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@6.19.1", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/typescript-estree@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/utils@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:tsutils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@typescript-eslint/scope-manager@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@typescript-eslint/typescript-estree@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:@urql/core", + "target": "npm:@graphql-typed-document-node/core", + "type": "static" + }, + { + "source": "npm:@urql/core", + "target": "npm:wonka", + "type": "static" + }, + { + "source": "npm:@urql/core@4.2.3", + "target": "npm:@0no-co/graphql.web", + "type": "static" + }, + { + "source": "npm:@urql/core@4.2.3", + "target": "npm:wonka@6.3.4", + "type": "static" + }, + { + "source": "npm:@urql/exchange-retry", + "target": "npm:@urql/core@4.2.3", + "type": "static" + }, + { + "source": "npm:@urql/exchange-retry", + "target": "npm:wonka", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + }, + { + "source": "npm:@welldone-software/why-did-you-render", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:ajv-formats@2.1.1", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:ajv-keywords@5.1.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.11.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.11.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.11.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.11.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + }, + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + }, + { + "source": "npm:ansi-escapes@5.0.0", + "target": "npm:type-fest@1.4.0", + "type": "static" + }, + { + "source": "npm:ansi-escapes@6.2.0", + "target": "npm:type-fest@3.13.1", + "type": "static" + }, + { + "source": "npm:ansi-fragments", + "target": "npm:colorette@1.4.0", + "type": "static" + }, + { + "source": "npm:ansi-fragments", + "target": "npm:slice-ansi@2.1.0", + "type": "static" + }, + { + "source": "npm:ansi-fragments", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + }, + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-union@1.0.2", + "target": "npm:array-uniq", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:is-nan", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:util", + "type": "static" + }, + { + "source": "npm:ast-types", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:asynciterator.prototype", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:find-cache-dir@3.3.2", + "type": "static" + }, + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:schema-utils@2.7.1", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument@5.2.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:find-babel-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:reselect", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-transform-flow-enums", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@react-native/babel-preset", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:babel-plugin-react-native-web", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@react-native/babel-preset", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:babel-plugin-react-native-web", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:babel-plugin-syntax-trailing-function-commas", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-plugin-jest-hoist", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:better-opn", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + }, + { + "source": "npm:bplist-creator", + "target": "npm:stream-buffers", + "type": "static" + }, + { + "source": "npm:bplist-parser@0.3.1", + "target": "npm:big-integer", + "type": "static" + }, + { + "source": "npm:bplist-parser", + "target": "npm:big-integer", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:concat-map", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + }, + { + "source": "npm:buffer-alloc", + "target": "npm:buffer-alloc-unsafe", + "type": "static" + }, + { + "source": "npm:buffer-alloc", + "target": "npm:buffer-fill", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/move-file", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + }, + { + "source": "npm:caller-callsite", + "target": "npm:callsites@2.0.0", + "type": "static" + }, + { + "source": "npm:caller-path", + "target": "npm:caller-callsite", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:pascal-case", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:ansi-styles@2.2.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:has-ansi", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:supports-color@2.0.0", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:ansi-styles@2.2.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:has-ansi", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:supports-color@2.0.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:chrome-launcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:chrome-launcher", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chrome-launcher", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:chrome-launcher", + "target": "npm:lighthouse-logger", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:lighthouse-logger", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:clean-webpack-plugin", + "target": "npm:del", + "type": "static" + }, + { + "source": "npm:cli-cursor@2.1.0", + "target": "npm:restore-cursor@2.0.0", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cli-cursor@4.0.0", + "target": "npm:restore-cursor@4.0.0", + "type": "static" + }, + { + "source": "npm:cli-styles", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:cli-styles", + "target": "npm:figures@1.7.0", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + }, + { + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", + "type": "static" + }, + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + }, + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + }, + { + "source": "npm:compare-urls", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby@12.2.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh@2.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:is-directory", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh@2.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:is-directory", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json@4.0.0", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:cross-env", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:cross-fetch", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + }, + { + "source": "npm:css-in-js-utils", + "target": "npm:hyphenate-style-name", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domutils@3.1.0", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:csso@4.2.0", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:default-gateway", + "target": "npm:execa@1.0.0", + "type": "static" + }, + { + "source": "npm:default-gateway", + "target": "npm:ip-regex", + "type": "static" + }, + { + "source": "npm:default-gateway@6.0.3", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:defaults", + "target": "npm:clone@1.0.4", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:globby@6.1.0", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-in-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:p-map@2.1.0", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:deprecated-react-native-prop-types", + "target": "npm:@react-native/normalize-colors", + "type": "static" + }, + { + "source": "npm:deprecated-react-native-prop-types", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:deprecated-react-native-prop-types", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + }, + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + }, + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:doctrine@3.0.0", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:dom-converter", + "target": "npm:utila", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities@2.2.0", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler@5.0.3", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domhandler@5.0.3", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:dom-serializer@2.0.0", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + }, + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "type": "static" + }, + { + "source": "npm:errorhandler", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:errorhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:arraybuffer.prototype.slice", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:asynciterator.prototype", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:iterator.prototype", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-shim-unscopables", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:@typescript-eslint/parser@5.62.0", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-import", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-node", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-prettier", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-react", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-react-hooks", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:regexpp", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.findlastindex", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.groupby", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.15.0", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-plugin-es", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:prettier-linter-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react-native", + "target": "npm:eslint-plugin-react-native-globals", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:es-iterator-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.5", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:es-iterator-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.5", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.3.0", + "type": "static" + }, + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@ungap/structured-clone", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:doctrine@3.0.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope@7.2.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:npm-run-path@5.2.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:get-stream@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:strip-eof", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:expo-app-loading", + "target": "npm:expo-splash-screen@0.17.5", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:@react-native/assets-registry", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:blueimp-md5", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:expo-constants", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:expo-file-system", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:md5-file", + "type": "static" + }, + { + "source": "npm:expo-constants", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-constants", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-constants", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-crypto", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-dev-launcher", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-dev-menu", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-dev-menu-interface", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-manifests", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-updates-interface", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:ajv@8.11.0", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:expo-dev-menu@4.5.4", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:expo-manifests", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:expo-dev-menu@4.5.4", + "target": "npm:expo-dev-menu-interface", + "type": "static" + }, + { + "source": "npm:expo-dev-menu@4.5.4", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:expo-dev-menu", + "target": "npm:expo-dev-menu-interface", + "type": "static" + }, + { + "source": "npm:expo-dev-menu", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:expo-device", + "target": "npm:ua-parser-js", + "type": "static" + }, + { + "source": "npm:expo-font", + "target": "npm:fontfaceobserver", + "type": "static" + }, + { + "source": "npm:expo-linking", + "target": "npm:expo-constants", + "type": "static" + }, + { + "source": "npm:expo-linking", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:expo-local-authentication", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:expo-localization", + "target": "npm:rtl-detect", + "type": "static" + }, + { + "source": "npm:expo-manifests", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-manifests", + "target": "npm:expo-json-utils", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:expo-modules-core", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:@expo/image-utils", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:@ide/backoff", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:assert", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:badgin", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:expo-application", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:expo-constants", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:expo-pwa", + "target": "npm:@expo/image-utils@0.3.23", + "type": "static" + }, + { + "source": "npm:expo-pwa", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:expo-pwa", + "target": "npm:commander@2.20.0", + "type": "static" + }, + { + "source": "npm:expo-pwa", + "target": "npm:update-check", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@expo/metro-runtime", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@expo/server", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@radix-ui/react-slot", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@react-navigation/bottom-tabs", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@react-navigation/native", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@react-navigation/native-stack", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:expo-splash-screen", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:expo-splash-screen", + "target": "npm:@expo/prebuild-config", + "type": "static" + }, + { + "source": "npm:expo-splash-screen", + "target": "npm:@expo/prebuild-config", + "type": "static" + }, + { + "source": "npm:expo-splash-screen@0.17.5", + "target": "npm:@expo/configure-splash-screen", + "type": "static" + }, + { + "source": "npm:expo-splash-screen@0.17.5", + "target": "npm:@expo/prebuild-config@5.0.7", + "type": "static" + }, + { + "source": "npm:expo-system-ui", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:expo-system-ui", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:@expo/code-signing-certificates", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:arg@4.1.0", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-eas-client", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-manifests", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-structured-headers", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-updates-interface", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:fbemitter", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:expo-web-browser", + "target": "npm:compare-urls", + "type": "static" + }, + { + "source": "npm:expo-web-browser", + "target": "npm:url", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/cli@0.17.2", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/metro-config", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/vector-icons", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:babel-preset-expo", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-asset", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-file-system", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-font", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-keep-awake", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-modules-autolinking", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-modules-core", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:fbemitter", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:whatwg-url-without-unicode", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler@1.2.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-xml-parser", + "target": "npm:strnum", + "type": "static" + }, + { + "source": "npm:fast-xml-parser", + "target": "npm:strnum", + "type": "static" + }, + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + }, + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + }, + { + "source": "npm:fbemitter", + "target": "npm:fbjs", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:fbjs-css-vars", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:promise@7.3.1", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:ua-parser-js@1.0.37", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:fbjs-css-vars", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:promise@7.3.1", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:ua-parser-js@1.0.37", + "type": "static" + }, + { + "source": "npm:figures@1.7.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:figures@1.7.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:figures@2.0.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + }, + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished@2.3.0", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses@1.5.0", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:find-babel-config", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:find-babel-config", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:pkg-dir@3.0.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir@3.3.2", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@3.3.2", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir@3.3.2", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir@7.0.0", + "type": "static" + }, + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.2.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:find-yarn-workspace-root", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.1.0", + "type": "static" + }, + { + "source": "npm:form-data@3.0.1", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@3.0.1", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@3.0.1", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:framesync", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:popmotion@9.3.1", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:style-value-types", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:@motionone/dom", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:framesync@6.0.1", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:popmotion", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:style-value-types@5.0.0", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:@motionone/dom", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:framesync@6.0.1", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:popmotion", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:style-value-types@5.0.0", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + }, + { + "source": "npm:framesync@6.0.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:universalify@1.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:universalify@0.1.2", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-stream@4.1.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:globals", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:array-union@3.0.1", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:slash@4.0.0", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:array-union@1.0.2", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pinkie-promise", + "type": "static" + }, + { + "source": "npm:gopd", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:graphql-tag", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:has-ansi", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + }, + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:hermes-parser@0.15.0", + "target": "npm:hermes-estree@0.15.0", + "type": "static" + }, + { + "source": "npm:hermes-parser", + "target": "npm:hermes-estree", + "type": "static" + }, + { + "source": "npm:hermes-profile-transformer", + "target": "npm:source-map@0.7.4", + "type": "static" + }, + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@8.3.0", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:html-parse-stringify", + "target": "npm:void-elements", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.2.0", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3@4.0.7", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:i18next", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.4.24", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:image-size", + "target": "npm:queue", + "type": "static" + }, + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:caller-path", + "type": "static" + }, + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:resolve-from@3.0.0", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:inline-style-prefixer", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:inline-style-prefixer", + "target": "npm:fast-loops", + "type": "static" + }, + { + "source": "npm:internal-ip", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:internal-ip", + "target": "npm:ipaddr.js", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:invariant", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-finalizationregistry", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-glob@2.0.1", + "target": "npm:is-extglob@1.0.0", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-invalid-path", + "target": "npm:is-glob@2.0.1", + "type": "static" + }, + { + "source": "npm:is-nan", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-nan", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-path-in-cwd", + "target": "npm:is-path-inside@2.1.0", + "type": "static" + }, + { + "source": "npm:is-path-inside@2.1.0", + "target": "npm:path-is-inside", + "type": "static" + }, + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:is-valid-path", + "target": "npm:is-invalid-path", + "type": "static" + }, + { + "source": "npm:is-weakref", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:reflect.getprototypeof", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@pkgjs/parseargs", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-each", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:create-jest", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-docblock", + "target": "npm:detect-newline", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:@jest/create-cache-key-function", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:jest-watch-select-projects", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:jest-watch-typeahead", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:react-test-renderer", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:stacktrace-js", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:stack-utils", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-docblock", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-leak-detector", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/globals", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/source-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:strip-bom@4.0.0", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-watch-select-projects", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watch-select-projects", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-watch-select-projects", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:ansi-escapes@6.2.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:slash@5.1.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:string-length@5.0.1", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color@8.1.1", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:jest-cli", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@hapi/topo", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/address", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/formula", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/pinpoint", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/preset-flow", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/register", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:babel-core", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:flow-parser@0.227.0", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:node-dir", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:recast", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:temp", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:write-file-atomic", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn-globals", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssom", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssstyle", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:data-urls", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:decimal.js", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:domexception", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:is-potential-custom-element-name", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:nwsapi", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:saxes", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:symbol-tree", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:w3c-xmlserializer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws@8.16.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:dag-map", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:is-valid-path", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:md5@2.2.1", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:memory-cache", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:traverse", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:valid-url", + "type": "static" + }, + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:jsonfile@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + }, + { + "source": "npm:klaw-sync", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:lighthouse-logger", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:lighthouse-logger", + "target": "npm:marky", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-arm64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-x64@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-gnu@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-musl@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-gnu@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-musl@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-win32-x64-msvc@1.19.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@7.2.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:yaml@2.3.1", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@5.0.0", + "target": "npm:p-locate@4.1.0", + "type": "static" + }, + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + }, + { + "source": "npm:locate-path@7.2.0", + "target": "npm:p-locate@6.0.0", + "type": "static" + }, + { + "source": "npm:log-symbols@2.2.0", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:ansi-escapes@5.0.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:cli-cursor@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:logkitty", + "target": "npm:ansi-fragments", + "type": "static" + }, + { + "source": "npm:logkitty", + "target": "npm:dayjs", + "type": "static" + }, + { + "source": "npm:logkitty", + "target": "npm:yargs@15.4.1", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:lower-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + }, + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:make-dir@4.0.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + }, + { + "source": "npm:md5-file", + "target": "npm:buffer-alloc", + "type": "static" + }, + { + "source": "npm:md5", + "target": "npm:charenc", + "type": "static" + }, + { + "source": "npm:md5", + "target": "npm:crypt", + "type": "static" + }, + { + "source": "npm:md5", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:md5@2.2.1", + "target": "npm:charenc", + "type": "static" + }, + { + "source": "npm:md5@2.2.1", + "target": "npm:crypt", + "type": "static" + }, + { + "source": "npm:md5@2.2.1", + "target": "npm:is-buffer", + "type": "static" + }, + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + }, + { + "source": "npm:merge-options", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:metro-babel-transformer", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro-babel-transformer", + "target": "npm:hermes-parser", + "type": "static" + }, + { + "source": "npm:metro-babel-transformer", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-cache", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro-cache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-runtime", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-runtime", + "type": "static" + }, + { + "source": "npm:metro-core", + "target": "npm:lodash.throttle", + "type": "static" + }, + { + "source": "npm:metro-core", + "target": "npm:metro-resolver@0.80.5", + "type": "static" + }, + { + "source": "npm:metro-core", + "target": "npm:lodash.throttle", + "type": "static" + }, + { + "source": "npm:metro-core", + "target": "npm:metro-resolver@0.80.5", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:node-abort-controller", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:metro-minify-terser", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:metro-runtime", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:metro-runtime", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:metro-symbolicate", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:ob1", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:vlq", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:metro-symbolicate", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:ob1", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:vlq", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:vlq", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-babel-transformer", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-cache-key", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-minify-terser", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-transform-plugins", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:ci-info@2.0.0", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:denodeify", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:hermes-parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:jsc-safe-url", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:lodash.throttle", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-babel-transformer", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-cache-key", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-config", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-file-map", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-resolver@0.80.5", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-runtime", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-symbolicate", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-transform-plugins", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-transform-worker", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:serialize-error", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:throat", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:ci-info@2.0.0", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:denodeify", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:hermes-parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:jsc-safe-url", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:lodash.throttle", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-babel-transformer", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-cache-key", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-config", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-file-map", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-resolver@0.80.5", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-runtime", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-symbolicate", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-transform-plugins", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-transform-worker", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:serialize-error", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:throat", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-flush", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:miragejs", + "target": "npm:@miragejs/pretender-node-polyfill", + "type": "static" + }, + { + "source": "npm:miragejs", + "target": "npm:inflected", + "type": "static" + }, + { + "source": "npm:miragejs", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:miragejs", + "target": "npm:pretender", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:moti", + "target": "npm:framer-motion", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:ncp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:rimraf@2.4.5", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:any-promise", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:thenify-all", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:node-dir", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + }, + { + "source": "npm:node-html-parser", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:node-html-parser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:normalize-url", + "target": "npm:prepend-http", + "type": "static" + }, + { + "source": "npm:normalize-url", + "target": "npm:query-string@5.1.1", + "type": "static" + }, + { + "source": "npm:normalize-url", + "target": "npm:sort-keys", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:osenv", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + }, + { + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:npm-run-path@5.2.0", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:on-finished@2.3.0", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:onetime@2.0.1", + "target": "npm:mimic-fn@1.2.0", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + }, + { + "source": "npm:open@6.4.0", + "target": "npm:is-wsl@1.1.0", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:@aashutoshrathi/word-wrap", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor@2.1.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols@2.2.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor@2.1.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols@2.2.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:osenv", + "target": "npm:os-homedir", + "type": "static" + }, + { + "source": "npm:osenv", + "target": "npm:os-tmpdir", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.0.0", + "type": "static" + }, + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-locate@4.1.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-locate", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + }, + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry", + "type": "static" + }, + { + "source": "npm:param-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:param-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:parse-png", + "target": "npm:pngjs", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:pass-stream", + "target": "npm:readable-stream@1.0.2", + "type": "static" + }, + { + "source": "npm:password-prompt", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:password-prompt", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:klaw-sync", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:slash@2.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:yaml@2.3.4", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.2.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:pinkie-promise", + "target": "npm:pinkie", + "type": "static" + }, + { + "source": "npm:pkg-dir@3.0.0", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:pkg-dir@7.0.0", + "target": "npm:find-up@6.3.0", + "type": "static" + }, + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:plist", + "target": "npm:@xmldom/xmldom@0.8.10", + "type": "static" + }, + { + "source": "npm:plist", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:plist", + "target": "npm:xmlbuilder@15.1.1", + "type": "static" + }, + { + "source": "npm:popmotion", + "target": "npm:framesync@6.0.1", + "type": "static" + }, + { + "source": "npm:popmotion", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:popmotion", + "target": "npm:style-value-types@5.0.0", + "type": "static" + }, + { + "source": "npm:popmotion", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:popmotion@9.3.1", + "target": "npm:framesync", + "type": "static" + }, + { + "source": "npm:popmotion@9.3.1", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:popmotion@9.3.1", + "target": "npm:style-value-types", + "type": "static" + }, + { + "source": "npm:popmotion@9.3.1", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:normalize-url@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo@2.8.0", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:pretender", + "target": "npm:fake-xml-http-request", + "type": "static" + }, + { + "source": "npm:pretender", + "target": "npm:route-recognizer", + "type": "static" + }, + { + "source": "npm:prettier-linter-helpers", + "target": "npm:fast-diff", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:renderkid", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:react-is@17.0.2", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:react-is@17.0.2", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:mri", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:picomatch@3.0.1", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:promise@7.3.1", + "target": "npm:asap", + "type": "static" + }, + { + "source": "npm:promise", + "target": "npm:asap", + "type": "static" + }, + { + "source": "npm:prompt-skeleton", + "target": "npm:ansi-escapes@1.4.0", + "type": "static" + }, + { + "source": "npm:prompt-skeleton", + "target": "npm:pass-stream", + "type": "static" + }, + { + "source": "npm:prompt-sync", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:qs@6.11.2", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:filter-obj", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:split-on-first", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:strict-uri-encode", + "type": "static" + }, + { + "source": "npm:query-string@5.1.1", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string@5.1.1", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:query-string@5.1.1", + "target": "npm:strict-uri-encode@1.1.0", + "type": "static" + }, + { + "source": "npm:query-string@7.1.3", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string@7.1.3", + "target": "npm:filter-obj", + "type": "static" + }, + { + "source": "npm:query-string@7.1.3", + "target": "npm:split-on-first", + "type": "static" + }, + { + "source": "npm:query-string@7.1.3", + "target": "npm:strict-uri-encode", + "type": "static" + }, + { + "source": "npm:queue", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:react-devtools-core", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:react-devtools-core", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:shallowequal", + "type": "static" + }, + { + "source": "npm:react-i18next", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-i18next", + "target": "npm:html-parse-stringify", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:@egjs/hammerjs", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-native-keyboard-aware-scroll-view", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-native-keyboard-aware-scroll-view", + "target": "npm:react-native-iphone-x-helper", + "type": "static" + }, + { + "source": "npm:react-native-reanimated", + "target": "npm:@babel/plugin-transform-object-assign", + "type": "static" + }, + { + "source": "npm:react-native-reanimated", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:react-native-reanimated", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:react-native-reanimated", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-native-screens", + "target": "npm:react-freeze", + "type": "static" + }, + { + "source": "npm:react-native-screens", + "target": "npm:warn-once", + "type": "static" + }, + { + "source": "npm:react-native-svg", + "target": "npm:css-select@5.1.0", + "type": "static" + }, + { + "source": "npm:react-native-svg", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:fbjs", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:inline-style-prefixer", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:memoize-one@6.0.0", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:styleq", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@jest/create-cache-key-function", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native-community/cli", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native-community/cli-platform-android", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native-community/cli-platform-ios", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/assets-registry", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/codegen", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/community-cli-plugin", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/gradle-plugin", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/js-polyfills", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/normalize-colors", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/virtualized-lists", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:anser", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:deprecated-react-native-prop-types", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:event-target-shim", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:flow-enums-runtime", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:jsc-android", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:memoize-one", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:metro-runtime", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:pretty-format@26.6.2", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:promise", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:react-devtools-core", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:stacktrace-parser", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:whatwg-fetch", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:ws@6.2.2", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:react-shallow-renderer", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-shallow-renderer", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:reactotron-core-client", + "target": "npm:reactotron-core-contract", + "type": "static" + }, + { + "source": "npm:reactotron-react-native", + "target": "npm:mitt", + "type": "static" + }, + { + "source": "npm:reactotron-react-native", + "target": "npm:query-string", + "type": "static" + }, + { + "source": "npm:reactotron-react-native", + "target": "npm:reactotron-core-client", + "type": "static" + }, + { + "source": "npm:reactotron-react-native", + "target": "npm:react-native-flipper", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:readdirp", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:recast", + "target": "npm:ast-types", + "type": "static" + }, + { + "source": "npm:recast", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:recast", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:recast", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:which-builtin-type", + "type": "static" + }, + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:registry-url", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:dom-converter", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:requireg", + "target": "npm:nested-error-stacks", + "type": "static" + }, + { + "source": "npm:requireg", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:requireg", + "target": "npm:resolve@1.7.1", + "type": "static" + }, + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.5", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.5", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.5", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve@1.7.1", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:onetime@2.0.1", + "type": "static" + }, + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf@2.4.5", + "target": "npm:glob@6.0.4", + "type": "static" + }, + { + "source": "npm:rimraf@2.6.3", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:chokidar@3.6.0", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:saxes", + "target": "npm:xmlchars", + "type": "static" + }, + { + "source": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:scheduler", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats@2.1.1", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords@5.1.0", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats@2.1.1", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords@5.1.0", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:ansi-escapes@1.4.0", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:cli-styles", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:figures@2.0.0", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:prompt-skeleton", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:@types/node-forge", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:shebang-command@1.2.0", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + }, + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:simple-plist", + "target": "npm:bplist-creator", + "type": "static" + }, + { + "source": "npm:simple-plist", + "target": "npm:bplist-parser@0.3.1", + "type": "static" + }, + { + "source": "npm:simple-plist", + "target": "npm:plist", + "type": "static" + }, + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.2", + "type": "static" + }, + { + "source": "npm:slice-ansi@2.1.0", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi@2.1.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@2.1.0", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point@4.0.0", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + }, + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + }, + { + "source": "npm:split", + "target": "npm:through", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:stack-generator", + "target": "npm:stackframe", + "type": "static" + }, + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + }, + { + "source": "npm:stacktrace-gps", + "target": "npm:source-map@0.5.6", + "type": "static" + }, + { + "source": "npm:stacktrace-gps", + "target": "npm:stackframe", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stack-generator", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stacktrace-gps", + "type": "static" + }, + { + "source": "npm:stacktrace-parser", + "target": "npm:type-fest@0.7.1", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-length@5.0.1", + "target": "npm:char-regex@2.0.1", + "type": "static" + }, + { + "source": "npm:string-length@5.0.1", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:strip-ansi@3.0.1", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@5.2.0", + "target": "npm:ansi-regex@4.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@5.2.0", + "target": "npm:ansi-regex@4.1.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + }, + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "type": "static" + }, + { + "source": "npm:style-value-types", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:style-value-types", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:style-value-types@5.0.0", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:style-value-types@5.0.0", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:commander@4.1.1", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:mz", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:ts-interface-checker", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:commander@4.1.1", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:mz", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:ts-interface-checker", + "type": "static" + }, + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:csso@4.2.0", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:temp", + "target": "npm:rimraf@2.6.3", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:temp-dir@1.0.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:type-fest@0.3.1", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:unique-string", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:del@6.1.1", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:type-fest@0.16.0", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:unique-string@2.0.0", + "type": "static" + }, + { + "source": "npm:terminal-link", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:terminal-link", + "target": "npm:supports-hyperlinks", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:thenify-all", + "target": "npm:thenify", + "type": "static" + }, + { + "source": "npm:thenify", + "target": "npm:any-promise", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:xtend", + "type": "static" + }, + { + "source": "npm:tmp", + "target": "npm:os-tmpdir", + "type": "static" + }, + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:url-parse", + "type": "static" + }, + { + "source": "npm:tr46", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + }, + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + }, + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string", + "type": "static" + }, + { + "source": "npm:unique-string@2.0.0", + "target": "npm:crypto-random-string@2.0.0", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:update-check", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:update-check", + "target": "npm:registry-url", + "type": "static" + }, + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:querystringify", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:url", + "target": "npm:punycode@1.4.1", + "type": "static" + }, + { + "source": "npm:url", + "target": "npm:qs@6.11.2", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + }, + { + "source": "npm:w3c-xmlserializer", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + }, + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:web-encoding", + "target": "npm:util", + "type": "static" + }, + { + "source": "npm:web-encoding", + "target": "npm:@zxing/text-encoding", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway@6.0.3", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.1.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:launch-editor", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws@8.16.0", + "type": "static" + }, + { + "source": "npm:webpack-manifest-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack-manifest-plugin", + "target": "npm:webpack-sources@2.3.1", + "type": "static" + }, + { + "source": "npm:webpack-sources@2.3.1", + "target": "npm:source-list-map", + "type": "static" + }, + { + "source": "npm:webpack-sources@2.3.1", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + }, + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:whatwg-url-without-unicode", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:whatwg-url-without-unicode", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:whatwg-url-without-unicode", + "target": "npm:webidl-conversions@5.0.0", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:tr46@0.0.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:webidl-conversions@3.0.1", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-async-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-finalizationregistry", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-collection", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakmap", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakset", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:ws@6.2.2", + "target": "npm:async-limiter", + "type": "static" + }, + { + "source": "npm:xcode", + "target": "npm:simple-plist", + "type": "static" + }, + { + "source": "npm:xcode", + "target": "npm:uuid@7.0.3", + "type": "static" + }, + { + "source": "npm:xcode", + "target": "npm:simple-plist", + "type": "static" + }, + { + "source": "npm:xcode", + "target": "npm:uuid@7.0.3", + "type": "static" + }, + { + "source": "npm:xml-js", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:xml2js@0.4.23", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:xml2js@0.4.23", + "target": "npm:xmlbuilder", + "type": "static" + }, + { + "source": "npm:xml2js", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:xml2js", + "target": "npm:xmlbuilder", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:cliui@6.0.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:y18n@4.0.3", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + } + ] +} diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json new file mode 100644 index 00000000..508f4819 --- /dev/null +++ b/.nx/cache/project-graph.json @@ -0,0 +1,35728 @@ +{ + "nodes": {}, + "externalNodes": { + "npm:@0no-co/graphql.web": { + "type": "npm", + "name": "npm:@0no-co/graphql.web", + "data": { + "version": "1.0.4", + "packageName": "@0no-co/graphql.web", + "hash": "sha512-W3ezhHGfO0MS1PtGloaTpg0PbaT8aZSmmaerL7idtU5F7oCI+uu25k+MsMS31BVFlp4aMkHSrNRxiD72IlK8TA==" + } + }, + "npm:@aashutoshrathi/word-wrap": { + "type": "npm", + "name": "npm:@aashutoshrathi/word-wrap", + "data": { + "version": "1.2.6", + "packageName": "@aashutoshrathi/word-wrap", + "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" + } + }, + "npm:@ampproject/remapping": { + "type": "npm", + "name": "npm:@ampproject/remapping", + "data": { + "version": "2.2.1", + "packageName": "@ampproject/remapping", + "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" + } + }, + "npm:@babel/code-frame@7.10.4": { + "type": "npm", + "name": "npm:@babel/code-frame@7.10.4", + "data": { + "version": "7.10.4", + "packageName": "@babel/code-frame", + "hash": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.23.5", + "packageName": "@babel/code-frame", + "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.23.5", + "packageName": "@babel/compat-data", + "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.23.9", + "packageName": "@babel/core", + "hash": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.23.6", + "packageName": "@babel/generator", + "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" + } + }, + "npm:@babel/helper-builder-binary-assignment-operator-visitor": { + "type": "npm", + "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", + "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.23.6", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" + } + }, + "npm:@babel/helper-create-class-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-class-features-plugin", + "data": { + "version": "7.23.9", + "packageName": "@babel/helper-create-class-features-plugin", + "hash": "sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==" + } + }, + "npm:@babel/helper-create-regexp-features-plugin": { + "type": "npm", + "name": "npm:@babel/helper-create-regexp-features-plugin", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-create-regexp-features-plugin", + "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" + } + }, + "npm:@babel/helper-define-polyfill-provider": { + "type": "npm", + "name": "npm:@babel/helper-define-polyfill-provider", + "data": { + "version": "0.5.0", + "packageName": "@babel/helper-define-polyfill-provider", + "hash": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==" + } + }, + "npm:@babel/helper-environment-visitor": { + "type": "npm", + "name": "npm:@babel/helper-environment-visitor", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-environment-visitor", + "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" + } + }, + "npm:@babel/helper-function-name": { + "type": "npm", + "name": "npm:@babel/helper-function-name", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-function-name", + "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" + } + }, + "npm:@babel/helper-hoist-variables": { + "type": "npm", + "name": "npm:@babel/helper-hoist-variables", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-hoist-variables", + "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" + } + }, + "npm:@babel/helper-member-expression-to-functions": { + "type": "npm", + "name": "npm:@babel/helper-member-expression-to-functions", + "data": { + "version": "7.23.0", + "packageName": "@babel/helper-member-expression-to-functions", + "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.22.15", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.23.3", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" + } + }, + "npm:@babel/helper-optimise-call-expression": { + "type": "npm", + "name": "npm:@babel/helper-optimise-call-expression", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-optimise-call-expression", + "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" + } + }, + "npm:@babel/helper-remap-async-to-generator": { + "type": "npm", + "name": "npm:@babel/helper-remap-async-to-generator", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-remap-async-to-generator", + "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" + } + }, + "npm:@babel/helper-replace-supers": { + "type": "npm", + "name": "npm:@babel/helper-replace-supers", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-replace-supers", + "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" + } + }, + "npm:@babel/helper-simple-access": { + "type": "npm", + "name": "npm:@babel/helper-simple-access", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-simple-access", + "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" + } + }, + "npm:@babel/helper-skip-transparent-expression-wrappers": { + "type": "npm", + "name": "npm:@babel/helper-skip-transparent-expression-wrappers", + "data": { + "version": "7.22.5", + "packageName": "@babel/helper-skip-transparent-expression-wrappers", + "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" + } + }, + "npm:@babel/helper-split-export-declaration": { + "type": "npm", + "name": "npm:@babel/helper-split-export-declaration", + "data": { + "version": "7.22.6", + "packageName": "@babel/helper-split-export-declaration", + "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.23.4", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.23.5", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" + } + }, + "npm:@babel/helper-wrap-function": { + "type": "npm", + "name": "npm:@babel/helper-wrap-function", + "data": { + "version": "7.22.20", + "packageName": "@babel/helper-wrap-function", + "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.23.9", + "packageName": "@babel/helpers", + "hash": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==" + } + }, + "npm:@babel/highlight": { + "type": "npm", + "name": "npm:@babel/highlight", + "data": { + "version": "7.23.4", + "packageName": "@babel/highlight", + "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.23.9", + "packageName": "@babel/parser", + "hash": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==" + } + }, + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" + } + }, + "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "type": "npm", + "name": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "data": { + "version": "7.23.7", + "packageName": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "hash": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==" + } + }, + "npm:@babel/plugin-proposal-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-async-generator-functions", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-async-generator-functions", + "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" + } + }, + "npm:@babel/plugin-proposal-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-class-properties", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-class-properties", + "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" + } + }, + "npm:@babel/plugin-proposal-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-decorators", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-proposal-decorators", + "hash": "sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==" + } + }, + "npm:@babel/plugin-proposal-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-export-default-from", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-proposal-export-default-from", + "hash": "sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==" + } + }, + "npm:@babel/plugin-proposal-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", + "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" + } + }, + "npm:@babel/plugin-proposal-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-numeric-separator", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-numeric-separator", + "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" + } + }, + "npm:@babel/plugin-proposal-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-object-rest-spread", + "data": { + "version": "7.20.7", + "packageName": "@babel/plugin-proposal-object-rest-spread", + "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" + } + }, + "npm:@babel/plugin-proposal-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-catch-binding", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-proposal-optional-catch-binding", + "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" + } + }, + "npm:@babel/plugin-proposal-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-optional-chaining", + "data": { + "version": "7.21.0", + "packageName": "@babel/plugin-proposal-optional-chaining", + "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" + } + }, + "npm:@babel/plugin-proposal-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-proposal-private-property-in-object", + "data": { + "version": "7.21.0-placeholder-for-preset-env.2", + "packageName": "@babel/plugin-proposal-private-property-in-object", + "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" + } + }, + "npm:@babel/plugin-syntax-async-generators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-async-generators", + "data": { + "version": "7.8.4", + "packageName": "@babel/plugin-syntax-async-generators", + "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + } + }, + "npm:@babel/plugin-syntax-bigint": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-bigint", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-bigint", + "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + } + }, + "npm:@babel/plugin-syntax-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-properties", + "data": { + "version": "7.12.13", + "packageName": "@babel/plugin-syntax-class-properties", + "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + } + }, + "npm:@babel/plugin-syntax-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-class-static-block", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-class-static-block", + "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" + } + }, + "npm:@babel/plugin-syntax-decorators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-decorators", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-decorators", + "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" + } + }, + "npm:@babel/plugin-syntax-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-dynamic-import", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-dynamic-import", + "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + } + }, + "npm:@babel/plugin-syntax-export-default-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-default-from", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-export-default-from", + "hash": "sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==" + } + }, + "npm:@babel/plugin-syntax-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-export-namespace-from", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-export-namespace-from", + "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + } + }, + "npm:@babel/plugin-syntax-flow": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-flow", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-flow", + "hash": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==" + } + }, + "npm:@babel/plugin-syntax-import-assertions": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-assertions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-assertions", + "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" + } + }, + "npm:@babel/plugin-syntax-import-attributes": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-attributes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-import-attributes", + "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" + } + }, + "npm:@babel/plugin-syntax-import-meta": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-import-meta", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-import-meta", + "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + } + }, + "npm:@babel/plugin-syntax-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-json-strings", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-json-strings", + "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" + } + }, + "npm:@babel/plugin-syntax-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-logical-assignment-operators", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-logical-assignment-operators", + "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + } + }, + "npm:@babel/plugin-syntax-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", + "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + } + }, + "npm:@babel/plugin-syntax-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-numeric-separator", + "data": { + "version": "7.10.4", + "packageName": "@babel/plugin-syntax-numeric-separator", + "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + } + }, + "npm:@babel/plugin-syntax-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-object-rest-spread", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-object-rest-spread", + "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + } + }, + "npm:@babel/plugin-syntax-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-catch-binding", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-catch-binding", + "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + } + }, + "npm:@babel/plugin-syntax-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-optional-chaining", + "data": { + "version": "7.8.3", + "packageName": "@babel/plugin-syntax-optional-chaining", + "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + } + }, + "npm:@babel/plugin-syntax-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-private-property-in-object", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-private-property-in-object", + "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" + } + }, + "npm:@babel/plugin-syntax-top-level-await": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-top-level-await", + "data": { + "version": "7.14.5", + "packageName": "@babel/plugin-syntax-top-level-await", + "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" + } + }, + "npm:@babel/plugin-syntax-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-syntax-typescript", + "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" + } + }, + "npm:@babel/plugin-syntax-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-unicode-sets-regex", + "data": { + "version": "7.18.6", + "packageName": "@babel/plugin-syntax-unicode-sets-regex", + "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" + } + }, + "npm:@babel/plugin-transform-arrow-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-arrow-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-arrow-functions", + "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" + } + }, + "npm:@babel/plugin-transform-async-generator-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-generator-functions", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-transform-async-generator-functions", + "hash": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==" + } + }, + "npm:@babel/plugin-transform-async-to-generator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-async-to-generator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-async-to-generator", + "hash": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==" + } + }, + "npm:@babel/plugin-transform-block-scoped-functions": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoped-functions", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-block-scoped-functions", + "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" + } + }, + "npm:@babel/plugin-transform-block-scoping": { + "type": "npm", + "name": "npm:@babel/plugin-transform-block-scoping", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-block-scoping", + "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" + } + }, + "npm:@babel/plugin-transform-class-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-class-properties", + "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" + } + }, + "npm:@babel/plugin-transform-class-static-block": { + "type": "npm", + "name": "npm:@babel/plugin-transform-class-static-block", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-class-static-block", + "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" + } + }, + "npm:@babel/plugin-transform-classes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-classes", + "data": { + "version": "7.23.8", + "packageName": "@babel/plugin-transform-classes", + "hash": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==" + } + }, + "npm:@babel/plugin-transform-computed-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-computed-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-computed-properties", + "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" + } + }, + "npm:@babel/plugin-transform-destructuring": { + "type": "npm", + "name": "npm:@babel/plugin-transform-destructuring", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-destructuring", + "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" + } + }, + "npm:@babel/plugin-transform-dotall-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dotall-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-dotall-regex", + "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" + } + }, + "npm:@babel/plugin-transform-duplicate-keys": { + "type": "npm", + "name": "npm:@babel/plugin-transform-duplicate-keys", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-duplicate-keys", + "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" + } + }, + "npm:@babel/plugin-transform-dynamic-import": { + "type": "npm", + "name": "npm:@babel/plugin-transform-dynamic-import", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-dynamic-import", + "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" + } + }, + "npm:@babel/plugin-transform-exponentiation-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-exponentiation-operator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-exponentiation-operator", + "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" + } + }, + "npm:@babel/plugin-transform-export-namespace-from": { + "type": "npm", + "name": "npm:@babel/plugin-transform-export-namespace-from", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-export-namespace-from", + "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" + } + }, + "npm:@babel/plugin-transform-flow-strip-types": { + "type": "npm", + "name": "npm:@babel/plugin-transform-flow-strip-types", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-flow-strip-types", + "hash": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==" + } + }, + "npm:@babel/plugin-transform-for-of": { + "type": "npm", + "name": "npm:@babel/plugin-transform-for-of", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-for-of", + "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" + } + }, + "npm:@babel/plugin-transform-function-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-function-name", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-function-name", + "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" + } + }, + "npm:@babel/plugin-transform-json-strings": { + "type": "npm", + "name": "npm:@babel/plugin-transform-json-strings", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-json-strings", + "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" + } + }, + "npm:@babel/plugin-transform-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-literals", + "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" + } + }, + "npm:@babel/plugin-transform-logical-assignment-operators": { + "type": "npm", + "name": "npm:@babel/plugin-transform-logical-assignment-operators", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-logical-assignment-operators", + "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" + } + }, + "npm:@babel/plugin-transform-member-expression-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-member-expression-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-member-expression-literals", + "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" + } + }, + "npm:@babel/plugin-transform-modules-amd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-amd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-amd", + "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" + } + }, + "npm:@babel/plugin-transform-modules-commonjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-commonjs", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-commonjs", + "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" + } + }, + "npm:@babel/plugin-transform-modules-systemjs": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-systemjs", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-transform-modules-systemjs", + "hash": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==" + } + }, + "npm:@babel/plugin-transform-modules-umd": { + "type": "npm", + "name": "npm:@babel/plugin-transform-modules-umd", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-modules-umd", + "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" + } + }, + "npm:@babel/plugin-transform-named-capturing-groups-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-named-capturing-groups-regex", + "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" + } + }, + "npm:@babel/plugin-transform-new-target": { + "type": "npm", + "name": "npm:@babel/plugin-transform-new-target", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-new-target", + "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" + } + }, + "npm:@babel/plugin-transform-nullish-coalescing-operator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-nullish-coalescing-operator", + "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" + } + }, + "npm:@babel/plugin-transform-numeric-separator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-numeric-separator", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-numeric-separator", + "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" + } + }, + "npm:@babel/plugin-transform-object-assign": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-assign", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-object-assign", + "hash": "sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA==" + } + }, + "npm:@babel/plugin-transform-object-rest-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-rest-spread", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-object-rest-spread", + "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" + } + }, + "npm:@babel/plugin-transform-object-super": { + "type": "npm", + "name": "npm:@babel/plugin-transform-object-super", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-object-super", + "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" + } + }, + "npm:@babel/plugin-transform-optional-catch-binding": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-catch-binding", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-catch-binding", + "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" + } + }, + "npm:@babel/plugin-transform-optional-chaining": { + "type": "npm", + "name": "npm:@babel/plugin-transform-optional-chaining", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-optional-chaining", + "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" + } + }, + "npm:@babel/plugin-transform-parameters": { + "type": "npm", + "name": "npm:@babel/plugin-transform-parameters", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-parameters", + "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" + } + }, + "npm:@babel/plugin-transform-private-methods": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-methods", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-private-methods", + "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" + } + }, + "npm:@babel/plugin-transform-private-property-in-object": { + "type": "npm", + "name": "npm:@babel/plugin-transform-private-property-in-object", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-private-property-in-object", + "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" + } + }, + "npm:@babel/plugin-transform-property-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-property-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-property-literals", + "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" + } + }, + "npm:@babel/plugin-transform-react-display-name": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-display-name", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-display-name", + "hash": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==" + } + }, + "npm:@babel/plugin-transform-react-jsx-development": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-development", + "data": { + "version": "7.22.5", + "packageName": "@babel/plugin-transform-react-jsx-development", + "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" + } + }, + "npm:@babel/plugin-transform-react-jsx-self": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-self", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-jsx-self", + "hash": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==" + } + }, + "npm:@babel/plugin-transform-react-jsx-source": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx-source", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-jsx-source", + "hash": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.23.4", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==" + } + }, + "npm:@babel/plugin-transform-react-pure-annotations": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-pure-annotations", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-react-pure-annotations", + "hash": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==" + } + }, + "npm:@babel/plugin-transform-regenerator": { + "type": "npm", + "name": "npm:@babel/plugin-transform-regenerator", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-regenerator", + "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" + } + }, + "npm:@babel/plugin-transform-reserved-words": { + "type": "npm", + "name": "npm:@babel/plugin-transform-reserved-words", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-reserved-words", + "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" + } + }, + "npm:@babel/plugin-transform-runtime": { + "type": "npm", + "name": "npm:@babel/plugin-transform-runtime", + "data": { + "version": "7.23.9", + "packageName": "@babel/plugin-transform-runtime", + "hash": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==" + } + }, + "npm:@babel/plugin-transform-shorthand-properties": { + "type": "npm", + "name": "npm:@babel/plugin-transform-shorthand-properties", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-shorthand-properties", + "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" + } + }, + "npm:@babel/plugin-transform-spread": { + "type": "npm", + "name": "npm:@babel/plugin-transform-spread", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-spread", + "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" + } + }, + "npm:@babel/plugin-transform-sticky-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-sticky-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-sticky-regex", + "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" + } + }, + "npm:@babel/plugin-transform-template-literals": { + "type": "npm", + "name": "npm:@babel/plugin-transform-template-literals", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-template-literals", + "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" + } + }, + "npm:@babel/plugin-transform-typeof-symbol": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typeof-symbol", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-typeof-symbol", + "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" + } + }, + "npm:@babel/plugin-transform-typescript": { + "type": "npm", + "name": "npm:@babel/plugin-transform-typescript", + "data": { + "version": "7.23.6", + "packageName": "@babel/plugin-transform-typescript", + "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" + } + }, + "npm:@babel/plugin-transform-unicode-escapes": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-escapes", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-escapes", + "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" + } + }, + "npm:@babel/plugin-transform-unicode-property-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-property-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-property-regex", + "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" + } + }, + "npm:@babel/plugin-transform-unicode-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-regex", + "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" + } + }, + "npm:@babel/plugin-transform-unicode-sets-regex": { + "type": "npm", + "name": "npm:@babel/plugin-transform-unicode-sets-regex", + "data": { + "version": "7.23.3", + "packageName": "@babel/plugin-transform-unicode-sets-regex", + "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" + } + }, + "npm:@babel/preset-env": { + "type": "npm", + "name": "npm:@babel/preset-env", + "data": { + "version": "7.23.9", + "packageName": "@babel/preset-env", + "hash": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==" + } + }, + "npm:@babel/preset-flow": { + "type": "npm", + "name": "npm:@babel/preset-flow", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-flow", + "hash": "sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==" + } + }, + "npm:@babel/preset-modules": { + "type": "npm", + "name": "npm:@babel/preset-modules", + "data": { + "version": "0.1.6-no-external-plugins", + "packageName": "@babel/preset-modules", + "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" + } + }, + "npm:@babel/preset-react": { + "type": "npm", + "name": "npm:@babel/preset-react", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-react", + "hash": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==" + } + }, + "npm:@babel/preset-typescript": { + "type": "npm", + "name": "npm:@babel/preset-typescript", + "data": { + "version": "7.23.3", + "packageName": "@babel/preset-typescript", + "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" + } + }, + "npm:@babel/register": { + "type": "npm", + "name": "npm:@babel/register", + "data": { + "version": "7.23.7", + "packageName": "@babel/register", + "hash": "sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==" + } + }, + "npm:@babel/regjsgen": { + "type": "npm", + "name": "npm:@babel/regjsgen", + "data": { + "version": "0.8.0", + "packageName": "@babel/regjsgen", + "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.23.9", + "packageName": "@babel/runtime", + "hash": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.23.9", + "packageName": "@babel/template", + "hash": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.23.9", + "packageName": "@babel/traverse", + "hash": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.23.9", + "packageName": "@babel/types", + "hash": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==" + } + }, + "npm:@bacons/react-views": { + "type": "npm", + "name": "npm:@bacons/react-views", + "data": { + "version": "1.1.3", + "packageName": "@bacons/react-views", + "hash": "sha512-aLipQAkQKRzG64e28XHBpByyBPfANz0A6POqYHGyryHizG9vLCLNQwLe8gwFANEMBWW2Mx5YdQ7RkNdQMQ+CXQ==" + } + }, + "npm:@bcoe/v8-coverage": { + "type": "npm", + "name": "npm:@bcoe/v8-coverage", + "data": { + "version": "0.2.3", + "packageName": "@bcoe/v8-coverage", + "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + } + }, + "npm:@egjs/hammerjs": { + "type": "npm", + "name": "npm:@egjs/hammerjs", + "data": { + "version": "2.0.17", + "packageName": "@egjs/hammerjs", + "hash": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==" + } + }, + "npm:@emotion/is-prop-valid": { + "type": "npm", + "name": "npm:@emotion/is-prop-valid", + "data": { + "version": "0.8.8", + "packageName": "@emotion/is-prop-valid", + "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" + } + }, + "npm:@emotion/memoize": { + "type": "npm", + "name": "npm:@emotion/memoize", + "data": { + "version": "0.7.4", + "packageName": "@emotion/memoize", + "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.4.0", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" + } + }, + "npm:@eslint-community/regexpp": { + "type": "npm", + "name": "npm:@eslint-community/regexpp", + "data": { + "version": "4.10.0", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "2.1.4", + "packageName": "@eslint/eslintrc", + "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" + } + }, + "npm:@eslint/js": { + "type": "npm", + "name": "npm:@eslint/js", + "data": { + "version": "8.56.0", + "packageName": "@eslint/js", + "hash": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==" + } + }, + "npm:@expo/bunyan": { + "type": "npm", + "name": "npm:@expo/bunyan", + "data": { + "version": "4.0.0", + "packageName": "@expo/bunyan", + "hash": "sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==" + } + }, + "npm:@expo/cli@0.17.2": { + "type": "npm", + "name": "npm:@expo/cli@0.17.2", + "data": { + "version": "0.17.2", + "packageName": "@expo/cli", + "hash": "sha512-0uJGuiV8XGjsTGnga95CiCZAtAymtQlo8FxRBp7AjLKpG/oTXG7+s368H7ZIC+XQBsvWx83iv+HyXQfOtPbsxQ==" + } + }, + "npm:@expo/code-signing-certificates": { + "type": "npm", + "name": "npm:@expo/code-signing-certificates", + "data": { + "version": "0.0.5", + "packageName": "@expo/code-signing-certificates", + "hash": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==" + } + }, + "npm:@expo/config-plugins": { + "type": "npm", + "name": "npm:@expo/config-plugins", + "data": { + "version": "7.8.4", + "packageName": "@expo/config-plugins", + "hash": "sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==" + } + }, + "npm:@expo/config-plugins@5.0.4": { + "type": "npm", + "name": "npm:@expo/config-plugins@5.0.4", + "data": { + "version": "5.0.4", + "packageName": "@expo/config-plugins", + "hash": "sha512-vzUcVpqOMs3h+hyRdhGwk+eGIOhXa5xYdd92yO17RMNHav3v/+ekMbs7XA2c3lepMO8Yd4/5hqmRw9ZTL6jGzg==" + } + }, + "npm:@expo/config-types@47.0.0": { + "type": "npm", + "name": "npm:@expo/config-types@47.0.0", + "data": { + "version": "47.0.0", + "packageName": "@expo/config-types", + "hash": "sha512-r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g==" + } + }, + "npm:@expo/config-types": { + "type": "npm", + "name": "npm:@expo/config-types", + "data": { + "version": "50.0.0", + "packageName": "@expo/config-types", + "hash": "sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==" + } + }, + "npm:@expo/config": { + "type": "npm", + "name": "npm:@expo/config", + "data": { + "version": "8.5.4", + "packageName": "@expo/config", + "hash": "sha512-ggOLJPHGzJSJHVBC1LzwXwR6qUn8Mw7hkc5zEKRIdhFRuIQ6s2FE4eOvP87LrNfDF7eZGa6tJQYsiHSmZKG+8Q==" + } + }, + "npm:@expo/config@7.0.3": { + "type": "npm", + "name": "npm:@expo/config@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "@expo/config", + "hash": "sha512-joVtB5o+NF40Tmsdp65UzryRtbnCuMbXkVO4wJnNJO4aaK0EYLdHCYSewORVqNcDfGN0LphQr8VTG2npbd9CJA==" + } + }, + "npm:@expo/configure-splash-screen": { + "type": "npm", + "name": "npm:@expo/configure-splash-screen", + "data": { + "version": "0.6.0", + "packageName": "@expo/configure-splash-screen", + "hash": "sha512-4DyPoNXJqx9bN4nEwF3HQreo//ECu7gDe1Xor3dnnzFm9P/VDxAKdbEhA0n+R6fgkNfT2onVHWijqvdpTS3Xew==" + } + }, + "npm:@expo/devcert": { + "type": "npm", + "name": "npm:@expo/devcert", + "data": { + "version": "1.1.0", + "packageName": "@expo/devcert", + "hash": "sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==" + } + }, + "npm:@expo/env": { + "type": "npm", + "name": "npm:@expo/env", + "data": { + "version": "0.2.1", + "packageName": "@expo/env", + "hash": "sha512-deZmRS7Dvp18VM8s559dq/ZjPlV1D9vtLoLXwHmCK/JYOvtNptdKsfxcWjI7ewmo6ln2PqgNI9HRI74q6Wk2eA==" + } + }, + "npm:@expo/fingerprint": { + "type": "npm", + "name": "npm:@expo/fingerprint", + "data": { + "version": "0.6.0", + "packageName": "@expo/fingerprint", + "hash": "sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==" + } + }, + "npm:@expo/image-utils@0.3.22": { + "type": "npm", + "name": "npm:@expo/image-utils@0.3.22", + "data": { + "version": "0.3.22", + "packageName": "@expo/image-utils", + "hash": "sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==" + } + }, + "npm:@expo/image-utils@0.3.23": { + "type": "npm", + "name": "npm:@expo/image-utils@0.3.23", + "data": { + "version": "0.3.23", + "packageName": "@expo/image-utils", + "hash": "sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==" + } + }, + "npm:@expo/image-utils": { + "type": "npm", + "name": "npm:@expo/image-utils", + "data": { + "version": "0.4.1", + "packageName": "@expo/image-utils", + "hash": "sha512-EZb+VHSmw+a5s2hS9qksTcWylY0FDaIAVufcxoaRS9tHIXLjW5zcKW7Rhj9dSEbZbRVy9yXXdHKa3GQdUQIOFw==" + } + }, + "npm:@expo/json-file@8.2.36": { + "type": "npm", + "name": "npm:@expo/json-file@8.2.36", + "data": { + "version": "8.2.36", + "packageName": "@expo/json-file", + "hash": "sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==" + } + }, + "npm:@expo/json-file": { + "type": "npm", + "name": "npm:@expo/json-file", + "data": { + "version": "8.3.0", + "packageName": "@expo/json-file", + "hash": "sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==" + } + }, + "npm:@expo/metro-config": { + "type": "npm", + "name": "npm:@expo/metro-config", + "data": { + "version": "0.17.3", + "packageName": "@expo/metro-config", + "hash": "sha512-YW8ixbaz6yL7/Mg1rJJejiAAVQQKjGY1wXvT2Dh487r/r9/j1yE1YRS/oRY1yItYzbnHvO0p0jMnEGfiFYL3Tg==" + } + }, + "npm:@expo/metro-runtime": { + "type": "npm", + "name": "npm:@expo/metro-runtime", + "data": { + "version": "3.1.2", + "packageName": "@expo/metro-runtime", + "hash": "sha512-Wekv2AZ3HY0NG9Im8AMB1KHGyHjmALg6xekVK34724I/DLtcocLKtQEP04oI9GcAZBotAhROHH5E4ADhJAEgYg==" + } + }, + "npm:@expo/osascript": { + "type": "npm", + "name": "npm:@expo/osascript", + "data": { + "version": "2.1.0", + "packageName": "@expo/osascript", + "hash": "sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==" + } + }, + "npm:@expo/package-manager": { + "type": "npm", + "name": "npm:@expo/package-manager", + "data": { + "version": "1.4.2", + "packageName": "@expo/package-manager", + "hash": "sha512-LKdo/6y4W7llZ6ghsg1kdx2CeH/qR/c6QI/JI8oPUvppsZoeIYjSkdflce978fAMfR8IXoi0wt0jA2w0kWpwbg==" + } + }, + "npm:@expo/plist@0.0.18": { + "type": "npm", + "name": "npm:@expo/plist@0.0.18", + "data": { + "version": "0.0.18", + "packageName": "@expo/plist", + "hash": "sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==" + } + }, + "npm:@expo/plist": { + "type": "npm", + "name": "npm:@expo/plist", + "data": { + "version": "0.1.0", + "packageName": "@expo/plist", + "hash": "sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==" + } + }, + "npm:@expo/prebuild-config@5.0.7": { + "type": "npm", + "name": "npm:@expo/prebuild-config@5.0.7", + "data": { + "version": "5.0.7", + "packageName": "@expo/prebuild-config", + "hash": "sha512-D+TBpJUHe4+oTGFPb4o0rrw/h1xxc6wF+abJnbDHUkhnaeiHkE2O3ByS7FdiZ2FT36t0OKqeSKG/xFwWT3m1Ew==" + } + }, + "npm:@expo/prebuild-config": { + "type": "npm", + "name": "npm:@expo/prebuild-config", + "data": { + "version": "6.7.4", + "packageName": "@expo/prebuild-config", + "hash": "sha512-x8EUdCa8DTMZ/dtEXjHAdlP+ljf6oSeSKNzhycXiHhpMSMG9jEhV28ocCwc6cKsjK5GziweEiHwvrj6+vsBlhA==" + } + }, + "npm:@expo/rudder-sdk-node": { + "type": "npm", + "name": "npm:@expo/rudder-sdk-node", + "data": { + "version": "1.1.1", + "packageName": "@expo/rudder-sdk-node", + "hash": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==" + } + }, + "npm:@expo/sdk-runtime-versions": { + "type": "npm", + "name": "npm:@expo/sdk-runtime-versions", + "data": { + "version": "1.0.0", + "packageName": "@expo/sdk-runtime-versions", + "hash": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==" + } + }, + "npm:@expo/server": { + "type": "npm", + "name": "npm:@expo/server", + "data": { + "version": "0.3.0", + "packageName": "@expo/server", + "hash": "sha512-5oIqedpLVMnf1LGI9Xd5OOGmK3DjgH9VpuqVN4e/6DwLT05RZJMyI7ylfG6QSy1e44yOgjv242tLyg0e/zdZ+A==" + } + }, + "npm:@expo/spawn-async": { + "type": "npm", + "name": "npm:@expo/spawn-async", + "data": { + "version": "1.5.0", + "packageName": "@expo/spawn-async", + "hash": "sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==" + } + }, + "npm:@expo/spawn-async@1.7.2": { + "type": "npm", + "name": "npm:@expo/spawn-async@1.7.2", + "data": { + "version": "1.7.2", + "packageName": "@expo/spawn-async", + "hash": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==" + } + }, + "npm:@expo/vector-icons": { + "type": "npm", + "name": "npm:@expo/vector-icons", + "data": { + "version": "14.0.0", + "packageName": "@expo/vector-icons", + "hash": "sha512-5orm59pdnBQlovhU9k4DbjMUZBHNlku7IRgFY56f7pcaaCnXq9yaLJoOQl9sMwNdFzf4gnkTyHmR5uN10mI9rA==" + } + }, + "npm:@expo/webpack-config": { + "type": "npm", + "name": "npm:@expo/webpack-config", + "data": { + "version": "19.0.1", + "packageName": "@expo/webpack-config", + "hash": "sha512-5bSxXTUd/DCF44+1dSyU23YKLOOYCr9pMJ+C5Vw7PAi6v6OEyNp4uOVMk2x5DAEpXtvOsJCxvNZdmtY/IqmO/A==" + } + }, + "npm:@expo/xcpretty": { + "type": "npm", + "name": "npm:@expo/xcpretty", + "data": { + "version": "4.3.1", + "packageName": "@expo/xcpretty", + "hash": "sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==" + } + }, + "npm:@gar/promisify": { + "type": "npm", + "name": "npm:@gar/promisify", + "data": { + "version": "1.1.3", + "packageName": "@gar/promisify", + "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + } + }, + "npm:@gorhom/bottom-sheet": { + "type": "npm", + "name": "npm:@gorhom/bottom-sheet", + "data": { + "version": "4.6.0", + "packageName": "@gorhom/bottom-sheet", + "hash": "sha512-XgNflkhATUqTIiMDGuLaQZAtjUzcrhGOEJGHT+7Tou1ctTMb958YRGGnU9KFo5TkD6YCZcfWfxHPi9F0FF+DjA==" + } + }, + "npm:@gorhom/portal": { + "type": "npm", + "name": "npm:@gorhom/portal", + "data": { + "version": "1.0.14", + "packageName": "@gorhom/portal", + "hash": "sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==" + } + }, + "npm:@graphql-typed-document-node/core": { + "type": "npm", + "name": "npm:@graphql-typed-document-node/core", + "data": { + "version": "3.2.0", + "packageName": "@graphql-typed-document-node/core", + "hash": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==" + } + }, + "npm:@hapi/hoek": { + "type": "npm", + "name": "npm:@hapi/hoek", + "data": { + "version": "9.3.0", + "packageName": "@hapi/hoek", + "hash": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" + } + }, + "npm:@hapi/topo": { + "type": "npm", + "name": "npm:@hapi/topo", + "data": { + "version": "5.1.0", + "packageName": "@hapi/topo", + "hash": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==" + } + }, + "npm:@humanwhocodes/config-array": { + "type": "npm", + "name": "npm:@humanwhocodes/config-array", + "data": { + "version": "0.11.14", + "packageName": "@humanwhocodes/config-array", + "hash": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/object-schema": { + "type": "npm", + "name": "npm:@humanwhocodes/object-schema", + "data": { + "version": "2.0.2", + "packageName": "@humanwhocodes/object-schema", + "hash": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==" + } + }, + "npm:@ide/backoff": { + "type": "npm", + "name": "npm:@ide/backoff", + "data": { + "version": "1.0.0", + "packageName": "@ide/backoff", + "hash": "sha512-F0YfUDjvT+Mtt/R4xdl2X0EYCHMMiJqNLdxHD++jDT5ydEFIyqbCHh51Qx2E211dgZprPKhV7sHmnXKpLuvc5g==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:@isaacs/ttlcache": { + "type": "npm", + "name": "npm:@isaacs/ttlcache", + "data": { + "version": "1.4.1", + "packageName": "@isaacs/ttlcache", + "hash": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==" + } + }, + "npm:@istanbuljs/load-nyc-config": { + "type": "npm", + "name": "npm:@istanbuljs/load-nyc-config", + "data": { + "version": "1.1.0", + "packageName": "@istanbuljs/load-nyc-config", + "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + } + }, + "npm:@istanbuljs/schema": { + "type": "npm", + "name": "npm:@istanbuljs/schema", + "data": { + "version": "0.1.3", + "packageName": "@istanbuljs/schema", + "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + } + }, + "npm:@jest/console": { + "type": "npm", + "name": "npm:@jest/console", + "data": { + "version": "29.7.0", + "packageName": "@jest/console", + "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" + } + }, + "npm:@jest/core": { + "type": "npm", + "name": "npm:@jest/core", + "data": { + "version": "29.7.0", + "packageName": "@jest/core", + "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" + } + }, + "npm:@jest/create-cache-key-function": { + "type": "npm", + "name": "npm:@jest/create-cache-key-function", + "data": { + "version": "29.7.0", + "packageName": "@jest/create-cache-key-function", + "hash": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==" + } + }, + "npm:@jest/environment": { + "type": "npm", + "name": "npm:@jest/environment", + "data": { + "version": "29.7.0", + "packageName": "@jest/environment", + "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" + } + }, + "npm:@jest/expect-utils": { + "type": "npm", + "name": "npm:@jest/expect-utils", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect-utils", + "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" + } + }, + "npm:@jest/expect": { + "type": "npm", + "name": "npm:@jest/expect", + "data": { + "version": "29.7.0", + "packageName": "@jest/expect", + "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" + } + }, + "npm:@jest/fake-timers": { + "type": "npm", + "name": "npm:@jest/fake-timers", + "data": { + "version": "29.7.0", + "packageName": "@jest/fake-timers", + "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" + } + }, + "npm:@jest/globals": { + "type": "npm", + "name": "npm:@jest/globals", + "data": { + "version": "29.7.0", + "packageName": "@jest/globals", + "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" + } + }, + "npm:@jest/reporters": { + "type": "npm", + "name": "npm:@jest/reporters", + "data": { + "version": "29.7.0", + "packageName": "@jest/reporters", + "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "29.6.3", + "packageName": "@jest/schemas", + "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" + } + }, + "npm:@jest/source-map": { + "type": "npm", + "name": "npm:@jest/source-map", + "data": { + "version": "29.6.3", + "packageName": "@jest/source-map", + "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" + } + }, + "npm:@jest/test-result": { + "type": "npm", + "name": "npm:@jest/test-result", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-result", + "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" + } + }, + "npm:@jest/test-sequencer": { + "type": "npm", + "name": "npm:@jest/test-sequencer", + "data": { + "version": "29.7.0", + "packageName": "@jest/test-sequencer", + "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" + } + }, + "npm:@jest/transform": { + "type": "npm", + "name": "npm:@jest/transform", + "data": { + "version": "29.7.0", + "packageName": "@jest/transform", + "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" + } + }, + "npm:@jest/types@26.6.2": { + "type": "npm", + "name": "npm:@jest/types@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "@jest/types", + "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" + } + }, + "npm:@jest/types": { + "type": "npm", + "name": "npm:@jest/types", + "data": { + "version": "29.6.3", + "packageName": "@jest/types", + "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.3", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.1", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" + } + }, + "npm:@jridgewell/set-array": { + "type": "npm", + "name": "npm:@jridgewell/set-array", + "data": { + "version": "1.1.2", + "packageName": "@jridgewell/set-array", + "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" + } + }, + "npm:@jridgewell/source-map": { + "type": "npm", + "name": "npm:@jridgewell/source-map", + "data": { + "version": "0.3.5", + "packageName": "@jridgewell/source-map", + "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.4.15", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.22", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==" + } + }, + "npm:@leichtgewicht/ip-codec": { + "type": "npm", + "name": "npm:@leichtgewicht/ip-codec", + "data": { + "version": "2.0.4", + "packageName": "@leichtgewicht/ip-codec", + "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + } + }, + "npm:@miragejs/pretender-node-polyfill": { + "type": "npm", + "name": "npm:@miragejs/pretender-node-polyfill", + "data": { + "version": "0.1.2", + "packageName": "@miragejs/pretender-node-polyfill", + "hash": "sha512-M/BexG/p05C5lFfMunxo/QcgIJnMT2vDVCd00wNqK2ImZONIlEETZwWJu1QtLxtmYlSHlCFl3JNzp0tLe7OJ5g==" + } + }, + "npm:@motify/components": { + "type": "npm", + "name": "npm:@motify/components", + "data": { + "version": "0.17.1", + "packageName": "@motify/components", + "hash": "sha512-nUOEuNDmnjRVFD202goOilPYtjrZGr26/VCIMnPE5Jpfs9ds/4ezIhQ75zBXd3BuCcgfMRsKrnw01/O0rdWYsg==" + } + }, + "npm:@motify/components@0.18.0": { + "type": "npm", + "name": "npm:@motify/components@0.18.0", + "data": { + "version": "0.18.0", + "packageName": "@motify/components", + "hash": "sha512-1StICST4CKXvWwkkoKtt6Pml//gE2fPI99Byxa+TbrFw4KieATeCYBRjSKD0BghmFmoF+2mRM2uf9FRYfJCGtQ==" + } + }, + "npm:@motify/core": { + "type": "npm", + "name": "npm:@motify/core", + "data": { + "version": "0.17.1", + "packageName": "@motify/core", + "hash": "sha512-czFnaE4o0gCNS7F3u0CdSxzx72b6Yzw2LGD/e/J5DPM7KPL70qyzj5cZ8Rq1sKnUZMfgvCfxyGql21FbGdyhew==" + } + }, + "npm:@motify/core@0.18.0": { + "type": "npm", + "name": "npm:@motify/core@0.18.0", + "data": { + "version": "0.18.0", + "packageName": "@motify/core", + "hash": "sha512-8C4xnC5dZ+S/NEx5wIsHAccofffSOzo7M6lKYR8Ty0QA/XtfwNRL9jQBQafj0pon4h2XP7u2NcJ4lc0ANOsx3A==" + } + }, + "npm:@motify/interactions": { + "type": "npm", + "name": "npm:@motify/interactions", + "data": { + "version": "0.17.1", + "packageName": "@motify/interactions", + "hash": "sha512-RrlFdotOJCnSnwPLFibJyr3GxxTPeRwFhyrXKWKfqVg54D0Ez8JRFCszb90gpnGBSKft1T8FCgMnem8GOHTDfw==" + } + }, + "npm:@motify/skeleton": { + "type": "npm", + "name": "npm:@motify/skeleton", + "data": { + "version": "0.18.0", + "packageName": "@motify/skeleton", + "hash": "sha512-RoS1yVQjs0LhlYCZUUprOVfYeTrtynwhlYZN6upHetvl/CXuxCHt9mV0vChfL/mmRkpS5sOPgEkSlzmJj5uEsg==" + } + }, + "npm:@motionone/animation": { + "type": "npm", + "name": "npm:@motionone/animation", + "data": { + "version": "10.17.0", + "packageName": "@motionone/animation", + "hash": "sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==" + } + }, + "npm:@motionone/dom": { + "type": "npm", + "name": "npm:@motionone/dom", + "data": { + "version": "10.12.0", + "packageName": "@motionone/dom", + "hash": "sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==" + } + }, + "npm:@motionone/easing": { + "type": "npm", + "name": "npm:@motionone/easing", + "data": { + "version": "10.17.0", + "packageName": "@motionone/easing", + "hash": "sha512-Bxe2wSuLu/qxqW4rBFS5m9tMLOw+QBh8v5A7Z5k4Ul4sTj5jAOfZG5R0bn5ywmk+Fs92Ij1feZ5pmC4TeXA8Tg==" + } + }, + "npm:@motionone/generators": { + "type": "npm", + "name": "npm:@motionone/generators", + "data": { + "version": "10.17.0", + "packageName": "@motionone/generators", + "hash": "sha512-T6Uo5bDHrZWhIfxG/2Aut7qyWQyJIWehk6OB4qNvr/jwA/SRmixwbd7SOrxZi1z5rH3LIeFFBKK1xHnSbGPZSQ==" + } + }, + "npm:@motionone/types": { + "type": "npm", + "name": "npm:@motionone/types", + "data": { + "version": "10.17.0", + "packageName": "@motionone/types", + "hash": "sha512-EgeeqOZVdRUTEHq95Z3t8Rsirc7chN5xFAPMYFobx8TPubkEfRSm5xihmMUkbaR2ErKJTUw3347QDPTHIW12IA==" + } + }, + "npm:@motionone/utils": { + "type": "npm", + "name": "npm:@motionone/utils", + "data": { + "version": "10.17.0", + "packageName": "@motionone/utils", + "hash": "sha512-bGwrki4896apMWIj9yp5rAS2m0xyhxblg6gTB/leWDPt+pb410W8lYWsxyurX+DH+gO1zsQsfx2su/c1/LtTpg==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "1.1.1", + "packageName": "@npmcli/fs", + "hash": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==" + } + }, + "npm:@npmcli/move-file": { + "type": "npm", + "name": "npm:@npmcli/move-file", + "data": { + "version": "1.1.2", + "packageName": "@npmcli/move-file", + "hash": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@radix-ui/react-compose-refs": { + "type": "npm", + "name": "npm:@radix-ui/react-compose-refs", + "data": { + "version": "1.0.0", + "packageName": "@radix-ui/react-compose-refs", + "hash": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==" + } + }, + "npm:@radix-ui/react-slot": { + "type": "npm", + "name": "npm:@radix-ui/react-slot", + "data": { + "version": "1.0.1", + "packageName": "@radix-ui/react-slot", + "hash": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==" + } + }, + "npm:@react-native-async-storage/async-storage": { + "type": "npm", + "name": "npm:@react-native-async-storage/async-storage", + "data": { + "version": "1.21.0", + "packageName": "@react-native-async-storage/async-storage", + "hash": "sha512-JL0w36KuFHFCvnbOXRekqVAUplmOyT/OuCQkogo6X98MtpSaJOKEAeZnYO8JB0U/RIEixZaGI5px73YbRm/oag==" + } + }, + "npm:@react-native-community/cli-clean": { + "type": "npm", + "name": "npm:@react-native-community/cli-clean", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-clean", + "hash": "sha512-iAgLCOWYRGh9ukr+eVQnhkV/OqN3V2EGd/in33Ggn/Mj4uO6+oUncXFwB+yjlyaUNz6FfjudhIz09yYGSF+9sg==" + } + }, + "npm:@react-native-community/cli-config": { + "type": "npm", + "name": "npm:@react-native-community/cli-config", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-config", + "hash": "sha512-BrTn5ndFD9uOxO8kxBQ32EpbtOvAsQExGPI7SokdI4Zlve70FziLtTq91LTlTUgMq1InVZn/jJb3VIDk6BTInQ==" + } + }, + "npm:@react-native-community/cli-debugger-ui": { + "type": "npm", + "name": "npm:@react-native-community/cli-debugger-ui", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-debugger-ui", + "hash": "sha512-w3b0iwjQlk47GhZWHaeTG8kKH09NCMUJO729xSdMBXE8rlbm4kHpKbxQY9qKb6NlfWSJN4noGY+FkNZS2rRwnQ==" + } + }, + "npm:@react-native-community/cli-doctor": { + "type": "npm", + "name": "npm:@react-native-community/cli-doctor", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-doctor", + "hash": "sha512-BPCwNNesoQMkKsxB08Ayy6URgGQ8Kndv6mMhIvJSNdST3J1+x3ehBHXzG9B9Vfi+DrTKRb8lmEl/b/7VkDlPkA==" + } + }, + "npm:@react-native-community/cli-hermes": { + "type": "npm", + "name": "npm:@react-native-community/cli-hermes", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-hermes", + "hash": "sha512-G6FxpeZBO4AimKZwtWR3dpXRqTvsmEqlIkkxgwthdzn3LbVjDVIXKpVYU9PkR5cnT+KuAUxO0WwthrJ6Nmrrlg==" + } + }, + "npm:@react-native-community/cli-platform-android": { + "type": "npm", + "name": "npm:@react-native-community/cli-platform-android", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-platform-android", + "hash": "sha512-VU1NZw63+GLU2TnyQ919bEMThpHQ/oMFju9MCfrd3pyPJz4Sn+vc3NfnTDUVA5Z5yfLijFOkHIHr4vo/C9bjnw==" + } + }, + "npm:@react-native-community/cli-platform-ios": { + "type": "npm", + "name": "npm:@react-native-community/cli-platform-ios", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-platform-ios", + "hash": "sha512-H95Sgt3wT7L8V75V0syFJDtv4YgqK5zbu69ko4yrXGv8dv2EBi6qZP0VMmkqXDamoPm9/U7tDTdbcf26ctnLfg==" + } + }, + "npm:@react-native-community/cli-plugin-metro": { + "type": "npm", + "name": "npm:@react-native-community/cli-plugin-metro", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-plugin-metro", + "hash": "sha512-tYNHIYnNmxrBcsqbE2dAnLMzlKI3Cp1p1xUgTrNaOMsGPDN1epzNfa34n6Nps3iwKElSL7Js91CzYNqgTalucA==" + } + }, + "npm:@react-native-community/cli-server-api": { + "type": "npm", + "name": "npm:@react-native-community/cli-server-api", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-server-api", + "hash": "sha512-Rode8NrdyByC+lBKHHn+/W8Zu0c+DajJvLmOWbe2WY/ECvnwcd9MHHbu92hlT2EQaJ9LbLhGrSbQE3cQy9EOCw==" + } + }, + "npm:@react-native-community/cli-tools": { + "type": "npm", + "name": "npm:@react-native-community/cli-tools", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-tools", + "hash": "sha512-2GafnCr8D88VdClwnm9KZfkEb+lzVoFdr/7ybqhdeYM0Vnt/tr2N+fM1EQzwI1DpzXiBzTYemw8GjRq+Utcz2Q==" + } + }, + "npm:@react-native-community/cli-types": { + "type": "npm", + "name": "npm:@react-native-community/cli-types", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli-types", + "hash": "sha512-MgOkmrXH4zsGxhte4YqKL7d+N8ZNEd3w1wo56MZlhu5WabwCJh87wYpU5T8vyfujFLYOFuFK5jjlcbs8F4/WDw==" + } + }, + "npm:@react-native-community/cli": { + "type": "npm", + "name": "npm:@react-native-community/cli", + "data": { + "version": "12.3.0", + "packageName": "@react-native-community/cli", + "hash": "sha512-XeQohi2E+S2+MMSz97QcEZ/bWpi8sfKiQg35XuYeJkc32Til2g0b97jRpn0/+fV0BInHoG1CQYWwHA7opMsrHg==" + } + }, + "npm:@react-native-community/netinfo": { + "type": "npm", + "name": "npm:@react-native-community/netinfo", + "data": { + "version": "11.1.0", + "packageName": "@react-native-community/netinfo", + "hash": "sha512-pIbCuqgrY7SkngAcjUs9fMzNh1h4soQMVw1IeGp1HN5//wox3fUVOuvyIubTscUbdLFKiltJAiuQek7Nhx1bqA==" + } + }, + "npm:@react-native/assets-registry": { + "type": "npm", + "name": "npm:@react-native/assets-registry", + "data": { + "version": "0.73.1", + "packageName": "@react-native/assets-registry", + "hash": "sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==" + } + }, + "npm:@react-native/babel-plugin-codegen@0.73.2": { + "type": "npm", + "name": "npm:@react-native/babel-plugin-codegen@0.73.2", + "data": { + "version": "0.73.2", + "packageName": "@react-native/babel-plugin-codegen", + "hash": "sha512-PadyFZWVaWXIBP7Q5dgEL7eAd7tnsgsLjoHJB1hIRZZuVUg1Zqe3nULwC7RFAqOtr5Qx7KXChkFFcKQ3WnZzGw==" + } + }, + "npm:@react-native/babel-plugin-codegen": { + "type": "npm", + "name": "npm:@react-native/babel-plugin-codegen", + "data": { + "version": "0.73.3", + "packageName": "@react-native/babel-plugin-codegen", + "hash": "sha512-+zQrDDbz6lB48LyzFHxNCgXDCBHH+oTRdXAjikRcBUdeG9St9ABbYFLtb799zSxLOrCqFVyXqhJR2vlgLLEbcg==" + } + }, + "npm:@react-native/babel-preset@0.73.19": { + "type": "npm", + "name": "npm:@react-native/babel-preset@0.73.19", + "data": { + "version": "0.73.19", + "packageName": "@react-native/babel-preset", + "hash": "sha512-ujon01uMOREZecIltQxPDmJ6xlVqAUFGI/JCSpeVYdxyXBoBH5dBb0ihj7h6LKH1q1jsnO9z4MxfddtypKkIbg==" + } + }, + "npm:@react-native/babel-preset": { + "type": "npm", + "name": "npm:@react-native/babel-preset", + "data": { + "version": "0.73.20", + "packageName": "@react-native/babel-preset", + "hash": "sha512-fU9NqkusbfFq71l4BWQfqqD/lLcLC0MZ++UYgieA3j8lIEppJTLVauv2RwtD2yltBkjebgYEC5Rwvt1l0MUBXw==" + } + }, + "npm:@react-native/codegen": { + "type": "npm", + "name": "npm:@react-native/codegen", + "data": { + "version": "0.73.2", + "packageName": "@react-native/codegen", + "hash": "sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==" + } + }, + "npm:@react-native/community-cli-plugin": { + "type": "npm", + "name": "npm:@react-native/community-cli-plugin", + "data": { + "version": "0.73.12", + "packageName": "@react-native/community-cli-plugin", + "hash": "sha512-xWU06OkC1cX++Duh/cD/Wv+oZ0oSY3yqbtxAqQA2H3Q+MQltNNJM6MqIHt1VOZSabRf/LVlR1JL6U9TXJirkaw==" + } + }, + "npm:@react-native/debugger-frontend": { + "type": "npm", + "name": "npm:@react-native/debugger-frontend", + "data": { + "version": "0.73.3", + "packageName": "@react-native/debugger-frontend", + "hash": "sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==" + } + }, + "npm:@react-native/dev-middleware": { + "type": "npm", + "name": "npm:@react-native/dev-middleware", + "data": { + "version": "0.73.7", + "packageName": "@react-native/dev-middleware", + "hash": "sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==" + } + }, + "npm:@react-native/gradle-plugin": { + "type": "npm", + "name": "npm:@react-native/gradle-plugin", + "data": { + "version": "0.73.4", + "packageName": "@react-native/gradle-plugin", + "hash": "sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==" + } + }, + "npm:@react-native/js-polyfills": { + "type": "npm", + "name": "npm:@react-native/js-polyfills", + "data": { + "version": "0.73.1", + "packageName": "@react-native/js-polyfills", + "hash": "sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==" + } + }, + "npm:@react-native/metro-babel-transformer": { + "type": "npm", + "name": "npm:@react-native/metro-babel-transformer", + "data": { + "version": "0.73.13", + "packageName": "@react-native/metro-babel-transformer", + "hash": "sha512-k9AQifogQfgUXPlqQSoMtX2KUhniw4XvJl+nZ4hphCH7qiMDAwuP8OmkJbz5E/N+Ro9OFuLE7ax4GlwxaTsAWg==" + } + }, + "npm:@react-native/normalize-color": { + "type": "npm", + "name": "npm:@react-native/normalize-color", + "data": { + "version": "2.1.0", + "packageName": "@react-native/normalize-color", + "hash": "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==" + } + }, + "npm:@react-native/normalize-colors": { + "type": "npm", + "name": "npm:@react-native/normalize-colors", + "data": { + "version": "0.73.2", + "packageName": "@react-native/normalize-colors", + "hash": "sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==" + } + }, + "npm:@react-native/virtualized-lists": { + "type": "npm", + "name": "npm:@react-native/virtualized-lists", + "data": { + "version": "0.73.4", + "packageName": "@react-native/virtualized-lists", + "hash": "sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==" + } + }, + "npm:@react-native/virtualized-lists@0.72.8": { + "type": "npm", + "name": "npm:@react-native/virtualized-lists@0.72.8", + "data": { + "version": "0.72.8", + "packageName": "@react-native/virtualized-lists", + "hash": "sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==" + } + }, + "npm:@react-navigation/bottom-tabs": { + "type": "npm", + "name": "npm:@react-navigation/bottom-tabs", + "data": { + "version": "6.5.11", + "packageName": "@react-navigation/bottom-tabs", + "hash": "sha512-CBN/NOdxnMvmjw+AJQI1kltOYaClTZmGec5pQ3ZNTPX86ytbIOylDIITKMfTgHZcIEFQDymx1SHeS++PIL3Szw==" + } + }, + "npm:@react-navigation/core": { + "type": "npm", + "name": "npm:@react-navigation/core", + "data": { + "version": "6.4.10", + "packageName": "@react-navigation/core", + "hash": "sha512-oYhqxETRHNHKsipm/BtGL0LI43Hs2VSFoWMbBdHK9OqgQPjTVUitslgLcPpo4zApCcmBWoOLX2qPxhsBda644A==" + } + }, + "npm:@react-navigation/elements": { + "type": "npm", + "name": "npm:@react-navigation/elements", + "data": { + "version": "1.3.21", + "packageName": "@react-navigation/elements", + "hash": "sha512-eyS2C6McNR8ihUoYfc166O1D8VYVh9KIl0UQPI8/ZJVsStlfSTgeEEh+WXge6+7SFPnZ4ewzEJdSAHH+jzcEfg==" + } + }, + "npm:@react-navigation/native-stack": { + "type": "npm", + "name": "npm:@react-navigation/native-stack", + "data": { + "version": "6.9.17", + "packageName": "@react-navigation/native-stack", + "hash": "sha512-X8p8aS7JptQq7uZZNFEvfEcPf6tlK4PyVwYDdryRbG98B4bh2wFQYMThxvqa+FGEN7USEuHdv2mF0GhFKfX0ew==" + } + }, + "npm:@react-navigation/native": { + "type": "npm", + "name": "npm:@react-navigation/native", + "data": { + "version": "6.1.9", + "packageName": "@react-navigation/native", + "hash": "sha512-AMuJDpwXE7UlfyhIXaUCCynXmv69Kb8NzKgKJO7v0k0L+u6xUTbt6xvshmJ79vsvaFyaEH9Jg5FMzek5/S5qNw==" + } + }, + "npm:@react-navigation/routers": { + "type": "npm", + "name": "npm:@react-navigation/routers", + "data": { + "version": "6.1.9", + "packageName": "@react-navigation/routers", + "hash": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==" + } + }, + "npm:@react-navigation/stack": { + "type": "npm", + "name": "npm:@react-navigation/stack", + "data": { + "version": "6.3.20", + "packageName": "@react-navigation/stack", + "hash": "sha512-vE6mgZzOgoa5Uy7ayT97Cj+ZIK7DK+JBYVuKUViILlWZy6IWK7HFDuqoChSbZ1ajTIfAxj/acVGg1jkbAKsToA==" + } + }, + "npm:@remix-run/node": { + "type": "npm", + "name": "npm:@remix-run/node", + "data": { + "version": "1.19.3", + "packageName": "@remix-run/node", + "hash": "sha512-z5qrVL65xLXIUpU4mkR4MKlMeKARLepgHAk4W5YY3IBXOreRqOGUC70POViYmY7x38c2Ia1NwqL80H+0h7jbMw==" + } + }, + "npm:@remix-run/router": { + "type": "npm", + "name": "npm:@remix-run/router", + "data": { + "version": "1.7.2", + "packageName": "@remix-run/router", + "hash": "sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==" + } + }, + "npm:@remix-run/server-runtime": { + "type": "npm", + "name": "npm:@remix-run/server-runtime", + "data": { + "version": "1.19.3", + "packageName": "@remix-run/server-runtime", + "hash": "sha512-KzQ+htUsKqpBgKE2tWo7kIIGy3MyHP58Io/itUPvV+weDjApwr9tQr9PZDPA3yAY6rAzLax7BU0NMSYCXWFY5A==" + } + }, + "npm:@remix-run/web-blob": { + "type": "npm", + "name": "npm:@remix-run/web-blob", + "data": { + "version": "3.1.0", + "packageName": "@remix-run/web-blob", + "hash": "sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==" + } + }, + "npm:@remix-run/web-fetch": { + "type": "npm", + "name": "npm:@remix-run/web-fetch", + "data": { + "version": "4.4.2", + "packageName": "@remix-run/web-fetch", + "hash": "sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==" + } + }, + "npm:@remix-run/web-file": { + "type": "npm", + "name": "npm:@remix-run/web-file", + "data": { + "version": "3.1.0", + "packageName": "@remix-run/web-file", + "hash": "sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==" + } + }, + "npm:@remix-run/web-form-data": { + "type": "npm", + "name": "npm:@remix-run/web-form-data", + "data": { + "version": "3.1.0", + "packageName": "@remix-run/web-form-data", + "hash": "sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==" + } + }, + "npm:@remix-run/web-stream": { + "type": "npm", + "name": "npm:@remix-run/web-stream", + "data": { + "version": "1.1.0", + "packageName": "@remix-run/web-stream", + "hash": "sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==" + } + }, + "npm:@segment/loosely-validate-event": { + "type": "npm", + "name": "npm:@segment/loosely-validate-event", + "data": { + "version": "2.0.0", + "packageName": "@segment/loosely-validate-event", + "hash": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==" + } + }, + "npm:@sideway/address": { + "type": "npm", + "name": "npm:@sideway/address", + "data": { + "version": "4.1.4", + "packageName": "@sideway/address", + "hash": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" + } + }, + "npm:@sideway/formula": { + "type": "npm", + "name": "npm:@sideway/formula", + "data": { + "version": "3.0.1", + "packageName": "@sideway/formula", + "hash": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" + } + }, + "npm:@sideway/pinpoint": { + "type": "npm", + "name": "npm:@sideway/pinpoint", + "data": { + "version": "2.0.0", + "packageName": "@sideway/pinpoint", + "hash": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.27.8", + "packageName": "@sinclair/typebox", + "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + } + }, + "npm:@sinonjs/commons": { + "type": "npm", + "name": "npm:@sinonjs/commons", + "data": { + "version": "3.0.1", + "packageName": "@sinonjs/commons", + "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" + } + }, + "npm:@sinonjs/fake-timers": { + "type": "npm", + "name": "npm:@sinonjs/fake-timers", + "data": { + "version": "10.3.0", + "packageName": "@sinonjs/fake-timers", + "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" + } + }, + "npm:@tanstack/query-core": { + "type": "npm", + "name": "npm:@tanstack/query-core", + "data": { + "version": "4.36.1", + "packageName": "@tanstack/query-core", + "hash": "sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==" + } + }, + "npm:@tanstack/react-query": { + "type": "npm", + "name": "npm:@tanstack/react-query", + "data": { + "version": "4.36.1", + "packageName": "@tanstack/react-query", + "hash": "sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==" + } + }, + "npm:@testing-library/jest-native": { + "type": "npm", + "name": "npm:@testing-library/jest-native", + "data": { + "version": "5.4.3", + "packageName": "@testing-library/jest-native", + "hash": "sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==" + } + }, + "npm:@testing-library/react-native": { + "type": "npm", + "name": "npm:@testing-library/react-native", + "data": { + "version": "12.4.3", + "packageName": "@testing-library/react-native", + "hash": "sha512-WLE7VbbR5jZJQl3vfNK7Wt+IHnzhOxyu95Mr56EHmzH3XhC8DkrPVAnUq9asq/QWj4aGnymbinFx6zZys/WZmA==" + } + }, + "npm:@tootallnate/once": { + "type": "npm", + "name": "npm:@tootallnate/once", + "data": { + "version": "2.0.0", + "packageName": "@tootallnate/once", + "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__core", + "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.6.8", + "packageName": "@types/babel__generator", + "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.4", + "packageName": "@types/babel__template", + "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__traverse", + "hash": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.5", + "packageName": "@types/body-parser", + "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" + } + }, + "npm:@types/bonjour": { + "type": "npm", + "name": "npm:@types/bonjour", + "data": { + "version": "3.5.13", + "packageName": "@types/bonjour", + "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" + } + }, + "npm:@types/connect-history-api-fallback": { + "type": "npm", + "name": "npm:@types/connect-history-api-fallback", + "data": { + "version": "1.5.4", + "packageName": "@types/connect-history-api-fallback", + "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/cookie": { + "type": "npm", + "name": "npm:@types/cookie", + "data": { + "version": "0.4.1", + "packageName": "@types/cookie", + "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" + } + }, + "npm:@types/eslint-scope": { + "type": "npm", + "name": "npm:@types/eslint-scope", + "data": { + "version": "3.7.7", + "packageName": "@types/eslint-scope", + "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "8.56.2", + "packageName": "@types/eslint", + "hash": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.5", + "packageName": "@types/estree", + "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "4.17.42", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "4.17.21", + "packageName": "@types/express", + "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" + } + }, + "npm:@types/glob": { + "type": "npm", + "name": "npm:@types/glob", + "data": { + "version": "7.2.0", + "packageName": "@types/glob", + "hash": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==" + } + }, + "npm:@types/graceful-fs": { + "type": "npm", + "name": "npm:@types/graceful-fs", + "data": { + "version": "4.1.9", + "packageName": "@types/graceful-fs", + "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" + } + }, + "npm:@types/hammerjs": { + "type": "npm", + "name": "npm:@types/hammerjs", + "data": { + "version": "2.0.45", + "packageName": "@types/hammerjs", + "hash": "sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==" + } + }, + "npm:@types/html-minifier-terser": { + "type": "npm", + "name": "npm:@types/html-minifier-terser", + "data": { + "version": "6.1.0", + "packageName": "@types/html-minifier-terser", + "hash": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + } + }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.4", + "packageName": "@types/http-errors", + "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" + } + }, + "npm:@types/http-proxy": { + "type": "npm", + "name": "npm:@types/http-proxy", + "data": { + "version": "1.17.14", + "packageName": "@types/http-proxy", + "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" + } + }, + "npm:@types/istanbul-lib-coverage": { + "type": "npm", + "name": "npm:@types/istanbul-lib-coverage", + "data": { + "version": "2.0.6", + "packageName": "@types/istanbul-lib-coverage", + "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + } + }, + "npm:@types/istanbul-lib-report": { + "type": "npm", + "name": "npm:@types/istanbul-lib-report", + "data": { + "version": "3.0.3", + "packageName": "@types/istanbul-lib-report", + "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" + } + }, + "npm:@types/istanbul-reports": { + "type": "npm", + "name": "npm:@types/istanbul-reports", + "data": { + "version": "3.0.4", + "packageName": "@types/istanbul-reports", + "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" + } + }, + "npm:@types/jest": { + "type": "npm", + "name": "npm:@types/jest", + "data": { + "version": "29.5.11", + "packageName": "@types/jest", + "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" + } + }, + "npm:@types/jsdom": { + "type": "npm", + "name": "npm:@types/jsdom", + "data": { + "version": "20.0.1", + "packageName": "@types/jsdom", + "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.15", + "packageName": "@types/json-schema", + "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + } + }, + "npm:@types/json5": { + "type": "npm", + "name": "npm:@types/json5", + "data": { + "version": "0.0.29", + "packageName": "@types/json5", + "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + } + }, + "npm:@types/mime": { + "type": "npm", + "name": "npm:@types/mime", + "data": { + "version": "3.0.4", + "packageName": "@types/mime", + "hash": "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==" + } + }, + "npm:@types/mime@1.3.5": { + "type": "npm", + "name": "npm:@types/mime@1.3.5", + "data": { + "version": "1.3.5", + "packageName": "@types/mime", + "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" + } + }, + "npm:@types/minimatch": { + "type": "npm", + "name": "npm:@types/minimatch", + "data": { + "version": "5.1.2", + "packageName": "@types/minimatch", + "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" + } + }, + "npm:@types/node-forge": { + "type": "npm", + "name": "npm:@types/node-forge", + "data": { + "version": "1.3.11", + "packageName": "@types/node-forge", + "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "20.11.7", + "packageName": "@types/node", + "hash": "sha512-GPmeN1C3XAyV5uybAf4cMLWT9fDWcmQhZVtMFu7OR32WjrqGG+Wnk2V1d0bmtUyE/Zy1QJ9BxyiTih9z8Oks8A==" + } + }, + "npm:@types/prop-types": { + "type": "npm", + "name": "npm:@types/prop-types", + "data": { + "version": "15.7.11", + "packageName": "@types/prop-types", + "hash": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.9.11", + "packageName": "@types/qs", + "hash": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/react-native": { + "type": "npm", + "name": "npm:@types/react-native", + "data": { + "version": "0.72.8", + "packageName": "@types/react-native", + "hash": "sha512-St6xA7+EoHN5mEYfdWnfYt0e8u6k2FR0P9s2arYgakQGFgU1f9FlPrIEcj0X24pLCF5c5i3WVuLCUdiCYHmOoA==" + } + }, + "npm:@types/react-test-renderer": { + "type": "npm", + "name": "npm:@types/react-test-renderer", + "data": { + "version": "18.0.7", + "packageName": "@types/react-test-renderer", + "hash": "sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==" + } + }, + "npm:@types/react": { + "type": "npm", + "name": "npm:@types/react", + "data": { + "version": "18.2.48", + "packageName": "@types/react", + "hash": "sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/scheduler": { + "type": "npm", + "name": "npm:@types/scheduler", + "data": { + "version": "0.16.8", + "packageName": "@types/scheduler", + "hash": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" + } + }, + "npm:@types/semver": { + "type": "npm", + "name": "npm:@types/semver", + "data": { + "version": "7.5.6", + "packageName": "@types/semver", + "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "0.17.4", + "packageName": "@types/send", + "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" + } + }, + "npm:@types/serve-index": { + "type": "npm", + "name": "npm:@types/serve-index", + "data": { + "version": "1.9.4", + "packageName": "@types/serve-index", + "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "1.15.5", + "packageName": "@types/serve-static", + "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" + } + }, + "npm:@types/sockjs": { + "type": "npm", + "name": "npm:@types/sockjs", + "data": { + "version": "0.3.36", + "packageName": "@types/sockjs", + "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" + } + }, + "npm:@types/stack-utils": { + "type": "npm", + "name": "npm:@types/stack-utils", + "data": { + "version": "2.0.3", + "packageName": "@types/stack-utils", + "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" + } + }, + "npm:@types/tough-cookie": { + "type": "npm", + "name": "npm:@types/tough-cookie", + "data": { + "version": "4.0.5", + "packageName": "@types/tough-cookie", + "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" + } + }, + "npm:@types/ws": { + "type": "npm", + "name": "npm:@types/ws", + "data": { + "version": "8.5.10", + "packageName": "@types/ws", + "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" + } + }, + "npm:@types/yargs-parser": { + "type": "npm", + "name": "npm:@types/yargs-parser", + "data": { + "version": "21.0.3", + "packageName": "@types/yargs-parser", + "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" + } + }, + "npm:@types/yargs@15.0.19": { + "type": "npm", + "name": "npm:@types/yargs@15.0.19", + "data": { + "version": "15.0.19", + "packageName": "@types/yargs", + "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" + } + }, + "npm:@types/yargs": { + "type": "npm", + "name": "npm:@types/yargs", + "data": { + "version": "17.0.32", + "packageName": "@types/yargs", + "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" + } + }, + "npm:@typescript-eslint/eslint-plugin@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==" + } + }, + "npm:@typescript-eslint/parser@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/parser@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==" + } + }, + "npm:@typescript-eslint/scope-manager@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==" + } + }, + "npm:@typescript-eslint/type-utils@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==" + } + }, + "npm:@typescript-eslint/type-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/types", + "hash": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" + } + }, + "npm:@typescript-eslint/types@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/types@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==" + } + }, + "npm:@typescript-eslint/typescript-estree@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==" + } + }, + "npm:@typescript-eslint/utils@6.19.1": { + "type": "npm", + "name": "npm:@typescript-eslint/utils@6.19.1", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==" + } + }, + "npm:@typescript-eslint/visitor-keys@5.62.0": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys@5.62.0", + "data": { + "version": "5.62.0", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "6.19.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==" + } + }, + "npm:@ungap/structured-clone": { + "type": "npm", + "name": "npm:@ungap/structured-clone", + "data": { + "version": "1.2.0", + "packageName": "@ungap/structured-clone", + "hash": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" + } + }, + "npm:@urql/core": { + "type": "npm", + "name": "npm:@urql/core", + "data": { + "version": "2.3.6", + "packageName": "@urql/core", + "hash": "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==" + } + }, + "npm:@urql/core@4.2.3": { + "type": "npm", + "name": "npm:@urql/core@4.2.3", + "data": { + "version": "4.2.3", + "packageName": "@urql/core", + "hash": "sha512-DJ9q9+lcs5JL8DcU2J3NqsgeXYJva+1+Qt8HU94kzTPqVOIRRA7ouvy4ksUfPY+B5G2PQ+vLh+JJGyZCNXv0cg==" + } + }, + "npm:@urql/exchange-retry": { + "type": "npm", + "name": "npm:@urql/exchange-retry", + "data": { + "version": "0.3.0", + "packageName": "@urql/exchange-retry", + "hash": "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==" + } + }, + "npm:@web3-storage/multipart-parser": { + "type": "npm", + "name": "npm:@web3-storage/multipart-parser", + "data": { + "version": "1.0.0", + "packageName": "@web3-storage/multipart-parser", + "hash": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==" + } + }, + "npm:@webassemblyjs/ast": { + "type": "npm", + "name": "npm:@webassemblyjs/ast", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ast", + "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" + } + }, + "npm:@webassemblyjs/floating-point-hex-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/floating-point-hex-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/floating-point-hex-parser", + "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + } + }, + "npm:@webassemblyjs/helper-api-error": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-api-error", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-api-error", + "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + } + }, + "npm:@webassemblyjs/helper-buffer": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-buffer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-buffer", + "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + } + }, + "npm:@webassemblyjs/helper-numbers": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-numbers", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-numbers", + "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" + } + }, + "npm:@webassemblyjs/helper-wasm-bytecode": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-bytecode", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-bytecode", + "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + } + }, + "npm:@webassemblyjs/helper-wasm-section": { + "type": "npm", + "name": "npm:@webassemblyjs/helper-wasm-section", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/helper-wasm-section", + "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" + } + }, + "npm:@webassemblyjs/ieee754": { + "type": "npm", + "name": "npm:@webassemblyjs/ieee754", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/ieee754", + "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" + } + }, + "npm:@webassemblyjs/leb128": { + "type": "npm", + "name": "npm:@webassemblyjs/leb128", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/leb128", + "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" + } + }, + "npm:@webassemblyjs/utf8": { + "type": "npm", + "name": "npm:@webassemblyjs/utf8", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/utf8", + "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + } + }, + "npm:@webassemblyjs/wasm-edit": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-edit", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-edit", + "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" + } + }, + "npm:@webassemblyjs/wasm-gen": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-gen", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-gen", + "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" + } + }, + "npm:@webassemblyjs/wasm-opt": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-opt", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-opt", + "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" + } + }, + "npm:@webassemblyjs/wasm-parser": { + "type": "npm", + "name": "npm:@webassemblyjs/wasm-parser", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wasm-parser", + "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" + } + }, + "npm:@webassemblyjs/wast-printer": { + "type": "npm", + "name": "npm:@webassemblyjs/wast-printer", + "data": { + "version": "1.11.6", + "packageName": "@webassemblyjs/wast-printer", + "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" + } + }, + "npm:@welldone-software/why-did-you-render": { + "type": "npm", + "name": "npm:@welldone-software/why-did-you-render", + "data": { + "version": "7.0.1", + "packageName": "@welldone-software/why-did-you-render", + "hash": "sha512-Qe/8Xxa2G+LMdI6VoazescPzjjkHYduCDa8aHOJR50e9Bgs8ihkfMBY+ev7B4oc3N59Zm547Sgjf8h5y0FOyoA==" + } + }, + "npm:@xmldom/xmldom@0.8.10": { + "type": "npm", + "name": "npm:@xmldom/xmldom@0.8.10", + "data": { + "version": "0.8.10", + "packageName": "@xmldom/xmldom", + "hash": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==" + } + }, + "npm:@xmldom/xmldom": { + "type": "npm", + "name": "npm:@xmldom/xmldom", + "data": { + "version": "0.7.13", + "packageName": "@xmldom/xmldom", + "hash": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==" + } + }, + "npm:@xtuc/ieee754": { + "type": "npm", + "name": "npm:@xtuc/ieee754", + "data": { + "version": "1.2.0", + "packageName": "@xtuc/ieee754", + "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + } + }, + "npm:@xtuc/long": { + "type": "npm", + "name": "npm:@xtuc/long", + "data": { + "version": "4.2.2", + "packageName": "@xtuc/long", + "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@zxing/text-encoding": { + "type": "npm", + "name": "npm:@zxing/text-encoding", + "data": { + "version": "0.9.0", + "packageName": "@zxing/text-encoding", + "hash": "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==" + } + }, + "npm:abab": { + "type": "npm", + "name": "npm:abab", + "data": { + "version": "2.0.6", + "packageName": "abab", + "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" + } + }, + "npm:abort-controller": { + "type": "npm", + "name": "npm:abort-controller", + "data": { + "version": "3.0.0", + "packageName": "abort-controller", + "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "1.3.8", + "packageName": "accepts", + "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" + } + }, + "npm:acorn-globals": { + "type": "npm", + "name": "npm:acorn-globals", + "data": { + "version": "7.0.1", + "packageName": "acorn-globals", + "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" + } + }, + "npm:acorn-import-assertions": { + "type": "npm", + "name": "npm:acorn-import-assertions", + "data": { + "version": "1.9.0", + "packageName": "acorn-import-assertions", + "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.3.2", + "packageName": "acorn-walk", + "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.11.3", + "packageName": "acorn", + "hash": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:aggregate-error": { + "type": "npm", + "name": "npm:aggregate-error", + "data": { + "version": "3.1.0", + "packageName": "aggregate-error", + "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + } + }, + "npm:ajv-formats@2.1.1": { + "type": "npm", + "name": "npm:ajv-formats@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ajv-formats", + "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" + } + }, + "npm:ajv-keywords": { + "type": "npm", + "name": "npm:ajv-keywords", + "data": { + "version": "3.5.2", + "packageName": "ajv-keywords", + "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + }, + "npm:ajv-keywords@5.1.0": { + "type": "npm", + "name": "npm:ajv-keywords@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "ajv-keywords", + "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" + } + }, + "npm:ajv@8.11.0": { + "type": "npm", + "name": "npm:ajv@8.11.0", + "data": { + "version": "8.11.0", + "packageName": "ajv", + "hash": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.12.6", + "packageName": "ajv", + "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + } + }, + "npm:ajv@8.12.0": { + "type": "npm", + "name": "npm:ajv@8.12.0", + "data": { + "version": "8.12.0", + "packageName": "ajv", + "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" + } + }, + "npm:anser": { + "type": "npm", + "name": "npm:anser", + "data": { + "version": "1.4.10", + "packageName": "anser", + "hash": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==" + } + }, + "npm:ansi-escapes@1.4.0": { + "type": "npm", + "name": "npm:ansi-escapes@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "ansi-escapes", + "hash": "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==" + } + }, + "npm:ansi-escapes": { + "type": "npm", + "name": "npm:ansi-escapes", + "data": { + "version": "4.3.2", + "packageName": "ansi-escapes", + "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" + } + }, + "npm:ansi-escapes@5.0.0": { + "type": "npm", + "name": "npm:ansi-escapes@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "ansi-escapes", + "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" + } + }, + "npm:ansi-escapes@6.2.0": { + "type": "npm", + "name": "npm:ansi-escapes@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "ansi-escapes", + "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" + } + }, + "npm:ansi-fragments": { + "type": "npm", + "name": "npm:ansi-fragments", + "data": { + "version": "0.2.1", + "packageName": "ansi-fragments", + "hash": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==" + } + }, + "npm:ansi-html-community": { + "type": "npm", + "name": "npm:ansi-html-community", + "data": { + "version": "0.0.8", + "packageName": "ansi-html-community", + "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" + } + }, + "npm:ansi-regex@2.1.1": { + "type": "npm", + "name": "npm:ansi-regex@2.1.1", + "data": { + "version": "2.1.1", + "packageName": "ansi-regex", + "hash": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" + } + }, + "npm:ansi-regex@4.1.1": { + "type": "npm", + "name": "npm:ansi-regex@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "ansi-regex", + "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex@6.0.1": { + "type": "npm", + "name": "npm:ansi-regex@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "ansi-regex", + "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + } + }, + "npm:ansi-styles@2.2.1": { + "type": "npm", + "name": "npm:ansi-styles@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "ansi-styles", + "hash": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" + } + }, + "npm:ansi-styles@3.2.1": { + "type": "npm", + "name": "npm:ansi-styles@3.2.1", + "data": { + "version": "3.2.1", + "packageName": "ansi-styles", + "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:ansi-styles@6.2.1": { + "type": "npm", + "name": "npm:ansi-styles@6.2.1", + "data": { + "version": "6.2.1", + "packageName": "ansi-styles", + "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + } + }, + "npm:any-promise": { + "type": "npm", + "name": "npm:any-promise", + "data": { + "version": "1.3.0", + "packageName": "any-promise", + "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" + } + }, + "npm:anymatch": { + "type": "npm", + "name": "npm:anymatch", + "data": { + "version": "3.1.3", + "packageName": "anymatch", + "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" + } + }, + "npm:appdirsjs": { + "type": "npm", + "name": "npm:appdirsjs", + "data": { + "version": "1.2.7", + "packageName": "appdirsjs", + "hash": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==" + } + }, + "npm:application-config-path": { + "type": "npm", + "name": "npm:application-config-path", + "data": { + "version": "0.1.1", + "packageName": "application-config-path", + "hash": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==" + } + }, + "npm:arg@4.1.0": { + "type": "npm", + "name": "npm:arg@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "arg", + "hash": "sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==" + } + }, + "npm:arg": { + "type": "npm", + "name": "npm:arg", + "data": { + "version": "5.0.2", + "packageName": "arg", + "hash": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.0", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" + } + }, + "npm:array-flatten": { + "type": "npm", + "name": "npm:array-flatten", + "data": { + "version": "1.1.1", + "packageName": "array-flatten", + "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + } + }, + "npm:array-includes": { + "type": "npm", + "name": "npm:array-includes", + "data": { + "version": "3.1.7", + "packageName": "array-includes", + "hash": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==" + } + }, + "npm:array-union@1.0.2": { + "type": "npm", + "name": "npm:array-union@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "array-union", + "hash": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==" + } + }, + "npm:array-union": { + "type": "npm", + "name": "npm:array-union", + "data": { + "version": "2.1.0", + "packageName": "array-union", + "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + } + }, + "npm:array-union@3.0.1": { + "type": "npm", + "name": "npm:array-union@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "array-union", + "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" + } + }, + "npm:array-uniq": { + "type": "npm", + "name": "npm:array-uniq", + "data": { + "version": "1.0.3", + "packageName": "array-uniq", + "hash": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==" + } + }, + "npm:array.prototype.findlastindex": { + "type": "npm", + "name": "npm:array.prototype.findlastindex", + "data": { + "version": "1.2.3", + "packageName": "array.prototype.findlastindex", + "hash": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flat", + "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.3.2", + "packageName": "array.prototype.flatmap", + "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" + } + }, + "npm:array.prototype.tosorted": { + "type": "npm", + "name": "npm:array.prototype.tosorted", + "data": { + "version": "1.1.2", + "packageName": "array.prototype.tosorted", + "hash": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.2", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" + } + }, + "npm:asap": { + "type": "npm", + "name": "npm:asap", + "data": { + "version": "2.0.6", + "packageName": "asap", + "hash": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + } + }, + "npm:assert": { + "type": "npm", + "name": "npm:assert", + "data": { + "version": "2.1.0", + "packageName": "assert", + "hash": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==" + } + }, + "npm:ast-types": { + "type": "npm", + "name": "npm:ast-types", + "data": { + "version": "0.15.2", + "packageName": "ast-types", + "hash": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==" + } + }, + "npm:astral-regex": { + "type": "npm", + "name": "npm:astral-regex", + "data": { + "version": "1.0.0", + "packageName": "astral-regex", + "hash": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + } + }, + "npm:async-limiter": { + "type": "npm", + "name": "npm:async-limiter", + "data": { + "version": "1.0.1", + "packageName": "async-limiter", + "hash": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + } + }, + "npm:asynciterator.prototype": { + "type": "npm", + "name": "npm:asynciterator.prototype", + "data": { + "version": "1.0.0", + "packageName": "asynciterator.prototype", + "hash": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:at-least-node": { + "type": "npm", + "name": "npm:at-least-node", + "data": { + "version": "1.0.0", + "packageName": "at-least-node", + "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.5", + "packageName": "available-typed-arrays", + "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "0.27.2", + "packageName": "axios", + "hash": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==" + } + }, + "npm:babel-core": { + "type": "npm", + "name": "npm:babel-core", + "data": { + "version": "7.0.0-bridge.0", + "packageName": "babel-core", + "hash": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==" + } + }, + "npm:babel-jest": { + "type": "npm", + "name": "npm:babel-jest", + "data": { + "version": "29.7.0", + "packageName": "babel-jest", + "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" + } + }, + "npm:babel-loader@8.3.0": { + "type": "npm", + "name": "npm:babel-loader@8.3.0", + "data": { + "version": "8.3.0", + "packageName": "babel-loader", + "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" + } + }, + "npm:babel-loader": { + "type": "npm", + "name": "npm:babel-loader", + "data": { + "version": "9.1.3", + "packageName": "babel-loader", + "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" + } + }, + "npm:babel-plugin-istanbul": { + "type": "npm", + "name": "npm:babel-plugin-istanbul", + "data": { + "version": "6.1.1", + "packageName": "babel-plugin-istanbul", + "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" + } + }, + "npm:babel-plugin-jest-hoist": { + "type": "npm", + "name": "npm:babel-plugin-jest-hoist", + "data": { + "version": "29.6.3", + "packageName": "babel-plugin-jest-hoist", + "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" + } + }, + "npm:babel-plugin-module-resolver": { + "type": "npm", + "name": "npm:babel-plugin-module-resolver", + "data": { + "version": "5.0.0", + "packageName": "babel-plugin-module-resolver", + "hash": "sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==" + } + }, + "npm:babel-plugin-polyfill-corejs2": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs2", + "data": { + "version": "0.4.8", + "packageName": "babel-plugin-polyfill-corejs2", + "hash": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==" + } + }, + "npm:babel-plugin-polyfill-corejs3": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-corejs3", + "data": { + "version": "0.9.0", + "packageName": "babel-plugin-polyfill-corejs3", + "hash": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==" + } + }, + "npm:babel-plugin-polyfill-regenerator": { + "type": "npm", + "name": "npm:babel-plugin-polyfill-regenerator", + "data": { + "version": "0.5.5", + "packageName": "babel-plugin-polyfill-regenerator", + "hash": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==" + } + }, + "npm:babel-plugin-react-native-web": { + "type": "npm", + "name": "npm:babel-plugin-react-native-web", + "data": { + "version": "0.18.12", + "packageName": "babel-plugin-react-native-web", + "hash": "sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==" + } + }, + "npm:babel-plugin-syntax-trailing-function-commas": { + "type": "npm", + "name": "npm:babel-plugin-syntax-trailing-function-commas", + "data": { + "version": "7.0.0-beta.0", + "packageName": "babel-plugin-syntax-trailing-function-commas", + "hash": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" + } + }, + "npm:babel-plugin-transform-flow-enums": { + "type": "npm", + "name": "npm:babel-plugin-transform-flow-enums", + "data": { + "version": "0.0.2", + "packageName": "babel-plugin-transform-flow-enums", + "hash": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==" + } + }, + "npm:babel-preset-current-node-syntax": { + "type": "npm", + "name": "npm:babel-preset-current-node-syntax", + "data": { + "version": "1.0.1", + "packageName": "babel-preset-current-node-syntax", + "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + } + }, + "npm:babel-preset-expo": { + "type": "npm", + "name": "npm:babel-preset-expo", + "data": { + "version": "10.0.1", + "packageName": "babel-preset-expo", + "hash": "sha512-uWIGmLfbP3dS5+8nesxaW6mQs41d4iP7X82ZwRdisB/wAhKQmuJM9Y1jQe4006uNYkw6Phf2TT03ykLVro7KuQ==" + } + }, + "npm:babel-preset-fbjs": { + "type": "npm", + "name": "npm:babel-preset-fbjs", + "data": { + "version": "3.4.0", + "packageName": "babel-preset-fbjs", + "hash": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==" + } + }, + "npm:babel-preset-jest": { + "type": "npm", + "name": "npm:babel-preset-jest", + "data": { + "version": "29.6.3", + "packageName": "babel-preset-jest", + "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" + } + }, + "npm:badgin": { + "type": "npm", + "name": "npm:badgin", + "data": { + "version": "1.2.3", + "packageName": "badgin", + "hash": "sha512-NQGA7LcfCpSzIbGRbkgjgdWkjy7HI+Th5VLxTJfW5EeaAf3fnS+xWQaQOCYiny+q6QSvxqoSO04vCx+4u++EJw==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:batch": { + "type": "npm", + "name": "npm:batch", + "data": { + "version": "0.6.1", + "packageName": "batch", + "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + } + }, + "npm:better-opn": { + "type": "npm", + "name": "npm:better-opn", + "data": { + "version": "3.0.2", + "packageName": "better-opn", + "hash": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==" + } + }, + "npm:big-integer": { + "type": "npm", + "name": "npm:big-integer", + "data": { + "version": "1.6.52", + "packageName": "big-integer", + "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" + } + }, + "npm:big.js": { + "type": "npm", + "name": "npm:big.js", + "data": { + "version": "5.2.2", + "packageName": "big.js", + "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + } + }, + "npm:binary-extensions": { + "type": "npm", + "name": "npm:binary-extensions", + "data": { + "version": "2.2.0", + "packageName": "binary-extensions", + "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:blueimp-md5": { + "type": "npm", + "name": "npm:blueimp-md5", + "data": { + "version": "2.19.0", + "packageName": "blueimp-md5", + "hash": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "1.20.1", + "packageName": "body-parser", + "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" + } + }, + "npm:bonjour-service": { + "type": "npm", + "name": "npm:bonjour-service", + "data": { + "version": "1.2.1", + "packageName": "bonjour-service", + "hash": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, + "npm:bplist-creator": { + "type": "npm", + "name": "npm:bplist-creator", + "data": { + "version": "0.1.0", + "packageName": "bplist-creator", + "hash": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==" + } + }, + "npm:bplist-parser@0.3.1": { + "type": "npm", + "name": "npm:bplist-parser@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "bplist-parser", + "hash": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==" + } + }, + "npm:bplist-parser": { + "type": "npm", + "name": "npm:bplist-parser", + "data": { + "version": "0.3.2", + "packageName": "bplist-parser", + "hash": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==" + } + }, + "npm:brace-expansion@1.1.11": { + "type": "npm", + "name": "npm:brace-expansion@1.1.11", + "data": { + "version": "1.1.11", + "packageName": "brace-expansion", + "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "2.0.1", + "packageName": "brace-expansion", + "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.2", + "packageName": "braces", + "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.22.2", + "packageName": "browserslist", + "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" + } + }, + "npm:bser": { + "type": "npm", + "name": "npm:bser", + "data": { + "version": "2.1.1", + "packageName": "bser", + "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + } + }, + "npm:buffer-alloc-unsafe": { + "type": "npm", + "name": "npm:buffer-alloc-unsafe", + "data": { + "version": "1.1.0", + "packageName": "buffer-alloc-unsafe", + "hash": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" + } + }, + "npm:buffer-alloc": { + "type": "npm", + "name": "npm:buffer-alloc", + "data": { + "version": "1.2.0", + "packageName": "buffer-alloc", + "hash": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==" + } + }, + "npm:buffer-fill": { + "type": "npm", + "name": "npm:buffer-fill", + "data": { + "version": "1.0.0", + "packageName": "buffer-fill", + "hash": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:builtins": { + "type": "npm", + "name": "npm:builtins", + "data": { + "version": "1.0.3", + "packageName": "builtins", + "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" + } + }, + "npm:bytes@3.0.0": { + "type": "npm", + "name": "npm:bytes@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "bytes", + "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "15.3.0", + "packageName": "cacache", + "hash": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.5", + "packageName": "call-bind", + "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" + } + }, + "npm:caller-callsite": { + "type": "npm", + "name": "npm:caller-callsite", + "data": { + "version": "2.0.0", + "packageName": "caller-callsite", + "hash": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==" + } + }, + "npm:caller-path": { + "type": "npm", + "name": "npm:caller-path", + "data": { + "version": "2.0.0", + "packageName": "caller-path", + "hash": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==" + } + }, + "npm:callsites@2.0.0": { + "type": "npm", + "name": "npm:callsites@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "callsites", + "hash": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camel-case": { + "type": "npm", + "name": "npm:camel-case", + "data": { + "version": "4.1.2", + "packageName": "camel-case", + "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + } + }, + "npm:camelcase": { + "type": "npm", + "name": "npm:camelcase", + "data": { + "version": "5.3.1", + "packageName": "camelcase", + "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + }, + "npm:camelcase@6.3.0": { + "type": "npm", + "name": "npm:camelcase@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "camelcase", + "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001580", + "packageName": "caniuse-lite", + "hash": "sha512-mtj5ur2FFPZcCEpXFy8ADXbDACuNFXg6mxVDqp7tqooX6l3zwm+d8EPoeOSIFRDvHs8qu7/SLFOGniULkcH2iA==" + } + }, + "npm:chalk@5.3.0": { + "type": "npm", + "name": "npm:chalk@5.3.0", + "data": { + "version": "5.3.0", + "packageName": "chalk", + "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" + } + }, + "npm:chalk@1.1.3": { + "type": "npm", + "name": "npm:chalk@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "chalk", + "hash": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==" + } + }, + "npm:chalk@2.4.2": { + "type": "npm", + "name": "npm:chalk@2.4.2", + "data": { + "version": "2.4.2", + "packageName": "chalk", + "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + } + }, + "npm:chalk@3.0.0": { + "type": "npm", + "name": "npm:chalk@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chalk", + "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:char-regex": { + "type": "npm", + "name": "npm:char-regex", + "data": { + "version": "1.0.2", + "packageName": "char-regex", + "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + } + }, + "npm:char-regex@2.0.1": { + "type": "npm", + "name": "npm:char-regex@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "char-regex", + "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" + } + }, + "npm:charenc": { + "type": "npm", + "name": "npm:charenc", + "data": { + "version": "0.0.2", + "packageName": "charenc", + "hash": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==" + } + }, + "npm:chokidar@3.6.0": { + "type": "npm", + "name": "npm:chokidar@3.6.0", + "data": { + "version": "3.6.0", + "packageName": "chokidar", + "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "3.5.3", + "packageName": "chokidar", + "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "2.0.0", + "packageName": "chownr", + "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + } + }, + "npm:chrome-launcher": { + "type": "npm", + "name": "npm:chrome-launcher", + "data": { + "version": "0.15.2", + "packageName": "chrome-launcher", + "hash": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==" + } + }, + "npm:chrome-trace-event": { + "type": "npm", + "name": "npm:chrome-trace-event", + "data": { + "version": "1.0.3", + "packageName": "chrome-trace-event", + "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" + } + }, + "npm:chromium-edge-launcher": { + "type": "npm", + "name": "npm:chromium-edge-launcher", + "data": { + "version": "1.0.0", + "packageName": "chromium-edge-launcher", + "hash": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==" + } + }, + "npm:ci-info@2.0.0": { + "type": "npm", + "name": "npm:ci-info@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ci-info", + "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + } + }, + "npm:ci-info": { + "type": "npm", + "name": "npm:ci-info", + "data": { + "version": "3.9.0", + "packageName": "ci-info", + "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" + } + }, + "npm:cjs-module-lexer": { + "type": "npm", + "name": "npm:cjs-module-lexer", + "data": { + "version": "1.2.3", + "packageName": "cjs-module-lexer", + "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" + } + }, + "npm:clean-css": { + "type": "npm", + "name": "npm:clean-css", + "data": { + "version": "5.3.3", + "packageName": "clean-css", + "hash": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==" + } + }, + "npm:clean-stack": { + "type": "npm", + "name": "npm:clean-stack", + "data": { + "version": "2.2.0", + "packageName": "clean-stack", + "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + } + }, + "npm:clean-webpack-plugin": { + "type": "npm", + "name": "npm:clean-webpack-plugin", + "data": { + "version": "4.0.0", + "packageName": "clean-webpack-plugin", + "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" + } + }, + "npm:cli-cursor@2.1.0": { + "type": "npm", + "name": "npm:cli-cursor@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "cli-cursor", + "hash": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-cursor@4.0.0": { + "type": "npm", + "name": "npm:cli-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "cli-cursor", + "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.9.2", + "packageName": "cli-spinners", + "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" + } + }, + "npm:cli-styles": { + "type": "npm", + "name": "npm:cli-styles", + "data": { + "version": "0.4.0", + "packageName": "cli-styles", + "hash": "sha512-vftbMiExtwwZn/sEFdD4Niw76lfKCmVSJkWHFyO9kqsNPiE6ngiXfP4sJaO9ak1XC1aNKpY53Fu8uMDy3UjhNA==" + } + }, + "npm:cli-truncate": { + "type": "npm", + "name": "npm:cli-truncate", + "data": { + "version": "3.1.0", + "packageName": "cli-truncate", + "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" + } + }, + "npm:cliui@6.0.0": { + "type": "npm", + "name": "npm:cliui@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "cliui", + "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:clone-deep": { + "type": "npm", + "name": "npm:clone-deep", + "data": { + "version": "4.0.1", + "packageName": "clone-deep", + "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" + } + }, + "npm:clone@1.0.4": { + "type": "npm", + "name": "npm:clone@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "2.1.2", + "packageName": "clone", + "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" + } + }, + "npm:co": { + "type": "npm", + "name": "npm:co", + "data": { + "version": "4.6.0", + "packageName": "co", + "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" + } + }, + "npm:collect-v8-coverage": { + "type": "npm", + "name": "npm:collect-v8-coverage", + "data": { + "version": "1.0.2", + "packageName": "collect-v8-coverage", + "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" + } + }, + "npm:color-convert@1.9.3": { + "type": "npm", + "name": "npm:color-convert@1.9.3", + "data": { + "version": "1.9.3", + "packageName": "color-convert", + "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name@1.1.3": { + "type": "npm", + "name": "npm:color-name@1.1.3", + "data": { + "version": "1.1.3", + "packageName": "color-name", + "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:color-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.9.1", + "packageName": "color-string", + "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" + } + }, + "npm:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "4.2.3", + "packageName": "color", + "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette@1.4.0": { + "type": "npm", + "name": "npm:colorette@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "colorette", + "hash": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:command-exists": { + "type": "npm", + "name": "npm:command-exists", + "data": { + "version": "1.2.9", + "packageName": "command-exists", + "hash": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" + } + }, + "npm:commander@11.0.0": { + "type": "npm", + "name": "npm:commander@11.0.0", + "data": { + "version": "11.0.0", + "packageName": "commander", + "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" + } + }, + "npm:commander@2.20.0": { + "type": "npm", + "name": "npm:commander@2.20.0", + "data": { + "version": "2.20.0", + "packageName": "commander", + "hash": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==" + } + }, + "npm:commander@2.20.3": { + "type": "npm", + "name": "npm:commander@2.20.3", + "data": { + "version": "2.20.3", + "packageName": "commander", + "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + }, + "npm:commander@4.1.1": { + "type": "npm", + "name": "npm:commander@4.1.1", + "data": { + "version": "4.1.1", + "packageName": "commander", + "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + } + }, + "npm:commander@5.1.0": { + "type": "npm", + "name": "npm:commander@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "commander", + "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:commander@8.3.0": { + "type": "npm", + "name": "npm:commander@8.3.0", + "data": { + "version": "8.3.0", + "packageName": "commander", + "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + } + }, + "npm:commander@9.5.0": { + "type": "npm", + "name": "npm:commander@9.5.0", + "data": { + "version": "9.5.0", + "packageName": "commander", + "hash": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" + } + }, + "npm:common-path-prefix": { + "type": "npm", + "name": "npm:common-path-prefix", + "data": { + "version": "3.0.0", + "packageName": "common-path-prefix", + "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + } + }, + "npm:commondir": { + "type": "npm", + "name": "npm:commondir", + "data": { + "version": "1.0.1", + "packageName": "commondir", + "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + } + }, + "npm:compare-urls": { + "type": "npm", + "name": "npm:compare-urls", + "data": { + "version": "2.0.0", + "packageName": "compare-urls", + "hash": "sha512-eCJcWn2OYFEIqbm70ta7LQowJOOZZqq1a2YbbFCFI1uwSvj+TWMwXVn7vPR1ceFNcAIt5RSTDbwdlX82gYLTkA==" + } + }, + "npm:component-type": { + "type": "npm", + "name": "npm:component-type", + "data": { + "version": "1.2.2", + "packageName": "component-type", + "hash": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==" + } + }, + "npm:compressible": { + "type": "npm", + "name": "npm:compressible", + "data": { + "version": "2.0.18", + "packageName": "compressible", + "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + } + }, + "npm:compression": { + "type": "npm", + "name": "npm:compression", + "data": { + "version": "1.7.4", + "packageName": "compression", + "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:connect-history-api-fallback": { + "type": "npm", + "name": "npm:connect-history-api-fallback", + "data": { + "version": "2.0.0", + "packageName": "connect-history-api-fallback", + "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + } + }, + "npm:connect": { + "type": "npm", + "name": "npm:connect", + "data": { + "version": "3.7.0", + "packageName": "connect", + "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "0.5.4", + "packageName": "content-disposition", + "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.5", + "packageName": "content-type", + "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.0.6", + "packageName": "cookie-signature", + "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + } + }, + "npm:cookie-signature@1.2.1": { + "type": "npm", + "name": "npm:cookie-signature@1.2.1", + "data": { + "version": "1.2.1", + "packageName": "cookie-signature", + "hash": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.5.0", + "packageName": "cookie", + "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + } + }, + "npm:cookie@0.4.2": { + "type": "npm", + "name": "npm:cookie@0.4.2", + "data": { + "version": "0.4.2", + "packageName": "cookie", + "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" + } + }, + "npm:copy-webpack-plugin": { + "type": "npm", + "name": "npm:copy-webpack-plugin", + "data": { + "version": "10.2.4", + "packageName": "copy-webpack-plugin", + "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" + } + }, + "npm:core-js-compat": { + "type": "npm", + "name": "npm:core-js-compat", + "data": { + "version": "3.35.1", + "packageName": "core-js-compat", + "hash": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==" + } + }, + "npm:core-util-is": { + "type": "npm", + "name": "npm:core-util-is", + "data": { + "version": "1.0.3", + "packageName": "core-util-is", + "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "5.2.1", + "packageName": "cosmiconfig", + "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" + } + }, + "npm:create-jest": { + "type": "npm", + "name": "npm:create-jest", + "data": { + "version": "29.7.0", + "packageName": "create-jest", + "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" + } + }, + "npm:cross-env": { + "type": "npm", + "name": "npm:cross-env", + "data": { + "version": "7.0.3", + "packageName": "cross-env", + "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" + } + }, + "npm:cross-fetch": { + "type": "npm", + "name": "npm:cross-fetch", + "data": { + "version": "3.1.8", + "packageName": "cross-fetch", + "hash": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==" + } + }, + "npm:cross-spawn@6.0.5": { + "type": "npm", + "name": "npm:cross-spawn@6.0.5", + "data": { + "version": "6.0.5", + "packageName": "cross-spawn", + "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.3", + "packageName": "cross-spawn", + "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + } + }, + "npm:crypt": { + "type": "npm", + "name": "npm:crypt", + "data": { + "version": "0.0.2", + "packageName": "crypt", + "hash": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==" + } + }, + "npm:crypto-random-string": { + "type": "npm", + "name": "npm:crypto-random-string", + "data": { + "version": "1.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==" + } + }, + "npm:crypto-random-string@2.0.0": { + "type": "npm", + "name": "npm:crypto-random-string@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "crypto-random-string", + "hash": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "6.4.1", + "packageName": "css-declaration-sorter", + "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" + } + }, + "npm:css-in-js-utils": { + "type": "npm", + "name": "npm:css-in-js-utils", + "data": { + "version": "3.1.0", + "packageName": "css-in-js-utils", + "hash": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==" + } + }, + "npm:css-loader": { + "type": "npm", + "name": "npm:css-loader", + "data": { + "version": "6.9.1", + "packageName": "css-loader", + "hash": "sha512-OzABOh0+26JKFdMzlK6PY1u5Zx8+Ck7CVRlcGNZoY9qwJjdfu2VWFuprTIpPW+Av5TZTVViYWcFQaEEQURLknQ==" + } + }, + "npm:css-minimizer-webpack-plugin": { + "type": "npm", + "name": "npm:css-minimizer-webpack-plugin", + "data": { + "version": "3.4.1", + "packageName": "css-minimizer-webpack-plugin", + "hash": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "4.3.0", + "packageName": "css-select", + "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" + } + }, + "npm:css-select@5.1.0": { + "type": "npm", + "name": "npm:css-select@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "css-select", + "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "1.1.3", + "packageName": "css-tree", + "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.1.0", + "packageName": "css-what", + "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "5.2.14", + "packageName": "cssnano-preset-default", + "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "3.1.0", + "packageName": "cssnano-utils", + "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + } + }, + "npm:cssnano": { + "type": "npm", + "name": "npm:cssnano", + "data": { + "version": "5.1.15", + "packageName": "cssnano", + "hash": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==" + } + }, + "npm:csso@4.2.0": { + "type": "npm", + "name": "npm:csso@4.2.0", + "data": { + "version": "4.2.0", + "packageName": "csso", + "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + } + }, + "npm:cssom": { + "type": "npm", + "name": "npm:cssom", + "data": { + "version": "0.5.0", + "packageName": "cssom", + "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" + } + }, + "npm:cssom@0.3.8": { + "type": "npm", + "name": "npm:cssom@0.3.8", + "data": { + "version": "0.3.8", + "packageName": "cssom", + "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + }, + "npm:cssstyle": { + "type": "npm", + "name": "npm:cssstyle", + "data": { + "version": "2.3.0", + "packageName": "cssstyle", + "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.1.3", + "packageName": "csstype", + "hash": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + } + }, + "npm:dag-map": { + "type": "npm", + "name": "npm:dag-map", + "data": { + "version": "1.0.2", + "packageName": "dag-map", + "hash": "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "3.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" + } + }, + "npm:data-urls": { + "type": "npm", + "name": "npm:data-urls", + "data": { + "version": "3.0.2", + "packageName": "data-urls", + "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" + } + }, + "npm:dayjs": { + "type": "npm", + "name": "npm:dayjs", + "data": { + "version": "1.11.10", + "packageName": "dayjs", + "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" + } + }, + "npm:debug@2.6.9": { + "type": "npm", + "name": "npm:debug@2.6.9", + "data": { + "version": "2.6.9", + "packageName": "debug", + "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.3.4", + "packageName": "debug", + "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" + } + }, + "npm:debug@3.2.7": { + "type": "npm", + "name": "npm:debug@3.2.7", + "data": { + "version": "3.2.7", + "packageName": "debug", + "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + } + }, + "npm:decamelize": { + "type": "npm", + "name": "npm:decamelize", + "data": { + "version": "1.2.0", + "packageName": "decamelize", + "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" + } + }, + "npm:decimal.js": { + "type": "npm", + "name": "npm:decimal.js", + "data": { + "version": "10.4.3", + "packageName": "decimal.js", + "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + } + }, + "npm:decode-uri-component": { + "type": "npm", + "name": "npm:decode-uri-component", + "data": { + "version": "0.2.2", + "packageName": "decode-uri-component", + "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + } + }, + "npm:dedent": { + "type": "npm", + "name": "npm:dedent", + "data": { + "version": "1.5.1", + "packageName": "dedent", + "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge": { + "type": "npm", + "name": "npm:deepmerge", + "data": { + "version": "4.3.1", + "packageName": "deepmerge", + "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" + } + }, + "npm:default-gateway": { + "type": "npm", + "name": "npm:default-gateway", + "data": { + "version": "4.2.0", + "packageName": "default-gateway", + "hash": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==" + } + }, + "npm:default-gateway@6.0.3": { + "type": "npm", + "name": "npm:default-gateway@6.0.3", + "data": { + "version": "6.0.3", + "packageName": "default-gateway", + "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.1", + "packageName": "define-data-property", + "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.1", + "packageName": "define-properties", + "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" + } + }, + "npm:del": { + "type": "npm", + "name": "npm:del", + "data": { + "version": "4.1.1", + "packageName": "del", + "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" + } + }, + "npm:del@6.1.1": { + "type": "npm", + "name": "npm:del@6.1.1", + "data": { + "version": "6.1.1", + "packageName": "del", + "hash": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:denodeify": { + "type": "npm", + "name": "npm:denodeify", + "data": { + "version": "1.2.1", + "packageName": "denodeify", + "hash": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:depd@1.1.2": { + "type": "npm", + "name": "npm:depd@1.1.2", + "data": { + "version": "1.1.2", + "packageName": "depd", + "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" + } + }, + "npm:deprecated-react-native-prop-types": { + "type": "npm", + "name": "npm:deprecated-react-native-prop-types", + "data": { + "version": "5.0.0", + "packageName": "deprecated-react-native-prop-types", + "hash": "sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==" + } + }, + "npm:destroy": { + "type": "npm", + "name": "npm:destroy", + "data": { + "version": "1.2.0", + "packageName": "destroy", + "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + } + }, + "npm:detect-libc": { + "type": "npm", + "name": "npm:detect-libc", + "data": { + "version": "1.0.3", + "packageName": "detect-libc", + "hash": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" + } + }, + "npm:detect-newline": { + "type": "npm", + "name": "npm:detect-newline", + "data": { + "version": "3.1.0", + "packageName": "detect-newline", + "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + } + }, + "npm:detect-node": { + "type": "npm", + "name": "npm:detect-node", + "data": { + "version": "2.1.0", + "packageName": "detect-node", + "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + } + }, + "npm:diff-sequences": { + "type": "npm", + "name": "npm:diff-sequences", + "data": { + "version": "29.6.3", + "packageName": "diff-sequences", + "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" + } + }, + "npm:dir-glob": { + "type": "npm", + "name": "npm:dir-glob", + "data": { + "version": "3.0.1", + "packageName": "dir-glob", + "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + } + }, + "npm:dns-packet": { + "type": "npm", + "name": "npm:dns-packet", + "data": { + "version": "5.6.1", + "packageName": "dns-packet", + "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:doctrine@3.0.0": { + "type": "npm", + "name": "npm:doctrine@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "doctrine", + "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + } + }, + "npm:dom-converter": { + "type": "npm", + "name": "npm:dom-converter", + "data": { + "version": "0.2.0", + "packageName": "dom-converter", + "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "1.4.1", + "packageName": "dom-serializer", + "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" + } + }, + "npm:dom-serializer@2.0.0": { + "type": "npm", + "name": "npm:dom-serializer@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "dom-serializer", + "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domexception": { + "type": "npm", + "name": "npm:domexception", + "data": { + "version": "4.0.0", + "packageName": "domexception", + "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "4.3.1", + "packageName": "domhandler", + "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" + } + }, + "npm:domhandler@5.0.3": { + "type": "npm", + "name": "npm:domhandler@5.0.3", + "data": { + "version": "5.0.3", + "packageName": "domhandler", + "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "2.8.0", + "packageName": "domutils", + "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + } + }, + "npm:domutils@3.1.0": { + "type": "npm", + "name": "npm:domutils@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "domutils", + "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" + } + }, + "npm:dot-case": { + "type": "npm", + "name": "npm:dot-case", + "data": { + "version": "3.0.4", + "packageName": "dot-case", + "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "10.0.0", + "packageName": "dotenv-expand", + "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "16.4.1", + "packageName": "dotenv", + "hash": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==" + } + }, + "npm:dotenv@16.0.3": { + "type": "npm", + "name": "npm:dotenv@16.0.3", + "data": { + "version": "16.0.3", + "packageName": "dotenv", + "hash": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.4.647", + "packageName": "electron-to-chromium", + "hash": "sha512-Z/fTNGwc45WrYQhPaEcz5tAJuZZ8G7S/DBnhS6Kgp4BxnS40Z/HqlJ0hHg3Z79IGVzuVartIlTcjw/cQbPLgOw==" + } + }, + "npm:emittery": { + "type": "npm", + "name": "npm:emittery", + "data": { + "version": "0.13.1", + "packageName": "emittery", + "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:emojis-list": { + "type": "npm", + "name": "npm:emojis-list", + "data": { + "version": "3.0.0", + "packageName": "emojis-list", + "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "1.0.2", + "packageName": "encodeurl", + "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.4", + "packageName": "end-of-stream", + "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.15.0", + "packageName": "enhanced-resolve", + "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" + } + }, + "npm:entities@2.2.0": { + "type": "npm", + "name": "npm:entities@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "entities", + "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "4.5.0", + "packageName": "entities", + "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" + } + }, + "npm:env-editor": { + "type": "npm", + "name": "npm:env-editor", + "data": { + "version": "0.4.2", + "packageName": "env-editor", + "hash": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==" + } + }, + "npm:envinfo": { + "type": "npm", + "name": "npm:envinfo", + "data": { + "version": "7.11.0", + "packageName": "envinfo", + "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" + } + }, + "npm:eol": { + "type": "npm", + "name": "npm:eol", + "data": { + "version": "0.9.1", + "packageName": "eol", + "hash": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.2", + "packageName": "error-ex", + "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + } + }, + "npm:error-stack-parser": { + "type": "npm", + "name": "npm:error-stack-parser", + "data": { + "version": "2.1.4", + "packageName": "error-stack-parser", + "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" + } + }, + "npm:errorhandler": { + "type": "npm", + "name": "npm:errorhandler", + "data": { + "version": "1.5.1", + "packageName": "errorhandler", + "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.22.3", + "packageName": "es-abstract", + "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" + } + }, + "npm:es-iterator-helpers": { + "type": "npm", + "name": "npm:es-iterator-helpers", + "data": { + "version": "1.0.15", + "packageName": "es-iterator-helpers", + "hash": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.4.1", + "packageName": "es-module-lexer", + "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.0.2", + "packageName": "es-set-tostringtag", + "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.0.2", + "packageName": "es-shim-unscopables", + "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.2.1", + "packageName": "es-to-primitive", + "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.1.1", + "packageName": "escalade", + "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + } + }, + "npm:escape-string-regexp@1.0.5": { + "type": "npm", + "name": "npm:escape-string-regexp@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp@2.0.0": { + "type": "npm", + "name": "npm:escape-string-regexp@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "8.10.0", + "packageName": "eslint-config-prettier", + "hash": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==" + } + }, + "npm:eslint-config-universe": { + "type": "npm", + "name": "npm:eslint-config-universe", + "data": { + "version": "11.3.0", + "packageName": "eslint-config-universe", + "hash": "sha512-CL6v7IxV+OJn0q1vqtFVtX+sNUdY7MiIy3/XD0dy96D7RsDvYBWWqs4S1AIB4AdVgraNnv829q1+asluAePSSw==" + } + }, + "npm:eslint-import-resolver-node": { + "type": "npm", + "name": "npm:eslint-import-resolver-node", + "data": { + "version": "0.3.9", + "packageName": "eslint-import-resolver-node", + "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" + } + }, + "npm:eslint-module-utils": { + "type": "npm", + "name": "npm:eslint-module-utils", + "data": { + "version": "2.8.0", + "packageName": "eslint-module-utils", + "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" + } + }, + "npm:eslint-plugin-es": { + "type": "npm", + "name": "npm:eslint-plugin-es", + "data": { + "version": "3.0.1", + "packageName": "eslint-plugin-es", + "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" + } + }, + "npm:eslint-plugin-import": { + "type": "npm", + "name": "npm:eslint-plugin-import", + "data": { + "version": "2.29.1", + "packageName": "eslint-plugin-import", + "hash": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==" + } + }, + "npm:eslint-plugin-node": { + "type": "npm", + "name": "npm:eslint-plugin-node", + "data": { + "version": "11.1.0", + "packageName": "eslint-plugin-node", + "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" + } + }, + "npm:eslint-plugin-prettier": { + "type": "npm", + "name": "npm:eslint-plugin-prettier", + "data": { + "version": "4.2.1", + "packageName": "eslint-plugin-prettier", + "hash": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==" + } + }, + "npm:eslint-plugin-react-hooks": { + "type": "npm", + "name": "npm:eslint-plugin-react-hooks", + "data": { + "version": "4.6.0", + "packageName": "eslint-plugin-react-hooks", + "hash": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==" + } + }, + "npm:eslint-plugin-react-native-globals": { + "type": "npm", + "name": "npm:eslint-plugin-react-native-globals", + "data": { + "version": "0.1.2", + "packageName": "eslint-plugin-react-native-globals", + "hash": "sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==" + } + }, + "npm:eslint-plugin-react-native": { + "type": "npm", + "name": "npm:eslint-plugin-react-native", + "data": { + "version": "4.1.0", + "packageName": "eslint-plugin-react-native", + "hash": "sha512-QLo7rzTBOl43FvVqDdq5Ql9IoElIuTdjrz9SKAXCvULvBoRZ44JGSkx9z4999ZusCsb4rK3gjS8gOGyeYqZv2Q==" + } + }, + "npm:eslint-plugin-react": { + "type": "npm", + "name": "npm:eslint-plugin-react", + "data": { + "version": "7.33.2", + "packageName": "eslint-plugin-react", + "hash": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "5.1.1", + "packageName": "eslint-scope", + "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + } + }, + "npm:eslint-scope@7.2.2": { + "type": "npm", + "name": "npm:eslint-scope@7.2.2", + "data": { + "version": "7.2.2", + "packageName": "eslint-scope", + "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" + } + }, + "npm:eslint-utils": { + "type": "npm", + "name": "npm:eslint-utils", + "data": { + "version": "2.1.0", + "packageName": "eslint-utils", + "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + } + }, + "npm:eslint-visitor-keys@1.3.0": { + "type": "npm", + "name": "npm:eslint-visitor-keys@1.3.0", + "data": { + "version": "1.3.0", + "packageName": "eslint-visitor-keys", + "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "3.4.3", + "packageName": "eslint-visitor-keys", + "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "8.56.0", + "packageName": "eslint", + "hash": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "9.6.1", + "packageName": "espree", + "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.5.0", + "packageName": "esquery", + "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse@4.3.0": { + "type": "npm", + "name": "npm:estraverse@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "estraverse", + "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + } + }, + "npm:event-target-shim": { + "type": "npm", + "name": "npm:event-target-shim", + "data": { + "version": "5.0.1", + "packageName": "event-target-shim", + "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + } + }, + "npm:eventemitter3@4.0.7": { + "type": "npm", + "name": "npm:eventemitter3@4.0.7", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "5.0.1", + "packageName": "eventemitter3", + "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" + } + }, + "npm:events": { + "type": "npm", + "name": "npm:events", + "data": { + "version": "3.3.0", + "packageName": "events", + "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + } + }, + "npm:exec-async": { + "type": "npm", + "name": "npm:exec-async", + "data": { + "version": "2.2.0", + "packageName": "exec-async", + "hash": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==" + } + }, + "npm:execa@7.2.0": { + "type": "npm", + "name": "npm:execa@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "execa", + "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" + } + }, + "npm:execa@1.0.0": { + "type": "npm", + "name": "npm:execa@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "execa", + "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "5.1.1", + "packageName": "execa", + "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" + } + }, + "npm:exit": { + "type": "npm", + "name": "npm:exit", + "data": { + "version": "0.1.2", + "packageName": "exit", + "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" + } + }, + "npm:expect": { + "type": "npm", + "name": "npm:expect", + "data": { + "version": "29.7.0", + "packageName": "expect", + "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" + } + }, + "npm:expo-app-loading": { + "type": "npm", + "name": "npm:expo-app-loading", + "data": { + "version": "2.1.1", + "packageName": "expo-app-loading", + "hash": "sha512-b3VNkPuFaI9J847HSpjI4uiuyE4+IWyAIPT9uzbkS7QFknL99DMoihtgzeWzKaJKSAmbYc3ph2Vl9skJAkVYUg==" + } + }, + "npm:expo-application": { + "type": "npm", + "name": "npm:expo-application", + "data": { + "version": "5.8.3", + "packageName": "expo-application", + "hash": "sha512-IISxzpPX+Xe4ynnwX8yY52T6dm1g9sME1GCj4lvUlrdc5xeTPM6U35x7Wj82V7lLWBaVGe+/Tg9EeKqfylCEwA==" + } + }, + "npm:expo-asset": { + "type": "npm", + "name": "npm:expo-asset", + "data": { + "version": "9.0.2", + "packageName": "expo-asset", + "hash": "sha512-PzYKME1MgUOoUvwtdzhAyXkjXOXGiSYqGKG/MsXwWr0Ef5wlBaBm2DCO9V6KYbng5tBPFu6hTjoRNil1tBOSow==" + } + }, + "npm:expo-clipboard": { + "type": "npm", + "name": "npm:expo-clipboard", + "data": { + "version": "5.0.1", + "packageName": "expo-clipboard", + "hash": "sha512-JH853QJPr5W3h87If3aDTnMK+ESSIrwzU2TdfZrqZttVDY2pMIf/w37mVHHNYodXM4ATHXadtOkjKbAa0DWwUg==" + } + }, + "npm:expo-constants": { + "type": "npm", + "name": "npm:expo-constants", + "data": { + "version": "15.4.5", + "packageName": "expo-constants", + "hash": "sha512-1pVVjwk733hbbIjtQcvUFCme540v4gFemdNlaxM2UXKbfRCOh2hzgKN5joHMOysoXQe736TTUrRj7UaZI5Yyhg==" + } + }, + "npm:expo-crypto": { + "type": "npm", + "name": "npm:expo-crypto", + "data": { + "version": "12.8.0", + "packageName": "expo-crypto", + "hash": "sha512-67CoxXz+b4VU1zMo/2kUp+9t6TiVs8HvCvHsW8zoLLAZkVNa3YW1l0arLtQ4oR4HQpEr1i9rAZhP0/mvo+fg5A==" + } + }, + "npm:expo-dev-client": { + "type": "npm", + "name": "npm:expo-dev-client", + "data": { + "version": "3.3.7", + "packageName": "expo-dev-client", + "hash": "sha512-dsucMzezNuP7zxSxYi1EbIA16j491tD9joUlGlpvBW1IylxUmbPraOqUqdXsDxRIAJh5HgJx/8X03Xoo1j7YKw==" + } + }, + "npm:expo-dev-launcher": { + "type": "npm", + "name": "npm:expo-dev-launcher", + "data": { + "version": "3.6.4", + "packageName": "expo-dev-launcher", + "hash": "sha512-i5NGm2QeVl7ePk9nyvW1hAEg29FRMltNNEkRiK/AF77ObrD0YG/FhhidQL8C/SIIm/3RcsjAiw4buF5QRoieKg==" + } + }, + "npm:expo-dev-menu-interface": { + "type": "npm", + "name": "npm:expo-dev-menu-interface", + "data": { + "version": "1.7.2", + "packageName": "expo-dev-menu-interface", + "hash": "sha512-V/geSB9rW0IPTR+d7E5CcvkV0uVUCE7SMHZqE/J0/dH06Wo8AahB16fimXeh5/hTL2Qztq8CQ41xpFUBoA9TEw==" + } + }, + "npm:expo-dev-menu@4.5.4": { + "type": "npm", + "name": "npm:expo-dev-menu@4.5.4", + "data": { + "version": "4.5.4", + "packageName": "expo-dev-menu", + "hash": "sha512-TLCfXKI7r5PJpMKUcslKz9J7tChdYdm6DmOEYwFQC3OLcegXzCT/H92WfTdVXU+xz5XYTcyvnIZQa7/d2Ig90g==" + } + }, + "npm:expo-dev-menu": { + "type": "npm", + "name": "npm:expo-dev-menu", + "data": { + "version": "4.5.5", + "packageName": "expo-dev-menu", + "hash": "sha512-PcbI/SqAvueOIEtR1O0s+WvVD7yizQSqXisDSkBrTym3u8XZSN+K730kz2Z64ukY9YIPG4qWR4sd+9rcjsbMWw==" + } + }, + "npm:expo-device": { + "type": "npm", + "name": "npm:expo-device", + "data": { + "version": "5.9.3", + "packageName": "expo-device", + "hash": "sha512-azH5rz8krDZUJb/arqkcA6oZGaX2T5s4aaXIMFsDDzvq8TW0CttZZy2HFp6itmFdiKGdRpFX3/Gj0n6ZmPoJ/w==" + } + }, + "npm:expo-eas-client": { + "type": "npm", + "name": "npm:expo-eas-client", + "data": { + "version": "0.11.2", + "packageName": "expo-eas-client", + "hash": "sha512-SY7rVFxb4ut/OMTgR7A39Jg+8+hXwQNRpZd+RBpB+B5XV2STj/pWXHnGFhBayEF4umI4SxrOvisY90rlPWVO9Q==" + } + }, + "npm:expo-file-system": { + "type": "npm", + "name": "npm:expo-file-system", + "data": { + "version": "16.0.5", + "packageName": "expo-file-system", + "hash": "sha512-JpKMbKfwTaMCbwUwq7MwcSbPR7r+IqZEL3RFam3ClPHDtKLnlEoywREeaDsWjSZb7dS25hG3WqXspfTuugCDvg==" + } + }, + "npm:expo-font": { + "type": "npm", + "name": "npm:expo-font", + "data": { + "version": "11.10.2", + "packageName": "expo-font", + "hash": "sha512-AE0Q0LiWiVosQ/jlKUPoWoob7p3GwYM2xmLoUkuopO9RYh9NL1hZKHiMKcWBZyDG8Gww1GtBQwh7ZREST8+jjQ==" + } + }, + "npm:expo-haptics": { + "type": "npm", + "name": "npm:expo-haptics", + "data": { + "version": "12.8.1", + "packageName": "expo-haptics", + "hash": "sha512-ntLsHkfle8K8w9MW8pZEw92ZN3sguaGUSSIxv30fPKNeQFu7Cq/h47Qv3tONv2MO3wU48N9FbKnant6XlfptpA==" + } + }, + "npm:expo-json-utils": { + "type": "npm", + "name": "npm:expo-json-utils", + "data": { + "version": "0.12.3", + "packageName": "expo-json-utils", + "hash": "sha512-4pypQdinpNc6XY9wsZk56njvzDh+B/9mISr7FPP3CVk1QGB1nSLh883/BCDSgnsephATZkC5HG+cdE60kCAR6A==" + } + }, + "npm:expo-keep-awake": { + "type": "npm", + "name": "npm:expo-keep-awake", + "data": { + "version": "12.8.2", + "packageName": "expo-keep-awake", + "hash": "sha512-uiQdGbSX24Pt8nGbnmBtrKq6xL/Tm3+DuDRGBk/3ZE/HlizzNosGRIufIMJ/4B4FRw4dw8KU81h2RLuTjbay6g==" + } + }, + "npm:expo-linear-gradient": { + "type": "npm", + "name": "npm:expo-linear-gradient", + "data": { + "version": "12.7.1", + "packageName": "expo-linear-gradient", + "hash": "sha512-2obkeC1hyOlljCpTbO3xS4WkEEYA9UtgDO486H+8wYYl1qf6C05d+LgWEVMD7B7CKI3xG/g5chPr9T0BLMSY4w==" + } + }, + "npm:expo-linking": { + "type": "npm", + "name": "npm:expo-linking", + "data": { + "version": "6.2.2", + "packageName": "expo-linking", + "hash": "sha512-FEe6lP4f7xFT/vjoHRG+tt6EPVtkEGaWNK1smpaUevmNdyCJKqW0PDB8o8sfG6y7fly8ULe8qg3HhKh5J7aqUQ==" + } + }, + "npm:expo-local-authentication": { + "type": "npm", + "name": "npm:expo-local-authentication", + "data": { + "version": "13.8.0", + "packageName": "expo-local-authentication", + "hash": "sha512-h0YA7grVdo3834AS70EUCsalaXrrEnoq+yTvIhRTxiPmzWxUv7rNo5ff+XsIEYNElKPmT/wh/xPV1yo3l3fhGg==" + } + }, + "npm:expo-localization": { + "type": "npm", + "name": "npm:expo-localization", + "data": { + "version": "14.8.3", + "packageName": "expo-localization", + "hash": "sha512-leg1e+7ocUgfNWa7Men/g16waXtdSpBMR9tCdv3CG4wztmFU8C+87VAnnVkvHi4CCUkTLzhP3y0FcE6KIWTwdw==" + } + }, + "npm:expo-manifests": { + "type": "npm", + "name": "npm:expo-manifests", + "data": { + "version": "0.13.2", + "packageName": "expo-manifests", + "hash": "sha512-l0Sia1WmLULx8V41K8RzGLsFoTe4qqthPRGpHjItsYn8ZB6lRrdTBM9OYp2McIflgqN1HAimUCQMFIwJyH+UmA==" + } + }, + "npm:expo-modules-autolinking": { + "type": "npm", + "name": "npm:expo-modules-autolinking", + "data": { + "version": "1.10.2", + "packageName": "expo-modules-autolinking", + "hash": "sha512-OEeoz0+zGx5EJwGtDm9pSywCr+gUCaisZV0mNkK7V3fuRl+EVPBSsI+957JwAc4ZxVps95jy28eLcRRtQ33yVg==" + } + }, + "npm:expo-modules-core": { + "type": "npm", + "name": "npm:expo-modules-core", + "data": { + "version": "1.11.8", + "packageName": "expo-modules-core", + "hash": "sha512-rlctE3nCNLCGv3LosGQNaTuwGrr2SyQA+hOgci/0l+VRc0gFNtvl0gskph9C0tnN1jzBeb8rRZQYVj5ih1yxcA==" + } + }, + "npm:expo-network": { + "type": "npm", + "name": "npm:expo-network", + "data": { + "version": "5.8.0", + "packageName": "expo-network", + "hash": "sha512-mTtyqRgLKvXWB+xCoY5WMtRrpVqYmcXWz3YbyN+X0HRGqXg7a+UYOXeKlxrkwBiadsElhmfMeaj1UpmW79Zw/w==" + } + }, + "npm:expo-notifications": { + "type": "npm", + "name": "npm:expo-notifications", + "data": { + "version": "0.27.5", + "packageName": "expo-notifications", + "hash": "sha512-Ym1vl6/w5X4qEmVmO78T2GapsVeRp2/G2d+0NEUJufh57l6S/KTOlhjtXPJakDmefPcftc2Co5vHsF03Wpd2Bw==" + } + }, + "npm:expo-pwa": { + "type": "npm", + "name": "npm:expo-pwa", + "data": { + "version": "0.0.127", + "packageName": "expo-pwa", + "hash": "sha512-8D9wEDkEXG9r6TPvAFpWt27IiP1cLm/4RWVRUHzFZflbWYLi8GkYArj5LHbbfokybRm1GVAanSrrYFEqHoIUiA==" + } + }, + "npm:expo-router": { + "type": "npm", + "name": "npm:expo-router", + "data": { + "version": "3.4.6", + "packageName": "expo-router", + "hash": "sha512-yxl0QE4KAqLmLyH8AxWsGSV3M34jsAE8X75cOB2oaK0+Pu9VHSUf6w3iRi93IiJ0rOUXm8jKrjhfhZOrrNh7EA==" + } + }, + "npm:expo-screen-orientation": { + "type": "npm", + "name": "npm:expo-screen-orientation", + "data": { + "version": "6.4.1", + "packageName": "expo-screen-orientation", + "hash": "sha512-VM0C9ORNL1aT6Dr2OUeryzV519n0FjtXI2m+HlijOMi1QT2bPg4tBkCd7HLgywU4dZ1Esa46ewUudmk+fOqmMQ==" + } + }, + "npm:expo-secure-store": { + "type": "npm", + "name": "npm:expo-secure-store", + "data": { + "version": "12.8.1", + "packageName": "expo-secure-store", + "hash": "sha512-Ju3jmkHby4w7rIzdYAt9kQyQ7HhHJ0qRaiQOInknhOLIltftHjEgF4I1UmzKc7P5RCfGNmVbEH729Pncp/sHXQ==" + } + }, + "npm:expo-splash-screen": { + "type": "npm", + "name": "npm:expo-splash-screen", + "data": { + "version": "0.26.4", + "packageName": "expo-splash-screen", + "hash": "sha512-2DwofTQ0FFQCsvDysm/msENsbyNsJiAJwK3qK/oXeizECAPqD7bK19J4z9kuEbr7ORPX9MLnTQYKl6kmX3keUg==" + } + }, + "npm:expo-splash-screen@0.17.5": { + "type": "npm", + "name": "npm:expo-splash-screen@0.17.5", + "data": { + "version": "0.17.5", + "packageName": "expo-splash-screen", + "hash": "sha512-ejSO78hwHXz8T9u8kh8t4r6CR4h70iBvA65gX8GK+dYxZl6/IANPbIb2VnUpND9vqfW+JnkDw+ZFst+gDnkpcQ==" + } + }, + "npm:expo-status-bar": { + "type": "npm", + "name": "npm:expo-status-bar", + "data": { + "version": "1.11.1", + "packageName": "expo-status-bar", + "hash": "sha512-ddQEtCOgYHTLlFUe/yH67dDBIoct5VIULthyT3LRJbEwdpzAgueKsX2FYK02ldh440V87PWKCamh7R9evk1rrg==" + } + }, + "npm:expo-structured-headers": { + "type": "npm", + "name": "npm:expo-structured-headers", + "data": { + "version": "3.7.2", + "packageName": "expo-structured-headers", + "hash": "sha512-/nGOyeWUXSUy4aIYKJTwQOznRNs0yKqKPAyEE6jtwvOl9qvfDWx9xskNtShioggBhFAssFkV6RBbPn+xZMQtvw==" + } + }, + "npm:expo-system-ui": { + "type": "npm", + "name": "npm:expo-system-ui", + "data": { + "version": "2.9.3", + "packageName": "expo-system-ui", + "hash": "sha512-RNFNBLJ9lhnjOGrHhtfDc15Ry/lF+SA4kwulmHzYGqaTeYvsL9q0K0+m9qmxuDdrbKJkuurvzvjVylDNnKNFVg==" + } + }, + "npm:expo-updates-interface": { + "type": "npm", + "name": "npm:expo-updates-interface", + "data": { + "version": "0.15.3", + "packageName": "expo-updates-interface", + "hash": "sha512-uLvsbaCmUsXgJqeen8rYH/jPr874ZUCXEvWpKHxrCv5/XATPlYEaDuecbNSGQ+cu78i6MdtB4BHOwZmoH2d47A==" + } + }, + "npm:expo-updates": { + "type": "npm", + "name": "npm:expo-updates", + "data": { + "version": "0.24.8", + "packageName": "expo-updates", + "hash": "sha512-jsnMAMG+Ib5At94LwuA94mQMmHSg4vmI5E0RpTjQ5kRxE10cX4QSzQyvmETnKrD6x+KsZPzEUFD7RIudEnx9JA==" + } + }, + "npm:expo-web-browser": { + "type": "npm", + "name": "npm:expo-web-browser", + "data": { + "version": "12.8.2", + "packageName": "expo-web-browser", + "hash": "sha512-Mw8WoFMSADecNjtC4PZVsVj1/lYdxIAH1jOVV+F8v8SEWYxORWofoShfXg7oUxRLu0iUG8JETfO5y4m8+fOgdg==" + } + }, + "npm:expo": { + "type": "npm", + "name": "npm:expo", + "data": { + "version": "50.0.3", + "packageName": "expo", + "hash": "sha512-3Yk42YShkugC90S24Dbo0mhrq/N3Kfn30FscrjCk3o8ldXh9OdE5RhVi/mc5Cqp28nw5a4DfiGSDFs0mA0t2ng==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "4.18.2", + "packageName": "express", + "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" + } + }, + "npm:fake-xml-http-request": { + "type": "npm", + "name": "npm:fake-xml-http-request", + "data": { + "version": "2.1.2", + "packageName": "fake-xml-http-request", + "hash": "sha512-HaFMBi7r+oEC9iJNpc3bvcW7Z7iLmM26hPDmlb0mFwyANSsOQAtJxbdWsXITKOzZUyMYK0zYCv3h5yDj9TsiXg==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-diff": { + "type": "npm", + "name": "npm:fast-diff", + "data": { + "version": "1.3.0", + "packageName": "fast-diff", + "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.2", + "packageName": "fast-glob", + "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-loops": { + "type": "npm", + "name": "npm:fast-loops", + "data": { + "version": "1.1.3", + "packageName": "fast-loops", + "hash": "sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==" + } + }, + "npm:fast-xml-parser": { + "type": "npm", + "name": "npm:fast-xml-parser", + "data": { + "version": "4.3.3", + "packageName": "fast-xml-parser", + "hash": "sha512-coV/D1MhrShMvU6D0I+VAK3umz6hUaxxhL0yp/9RjfiYUfAv14rDhGQL+PLForhMdr0wq3PiV07WtkkNjJjNHg==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.16.0", + "packageName": "fastq", + "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" + } + }, + "npm:faye-websocket": { + "type": "npm", + "name": "npm:faye-websocket", + "data": { + "version": "0.11.4", + "packageName": "faye-websocket", + "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" + } + }, + "npm:fb-watchman": { + "type": "npm", + "name": "npm:fb-watchman", + "data": { + "version": "2.0.2", + "packageName": "fb-watchman", + "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" + } + }, + "npm:fbemitter": { + "type": "npm", + "name": "npm:fbemitter", + "data": { + "version": "3.0.0", + "packageName": "fbemitter", + "hash": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" + } + }, + "npm:fbjs-css-vars": { + "type": "npm", + "name": "npm:fbjs-css-vars", + "data": { + "version": "1.0.2", + "packageName": "fbjs-css-vars", + "hash": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" + } + }, + "npm:fbjs": { + "type": "npm", + "name": "npm:fbjs", + "data": { + "version": "3.0.5", + "packageName": "fbjs", + "hash": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==" + } + }, + "npm:fetch-retry": { + "type": "npm", + "name": "npm:fetch-retry", + "data": { + "version": "4.1.1", + "packageName": "fetch-retry", + "hash": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==" + } + }, + "npm:figures@1.7.0": { + "type": "npm", + "name": "npm:figures@1.7.0", + "data": { + "version": "1.7.0", + "packageName": "figures", + "hash": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==" + } + }, + "npm:figures@2.0.0": { + "type": "npm", + "name": "npm:figures@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "figures", + "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "6.0.1", + "packageName": "file-entry-cache", + "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.0.1", + "packageName": "fill-range", + "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + } + }, + "npm:filter-obj": { + "type": "npm", + "name": "npm:filter-obj", + "data": { + "version": "1.1.0", + "packageName": "filter-obj", + "hash": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "1.1.2", + "packageName": "finalhandler", + "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" + } + }, + "npm:finalhandler@1.2.0": { + "type": "npm", + "name": "npm:finalhandler@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "finalhandler", + "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" + } + }, + "npm:find-babel-config": { + "type": "npm", + "name": "npm:find-babel-config", + "data": { + "version": "2.0.0", + "packageName": "find-babel-config", + "hash": "sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==" + } + }, + "npm:find-cache-dir@2.1.0": { + "type": "npm", + "name": "npm:find-cache-dir@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "find-cache-dir", + "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" + } + }, + "npm:find-cache-dir@3.3.2": { + "type": "npm", + "name": "npm:find-cache-dir@3.3.2", + "data": { + "version": "3.3.2", + "packageName": "find-cache-dir", + "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" + } + }, + "npm:find-cache-dir": { + "type": "npm", + "name": "npm:find-cache-dir", + "data": { + "version": "4.0.0", + "packageName": "find-cache-dir", + "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:find-up@4.1.0": { + "type": "npm", + "name": "npm:find-up@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "find-up", + "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:find-up@6.3.0": { + "type": "npm", + "name": "npm:find-up@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "find-up", + "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" + } + }, + "npm:find-yarn-workspace-root": { + "type": "npm", + "name": "npm:find-yarn-workspace-root", + "data": { + "version": "2.0.0", + "packageName": "find-yarn-workspace-root", + "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "3.2.0", + "packageName": "flat-cache", + "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.2.9", + "packageName": "flatted", + "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" + } + }, + "npm:flow-enums-runtime": { + "type": "npm", + "name": "npm:flow-enums-runtime", + "data": { + "version": "0.0.6", + "packageName": "flow-enums-runtime", + "hash": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==" + } + }, + "npm:flow-parser@0.227.0": { + "type": "npm", + "name": "npm:flow-parser@0.227.0", + "data": { + "version": "0.227.0", + "packageName": "flow-parser", + "hash": "sha512-nOygtGKcX/siZK/lFzpfdHEfOkfGcTW7rNroR1Zsz6T/JxSahPALXVt5qVHq/fgvMJuv096BTKbgxN3PzVBaDA==" + } + }, + "npm:flow-parser": { + "type": "npm", + "name": "npm:flow-parser", + "data": { + "version": "0.206.0", + "packageName": "flow-parser", + "hash": "sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.5", + "packageName": "follow-redirects", + "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" + } + }, + "npm:fontfaceobserver": { + "type": "npm", + "name": "npm:fontfaceobserver", + "data": { + "version": "2.3.0", + "packageName": "fontfaceobserver", + "hash": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.3", + "packageName": "for-each", + "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.1.1", + "packageName": "foreground-child", + "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" + } + }, + "npm:form-data@3.0.1": { + "type": "npm", + "name": "npm:form-data@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "form-data", + "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "4.0.0", + "packageName": "form-data", + "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:framer-motion@3.10.6": { + "type": "npm", + "name": "npm:framer-motion@3.10.6", + "data": { + "version": "3.10.6", + "packageName": "framer-motion", + "hash": "sha512-OxOtKgQS4km9a8dm0IMBtNNp4f0DiHfQ/IzxKs818+Kg9V/Ve/pRUJ2dtWBb6+W4lIPNLgRSpbOwOACVj15XcQ==" + } + }, + "npm:framer-motion": { + "type": "npm", + "name": "npm:framer-motion", + "data": { + "version": "6.5.1", + "packageName": "framer-motion", + "hash": "sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==" + } + }, + "npm:framesync": { + "type": "npm", + "name": "npm:framesync", + "data": { + "version": "5.2.0", + "packageName": "framesync", + "hash": "sha512-dcl92w5SHc0o6pRK3//VBVNvu6WkYkiXmHG6ZIXrVzmgh0aDYMDAaoA3p3LH71JIdN5qmhDcfONFA4Lmq22tNA==" + } + }, + "npm:framesync@6.0.1": { + "type": "npm", + "name": "npm:framesync@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "framesync", + "hash": "sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==" + } + }, + "npm:freeport-async": { + "type": "npm", + "name": "npm:freeport-async", + "data": { + "version": "2.0.0", + "packageName": "freeport-async", + "hash": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "0.5.2", + "packageName": "fresh", + "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + } + }, + "npm:fs-extra@9.0.0": { + "type": "npm", + "name": "npm:fs-extra@9.0.0", + "data": { + "version": "9.0.0", + "packageName": "fs-extra", + "hash": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==" + } + }, + "npm:fs-extra@11.2.0": { + "type": "npm", + "name": "npm:fs-extra@11.2.0", + "data": { + "version": "11.2.0", + "packageName": "fs-extra", + "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" + } + }, + "npm:fs-extra@8.1.0": { + "type": "npm", + "name": "npm:fs-extra@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "fs-extra", + "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + } + }, + "npm:fs-extra": { + "type": "npm", + "name": "npm:fs-extra", + "data": { + "version": "9.1.0", + "packageName": "fs-extra", + "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "2.1.0", + "packageName": "fs-minipass", + "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + } + }, + "npm:fs-monkey": { + "type": "npm", + "name": "npm:fs-monkey", + "data": { + "version": "1.0.5", + "packageName": "fs-monkey", + "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents": { + "type": "npm", + "name": "npm:fsevents", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.2", + "packageName": "function-bind", + "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.6", + "packageName": "function.prototype.name", + "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.2.2", + "packageName": "get-intrinsic", + "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" + } + }, + "npm:get-package-type": { + "type": "npm", + "name": "npm:get-package-type", + "data": { + "version": "0.1.0", + "packageName": "get-package-type", + "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "3.2.0", + "packageName": "get-port", + "hash": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" + } + }, + "npm:get-stream@4.1.0": { + "type": "npm", + "name": "npm:get-stream@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "get-stream", + "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "6.0.1", + "packageName": "get-stream", + "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.0.0", + "packageName": "get-symbol-description", + "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" + } + }, + "npm:getenv": { + "type": "npm", + "name": "npm:getenv", + "data": { + "version": "1.0.0", + "packageName": "getenv", + "hash": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent@6.0.2": { + "type": "npm", + "name": "npm:glob-parent@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:glob@7.1.6": { + "type": "npm", + "name": "npm:glob@7.1.6", + "data": { + "version": "7.1.6", + "packageName": "glob", + "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" + } + }, + "npm:glob@10.3.10": { + "type": "npm", + "name": "npm:glob@10.3.10", + "data": { + "version": "10.3.10", + "packageName": "glob", + "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" + } + }, + "npm:glob@6.0.4": { + "type": "npm", + "name": "npm:glob@6.0.4", + "data": { + "version": "6.0.4", + "packageName": "glob", + "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "7.2.3", + "packageName": "glob", + "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" + } + }, + "npm:glob@8.1.0": { + "type": "npm", + "name": "npm:glob@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "glob", + "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" + } + }, + "npm:globals@11.12.0": { + "type": "npm", + "name": "npm:globals@11.12.0", + "data": { + "version": "11.12.0", + "packageName": "globals", + "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "13.24.0", + "packageName": "globals", + "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.3", + "packageName": "globalthis", + "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "11.1.0", + "packageName": "globby", + "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" + } + }, + "npm:globby@12.2.0": { + "type": "npm", + "name": "npm:globby@12.2.0", + "data": { + "version": "12.2.0", + "packageName": "globby", + "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" + } + }, + "npm:globby@6.1.0": { + "type": "npm", + "name": "npm:globby@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "globby", + "hash": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.0.1", + "packageName": "gopd", + "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:graphemer": { + "type": "npm", + "name": "npm:graphemer", + "data": { + "version": "1.4.0", + "packageName": "graphemer", + "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" + } + }, + "npm:graphql-tag": { + "type": "npm", + "name": "npm:graphql-tag", + "data": { + "version": "2.12.6", + "packageName": "graphql-tag", + "hash": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==" + } + }, + "npm:graphql": { + "type": "npm", + "name": "npm:graphql", + "data": { + "version": "15.8.0", + "packageName": "graphql", + "hash": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==" + } + }, + "npm:handle-thing": { + "type": "npm", + "name": "npm:handle-thing", + "data": { + "version": "2.0.1", + "packageName": "handle-thing", + "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + } + }, + "npm:has-ansi": { + "type": "npm", + "name": "npm:has-ansi", + "data": { + "version": "2.0.0", + "packageName": "has-ansi", + "hash": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.0.2", + "packageName": "has-bigints", + "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" + } + }, + "npm:has-flag@3.0.0": { + "type": "npm", + "name": "npm:has-flag@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "has-flag", + "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.1", + "packageName": "has-property-descriptors", + "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.0.1", + "packageName": "has-proto", + "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.0.3", + "packageName": "has-symbols", + "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.0", + "packageName": "has-tostringtag", + "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.0", + "packageName": "hasown", + "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:hermes-estree@0.15.0": { + "type": "npm", + "name": "npm:hermes-estree@0.15.0", + "data": { + "version": "0.15.0", + "packageName": "hermes-estree", + "hash": "sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==" + } + }, + "npm:hermes-estree": { + "type": "npm", + "name": "npm:hermes-estree", + "data": { + "version": "0.18.2", + "packageName": "hermes-estree", + "hash": "sha512-KoLsoWXJ5o81nit1wSyEZnWUGy9cBna9iYMZBR7skKh7okYAYKqQ9/OczwpMHn/cH0hKDyblulGsJ7FknlfVxQ==" + } + }, + "npm:hermes-parser@0.15.0": { + "type": "npm", + "name": "npm:hermes-parser@0.15.0", + "data": { + "version": "0.15.0", + "packageName": "hermes-parser", + "hash": "sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==" + } + }, + "npm:hermes-parser": { + "type": "npm", + "name": "npm:hermes-parser", + "data": { + "version": "0.18.2", + "packageName": "hermes-parser", + "hash": "sha512-1eQfvib+VPpgBZ2zYKQhpuOjw1tH+Emuib6QmjkJWJMhyjM8xnXMvA+76o9LhF0zOAJDZgPfQhg43cyXEyl5Ew==" + } + }, + "npm:hermes-profile-transformer": { + "type": "npm", + "name": "npm:hermes-profile-transformer", + "data": { + "version": "0.0.6", + "packageName": "hermes-profile-transformer", + "hash": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==" + } + }, + "npm:hey-listen": { + "type": "npm", + "name": "npm:hey-listen", + "data": { + "version": "1.0.8", + "packageName": "hey-listen", + "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" + } + }, + "npm:hoist-non-react-statics": { + "type": "npm", + "name": "npm:hoist-non-react-statics", + "data": { + "version": "3.3.2", + "packageName": "hoist-non-react-statics", + "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + } + }, + "npm:hosted-git-info": { + "type": "npm", + "name": "npm:hosted-git-info", + "data": { + "version": "3.0.8", + "packageName": "hosted-git-info", + "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" + } + }, + "npm:hpack.js": { + "type": "npm", + "name": "npm:hpack.js", + "data": { + "version": "2.1.6", + "packageName": "hpack.js", + "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.4.0", + "packageName": "html-entities", + "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" + } + }, + "npm:html-escaper": { + "type": "npm", + "name": "npm:html-escaper", + "data": { + "version": "2.0.2", + "packageName": "html-escaper", + "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + } + }, + "npm:html-minifier-terser": { + "type": "npm", + "name": "npm:html-minifier-terser", + "data": { + "version": "6.1.0", + "packageName": "html-minifier-terser", + "hash": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" + } + }, + "npm:html-parse-stringify": { + "type": "npm", + "name": "npm:html-parse-stringify", + "data": { + "version": "3.0.1", + "packageName": "html-parse-stringify", + "hash": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==" + } + }, + "npm:html-webpack-plugin": { + "type": "npm", + "name": "npm:html-webpack-plugin", + "data": { + "version": "5.6.0", + "packageName": "html-webpack-plugin", + "hash": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==" + } + }, + "npm:htmlparser2": { + "type": "npm", + "name": "npm:htmlparser2", + "data": { + "version": "6.1.0", + "packageName": "htmlparser2", + "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" + } + }, + "npm:http-deceiver": { + "type": "npm", + "name": "npm:http-deceiver", + "data": { + "version": "1.2.7", + "packageName": "http-deceiver", + "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.0", + "packageName": "http-errors", + "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" + } + }, + "npm:http-errors@1.6.3": { + "type": "npm", + "name": "npm:http-errors@1.6.3", + "data": { + "version": "1.6.3", + "packageName": "http-errors", + "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" + } + }, + "npm:http-parser-js": { + "type": "npm", + "name": "npm:http-parser-js", + "data": { + "version": "0.5.8", + "packageName": "http-parser-js", + "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "5.0.0", + "packageName": "http-proxy-agent", + "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" + } + }, + "npm:http-proxy-middleware": { + "type": "npm", + "name": "npm:http-proxy-middleware", + "data": { + "version": "2.0.6", + "packageName": "http-proxy-middleware", + "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "2.1.0", + "packageName": "human-signals", + "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" + } + }, + "npm:human-signals@4.3.1": { + "type": "npm", + "name": "npm:human-signals@4.3.1", + "data": { + "version": "4.3.1", + "packageName": "human-signals", + "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" + } + }, + "npm:husky": { + "type": "npm", + "name": "npm:husky", + "data": { + "version": "8.0.3", + "packageName": "husky", + "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" + } + }, + "npm:hyphenate-style-name": { + "type": "npm", + "name": "npm:hyphenate-style-name", + "data": { + "version": "1.0.4", + "packageName": "hyphenate-style-name", + "hash": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + } + }, + "npm:i18next": { + "type": "npm", + "name": "npm:i18next", + "data": { + "version": "23.7.20", + "packageName": "i18next", + "hash": "sha512-6qykxPpFPuzxC/VlVCXn3JxkHY5VCxf1w+/8Hz+Wxu4ZvfB+m3sbVruJ3C/rDWlE0Z1GCZTR6sBHIx7KGp0yXA==" + } + }, + "npm:iconv-lite@0.4.24": { + "type": "npm", + "name": "npm:iconv-lite@0.4.24", + "data": { + "version": "0.4.24", + "packageName": "iconv-lite", + "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:icss-utils": { + "type": "npm", + "name": "npm:icss-utils", + "data": { + "version": "5.1.0", + "packageName": "icss-utils", + "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.0", + "packageName": "ignore", + "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" + } + }, + "npm:image-size": { + "type": "npm", + "name": "npm:image-size", + "data": { + "version": "1.1.1", + "packageName": "image-size", + "hash": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==" + } + }, + "npm:immutable": { + "type": "npm", + "name": "npm:immutable", + "data": { + "version": "4.3.5", + "packageName": "immutable", + "hash": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==" + } + }, + "npm:import-fresh@2.0.0": { + "type": "npm", + "name": "npm:import-fresh@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "import-fresh", + "hash": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.0", + "packageName": "import-fresh", + "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + } + }, + "npm:import-local": { + "type": "npm", + "name": "npm:import-local", + "data": { + "version": "3.1.0", + "packageName": "import-local", + "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:indent-string": { + "type": "npm", + "name": "npm:indent-string", + "data": { + "version": "4.0.0", + "packageName": "indent-string", + "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + }, + "npm:infer-owner": { + "type": "npm", + "name": "npm:infer-owner", + "data": { + "version": "1.0.4", + "packageName": "infer-owner", + "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + } + }, + "npm:inflected": { + "type": "npm", + "name": "npm:inflected", + "data": { + "version": "2.1.0", + "packageName": "inflected", + "hash": "sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w==" + } + }, + "npm:inflight": { + "type": "npm", + "name": "npm:inflight", + "data": { + "version": "1.0.6", + "packageName": "inflight", + "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:inherits@2.0.3": { + "type": "npm", + "name": "npm:inherits@2.0.3", + "data": { + "version": "2.0.3", + "packageName": "inherits", + "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:inline-style-prefixer": { + "type": "npm", + "name": "npm:inline-style-prefixer", + "data": { + "version": "6.0.4", + "packageName": "inline-style-prefixer", + "hash": "sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==" + } + }, + "npm:internal-ip": { + "type": "npm", + "name": "npm:internal-ip", + "data": { + "version": "4.3.0", + "packageName": "internal-ip", + "hash": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.0.6", + "packageName": "internal-slot", + "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" + } + }, + "npm:invariant": { + "type": "npm", + "name": "npm:invariant", + "data": { + "version": "2.2.4", + "packageName": "invariant", + "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" + } + }, + "npm:ip-regex": { + "type": "npm", + "name": "npm:ip-regex", + "data": { + "version": "2.1.0", + "packageName": "ip-regex", + "hash": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==" + } + }, + "npm:ip": { + "type": "npm", + "name": "npm:ip", + "data": { + "version": "1.1.8", + "packageName": "ip", + "hash": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js@2.1.0": { + "type": "npm", + "name": "npm:ipaddr.js@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "ipaddr.js", + "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" + } + }, + "npm:is-arguments": { + "type": "npm", + "name": "npm:is-arguments", + "data": { + "version": "1.1.1", + "packageName": "is-arguments", + "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.2", + "packageName": "is-array-buffer", + "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-arrayish@0.3.2": { + "type": "npm", + "name": "npm:is-arrayish@0.3.2", + "data": { + "version": "0.3.2", + "packageName": "is-arrayish", + "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + }, + "npm:is-async-function": { + "type": "npm", + "name": "npm:is-async-function", + "data": { + "version": "2.0.0", + "packageName": "is-async-function", + "hash": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.0.4", + "packageName": "is-bigint", + "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" + } + }, + "npm:is-binary-path": { + "type": "npm", + "name": "npm:is-binary-path", + "data": { + "version": "2.1.0", + "packageName": "is-binary-path", + "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.1.2", + "packageName": "is-boolean-object", + "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" + } + }, + "npm:is-buffer": { + "type": "npm", + "name": "npm:is-buffer", + "data": { + "version": "1.1.6", + "packageName": "is-buffer", + "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.13.1", + "packageName": "is-core-module", + "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.0.5", + "packageName": "is-date-object", + "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" + } + }, + "npm:is-directory": { + "type": "npm", + "name": "npm:is-directory", + "data": { + "version": "0.3.1", + "packageName": "is-directory", + "hash": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extglob@1.0.0": { + "type": "npm", + "name": "npm:is-extglob@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "is-extglob", + "hash": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-finalizationregistry": { + "type": "npm", + "name": "npm:is-finalizationregistry", + "data": { + "version": "1.0.2", + "packageName": "is-finalizationregistry", + "hash": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==" + } + }, + "npm:is-fullwidth-code-point@2.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-fullwidth-code-point@4.0.0": { + "type": "npm", + "name": "npm:is-fullwidth-code-point@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" + } + }, + "npm:is-generator-fn": { + "type": "npm", + "name": "npm:is-generator-fn", + "data": { + "version": "2.1.0", + "packageName": "is-generator-fn", + "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + } + }, + "npm:is-generator-function": { + "type": "npm", + "name": "npm:is-generator-function", + "data": { + "version": "1.0.10", + "packageName": "is-generator-function", + "hash": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==" + } + }, + "npm:is-glob@2.0.1": { + "type": "npm", + "name": "npm:is-glob@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "is-glob", + "hash": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-invalid-path": { + "type": "npm", + "name": "npm:is-invalid-path", + "data": { + "version": "0.1.0", + "packageName": "is-invalid-path", + "hash": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==" + } + }, + "npm:is-map": { + "type": "npm", + "name": "npm:is-map", + "data": { + "version": "2.0.2", + "packageName": "is-map", + "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" + } + }, + "npm:is-nan": { + "type": "npm", + "name": "npm:is-nan", + "data": { + "version": "1.3.2", + "packageName": "is-nan", + "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.2", + "packageName": "is-negative-zero", + "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.0.7", + "packageName": "is-number-object", + "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-path-cwd": { + "type": "npm", + "name": "npm:is-path-cwd", + "data": { + "version": "2.2.0", + "packageName": "is-path-cwd", + "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + } + }, + "npm:is-path-in-cwd": { + "type": "npm", + "name": "npm:is-path-in-cwd", + "data": { + "version": "2.1.0", + "packageName": "is-path-in-cwd", + "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" + } + }, + "npm:is-path-inside@2.1.0": { + "type": "npm", + "name": "npm:is-path-inside@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "is-path-inside", + "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "3.0.3", + "packageName": "is-path-inside", + "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + } + }, + "npm:is-plain-obj@1.1.0": { + "type": "npm", + "name": "npm:is-plain-obj@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "2.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" + } + }, + "npm:is-plain-obj@3.0.0": { + "type": "npm", + "name": "npm:is-plain-obj@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-plain-obj", + "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + } + }, + "npm:is-plain-object": { + "type": "npm", + "name": "npm:is-plain-object", + "data": { + "version": "2.0.4", + "packageName": "is-plain-object", + "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + } + }, + "npm:is-potential-custom-element-name": { + "type": "npm", + "name": "npm:is-potential-custom-element-name", + "data": { + "version": "1.0.1", + "packageName": "is-potential-custom-element-name", + "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.1.4", + "packageName": "is-regex", + "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" + } + }, + "npm:is-set": { + "type": "npm", + "name": "npm:is-set", + "data": { + "version": "2.0.2", + "packageName": "is-set", + "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.2", + "packageName": "is-shared-array-buffer", + "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" + } + }, + "npm:is-stream@1.1.0": { + "type": "npm", + "name": "npm:is-stream@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-stream", + "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "2.0.1", + "packageName": "is-stream", + "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + } + }, + "npm:is-stream@3.0.0": { + "type": "npm", + "name": "npm:is-stream@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "is-stream", + "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.0.7", + "packageName": "is-string", + "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.0.4", + "packageName": "is-symbol", + "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.12", + "packageName": "is-typed-array", + "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-valid-path": { + "type": "npm", + "name": "npm:is-valid-path", + "data": { + "version": "0.1.1", + "packageName": "is-valid-path", + "hash": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==" + } + }, + "npm:is-weakmap": { + "type": "npm", + "name": "npm:is-weakmap", + "data": { + "version": "2.0.1", + "packageName": "is-weakmap", + "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.0.2", + "packageName": "is-weakref", + "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" + } + }, + "npm:is-weakset": { + "type": "npm", + "name": "npm:is-weakset", + "data": { + "version": "2.0.2", + "packageName": "is-weakset", + "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" + } + }, + "npm:is-wsl@1.1.0": { + "type": "npm", + "name": "npm:is-wsl@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "is-wsl", + "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isarray@1.0.0": { + "type": "npm", + "name": "npm:isarray@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "isarray", + "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isobject": { + "type": "npm", + "name": "npm:isobject", + "data": { + "version": "3.0.1", + "packageName": "isobject", + "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + } + }, + "npm:istanbul-lib-coverage": { + "type": "npm", + "name": "npm:istanbul-lib-coverage", + "data": { + "version": "3.2.2", + "packageName": "istanbul-lib-coverage", + "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" + } + }, + "npm:istanbul-lib-instrument@5.2.1": { + "type": "npm", + "name": "npm:istanbul-lib-instrument@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" + } + }, + "npm:istanbul-lib-instrument": { + "type": "npm", + "name": "npm:istanbul-lib-instrument", + "data": { + "version": "6.0.1", + "packageName": "istanbul-lib-instrument", + "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" + } + }, + "npm:istanbul-lib-report": { + "type": "npm", + "name": "npm:istanbul-lib-report", + "data": { + "version": "3.0.1", + "packageName": "istanbul-lib-report", + "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" + } + }, + "npm:istanbul-lib-source-maps": { + "type": "npm", + "name": "npm:istanbul-lib-source-maps", + "data": { + "version": "4.0.1", + "packageName": "istanbul-lib-source-maps", + "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" + } + }, + "npm:istanbul-reports": { + "type": "npm", + "name": "npm:istanbul-reports", + "data": { + "version": "3.1.6", + "packageName": "istanbul-reports", + "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" + } + }, + "npm:iterator.prototype": { + "type": "npm", + "name": "npm:iterator.prototype", + "data": { + "version": "1.1.2", + "packageName": "iterator.prototype", + "hash": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "2.3.6", + "packageName": "jackspeak", + "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" + } + }, + "npm:jest-changed-files": { + "type": "npm", + "name": "npm:jest-changed-files", + "data": { + "version": "29.7.0", + "packageName": "jest-changed-files", + "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" + } + }, + "npm:jest-circus": { + "type": "npm", + "name": "npm:jest-circus", + "data": { + "version": "29.7.0", + "packageName": "jest-circus", + "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" + } + }, + "npm:jest-cli": { + "type": "npm", + "name": "npm:jest-cli", + "data": { + "version": "29.7.0", + "packageName": "jest-cli", + "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" + } + }, + "npm:jest-config": { + "type": "npm", + "name": "npm:jest-config", + "data": { + "version": "29.7.0", + "packageName": "jest-config", + "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "29.7.0", + "packageName": "jest-diff", + "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" + } + }, + "npm:jest-docblock": { + "type": "npm", + "name": "npm:jest-docblock", + "data": { + "version": "29.7.0", + "packageName": "jest-docblock", + "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" + } + }, + "npm:jest-each": { + "type": "npm", + "name": "npm:jest-each", + "data": { + "version": "29.7.0", + "packageName": "jest-each", + "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" + } + }, + "npm:jest-environment-jsdom": { + "type": "npm", + "name": "npm:jest-environment-jsdom", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-jsdom", + "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" + } + }, + "npm:jest-environment-node": { + "type": "npm", + "name": "npm:jest-environment-node", + "data": { + "version": "29.7.0", + "packageName": "jest-environment-node", + "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" + } + }, + "npm:jest-expo": { + "type": "npm", + "name": "npm:jest-expo", + "data": { + "version": "50.0.1", + "packageName": "jest-expo", + "hash": "sha512-osvA63UDLJ/v7MG9UHjU7WJ0oZ0Krq9UhXxm2s6rdOlnt85ARocyMU57RC0T0yzPN47C9Ref45sEeOIxoV4Mzg==" + } + }, + "npm:jest-get-type": { + "type": "npm", + "name": "npm:jest-get-type", + "data": { + "version": "29.6.3", + "packageName": "jest-get-type", + "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" + } + }, + "npm:jest-haste-map": { + "type": "npm", + "name": "npm:jest-haste-map", + "data": { + "version": "29.7.0", + "packageName": "jest-haste-map", + "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" + } + }, + "npm:jest-leak-detector": { + "type": "npm", + "name": "npm:jest-leak-detector", + "data": { + "version": "29.7.0", + "packageName": "jest-leak-detector", + "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" + } + }, + "npm:jest-matcher-utils": { + "type": "npm", + "name": "npm:jest-matcher-utils", + "data": { + "version": "29.7.0", + "packageName": "jest-matcher-utils", + "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" + } + }, + "npm:jest-message-util": { + "type": "npm", + "name": "npm:jest-message-util", + "data": { + "version": "29.7.0", + "packageName": "jest-message-util", + "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" + } + }, + "npm:jest-mock": { + "type": "npm", + "name": "npm:jest-mock", + "data": { + "version": "29.7.0", + "packageName": "jest-mock", + "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" + } + }, + "npm:jest-pnp-resolver": { + "type": "npm", + "name": "npm:jest-pnp-resolver", + "data": { + "version": "1.2.3", + "packageName": "jest-pnp-resolver", + "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" + } + }, + "npm:jest-regex-util": { + "type": "npm", + "name": "npm:jest-regex-util", + "data": { + "version": "29.6.3", + "packageName": "jest-regex-util", + "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" + } + }, + "npm:jest-resolve-dependencies": { + "type": "npm", + "name": "npm:jest-resolve-dependencies", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve-dependencies", + "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" + } + }, + "npm:jest-resolve": { + "type": "npm", + "name": "npm:jest-resolve", + "data": { + "version": "29.7.0", + "packageName": "jest-resolve", + "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" + } + }, + "npm:jest-runner": { + "type": "npm", + "name": "npm:jest-runner", + "data": { + "version": "29.7.0", + "packageName": "jest-runner", + "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" + } + }, + "npm:jest-runtime": { + "type": "npm", + "name": "npm:jest-runtime", + "data": { + "version": "29.7.0", + "packageName": "jest-runtime", + "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" + } + }, + "npm:jest-snapshot": { + "type": "npm", + "name": "npm:jest-snapshot", + "data": { + "version": "29.7.0", + "packageName": "jest-snapshot", + "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" + } + }, + "npm:jest-util": { + "type": "npm", + "name": "npm:jest-util", + "data": { + "version": "29.7.0", + "packageName": "jest-util", + "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" + } + }, + "npm:jest-validate": { + "type": "npm", + "name": "npm:jest-validate", + "data": { + "version": "29.7.0", + "packageName": "jest-validate", + "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" + } + }, + "npm:jest-watch-select-projects": { + "type": "npm", + "name": "npm:jest-watch-select-projects", + "data": { + "version": "2.0.0", + "packageName": "jest-watch-select-projects", + "hash": "sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==" + } + }, + "npm:jest-watch-typeahead": { + "type": "npm", + "name": "npm:jest-watch-typeahead", + "data": { + "version": "2.2.1", + "packageName": "jest-watch-typeahead", + "hash": "sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==" + } + }, + "npm:jest-watcher": { + "type": "npm", + "name": "npm:jest-watcher", + "data": { + "version": "29.7.0", + "packageName": "jest-watcher", + "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" + } + }, + "npm:jest-worker@27.5.1": { + "type": "npm", + "name": "npm:jest-worker@27.5.1", + "data": { + "version": "27.5.1", + "packageName": "jest-worker", + "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" + } + }, + "npm:jest-worker": { + "type": "npm", + "name": "npm:jest-worker", + "data": { + "version": "29.7.0", + "packageName": "jest-worker", + "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" + } + }, + "npm:jest": { + "type": "npm", + "name": "npm:jest", + "data": { + "version": "29.7.0", + "packageName": "jest", + "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" + } + }, + "npm:jimp-compact": { + "type": "npm", + "name": "npm:jimp-compact", + "data": { + "version": "0.16.1", + "packageName": "jimp-compact", + "hash": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==" + } + }, + "npm:joi": { + "type": "npm", + "name": "npm:joi", + "data": { + "version": "17.12.0", + "packageName": "joi", + "hash": "sha512-HSLsmSmXz+PV9PYoi3p7cgIbj06WnEBNT28n+bbBNcPZXZFqCzzvGqpTBPujx/Z0nh1+KNQPDrNgdmQ8dq0qYw==" + } + }, + "npm:join-component": { + "type": "npm", + "name": "npm:join-component", + "data": { + "version": "1.1.0", + "packageName": "join-component", + "hash": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==" + } + }, + "npm:jotai": { + "type": "npm", + "name": "npm:jotai", + "data": { + "version": "2.4.3", + "packageName": "jotai", + "hash": "sha512-CSAHX9LqWG5WCrU8OgBoZbBJ+Bo9rQU0mPusEF4e0CZ/SNFgurG26vb3UpgvCSJZgYVcUQNiUBM5q86PA8rstQ==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "3.14.1", + "packageName": "js-yaml", + "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + } + }, + "npm:js-yaml@4.1.0": { + "type": "npm", + "name": "npm:js-yaml@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "js-yaml", + "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" + } + }, + "npm:jsc-android": { + "type": "npm", + "name": "npm:jsc-android", + "data": { + "version": "250231.0.0", + "packageName": "jsc-android", + "hash": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==" + } + }, + "npm:jsc-safe-url": { + "type": "npm", + "name": "npm:jsc-safe-url", + "data": { + "version": "0.2.4", + "packageName": "jsc-safe-url", + "hash": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==" + } + }, + "npm:jscodeshift": { + "type": "npm", + "name": "npm:jscodeshift", + "data": { + "version": "0.14.0", + "packageName": "jscodeshift", + "hash": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==" + } + }, + "npm:jsdom": { + "type": "npm", + "name": "npm:jsdom", + "data": { + "version": "20.0.3", + "packageName": "jsdom", + "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "2.5.2", + "packageName": "jsesc", + "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + }, + "npm:jsesc@0.5.0": { + "type": "npm", + "name": "npm:jsesc@0.5.0", + "data": { + "version": "0.5.0", + "packageName": "jsesc", + "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-parse-better-errors": { + "type": "npm", + "name": "npm:json-parse-better-errors", + "data": { + "version": "1.0.2", + "packageName": "json-parse-better-errors", + "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-schema-deref-sync": { + "type": "npm", + "name": "npm:json-schema-deref-sync", + "data": { + "version": "0.13.0", + "packageName": "json-schema-deref-sync", + "hash": "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==" + } + }, + "npm:json-schema-traverse@0.4.1": { + "type": "npm", + "name": "npm:json-schema-traverse@0.4.1", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json5@1.0.2": { + "type": "npm", + "name": "npm:json5@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "json5", + "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonfile@4.0.0": { + "type": "npm", + "name": "npm:jsonfile@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "jsonfile", + "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" + } + }, + "npm:jsonfile": { + "type": "npm", + "name": "npm:jsonfile", + "data": { + "version": "6.1.0", + "packageName": "jsonfile", + "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.3.5", + "packageName": "jsx-ast-utils", + "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kind-of": { + "type": "npm", + "name": "npm:kind-of", + "data": { + "version": "6.0.3", + "packageName": "kind-of", + "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + }, + "npm:klaw-sync": { + "type": "npm", + "name": "npm:klaw-sync", + "data": { + "version": "6.0.0", + "packageName": "klaw-sync", + "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "3.0.3", + "packageName": "kleur", + "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + } + }, + "npm:launch-editor": { + "type": "npm", + "name": "npm:launch-editor", + "data": { + "version": "2.6.1", + "packageName": "launch-editor", + "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" + } + }, + "npm:leven": { + "type": "npm", + "name": "npm:leven", + "data": { + "version": "3.1.0", + "packageName": "leven", + "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:lighthouse-logger": { + "type": "npm", + "name": "npm:lighthouse-logger", + "data": { + "version": "1.4.2", + "packageName": "lighthouse-logger", + "hash": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==" + } + }, + "npm:lightningcss-darwin-arm64": { + "type": "npm", + "name": "npm:lightningcss-darwin-arm64", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-darwin-arm64", + "hash": "sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==" + } + }, + "npm:lightningcss-darwin-x64@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-darwin-x64@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-darwin-x64", + "hash": "sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==" + } + }, + "npm:lightningcss-linux-arm-gnueabihf@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-arm-gnueabihf", + "hash": "sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==" + } + }, + "npm:lightningcss-linux-arm64-gnu@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-gnu@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-arm64-gnu", + "hash": "sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==" + } + }, + "npm:lightningcss-linux-arm64-musl@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-musl@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-arm64-musl", + "hash": "sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==" + } + }, + "npm:lightningcss-linux-x64-gnu@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-gnu@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-x64-gnu", + "hash": "sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==" + } + }, + "npm:lightningcss-linux-x64-musl@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-musl@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-linux-x64-musl", + "hash": "sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==" + } + }, + "npm:lightningcss-win32-x64-msvc@1.19.0": { + "type": "npm", + "name": "npm:lightningcss-win32-x64-msvc@1.19.0", + "data": { + "version": "1.19.0", + "packageName": "lightningcss-win32-x64-msvc", + "hash": "sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==" + } + }, + "npm:lightningcss": { + "type": "npm", + "name": "npm:lightningcss", + "data": { + "version": "1.19.0", + "packageName": "lightningcss", + "hash": "sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lint-staged": { + "type": "npm", + "name": "npm:lint-staged", + "data": { + "version": "13.3.0", + "packageName": "lint-staged", + "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" + } + }, + "npm:listr2": { + "type": "npm", + "name": "npm:listr2", + "data": { + "version": "6.6.1", + "packageName": "listr2", + "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" + } + }, + "npm:loader-runner": { + "type": "npm", + "name": "npm:loader-runner", + "data": { + "version": "4.3.0", + "packageName": "loader-runner", + "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + } + }, + "npm:loader-utils": { + "type": "npm", + "name": "npm:loader-utils", + "data": { + "version": "2.0.4", + "packageName": "loader-utils", + "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:locate-path@5.0.0": { + "type": "npm", + "name": "npm:locate-path@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "locate-path", + "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:locate-path@7.2.0": { + "type": "npm", + "name": "npm:locate-path@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "locate-path", + "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" + } + }, + "npm:lodash.debounce": { + "type": "npm", + "name": "npm:lodash.debounce", + "data": { + "version": "4.0.8", + "packageName": "lodash.debounce", + "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.throttle": { + "type": "npm", + "name": "npm:lodash.throttle", + "data": { + "version": "4.1.1", + "packageName": "lodash.throttle", + "hash": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:log-symbols@2.2.0": { + "type": "npm", + "name": "npm:log-symbols@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "log-symbols", + "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:log-update": { + "type": "npm", + "name": "npm:log-update", + "data": { + "version": "5.0.1", + "packageName": "log-update", + "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" + } + }, + "npm:logkitty": { + "type": "npm", + "name": "npm:logkitty", + "data": { + "version": "0.7.1", + "packageName": "logkitty", + "hash": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:lower-case": { + "type": "npm", + "name": "npm:lower-case", + "data": { + "version": "2.0.2", + "packageName": "lower-case", + "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + } + }, + "npm:lru-cache@5.1.1": { + "type": "npm", + "name": "npm:lru-cache@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "6.0.0", + "packageName": "lru-cache", + "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + } + }, + "npm:lru-cache@10.2.0": { + "type": "npm", + "name": "npm:lru-cache@10.2.0", + "data": { + "version": "10.2.0", + "packageName": "lru-cache", + "hash": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" + } + }, + "npm:make-dir": { + "type": "npm", + "name": "npm:make-dir", + "data": { + "version": "2.1.0", + "packageName": "make-dir", + "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + } + }, + "npm:make-dir@3.1.0": { + "type": "npm", + "name": "npm:make-dir@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "make-dir", + "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + } + }, + "npm:make-dir@4.0.0": { + "type": "npm", + "name": "npm:make-dir@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "make-dir", + "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" + } + }, + "npm:makeerror": { + "type": "npm", + "name": "npm:makeerror", + "data": { + "version": "1.0.12", + "packageName": "makeerror", + "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" + } + }, + "npm:marky": { + "type": "npm", + "name": "npm:marky", + "data": { + "version": "1.2.5", + "packageName": "marky", + "hash": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" + } + }, + "npm:md5-file": { + "type": "npm", + "name": "npm:md5-file", + "data": { + "version": "3.2.3", + "packageName": "md5-file", + "hash": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==" + } + }, + "npm:md5": { + "type": "npm", + "name": "npm:md5", + "data": { + "version": "2.3.0", + "packageName": "md5", + "hash": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==" + } + }, + "npm:md5@2.2.1": { + "type": "npm", + "name": "npm:md5@2.2.1", + "data": { + "version": "2.2.1", + "packageName": "md5", + "hash": "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==" + } + }, + "npm:md5hex": { + "type": "npm", + "name": "npm:md5hex", + "data": { + "version": "1.0.0", + "packageName": "md5hex", + "hash": "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.14", + "packageName": "mdn-data", + "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "0.3.0", + "packageName": "media-typer", + "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + } + }, + "npm:memfs": { + "type": "npm", + "name": "npm:memfs", + "data": { + "version": "3.6.0", + "packageName": "memfs", + "hash": "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==" + } + }, + "npm:memoize-one": { + "type": "npm", + "name": "npm:memoize-one", + "data": { + "version": "5.2.1", + "packageName": "memoize-one", + "hash": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" + } + }, + "npm:memoize-one@6.0.0": { + "type": "npm", + "name": "npm:memoize-one@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "memoize-one", + "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + } + }, + "npm:memory-cache": { + "type": "npm", + "name": "npm:memory-cache", + "data": { + "version": "0.2.0", + "packageName": "memory-cache", + "hash": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "1.0.1", + "packageName": "merge-descriptors", + "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + } + }, + "npm:merge-options": { + "type": "npm", + "name": "npm:merge-options", + "data": { + "version": "3.0.4", + "packageName": "merge-options", + "hash": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==" + } + }, + "npm:merge-stream": { + "type": "npm", + "name": "npm:merge-stream", + "data": { + "version": "2.0.0", + "packageName": "merge-stream", + "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:methods": { + "type": "npm", + "name": "npm:methods", + "data": { + "version": "1.1.2", + "packageName": "methods", + "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + } + }, + "npm:metro-babel-transformer": { + "type": "npm", + "name": "npm:metro-babel-transformer", + "data": { + "version": "0.80.5", + "packageName": "metro-babel-transformer", + "hash": "sha512-sxH6hcWCorhTbk4kaShCWsadzu99WBL4Nvq4m/sDTbp32//iGuxtAnUK+ZV+6IEygr2u9Z0/4XoZ8Sbcl71MpA==" + } + }, + "npm:metro-cache-key": { + "type": "npm", + "name": "npm:metro-cache-key", + "data": { + "version": "0.80.5", + "packageName": "metro-cache-key", + "hash": "sha512-fr3QLZUarsB3tRbVcmr34kCBsTHk0Sh9JXGvBY/w3b2lbre+Lq5gtgLyFElHPecGF7o4z1eK9r3ubxtScHWcbA==" + } + }, + "npm:metro-cache": { + "type": "npm", + "name": "npm:metro-cache", + "data": { + "version": "0.80.5", + "packageName": "metro-cache", + "hash": "sha512-2u+dQ4PZwmC7eZo9uMBNhQQMig9f+w4QWBZwXCdVy/RYOHM0eObgGdMEOwODo73uxie82T9lWzxr3aZOZ+Nqtw==" + } + }, + "npm:metro-config": { + "type": "npm", + "name": "npm:metro-config", + "data": { + "version": "0.80.5", + "packageName": "metro-config", + "hash": "sha512-elqo/lwvF+VjZ1OPyvmW/9hSiGlmcqu+rQvDKw5F5WMX48ZC+ySTD1WcaD7e97pkgAlJHVYqZ98FCjRAYOAFRQ==" + } + }, + "npm:metro-core": { + "type": "npm", + "name": "npm:metro-core", + "data": { + "version": "0.80.5", + "packageName": "metro-core", + "hash": "sha512-vkLuaBhnZxTVpaZO8ZJVEHzjaqSXpOdpAiztSZ+NDaYM6jEFgle3/XIbLW91jTSf2+T8Pj5yB1G7KuOX+BcVwg==" + } + }, + "npm:metro-file-map": { + "type": "npm", + "name": "npm:metro-file-map", + "data": { + "version": "0.80.5", + "packageName": "metro-file-map", + "hash": "sha512-bKCvJ05drjq6QhQxnDUt3I8x7bTcHo3IIKVobEr14BK++nmxFGn/BmFLRzVBlghM6an3gqwpNEYxS5qNc+VKcg==" + } + }, + "npm:metro-minify-terser": { + "type": "npm", + "name": "npm:metro-minify-terser", + "data": { + "version": "0.80.5", + "packageName": "metro-minify-terser", + "hash": "sha512-S7oZLLcab6YXUT6jYFX/ZDMN7Fq6xBGGAG8liMFU1UljX6cTcEC2u+UIafYgCLrdVexp/+ClxrIetVPZ5LtL/g==" + } + }, + "npm:metro-resolver@0.80.5": { + "type": "npm", + "name": "npm:metro-resolver@0.80.5", + "data": { + "version": "0.80.5", + "packageName": "metro-resolver", + "hash": "sha512-haJ/Hveio3zv/Fr4eXVdKzjUeHHDogYok7OpRqPSXGhTXisNXB+sLN7CpcUrCddFRUDLnVaqQOYwhYsFndgUwA==" + } + }, + "npm:metro-runtime": { + "type": "npm", + "name": "npm:metro-runtime", + "data": { + "version": "0.80.5", + "packageName": "metro-runtime", + "hash": "sha512-L0syTWJUdWzfUmKgkScr6fSBVTh6QDr8eKEkRtn40OBd8LPagrJGySBboWSgbyn9eIb4ayW3Y347HxgXBSAjmg==" + } + }, + "npm:metro-source-map": { + "type": "npm", + "name": "npm:metro-source-map", + "data": { + "version": "0.80.5", + "packageName": "metro-source-map", + "hash": "sha512-DwSF4l03mKPNqCtyQ6K23I43qzU1BViAXnuH81eYWdHglP+sDlPpY+/7rUahXEo6qXEHXfAJgVoo1sirbXbmsQ==" + } + }, + "npm:metro-symbolicate": { + "type": "npm", + "name": "npm:metro-symbolicate", + "data": { + "version": "0.80.5", + "packageName": "metro-symbolicate", + "hash": "sha512-IsM4mTYvmo9JvIqwEkCZ5+YeDVPST78Q17ZgljfLdHLSpIivOHp9oVoiwQ/YGbLx0xRHRIS/tKiXueWBnj3UWA==" + } + }, + "npm:metro-transform-plugins": { + "type": "npm", + "name": "npm:metro-transform-plugins", + "data": { + "version": "0.80.5", + "packageName": "metro-transform-plugins", + "hash": "sha512-7IdlTqK/k5+qE3RvIU5QdCJUPk4tHWEqgVuYZu8exeW+s6qOJ66hGIJjXY/P7ccucqF+D4nsbAAW5unkoUdS6g==" + } + }, + "npm:metro-transform-worker": { + "type": "npm", + "name": "npm:metro-transform-worker", + "data": { + "version": "0.80.5", + "packageName": "metro-transform-worker", + "hash": "sha512-Q1oM7hfP+RBgAtzRFBDjPhArELUJF8iRCZ8OidqCpYzQJVGuJZ7InSnIf3hn1JyqiUQwv2f1LXBO78i2rAjzyA==" + } + }, + "npm:metro": { + "type": "npm", + "name": "npm:metro", + "data": { + "version": "0.80.5", + "packageName": "metro", + "hash": "sha512-OE/CGbOgbi8BlTN1QqJgKOBaC27dS0JBQw473JcivrpgVnqIsluROA7AavEaTVUrB9wPUZvoNVDROn5uiM2jfw==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.5", + "packageName": "micromatch", + "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime@2.6.0": { + "type": "npm", + "name": "npm:mime@2.6.0", + "data": { + "version": "2.6.0", + "packageName": "mime", + "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" + } + }, + "npm:mimic-fn@1.2.0": { + "type": "npm", + "name": "npm:mimic-fn@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "mimic-fn", + "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:mimic-fn@4.0.0": { + "type": "npm", + "name": "npm:mimic-fn@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "mimic-fn", + "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" + } + }, + "npm:min-indent": { + "type": "npm", + "name": "npm:min-indent", + "data": { + "version": "1.0.1", + "packageName": "min-indent", + "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + } + }, + "npm:mini-css-extract-plugin": { + "type": "npm", + "name": "npm:mini-css-extract-plugin", + "data": { + "version": "2.7.7", + "packageName": "mini-css-extract-plugin", + "hash": "sha512-+0n11YGyRavUR3IlaOzJ0/4Il1avMvJ1VJfhWfCn24ITQXhRr1gghbhhrda6tgtNcpZaWKdSuwKq20Jb7fnlyw==" + } + }, + "npm:minimalistic-assert": { + "type": "npm", + "name": "npm:minimalistic-assert", + "data": { + "version": "1.0.1", + "packageName": "minimalistic-assert", + "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.2", + "packageName": "minimatch", + "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" + } + }, + "npm:minimatch@9.0.3": { + "type": "npm", + "name": "npm:minimatch@9.0.3", + "data": { + "version": "9.0.3", + "packageName": "minimatch", + "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" + } + }, + "npm:minimatch@5.1.6": { + "type": "npm", + "name": "npm:minimatch@5.1.6", + "data": { + "version": "5.1.6", + "packageName": "minimatch", + "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "1.0.2", + "packageName": "minipass-collect", + "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "3.3.6", + "packageName": "minipass", + "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" + } + }, + "npm:minipass@5.0.0": { + "type": "npm", + "name": "npm:minipass@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "minipass", + "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" + } + }, + "npm:minipass@7.0.4": { + "type": "npm", + "name": "npm:minipass@7.0.4", + "data": { + "version": "7.0.4", + "packageName": "minipass", + "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "2.1.2", + "packageName": "minizlib", + "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + } + }, + "npm:miragejs": { + "type": "npm", + "name": "npm:miragejs", + "data": { + "version": "0.1.48", + "packageName": "miragejs", + "hash": "sha512-MGZAq0Q3OuRYgZKvlB69z4gLN4G3PvgC4A2zhkCXCXrLD5wm2cCnwNB59xOBVA+srZ0zEes6u+VylcPIkB4SqA==" + } + }, + "npm:mitt": { + "type": "npm", + "name": "npm:mitt", + "data": { + "version": "3.0.1", + "packageName": "mitt", + "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" + } + }, + "npm:mkdirp": { + "type": "npm", + "name": "npm:mkdirp", + "data": { + "version": "0.5.6", + "packageName": "mkdirp", + "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" + } + }, + "npm:mkdirp@1.0.4": { + "type": "npm", + "name": "npm:mkdirp@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "mkdirp", + "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + }, + "npm:moti": { + "type": "npm", + "name": "npm:moti", + "data": { + "version": "0.25.4", + "packageName": "moti", + "hash": "sha512-UiH0WcWzUYlUmo8Y1F+iyVW+qVVZ3YkXO3Q/gQUZzOhje6+Q0MdllYfqKW2m5IhFs+Vxt2i+osjvWBxXKK2yOw==" + } + }, + "npm:mri": { + "type": "npm", + "name": "npm:mri", + "data": { + "version": "1.2.0", + "packageName": "mri", + "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" + } + }, + "npm:mrmime": { + "type": "npm", + "name": "npm:mrmime", + "data": { + "version": "1.0.1", + "packageName": "mrmime", + "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" + } + }, + "npm:ms@2.0.0": { + "type": "npm", + "name": "npm:ms@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "ms", + "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + }, + "npm:ms@2.1.2": { + "type": "npm", + "name": "npm:ms@2.1.2", + "data": { + "version": "2.1.2", + "packageName": "ms", + "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:multicast-dns": { + "type": "npm", + "name": "npm:multicast-dns", + "data": { + "version": "7.2.5", + "packageName": "multicast-dns", + "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" + } + }, + "npm:mv": { + "type": "npm", + "name": "npm:mv", + "data": { + "version": "2.1.1", + "packageName": "mv", + "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" + } + }, + "npm:mz": { + "type": "npm", + "name": "npm:mz", + "data": { + "version": "2.7.0", + "packageName": "mz", + "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.7", + "packageName": "nanoid", + "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" + } + }, + "npm:natural-compare-lite": { + "type": "npm", + "name": "npm:natural-compare-lite", + "data": { + "version": "1.4.0", + "packageName": "natural-compare-lite", + "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:ncp": { + "type": "npm", + "name": "npm:ncp", + "data": { + "version": "2.0.0", + "packageName": "ncp", + "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "0.6.3", + "packageName": "negotiator", + "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + } + }, + "npm:neo-async": { + "type": "npm", + "name": "npm:neo-async", + "data": { + "version": "2.6.2", + "packageName": "neo-async", + "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + } + }, + "npm:nested-error-stacks": { + "type": "npm", + "name": "npm:nested-error-stacks", + "data": { + "version": "2.0.1", + "packageName": "nested-error-stacks", + "hash": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==" + } + }, + "npm:nice-try": { + "type": "npm", + "name": "npm:nice-try", + "data": { + "version": "1.0.5", + "packageName": "nice-try", + "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + } + }, + "npm:no-case": { + "type": "npm", + "name": "npm:no-case", + "data": { + "version": "3.0.4", + "packageName": "no-case", + "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + } + }, + "npm:nocache": { + "type": "npm", + "name": "npm:nocache", + "data": { + "version": "3.0.4", + "packageName": "nocache", + "hash": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==" + } + }, + "npm:node-abort-controller": { + "type": "npm", + "name": "npm:node-abort-controller", + "data": { + "version": "3.1.1", + "packageName": "node-abort-controller", + "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" + } + }, + "npm:node-dir": { + "type": "npm", + "name": "npm:node-dir", + "data": { + "version": "0.1.17", + "packageName": "node-dir", + "hash": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "2.7.0", + "packageName": "node-fetch", + "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" + } + }, + "npm:node-forge": { + "type": "npm", + "name": "npm:node-forge", + "data": { + "version": "1.3.1", + "packageName": "node-forge", + "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + } + }, + "npm:node-html-parser": { + "type": "npm", + "name": "npm:node-html-parser", + "data": { + "version": "5.4.2", + "packageName": "node-html-parser", + "hash": "sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==" + } + }, + "npm:node-int64": { + "type": "npm", + "name": "npm:node-int64", + "data": { + "version": "0.4.0", + "packageName": "node-int64", + "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.14", + "packageName": "node-releases", + "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + } + }, + "npm:node-stream-zip": { + "type": "npm", + "name": "npm:node-stream-zip", + "data": { + "version": "1.15.0", + "packageName": "node-stream-zip", + "hash": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==" + } + }, + "npm:normalize-path": { + "type": "npm", + "name": "npm:normalize-path", + "data": { + "version": "3.0.0", + "packageName": "normalize-path", + "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "2.0.1", + "packageName": "normalize-url", + "hash": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==" + } + }, + "npm:normalize-url@6.1.0": { + "type": "npm", + "name": "npm:normalize-url@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-package-arg": { + "type": "npm", + "name": "npm:npm-package-arg", + "data": { + "version": "7.0.0", + "packageName": "npm-package-arg", + "hash": "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==" + } + }, + "npm:npm-run-path@2.0.2": { + "type": "npm", + "name": "npm:npm-run-path@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "npm-run-path", + "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:npm-run-path@5.2.0": { + "type": "npm", + "name": "npm:npm-run-path@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "npm-run-path", + "hash": "sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:nullthrows": { + "type": "npm", + "name": "npm:nullthrows", + "data": { + "version": "1.1.1", + "packageName": "nullthrows", + "hash": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" + } + }, + "npm:nwsapi": { + "type": "npm", + "name": "npm:nwsapi", + "data": { + "version": "2.2.7", + "packageName": "nwsapi", + "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + } + }, + "npm:ob1": { + "type": "npm", + "name": "npm:ob1", + "data": { + "version": "0.80.5", + "packageName": "ob1", + "hash": "sha512-zYDMnnNrFi/1Tqh0vo3PE4p97Tpl9/4MP2k2ECvkbLOZzQuAYZJLTUYVLZb7hJhbhjT+JJxAwBGS8iu5hCSd1w==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.13.1", + "packageName": "object-inspect", + "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + } + }, + "npm:object-is": { + "type": "npm", + "name": "npm:object-is", + "data": { + "version": "1.1.5", + "packageName": "object-is", + "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.5", + "packageName": "object.assign", + "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.7", + "packageName": "object.entries", + "hash": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==" + } + }, + "npm:object.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.7", + "packageName": "object.fromentries", + "hash": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==" + } + }, + "npm:object.groupby": { + "type": "npm", + "name": "npm:object.groupby", + "data": { + "version": "1.0.1", + "packageName": "object.groupby", + "hash": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==" + } + }, + "npm:object.hasown": { + "type": "npm", + "name": "npm:object.hasown", + "data": { + "version": "1.1.3", + "packageName": "object.hasown", + "hash": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.1.7", + "packageName": "object.values", + "hash": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==" + } + }, + "npm:obuf": { + "type": "npm", + "name": "npm:obuf", + "data": { + "version": "1.1.2", + "packageName": "obuf", + "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:on-finished@2.3.0": { + "type": "npm", + "name": "npm:on-finished@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "on-finished", + "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" + } + }, + "npm:on-headers": { + "type": "npm", + "name": "npm:on-headers", + "data": { + "version": "1.0.2", + "packageName": "on-headers", + "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:onetime@2.0.1": { + "type": "npm", + "name": "npm:onetime@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "onetime", + "hash": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:onetime@6.0.0": { + "type": "npm", + "name": "npm:onetime@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "onetime", + "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" + } + }, + "npm:open@6.4.0": { + "type": "npm", + "name": "npm:open@6.4.0", + "data": { + "version": "6.4.0", + "packageName": "open", + "hash": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==" + } + }, + "npm:open@7.4.2": { + "type": "npm", + "name": "npm:open@7.4.2", + "data": { + "version": "7.4.2", + "packageName": "open", + "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.3", + "packageName": "optionator", + "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "3.4.0", + "packageName": "ora", + "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" + } + }, + "npm:ora@5.4.1": { + "type": "npm", + "name": "npm:ora@5.4.1", + "data": { + "version": "5.4.1", + "packageName": "ora", + "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" + } + }, + "npm:os-homedir": { + "type": "npm", + "name": "npm:os-homedir", + "data": { + "version": "1.0.2", + "packageName": "os-homedir", + "hash": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==" + } + }, + "npm:os-tmpdir": { + "type": "npm", + "name": "npm:os-tmpdir", + "data": { + "version": "1.0.2", + "packageName": "os-tmpdir", + "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + } + }, + "npm:osenv": { + "type": "npm", + "name": "npm:osenv", + "data": { + "version": "0.1.5", + "packageName": "osenv", + "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" + } + }, + "npm:p-finally": { + "type": "npm", + "name": "npm:p-finally", + "data": { + "version": "1.0.0", + "packageName": "p-finally", + "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit@4.0.0": { + "type": "npm", + "name": "npm:p-limit@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "p-limit", + "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:p-locate@4.1.0": { + "type": "npm", + "name": "npm:p-locate@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "p-locate", + "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-locate@6.0.0": { + "type": "npm", + "name": "npm:p-locate@6.0.0", + "data": { + "version": "6.0.0", + "packageName": "p-locate", + "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" + } + }, + "npm:p-map@2.1.0": { + "type": "npm", + "name": "npm:p-map@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "p-map", + "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "4.0.0", + "packageName": "p-map", + "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.2", + "packageName": "p-retry", + "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:param-case": { + "type": "npm", + "name": "npm:param-case", + "data": { + "version": "3.0.4", + "packageName": "param-case", + "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-json@4.0.0": { + "type": "npm", + "name": "npm:parse-json@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "parse-json", + "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:parse-png": { + "type": "npm", + "name": "npm:parse-png", + "data": { + "version": "2.1.0", + "packageName": "parse-png", + "hash": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.1.2", + "packageName": "parse5", + "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:pascal-case": { + "type": "npm", + "name": "npm:pascal-case", + "data": { + "version": "3.1.2", + "packageName": "pascal-case", + "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + } + }, + "npm:pass-stream": { + "type": "npm", + "name": "npm:pass-stream", + "data": { + "version": "0.1.5", + "packageName": "pass-stream", + "hash": "sha512-pGa0s6MkFFPNs9tN3tYbZTaelRX8YIvsb/qmaJ3zjoMd5IJwOvy+sMvdieUDV03MF0O+dklnwG3hJBb2RYbxFA==" + } + }, + "npm:password-prompt": { + "type": "npm", + "name": "npm:password-prompt", + "data": { + "version": "1.1.3", + "packageName": "password-prompt", + "hash": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==" + } + }, + "npm:patch-package": { + "type": "npm", + "name": "npm:patch-package", + "data": { + "version": "7.0.2", + "packageName": "patch-package", + "hash": "sha512-PMYfL8LXxGIRmxXLqlEaBxzKPu7/SdP13ld6GSfAUJUZRmBDPp8chZs0dpzaAFn9TSPnFiMwkC6PJt6pBiAl8Q==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-exists@5.0.0": { + "type": "npm", + "name": "npm:path-exists@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "path-exists", + "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" + } + }, + "npm:path-is-absolute": { + "type": "npm", + "name": "npm:path-is-absolute", + "data": { + "version": "1.0.1", + "packageName": "path-is-absolute", + "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + } + }, + "npm:path-is-inside": { + "type": "npm", + "name": "npm:path-is-inside", + "data": { + "version": "1.0.2", + "packageName": "path-is-inside", + "hash": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "2.0.1", + "packageName": "path-key", + "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" + } + }, + "npm:path-key@3.1.1": { + "type": "npm", + "name": "npm:path-key@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "1.10.1", + "packageName": "path-scurry", + "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "0.1.7", + "packageName": "path-to-regexp", + "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + } + }, + "npm:path-type": { + "type": "npm", + "name": "npm:path-type", + "data": { + "version": "4.0.0", + "packageName": "path-type", + "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.0.0", + "packageName": "picocolors", + "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:picomatch@3.0.1": { + "type": "npm", + "name": "npm:picomatch@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "picomatch", + "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:pify": { + "type": "npm", + "name": "npm:pify", + "data": { + "version": "2.3.0", + "packageName": "pify", + "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + } + }, + "npm:pify@4.0.1": { + "type": "npm", + "name": "npm:pify@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "pify", + "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + } + }, + "npm:pinkie-promise": { + "type": "npm", + "name": "npm:pinkie-promise", + "data": { + "version": "2.0.1", + "packageName": "pinkie-promise", + "hash": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==" + } + }, + "npm:pinkie": { + "type": "npm", + "name": "npm:pinkie", + "data": { + "version": "2.0.4", + "packageName": "pinkie", + "hash": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" + } + }, + "npm:pirates": { + "type": "npm", + "name": "npm:pirates", + "data": { + "version": "4.0.6", + "packageName": "pirates", + "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" + } + }, + "npm:pkg-dir@3.0.0": { + "type": "npm", + "name": "npm:pkg-dir@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "pkg-dir", + "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" + } + }, + "npm:pkg-dir": { + "type": "npm", + "name": "npm:pkg-dir", + "data": { + "version": "4.2.0", + "packageName": "pkg-dir", + "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + } + }, + "npm:pkg-dir@7.0.0": { + "type": "npm", + "name": "npm:pkg-dir@7.0.0", + "data": { + "version": "7.0.0", + "packageName": "pkg-dir", + "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:plist": { + "type": "npm", + "name": "npm:plist", + "data": { + "version": "3.1.0", + "packageName": "plist", + "hash": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==" + } + }, + "npm:pngjs": { + "type": "npm", + "name": "npm:pngjs", + "data": { + "version": "3.4.0", + "packageName": "pngjs", + "hash": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" + } + }, + "npm:pngjs@5.0.0": { + "type": "npm", + "name": "npm:pngjs@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "pngjs", + "hash": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" + } + }, + "npm:popmotion": { + "type": "npm", + "name": "npm:popmotion", + "data": { + "version": "11.0.3", + "packageName": "popmotion", + "hash": "sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==" + } + }, + "npm:popmotion@9.3.1": { + "type": "npm", + "name": "npm:popmotion@9.3.1", + "data": { + "version": "9.3.1", + "packageName": "popmotion", + "hash": "sha512-Qozvg8rz2OGeZwWuIjqlSXqqgWto/+QL24ll8sAAc0n71KY/wvN1W4sAASxTuHv8YWdDnk9u9IdadyPo2DGvDA==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "8.2.4", + "packageName": "postcss-calc", + "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "5.3.1", + "packageName": "postcss-colormin", + "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-convert-values", + "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "5.1.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "5.1.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-overridden", + "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "5.1.7", + "packageName": "postcss-merge-longhand", + "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "5.1.4", + "packageName": "postcss-merge-rules", + "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "5.1.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "5.1.4", + "packageName": "postcss-minify-params", + "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "5.2.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" + } + }, + "npm:postcss-modules-extract-imports": { + "type": "npm", + "name": "npm:postcss-modules-extract-imports", + "data": { + "version": "3.0.0", + "packageName": "postcss-modules-extract-imports", + "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" + } + }, + "npm:postcss-modules-local-by-default": { + "type": "npm", + "name": "npm:postcss-modules-local-by-default", + "data": { + "version": "4.0.4", + "packageName": "postcss-modules-local-by-default", + "hash": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==" + } + }, + "npm:postcss-modules-scope": { + "type": "npm", + "name": "npm:postcss-modules-scope", + "data": { + "version": "3.1.1", + "packageName": "postcss-modules-scope", + "hash": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==" + } + }, + "npm:postcss-modules-values": { + "type": "npm", + "name": "npm:postcss-modules-values", + "data": { + "version": "4.0.0", + "packageName": "postcss-modules-values", + "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-charset", + "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-string", + "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-url", + "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-ordered-values", + "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "5.1.2", + "packageName": "postcss-reduce-initial", + "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "6.0.15", + "packageName": "postcss-selector-parser", + "hash": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "5.1.0", + "packageName": "postcss-svgo", + "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "5.1.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.4.33", + "packageName": "postcss", + "hash": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prepend-http": { + "type": "npm", + "name": "npm:prepend-http", + "data": { + "version": "2.0.0", + "packageName": "prepend-http", + "hash": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==" + } + }, + "npm:pretender": { + "type": "npm", + "name": "npm:pretender", + "data": { + "version": "3.4.7", + "packageName": "pretender", + "hash": "sha512-jkPAvt1BfRi0RKamweJdEcnjkeu7Es8yix3bJ+KgBC5VpG/Ln4JE3hYN6vJym4qprm8Xo5adhWpm3HCoft1dOw==" + } + }, + "npm:prettier-linter-helpers": { + "type": "npm", + "name": "npm:prettier-linter-helpers", + "data": { + "version": "1.0.0", + "packageName": "prettier-linter-helpers", + "hash": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "2.8.8", + "packageName": "prettier", + "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" + } + }, + "npm:pretty-bytes": { + "type": "npm", + "name": "npm:pretty-bytes", + "data": { + "version": "5.6.0", + "packageName": "pretty-bytes", + "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + } + }, + "npm:pretty-error": { + "type": "npm", + "name": "npm:pretty-error", + "data": { + "version": "4.0.0", + "packageName": "pretty-error", + "hash": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" + } + }, + "npm:pretty-format@26.6.2": { + "type": "npm", + "name": "npm:pretty-format@26.6.2", + "data": { + "version": "26.6.2", + "packageName": "pretty-format", + "hash": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "29.7.0", + "packageName": "pretty-format", + "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" + } + }, + "npm:pretty-quick": { + "type": "npm", + "name": "npm:pretty-quick", + "data": { + "version": "4.0.0", + "packageName": "pretty-quick", + "hash": "sha512-M+2MmeufXb/M7Xw3Afh1gxcYpj+sK0AxEfnfF958ktFeAyi5MsKY5brymVURQLgPLV1QaF5P4pb2oFJ54H3yzQ==" + } + }, + "npm:process-nextick-args": { + "type": "npm", + "name": "npm:process-nextick-args", + "data": { + "version": "2.0.1", + "packageName": "process-nextick-args", + "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:promise-inflight": { + "type": "npm", + "name": "npm:promise-inflight", + "data": { + "version": "1.0.1", + "packageName": "promise-inflight", + "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + } + }, + "npm:promise@7.3.1": { + "type": "npm", + "name": "npm:promise@7.3.1", + "data": { + "version": "7.3.1", + "packageName": "promise", + "hash": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" + } + }, + "npm:promise": { + "type": "npm", + "name": "npm:promise", + "data": { + "version": "8.3.0", + "packageName": "promise", + "hash": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==" + } + }, + "npm:prompt-skeleton": { + "type": "npm", + "name": "npm:prompt-skeleton", + "data": { + "version": "0.1.3", + "packageName": "prompt-skeleton", + "hash": "sha512-sv95G/H7jWjfs5SnNaXeMtiwcUXL3RId8JIvcyej6i3v1UPLVitA2DtLi+LlEzsLlOYudBoSQZL3A8rCqT1kpw==" + } + }, + "npm:prompt-sync": { + "type": "npm", + "name": "npm:prompt-sync", + "data": { + "version": "4.2.0", + "packageName": "prompt-sync", + "hash": "sha512-BuEzzc5zptP5LsgV5MZETjDaKSWfchl5U9Luiu8SKp7iZWD5tZalOxvNcZRwv+d2phNFr8xlbxmFNcRKfJOzJw==" + } + }, + "npm:prompts": { + "type": "npm", + "name": "npm:prompts", + "data": { + "version": "2.4.2", + "packageName": "prompts", + "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:psl": { + "type": "npm", + "name": "npm:psl", + "data": { + "version": "1.9.0", + "packageName": "psl", + "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.0", + "packageName": "pump", + "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + } + }, + "npm:punycode@1.4.1": { + "type": "npm", + "name": "npm:punycode@1.4.1", + "data": { + "version": "1.4.1", + "packageName": "punycode", + "hash": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.1", + "packageName": "punycode", + "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.0.4", + "packageName": "pure-rand", + "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" + } + }, + "npm:qrcode-terminal": { + "type": "npm", + "name": "npm:qrcode-terminal", + "data": { + "version": "0.11.0", + "packageName": "qrcode-terminal", + "hash": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.11.0", + "packageName": "qs", + "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" + } + }, + "npm:qs@6.11.2": { + "type": "npm", + "name": "npm:qs@6.11.2", + "data": { + "version": "6.11.2", + "packageName": "qs", + "hash": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==" + } + }, + "npm:query-string": { + "type": "npm", + "name": "npm:query-string", + "data": { + "version": "6.14.1", + "packageName": "query-string", + "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" + } + }, + "npm:query-string@5.1.1": { + "type": "npm", + "name": "npm:query-string@5.1.1", + "data": { + "version": "5.1.1", + "packageName": "query-string", + "hash": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==" + } + }, + "npm:query-string@7.1.3": { + "type": "npm", + "name": "npm:query-string@7.1.3", + "data": { + "version": "7.1.3", + "packageName": "query-string", + "hash": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==" + } + }, + "npm:querystringify": { + "type": "npm", + "name": "npm:querystringify", + "data": { + "version": "2.2.0", + "packageName": "querystringify", + "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:queue": { + "type": "npm", + "name": "npm:queue", + "data": { + "version": "6.0.2", + "packageName": "queue", + "hash": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" + } + }, + "npm:randombytes": { + "type": "npm", + "name": "npm:randombytes", + "data": { + "version": "2.1.0", + "packageName": "randombytes", + "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "2.5.1", + "packageName": "raw-body", + "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:react-devtools-core": { + "type": "npm", + "name": "npm:react-devtools-core", + "data": { + "version": "4.28.5", + "packageName": "react-devtools-core", + "hash": "sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "18.2.0", + "packageName": "react-dom", + "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" + } + }, + "npm:react-error-overlay@6.0.9": { + "type": "npm", + "name": "npm:react-error-overlay@6.0.9", + "data": { + "version": "6.0.9", + "packageName": "react-error-overlay", + "hash": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + } + }, + "npm:react-fast-compare": { + "type": "npm", + "name": "npm:react-fast-compare", + "data": { + "version": "3.2.2", + "packageName": "react-fast-compare", + "hash": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" + } + }, + "npm:react-freeze": { + "type": "npm", + "name": "npm:react-freeze", + "data": { + "version": "1.0.3", + "packageName": "react-freeze", + "hash": "sha512-ZnXwLQnGzrDpHBHiC56TXFXvmolPeMjTn1UOm610M4EXGzbEDR7oOIyS2ZiItgbs6eZc4oU/a0hpk8PrcKvv5g==" + } + }, + "npm:react-helmet-async": { + "type": "npm", + "name": "npm:react-helmet-async", + "data": { + "version": "1.3.0", + "packageName": "react-helmet-async", + "hash": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" + } + }, + "npm:react-hook-form": { + "type": "npm", + "name": "npm:react-hook-form", + "data": { + "version": "7.49.3", + "packageName": "react-hook-form", + "hash": "sha512-foD6r3juidAT1cOZzpmD/gOKt7fRsDhXXZ0y28+Al1CHgX+AY1qIN9VSIIItXRq1dN68QrRwl1ORFlwjBaAqeQ==" + } + }, + "npm:react-i18next": { + "type": "npm", + "name": "npm:react-i18next", + "data": { + "version": "14.0.1", + "packageName": "react-i18next", + "hash": "sha512-TMV8hFismBmpMdIehoFHin/okfvgjFhp723RYgIqB4XyhDobVMyukyM3Z8wtTRmajyFMZrBl/OaaXF2P6WjUAw==" + } + }, + "npm:react-is@18.2.0": { + "type": "npm", + "name": "npm:react-is@18.2.0", + "data": { + "version": "18.2.0", + "packageName": "react-is", + "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:react-is@17.0.2": { + "type": "npm", + "name": "npm:react-is@17.0.2", + "data": { + "version": "17.0.2", + "packageName": "react-is", + "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + } + }, + "npm:react-native-flipper": { + "type": "npm", + "name": "npm:react-native-flipper", + "data": { + "version": "0.164.0", + "packageName": "react-native-flipper", + "hash": "sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==" + } + }, + "npm:react-native-gesture-handler": { + "type": "npm", + "name": "npm:react-native-gesture-handler", + "data": { + "version": "2.14.1", + "packageName": "react-native-gesture-handler", + "hash": "sha512-YiM1BApV4aKeuwsM6O4C2ufwewYEKk6VMXOt0YqEZFMwABBFWhXLySFZYjBSNRU2USGppJbfHP1q1DfFQpKhdA==" + } + }, + "npm:react-native-iphone-x-helper": { + "type": "npm", + "name": "npm:react-native-iphone-x-helper", + "data": { + "version": "1.3.1", + "packageName": "react-native-iphone-x-helper", + "hash": "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==" + } + }, + "npm:react-native-keyboard-aware-scroll-view": { + "type": "npm", + "name": "npm:react-native-keyboard-aware-scroll-view", + "data": { + "version": "0.9.5", + "packageName": "react-native-keyboard-aware-scroll-view", + "hash": "sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==" + } + }, + "npm:react-native-notificated": { + "type": "npm", + "name": "npm:react-native-notificated", + "data": { + "version": "0.0.1-beta.2", + "packageName": "react-native-notificated", + "hash": "sha512-nOztCH/ja+Qb3bxtzSTmKv9FzOQS0pnfeS5s88wCjNbYiLFFi7RxMXKThkf8ONDLk0rA/PICdtzQvZkmxd9gXg==" + } + }, + "npm:react-native-pager-view": { + "type": "npm", + "name": "npm:react-native-pager-view", + "data": { + "version": "6.2.3", + "packageName": "react-native-pager-view", + "hash": "sha512-dqVpXWFtPNfD3D2QQQr8BP+ullS5MhjRJuF8Z/qml4QTILcrWaW8F5iAxKkQR3Jl0ikcEryG/+SQlNcwlo0Ggg==" + } + }, + "npm:react-native-reanimated": { + "type": "npm", + "name": "npm:react-native-reanimated", + "data": { + "version": "3.6.2", + "packageName": "react-native-reanimated", + "hash": "sha512-IIMREMOrxhtK35drfpzh2UhxNqAOHnuvGgtMofj7yHcMj16tmWZR2zFvMUf6z2MfmXv+aVgFQ6TRZ6yKYf7LNA==" + } + }, + "npm:react-native-safe-area-context": { + "type": "npm", + "name": "npm:react-native-safe-area-context", + "data": { + "version": "4.8.2", + "packageName": "react-native-safe-area-context", + "hash": "sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ==" + } + }, + "npm:react-native-screens": { + "type": "npm", + "name": "npm:react-native-screens", + "data": { + "version": "3.29.0", + "packageName": "react-native-screens", + "hash": "sha512-yB1GoAMamFAcYf4ku94uBPn0/ani9QG7NdI98beJ5cet2YFESYYzuEIuU+kt+CNRcO8qqKeugxlfgAa3HyTqlg==" + } + }, + "npm:react-native-svg": { + "type": "npm", + "name": "npm:react-native-svg", + "data": { + "version": "14.1.0", + "packageName": "react-native-svg", + "hash": "sha512-HeseElmEk+AXGwFZl3h56s0LtYD9HyGdrpg8yd9QM26X+d7kjETrRQ9vCjtxuT5dCZEIQ5uggU1dQhzasnsCWA==" + } + }, + "npm:react-native-web": { + "type": "npm", + "name": "npm:react-native-web", + "data": { + "version": "0.19.10", + "packageName": "react-native-web", + "hash": "sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==" + } + }, + "npm:react-native": { + "type": "npm", + "name": "npm:react-native", + "data": { + "version": "0.73.2", + "packageName": "react-native", + "hash": "sha512-7zj9tcUYpJUBdOdXY6cM8RcXYWkyql4kMyGZflW99E5EuFPoC7Ti+ZQSl7LP9ZPzGD0vMfslwyDW0I4tPWUCFw==" + } + }, + "npm:react-refresh": { + "type": "npm", + "name": "npm:react-refresh", + "data": { + "version": "0.14.0", + "packageName": "react-refresh", + "hash": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==" + } + }, + "npm:react-shallow-renderer": { + "type": "npm", + "name": "npm:react-shallow-renderer", + "data": { + "version": "16.15.0", + "packageName": "react-shallow-renderer", + "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" + } + }, + "npm:react-test-renderer": { + "type": "npm", + "name": "npm:react-test-renderer", + "data": { + "version": "18.2.0", + "packageName": "react-test-renderer", + "hash": "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "18.2.0", + "packageName": "react", + "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" + } + }, + "npm:reactotron-core-client": { + "type": "npm", + "name": "npm:reactotron-core-client", + "data": { + "version": "2.8.13", + "packageName": "reactotron-core-client", + "hash": "sha512-oI4dooNO6wjT42npHLXyBPHfjTUI499BiD4I4/YN86Tzv6WpuGD2kXOTZQl1jU1EhaZxSB/jl2G3p6sz/XvZsQ==" + } + }, + "npm:reactotron-core-contract": { + "type": "npm", + "name": "npm:reactotron-core-contract", + "data": { + "version": "0.2.1", + "packageName": "reactotron-core-contract", + "hash": "sha512-u92hDAuFLj1/OBXkUhyMHJR5TUZQqI4SWZqGlr6Zs5/apwAN11bGi5dbs5r3dUKZLWZvOgvQ/DT6L06JwJQPjw==" + } + }, + "npm:reactotron-react-native": { + "type": "npm", + "name": "npm:reactotron-react-native", + "data": { + "version": "5.0.5", + "packageName": "reactotron-react-native", + "hash": "sha512-/Eai1cKwRRGusOe3poLDM0SMOy6dHTf8iBYd5wSYwqznTz5vUlu0Jkoa8n4O00udoIEA3XSRqre7pAdr035vWQ==" + } + }, + "npm:readable-stream@2.3.8": { + "type": "npm", + "name": "npm:readable-stream@2.3.8", + "data": { + "version": "2.3.8", + "packageName": "readable-stream", + "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readable-stream@1.0.2": { + "type": "npm", + "name": "npm:readable-stream@1.0.2", + "data": { + "version": "1.0.2", + "packageName": "readable-stream", + "hash": "8630138425327017741" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "3.6.0", + "packageName": "readdirp", + "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" + } + }, + "npm:readline": { + "type": "npm", + "name": "npm:readline", + "data": { + "version": "1.3.0", + "packageName": "readline", + "hash": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" + } + }, + "npm:recast": { + "type": "npm", + "name": "npm:recast", + "data": { + "version": "0.21.5", + "packageName": "recast", + "hash": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==" + } + }, + "npm:redent": { + "type": "npm", + "name": "npm:redent", + "data": { + "version": "3.0.0", + "packageName": "redent", + "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + } + }, + "npm:reflect.getprototypeof": { + "type": "npm", + "name": "npm:reflect.getprototypeof", + "data": { + "version": "1.0.4", + "packageName": "reflect.getprototypeof", + "hash": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==" + } + }, + "npm:regenerate-unicode-properties": { + "type": "npm", + "name": "npm:regenerate-unicode-properties", + "data": { + "version": "10.1.1", + "packageName": "regenerate-unicode-properties", + "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" + } + }, + "npm:regenerate": { + "type": "npm", + "name": "npm:regenerate", + "data": { + "version": "1.4.2", + "packageName": "regenerate", + "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + } + }, + "npm:regenerator-runtime": { + "type": "npm", + "name": "npm:regenerator-runtime", + "data": { + "version": "0.13.11", + "packageName": "regenerator-runtime", + "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" + } + }, + "npm:regenerator-runtime@0.14.1": { + "type": "npm", + "name": "npm:regenerator-runtime@0.14.1", + "data": { + "version": "0.14.1", + "packageName": "regenerator-runtime", + "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + }, + "npm:regenerator-transform": { + "type": "npm", + "name": "npm:regenerator-transform", + "data": { + "version": "0.15.2", + "packageName": "regenerator-transform", + "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.1", + "packageName": "regexp.prototype.flags", + "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" + } + }, + "npm:regexpp": { + "type": "npm", + "name": "npm:regexpp", + "data": { + "version": "3.2.0", + "packageName": "regexpp", + "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + } + }, + "npm:regexpu-core": { + "type": "npm", + "name": "npm:regexpu-core", + "data": { + "version": "5.3.2", + "packageName": "regexpu-core", + "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" + } + }, + "npm:registry-auth-token": { + "type": "npm", + "name": "npm:registry-auth-token", + "data": { + "version": "3.3.2", + "packageName": "registry-auth-token", + "hash": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==" + } + }, + "npm:registry-url": { + "type": "npm", + "name": "npm:registry-url", + "data": { + "version": "3.1.0", + "packageName": "registry-url", + "hash": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==" + } + }, + "npm:regjsparser": { + "type": "npm", + "name": "npm:regjsparser", + "data": { + "version": "0.9.1", + "packageName": "regjsparser", + "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" + } + }, + "npm:relateurl": { + "type": "npm", + "name": "npm:relateurl", + "data": { + "version": "0.2.7", + "packageName": "relateurl", + "hash": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" + } + }, + "npm:remove-trailing-slash": { + "type": "npm", + "name": "npm:remove-trailing-slash", + "data": { + "version": "0.1.1", + "packageName": "remove-trailing-slash", + "hash": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==" + } + }, + "npm:renderkid": { + "type": "npm", + "name": "npm:renderkid", + "data": { + "version": "3.0.0", + "packageName": "renderkid", + "hash": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:require-main-filename": { + "type": "npm", + "name": "npm:require-main-filename", + "data": { + "version": "2.0.0", + "packageName": "require-main-filename", + "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + } + }, + "npm:requireg": { + "type": "npm", + "name": "npm:requireg", + "data": { + "version": "0.2.2", + "packageName": "requireg", + "hash": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "npm:reselect": { + "type": "npm", + "name": "npm:reselect", + "data": { + "version": "4.1.8", + "packageName": "reselect", + "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + } + }, + "npm:resolve-cwd": { + "type": "npm", + "name": "npm:resolve-cwd", + "data": { + "version": "3.0.0", + "packageName": "resolve-cwd", + "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + } + }, + "npm:resolve-from@3.0.0": { + "type": "npm", + "name": "npm:resolve-from@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "resolve-from", + "hash": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.2", + "packageName": "resolve.exports", + "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "1.22.8", + "packageName": "resolve", + "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" + } + }, + "npm:resolve@2.0.0-next.5": { + "type": "npm", + "name": "npm:resolve@2.0.0-next.5", + "data": { + "version": "2.0.0-next.5", + "packageName": "resolve", + "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" + } + }, + "npm:resolve@1.7.1": { + "type": "npm", + "name": "npm:resolve@1.7.1", + "data": { + "version": "1.7.1", + "packageName": "resolve", + "hash": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==" + } + }, + "npm:restore-cursor@2.0.0": { + "type": "npm", + "name": "npm:restore-cursor@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "restore-cursor", + "hash": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:restore-cursor@4.0.0": { + "type": "npm", + "name": "npm:restore-cursor@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "restore-cursor", + "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.0.4", + "packageName": "reusify", + "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.3.1", + "packageName": "rfdc", + "hash": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==" + } + }, + "npm:rimraf@2.7.1": { + "type": "npm", + "name": "npm:rimraf@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "rimraf", + "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "3.0.2", + "packageName": "rimraf", + "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + } + }, + "npm:rimraf@2.4.5": { + "type": "npm", + "name": "npm:rimraf@2.4.5", + "data": { + "version": "2.4.5", + "packageName": "rimraf", + "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" + } + }, + "npm:rimraf@2.6.3": { + "type": "npm", + "name": "npm:rimraf@2.6.3", + "data": { + "version": "2.6.3", + "packageName": "rimraf", + "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" + } + }, + "npm:route-recognizer": { + "type": "npm", + "name": "npm:route-recognizer", + "data": { + "version": "0.3.4", + "packageName": "route-recognizer", + "hash": "sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==" + } + }, + "npm:rtl-detect": { + "type": "npm", + "name": "npm:rtl-detect", + "data": { + "version": "1.1.2", + "packageName": "rtl-detect", + "hash": "sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:safe-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.1.0", + "packageName": "safe-array-concat", + "hash": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==" + } + }, + "npm:safe-buffer@5.1.2": { + "type": "npm", + "name": "npm:safe-buffer@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-json-stringify": { + "type": "npm", + "name": "npm:safe-json-stringify", + "data": { + "version": "1.2.0", + "packageName": "safe-json-stringify", + "hash": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.0.2", + "packageName": "safe-regex-test", + "hash": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:sass": { + "type": "npm", + "name": "npm:sass", + "data": { + "version": "1.70.0", + "packageName": "sass", + "hash": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==" + } + }, + "npm:sax": { + "type": "npm", + "name": "npm:sax", + "data": { + "version": "1.3.0", + "packageName": "sax", + "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" + } + }, + "npm:saxes": { + "type": "npm", + "name": "npm:saxes", + "data": { + "version": "6.0.0", + "packageName": "saxes", + "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" + } + }, + "npm:scheduler@0.24.0-canary-efb381bbf-20230505": { + "type": "npm", + "name": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", + "data": { + "version": "0.24.0-canary-efb381bbf-20230505", + "packageName": "scheduler", + "hash": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.23.0", + "packageName": "scheduler", + "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" + } + }, + "npm:schema-utils@2.7.1": { + "type": "npm", + "name": "npm:schema-utils@2.7.1", + "data": { + "version": "2.7.1", + "packageName": "schema-utils", + "hash": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + } + }, + "npm:schema-utils@3.3.0": { + "type": "npm", + "name": "npm:schema-utils@3.3.0", + "data": { + "version": "3.3.0", + "packageName": "schema-utils", + "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" + } + }, + "npm:schema-utils": { + "type": "npm", + "name": "npm:schema-utils", + "data": { + "version": "4.2.0", + "packageName": "schema-utils", + "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" + } + }, + "npm:select-hose": { + "type": "npm", + "name": "npm:select-hose", + "data": { + "version": "2.0.0", + "packageName": "select-hose", + "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + } + }, + "npm:select-prompt": { + "type": "npm", + "name": "npm:select-prompt", + "data": { + "version": "0.3.2", + "packageName": "select-prompt", + "hash": "sha512-UcsoayiSDNyp8z3iaLfu/OxosdcCxrJ/FoV4iYkrYZkRrxN2Iepmdj1Fx6neHEMUWNzsbQjKhykaCaLIUUuRFg==" + } + }, + "npm:selfsigned": { + "type": "npm", + "name": "npm:selfsigned", + "data": { + "version": "2.4.1", + "packageName": "selfsigned", + "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" + } + }, + "npm:semver@7.3.2": { + "type": "npm", + "name": "npm:semver@7.3.2", + "data": { + "version": "7.3.2", + "packageName": "semver", + "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + } + }, + "npm:semver@7.5.3": { + "type": "npm", + "name": "npm:semver@7.5.3", + "data": { + "version": "7.5.3", + "packageName": "semver", + "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" + } + }, + "npm:semver@5.7.2": { + "type": "npm", + "name": "npm:semver@5.7.2", + "data": { + "version": "5.7.2", + "packageName": "semver", + "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + }, + "npm:semver@6.3.1": { + "type": "npm", + "name": "npm:semver@6.3.1", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "7.5.4", + "packageName": "semver", + "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "0.18.0", + "packageName": "send", + "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" + } + }, + "npm:serialize-error": { + "type": "npm", + "name": "npm:serialize-error", + "data": { + "version": "2.1.0", + "packageName": "serialize-error", + "hash": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==" + } + }, + "npm:serialize-javascript": { + "type": "npm", + "name": "npm:serialize-javascript", + "data": { + "version": "6.0.2", + "packageName": "serialize-javascript", + "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" + } + }, + "npm:serve-index": { + "type": "npm", + "name": "npm:serve-index", + "data": { + "version": "1.9.1", + "packageName": "serve-index", + "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "1.15.0", + "packageName": "serve-static", + "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" + } + }, + "npm:set-blocking": { + "type": "npm", + "name": "npm:set-blocking", + "data": { + "version": "2.0.0", + "packageName": "set-blocking", + "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + } + }, + "npm:set-cookie-parser": { + "type": "npm", + "name": "npm:set-cookie-parser", + "data": { + "version": "2.6.0", + "packageName": "set-cookie-parser", + "hash": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.2.0", + "packageName": "set-function-length", + "hash": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.1", + "packageName": "set-function-name", + "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" + } + }, + "npm:setimmediate": { + "type": "npm", + "name": "npm:setimmediate", + "data": { + "version": "1.0.5", + "packageName": "setimmediate", + "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + } + }, + "npm:setprototypeof@1.1.0": { + "type": "npm", + "name": "npm:setprototypeof@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "setprototypeof", + "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:shallow-clone": { + "type": "npm", + "name": "npm:shallow-clone", + "data": { + "version": "3.0.1", + "packageName": "shallow-clone", + "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" + } + }, + "npm:shallowequal": { + "type": "npm", + "name": "npm:shallowequal", + "data": { + "version": "1.1.0", + "packageName": "shallowequal", + "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + } + }, + "npm:shebang-command@1.2.0": { + "type": "npm", + "name": "npm:shebang-command@1.2.0", + "data": { + "version": "1.2.0", + "packageName": "shebang-command", + "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:shebang-regex@1.0.0": { + "type": "npm", + "name": "npm:shebang-regex@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "shebang-regex", + "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.1", + "packageName": "shell-quote", + "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.0.4", + "packageName": "side-channel", + "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:signal-exit@4.1.0": { + "type": "npm", + "name": "npm:signal-exit@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "signal-exit", + "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + }, + "npm:simple-plist": { + "type": "npm", + "name": "npm:simple-plist", + "data": { + "version": "1.3.1", + "packageName": "simple-plist", + "hash": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.2", + "packageName": "simple-swizzle", + "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" + } + }, + "npm:sisteransi": { + "type": "npm", + "name": "npm:sisteransi", + "data": { + "version": "1.0.5", + "packageName": "sisteransi", + "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + } + }, + "npm:slash@2.0.0": { + "type": "npm", + "name": "npm:slash@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "slash", + "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "3.0.0", + "packageName": "slash", + "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + }, + "npm:slash@4.0.0": { + "type": "npm", + "name": "npm:slash@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "slash", + "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + } + }, + "npm:slash@5.1.0": { + "type": "npm", + "name": "npm:slash@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:slice-ansi@2.1.0": { + "type": "npm", + "name": "npm:slice-ansi@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "slice-ansi", + "hash": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==" + } + }, + "npm:slice-ansi": { + "type": "npm", + "name": "npm:slice-ansi", + "data": { + "version": "5.0.0", + "packageName": "slice-ansi", + "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" + } + }, + "npm:slugify": { + "type": "npm", + "name": "npm:slugify", + "data": { + "version": "1.6.6", + "packageName": "slugify", + "hash": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" + } + }, + "npm:sockjs": { + "type": "npm", + "name": "npm:sockjs", + "data": { + "version": "0.3.24", + "packageName": "sockjs", + "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" + } + }, + "npm:sort-keys": { + "type": "npm", + "name": "npm:sort-keys", + "data": { + "version": "2.0.0", + "packageName": "sort-keys", + "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" + } + }, + "npm:source-list-map": { + "type": "npm", + "name": "npm:source-list-map", + "data": { + "version": "2.0.1", + "packageName": "source-list-map", + "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.0.2", + "packageName": "source-map-js", + "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + } + }, + "npm:source-map-loader": { + "type": "npm", + "name": "npm:source-map-loader", + "data": { + "version": "3.0.2", + "packageName": "source-map-loader", + "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" + } + }, + "npm:source-map-support@0.5.13": { + "type": "npm", + "name": "npm:source-map-support@0.5.13", + "data": { + "version": "0.5.13", + "packageName": "source-map-support", + "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map@0.5.6": { + "type": "npm", + "name": "npm:source-map@0.5.6", + "data": { + "version": "0.5.6", + "packageName": "source-map", + "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" + } + }, + "npm:source-map@0.5.7": { + "type": "npm", + "name": "npm:source-map@0.5.7", + "data": { + "version": "0.5.7", + "packageName": "source-map", + "hash": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map@0.7.4": { + "type": "npm", + "name": "npm:source-map@0.7.4", + "data": { + "version": "0.7.4", + "packageName": "source-map", + "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + } + }, + "npm:spdy-transport": { + "type": "npm", + "name": "npm:spdy-transport", + "data": { + "version": "3.0.0", + "packageName": "spdy-transport", + "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + } + }, + "npm:spdy": { + "type": "npm", + "name": "npm:spdy", + "data": { + "version": "4.0.2", + "packageName": "spdy", + "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + } + }, + "npm:split-on-first": { + "type": "npm", + "name": "npm:split-on-first", + "data": { + "version": "1.1.0", + "packageName": "split-on-first", + "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" + } + }, + "npm:split": { + "type": "npm", + "name": "npm:split", + "data": { + "version": "1.0.1", + "packageName": "split", + "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "8.0.1", + "packageName": "ssri", + "hash": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:stack-generator": { + "type": "npm", + "name": "npm:stack-generator", + "data": { + "version": "2.0.10", + "packageName": "stack-generator", + "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" + } + }, + "npm:stack-utils": { + "type": "npm", + "name": "npm:stack-utils", + "data": { + "version": "2.0.6", + "packageName": "stack-utils", + "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" + } + }, + "npm:stackframe": { + "type": "npm", + "name": "npm:stackframe", + "data": { + "version": "1.3.4", + "packageName": "stackframe", + "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + } + }, + "npm:stacktrace-gps": { + "type": "npm", + "name": "npm:stacktrace-gps", + "data": { + "version": "3.1.2", + "packageName": "stacktrace-gps", + "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" + } + }, + "npm:stacktrace-js": { + "type": "npm", + "name": "npm:stacktrace-js", + "data": { + "version": "2.0.2", + "packageName": "stacktrace-js", + "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" + } + }, + "npm:stacktrace-parser": { + "type": "npm", + "name": "npm:stacktrace-parser", + "data": { + "version": "0.1.10", + "packageName": "stacktrace-parser", + "hash": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.1", + "packageName": "statuses", + "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + } + }, + "npm:statuses@1.5.0": { + "type": "npm", + "name": "npm:statuses@1.5.0", + "data": { + "version": "1.5.0", + "packageName": "statuses", + "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" + } + }, + "npm:stream-buffers": { + "type": "npm", + "name": "npm:stream-buffers", + "data": { + "version": "2.2.0", + "packageName": "stream-buffers", + "hash": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==" + } + }, + "npm:stream-slice": { + "type": "npm", + "name": "npm:stream-slice", + "data": { + "version": "0.1.2", + "packageName": "stream-slice", + "hash": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==" + } + }, + "npm:strict-uri-encode@1.1.0": { + "type": "npm", + "name": "npm:strict-uri-encode@1.1.0", + "data": { + "version": "1.1.0", + "packageName": "strict-uri-encode", + "hash": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" + } + }, + "npm:strict-uri-encode": { + "type": "npm", + "name": "npm:strict-uri-encode", + "data": { + "version": "2.0.0", + "packageName": "strict-uri-encode", + "hash": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==" + } + }, + "npm:string-argv": { + "type": "npm", + "name": "npm:string-argv", + "data": { + "version": "0.3.2", + "packageName": "string-argv", + "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" + } + }, + "npm:string-length": { + "type": "npm", + "name": "npm:string-length", + "data": { + "version": "4.0.2", + "packageName": "string-length", + "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" + } + }, + "npm:string-length@5.0.1": { + "type": "npm", + "name": "npm:string-length@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "string-length", + "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@^4.2.0", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.10", + "packageName": "string.prototype.matchall", + "hash": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.8", + "packageName": "string.prototype.trim", + "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimend", + "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.7", + "packageName": "string.prototype.trimstart", + "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:string_decoder@1.1.1": { + "type": "npm", + "name": "npm:string_decoder@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "string_decoder", + "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@^6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi@3.0.1": { + "type": "npm", + "name": "npm:strip-ansi@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "strip-ansi", + "hash": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==" + } + }, + "npm:strip-ansi@5.2.0": { + "type": "npm", + "name": "npm:strip-ansi@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "strip-ansi", + "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + } + }, + "npm:strip-ansi@7.1.0": { + "type": "npm", + "name": "npm:strip-ansi@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "strip-ansi", + "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-bom@4.0.0": { + "type": "npm", + "name": "npm:strip-bom@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "strip-bom", + "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + }, + "npm:strip-eof": { + "type": "npm", + "name": "npm:strip-eof", + "data": { + "version": "1.0.0", + "packageName": "strip-eof", + "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "2.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + }, + "npm:strip-final-newline@3.0.0": { + "type": "npm", + "name": "npm:strip-final-newline@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" + } + }, + "npm:strip-indent": { + "type": "npm", + "name": "npm:strip-indent", + "data": { + "version": "3.0.0", + "packageName": "strip-indent", + "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + } + }, + "npm:strnum": { + "type": "npm", + "name": "npm:strnum", + "data": { + "version": "1.0.5", + "packageName": "strnum", + "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" + } + }, + "npm:structured-headers": { + "type": "npm", + "name": "npm:structured-headers", + "data": { + "version": "0.4.1", + "packageName": "structured-headers", + "hash": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==" + } + }, + "npm:style-loader": { + "type": "npm", + "name": "npm:style-loader", + "data": { + "version": "3.3.4", + "packageName": "style-loader", + "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" + } + }, + "npm:style-value-types": { + "type": "npm", + "name": "npm:style-value-types", + "data": { + "version": "4.1.1", + "packageName": "style-value-types", + "hash": "sha512-cNLrl6jk+I1T18ZI2KIp/fcqKVuykcNELDrOz7y+TYZR97xmNdN0ewupURvVFnQxVrRJv98TMBq92VMsggq3kw==" + } + }, + "npm:style-value-types@5.0.0": { + "type": "npm", + "name": "npm:style-value-types@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "style-value-types", + "hash": "sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "5.1.1", + "packageName": "stylehacks", + "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" + } + }, + "npm:styleq": { + "type": "npm", + "name": "npm:styleq", + "data": { + "version": "0.1.3", + "packageName": "styleq", + "hash": "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==" + } + }, + "npm:sucrase": { + "type": "npm", + "name": "npm:sucrase", + "data": { + "version": "3.34.0", + "packageName": "sucrase", + "hash": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==" + } + }, + "npm:sucrase@3.35.0": { + "type": "npm", + "name": "npm:sucrase@3.35.0", + "data": { + "version": "3.35.0", + "packageName": "sucrase", + "hash": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==" + } + }, + "npm:sudo-prompt": { + "type": "npm", + "name": "npm:sudo-prompt", + "data": { + "version": "9.1.1", + "packageName": "sudo-prompt", + "hash": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==" + } + }, + "npm:sudo-prompt@8.2.5": { + "type": "npm", + "name": "npm:sudo-prompt@8.2.5", + "data": { + "version": "8.2.5", + "packageName": "sudo-prompt", + "hash": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" + } + }, + "npm:sudo-prompt@9.2.1": { + "type": "npm", + "name": "npm:sudo-prompt@9.2.1", + "data": { + "version": "9.2.1", + "packageName": "sudo-prompt", + "hash": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==" + } + }, + "npm:supports-color@2.0.0": { + "type": "npm", + "name": "npm:supports-color@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "supports-color", + "hash": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" + } + }, + "npm:supports-color@5.5.0": { + "type": "npm", + "name": "npm:supports-color@5.5.0", + "data": { + "version": "5.5.0", + "packageName": "supports-color", + "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:supports-color@8.1.1": { + "type": "npm", + "name": "npm:supports-color@8.1.1", + "data": { + "version": "8.1.1", + "packageName": "supports-color", + "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" + } + }, + "npm:supports-hyperlinks": { + "type": "npm", + "name": "npm:supports-hyperlinks", + "data": { + "version": "2.3.0", + "packageName": "supports-hyperlinks", + "hash": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svgo@2.8.0": { + "type": "npm", + "name": "npm:svgo@2.8.0", + "data": { + "version": "2.8.0", + "packageName": "svgo", + "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" + } + }, + "npm:symbol-tree": { + "type": "npm", + "name": "npm:symbol-tree", + "data": { + "version": "3.2.4", + "packageName": "symbol-tree", + "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.2.1", + "packageName": "tapable", + "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "6.2.0", + "packageName": "tar", + "hash": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==" + } + }, + "npm:temp-dir@1.0.0": { + "type": "npm", + "name": "npm:temp-dir@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "temp-dir", + "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" + } + }, + "npm:temp-dir": { + "type": "npm", + "name": "npm:temp-dir", + "data": { + "version": "2.0.0", + "packageName": "temp-dir", + "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + } + }, + "npm:temp": { + "type": "npm", + "name": "npm:temp", + "data": { + "version": "0.8.4", + "packageName": "temp", + "hash": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==" + } + }, + "npm:tempy": { + "type": "npm", + "name": "npm:tempy", + "data": { + "version": "0.3.0", + "packageName": "tempy", + "hash": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==" + } + }, + "npm:tempy@0.7.1": { + "type": "npm", + "name": "npm:tempy@0.7.1", + "data": { + "version": "0.7.1", + "packageName": "tempy", + "hash": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==" + } + }, + "npm:terminal-link": { + "type": "npm", + "name": "npm:terminal-link", + "data": { + "version": "2.1.1", + "packageName": "terminal-link", + "hash": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==" + } + }, + "npm:terser-webpack-plugin": { + "type": "npm", + "name": "npm:terser-webpack-plugin", + "data": { + "version": "5.3.10", + "packageName": "terser-webpack-plugin", + "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" + } + }, + "npm:terser": { + "type": "npm", + "name": "npm:terser", + "data": { + "version": "5.27.0", + "packageName": "terser", + "hash": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==" + } + }, + "npm:test-exclude": { + "type": "npm", + "name": "npm:test-exclude", + "data": { + "version": "6.0.0", + "packageName": "test-exclude", + "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + } + }, + "npm:text-table": { + "type": "npm", + "name": "npm:text-table", + "data": { + "version": "0.2.0", + "packageName": "text-table", + "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + } + }, + "npm:thenify-all": { + "type": "npm", + "name": "npm:thenify-all", + "data": { + "version": "1.6.0", + "packageName": "thenify-all", + "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" + } + }, + "npm:thenify": { + "type": "npm", + "name": "npm:thenify", + "data": { + "version": "3.3.1", + "packageName": "thenify", + "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" + } + }, + "npm:throat": { + "type": "npm", + "name": "npm:throat", + "data": { + "version": "5.0.0", + "packageName": "throat", + "hash": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + } + }, + "npm:through2": { + "type": "npm", + "name": "npm:through2", + "data": { + "version": "2.0.5", + "packageName": "through2", + "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + } + }, + "npm:through": { + "type": "npm", + "name": "npm:through", + "data": { + "version": "2.3.8", + "packageName": "through", + "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + } + }, + "npm:thunky": { + "type": "npm", + "name": "npm:thunky", + "data": { + "version": "1.1.0", + "packageName": "thunky", + "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.0.33", + "packageName": "tmp", + "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" + } + }, + "npm:tmpl": { + "type": "npm", + "name": "npm:tmpl", + "data": { + "version": "1.0.5", + "packageName": "tmpl", + "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + } + }, + "npm:to-fast-properties": { + "type": "npm", + "name": "npm:to-fast-properties", + "data": { + "version": "2.0.0", + "packageName": "to-fast-properties", + "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "4.1.3", + "packageName": "tough-cookie", + "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "3.0.0", + "packageName": "tr46", + "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" + } + }, + "npm:tr46@0.0.3": { + "type": "npm", + "name": "npm:tr46@0.0.3", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:traverse": { + "type": "npm", + "name": "npm:traverse", + "data": { + "version": "0.6.8", + "packageName": "traverse", + "hash": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==" + } + }, + "npm:ts-api-utils": { + "type": "npm", + "name": "npm:ts-api-utils", + "data": { + "version": "1.0.3", + "packageName": "ts-api-utils", + "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" + } + }, + "npm:ts-interface-checker": { + "type": "npm", + "name": "npm:ts-interface-checker", + "data": { + "version": "0.1.13", + "packageName": "ts-interface-checker", + "hash": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" + } + }, + "npm:tsconfig-paths@3.15.0": { + "type": "npm", + "name": "npm:tsconfig-paths@3.15.0", + "data": { + "version": "3.15.0", + "packageName": "tsconfig-paths", + "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" + } + }, + "npm:tslib@1.14.1": { + "type": "npm", + "name": "npm:tslib@1.14.1", + "data": { + "version": "1.14.1", + "packageName": "tslib", + "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.6.2", + "packageName": "tslib", + "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + } + }, + "npm:tsutils": { + "type": "npm", + "name": "npm:tsutils", + "data": { + "version": "3.21.0", + "packageName": "tsutils", + "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-detect": { + "type": "npm", + "name": "npm:type-detect", + "data": { + "version": "4.0.8", + "packageName": "type-detect", + "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + } + }, + "npm:type-fest@0.16.0": { + "type": "npm", + "name": "npm:type-fest@0.16.0", + "data": { + "version": "0.16.0", + "packageName": "type-fest", + "hash": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest@0.21.3": { + "type": "npm", + "name": "npm:type-fest@0.21.3", + "data": { + "version": "0.21.3", + "packageName": "type-fest", + "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + } + }, + "npm:type-fest@0.3.1": { + "type": "npm", + "name": "npm:type-fest@0.3.1", + "data": { + "version": "0.3.1", + "packageName": "type-fest", + "hash": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + } + }, + "npm:type-fest@0.7.1": { + "type": "npm", + "name": "npm:type-fest@0.7.1", + "data": { + "version": "0.7.1", + "packageName": "type-fest", + "hash": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" + } + }, + "npm:type-fest@1.4.0": { + "type": "npm", + "name": "npm:type-fest@1.4.0", + "data": { + "version": "1.4.0", + "packageName": "type-fest", + "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" + } + }, + "npm:type-fest@3.13.1": { + "type": "npm", + "name": "npm:type-fest@3.13.1", + "data": { + "version": "3.13.1", + "packageName": "type-fest", + "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "1.6.18", + "packageName": "type-is", + "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.0", + "packageName": "typed-array-buffer", + "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-length", + "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.0", + "packageName": "typed-array-byte-offset", + "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.4", + "packageName": "typed-array-length", + "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "5.3.3", + "packageName": "typescript", + "hash": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==" + } + }, + "npm:ua-parser-js": { + "type": "npm", + "name": "npm:ua-parser-js", + "data": { + "version": "0.7.37", + "packageName": "ua-parser-js", + "hash": "sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA==" + } + }, + "npm:ua-parser-js@1.0.37": { + "type": "npm", + "name": "npm:ua-parser-js@1.0.37", + "data": { + "version": "1.0.37", + "packageName": "ua-parser-js", + "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.0.2", + "packageName": "unbox-primitive", + "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" + } + }, + "npm:undici-types": { + "type": "npm", + "name": "npm:undici-types", + "data": { + "version": "5.26.5", + "packageName": "undici-types", + "hash": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + } + }, + "npm:unicode-canonical-property-names-ecmascript": { + "type": "npm", + "name": "npm:unicode-canonical-property-names-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-canonical-property-names-ecmascript", + "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + } + }, + "npm:unicode-match-property-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-ecmascript", + "data": { + "version": "2.0.0", + "packageName": "unicode-match-property-ecmascript", + "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" + } + }, + "npm:unicode-match-property-value-ecmascript": { + "type": "npm", + "name": "npm:unicode-match-property-value-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-match-property-value-ecmascript", + "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" + } + }, + "npm:unicode-property-aliases-ecmascript": { + "type": "npm", + "name": "npm:unicode-property-aliases-ecmascript", + "data": { + "version": "2.1.0", + "packageName": "unicode-property-aliases-ecmascript", + "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "1.1.1", + "packageName": "unique-filename", + "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "2.0.2", + "packageName": "unique-slug", + "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + } + }, + "npm:unique-string": { + "type": "npm", + "name": "npm:unique-string", + "data": { + "version": "1.0.0", + "packageName": "unique-string", + "hash": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==" + } + }, + "npm:unique-string@2.0.0": { + "type": "npm", + "name": "npm:unique-string@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "unique-string", + "hash": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" + } + }, + "npm:universalify@0.1.2": { + "type": "npm", + "name": "npm:universalify@0.1.2", + "data": { + "version": "0.1.2", + "packageName": "universalify", + "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + }, + "npm:universalify@0.2.0": { + "type": "npm", + "name": "npm:universalify@0.2.0", + "data": { + "version": "0.2.0", + "packageName": "universalify", + "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" + } + }, + "npm:universalify@1.0.0": { + "type": "npm", + "name": "npm:universalify@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "universalify", + "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" + } + }, + "npm:universalify": { + "type": "npm", + "name": "npm:universalify", + "data": { + "version": "2.0.1", + "packageName": "universalify", + "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.0.13", + "packageName": "update-browserslist-db", + "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" + } + }, + "npm:update-check": { + "type": "npm", + "name": "npm:update-check", + "data": { + "version": "1.5.3", + "packageName": "update-check", + "hash": "sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.0", + "packageName": "url-join", + "hash": "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==" + } + }, + "npm:url-parse": { + "type": "npm", + "name": "npm:url-parse", + "data": { + "version": "1.5.10", + "packageName": "url-parse", + "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" + } + }, + "npm:url": { + "type": "npm", + "name": "npm:url", + "data": { + "version": "0.11.3", + "packageName": "url", + "hash": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==" + } + }, + "npm:use-debounce": { + "type": "npm", + "name": "npm:use-debounce", + "data": { + "version": "9.0.4", + "packageName": "use-debounce", + "hash": "sha512-6X8H/mikbrt0XE8e+JXRtZ8yYVvKkdYRfmIhWZYsP8rcNs9hk3APV8Ua2mFkKRLcJKVdnX2/Vwrmg2GWKUQEaQ==" + } + }, + "npm:use-latest-callback": { + "type": "npm", + "name": "npm:use-latest-callback", + "data": { + "version": "0.1.9", + "packageName": "use-latest-callback", + "hash": "sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==" + } + }, + "npm:use-sync-external-store": { + "type": "npm", + "name": "npm:use-sync-external-store", + "data": { + "version": "1.2.0", + "packageName": "use-sync-external-store", + "hash": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + } + }, + "npm:util": { + "type": "npm", + "name": "npm:util", + "data": { + "version": "0.12.5", + "packageName": "util", + "hash": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==" + } + }, + "npm:utila": { + "type": "npm", + "name": "npm:utila", + "data": { + "version": "0.4.0", + "packageName": "utila", + "hash": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + } + }, + "npm:utils-merge": { + "type": "npm", + "name": "npm:utils-merge", + "data": { + "version": "1.0.1", + "packageName": "utils-merge", + "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + } + }, + "npm:uuid@7.0.3": { + "type": "npm", + "name": "npm:uuid@7.0.3", + "data": { + "version": "7.0.3", + "packageName": "uuid", + "hash": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==" + } + }, + "npm:uuid": { + "type": "npm", + "name": "npm:uuid", + "data": { + "version": "8.3.2", + "packageName": "uuid", + "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + } + }, + "npm:v8-to-istanbul": { + "type": "npm", + "name": "npm:v8-to-istanbul", + "data": { + "version": "9.2.0", + "packageName": "v8-to-istanbul", + "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" + } + }, + "npm:valid-url": { + "type": "npm", + "name": "npm:valid-url", + "data": { + "version": "1.0.9", + "packageName": "valid-url", + "hash": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" + } + }, + "npm:validate-npm-package-name": { + "type": "npm", + "name": "npm:validate-npm-package-name", + "data": { + "version": "3.0.0", + "packageName": "validate-npm-package-name", + "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + }, + "npm:vlq": { + "type": "npm", + "name": "npm:vlq", + "data": { + "version": "1.0.1", + "packageName": "vlq", + "hash": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" + } + }, + "npm:void-elements": { + "type": "npm", + "name": "npm:void-elements", + "data": { + "version": "3.1.0", + "packageName": "void-elements", + "hash": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==" + } + }, + "npm:w3c-xmlserializer": { + "type": "npm", + "name": "npm:w3c-xmlserializer", + "data": { + "version": "4.0.0", + "packageName": "w3c-xmlserializer", + "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" + } + }, + "npm:walker": { + "type": "npm", + "name": "npm:walker", + "data": { + "version": "1.0.8", + "packageName": "walker", + "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" + } + }, + "npm:warn-once": { + "type": "npm", + "name": "npm:warn-once", + "data": { + "version": "0.1.1", + "packageName": "warn-once", + "hash": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==" + } + }, + "npm:watchpack": { + "type": "npm", + "name": "npm:watchpack", + "data": { + "version": "2.4.0", + "packageName": "watchpack", + "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" + } + }, + "npm:wbuf": { + "type": "npm", + "name": "npm:wbuf", + "data": { + "version": "1.7.3", + "packageName": "wbuf", + "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" + } + }, + "npm:web-encoding": { + "type": "npm", + "name": "npm:web-encoding", + "data": { + "version": "1.1.5", + "packageName": "web-encoding", + "hash": "sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.3.2", + "packageName": "web-streams-polyfill", + "hash": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==" + } + }, + "npm:webidl-conversions@3.0.1": { + "type": "npm", + "name": "npm:webidl-conversions@3.0.1", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webidl-conversions@5.0.0": { + "type": "npm", + "name": "npm:webidl-conversions@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "7.0.0", + "packageName": "webidl-conversions", + "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + } + }, + "npm:webpack-dev-middleware": { + "type": "npm", + "name": "npm:webpack-dev-middleware", + "data": { + "version": "5.3.3", + "packageName": "webpack-dev-middleware", + "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" + } + }, + "npm:webpack-dev-server": { + "type": "npm", + "name": "npm:webpack-dev-server", + "data": { + "version": "4.15.1", + "packageName": "webpack-dev-server", + "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" + } + }, + "npm:webpack-manifest-plugin": { + "type": "npm", + "name": "npm:webpack-manifest-plugin", + "data": { + "version": "4.1.1", + "packageName": "webpack-manifest-plugin", + "hash": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==" + } + }, + "npm:webpack-sources@2.3.1": { + "type": "npm", + "name": "npm:webpack-sources@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "webpack-sources", + "hash": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==" + } + }, + "npm:webpack-sources": { + "type": "npm", + "name": "npm:webpack-sources", + "data": { + "version": "3.2.3", + "packageName": "webpack-sources", + "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + } + }, + "npm:webpack": { + "type": "npm", + "name": "npm:webpack", + "data": { + "version": "5.90.0", + "packageName": "webpack", + "hash": "sha512-bdmyXRCXeeNIePv6R6tGPyy20aUobw4Zy8r0LUS2EWO+U+Ke/gYDgsCh7bl5rB6jPpr4r0SZa6dPxBxLooDT3w==" + } + }, + "npm:websocket-driver": { + "type": "npm", + "name": "npm:websocket-driver", + "data": { + "version": "0.7.4", + "packageName": "websocket-driver", + "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + } + }, + "npm:websocket-extensions": { + "type": "npm", + "name": "npm:websocket-extensions", + "data": { + "version": "0.1.4", + "packageName": "websocket-extensions", + "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-fetch": { + "type": "npm", + "name": "npm:whatwg-fetch", + "data": { + "version": "3.6.20", + "packageName": "whatwg-fetch", + "hash": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" + } + }, + "npm:whatwg-mimetype": { + "type": "npm", + "name": "npm:whatwg-mimetype", + "data": { + "version": "3.0.0", + "packageName": "whatwg-mimetype", + "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" + } + }, + "npm:whatwg-url-without-unicode": { + "type": "npm", + "name": "npm:whatwg-url-without-unicode", + "data": { + "version": "8.0.0-3", + "packageName": "whatwg-url-without-unicode", + "hash": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "11.0.0", + "packageName": "whatwg-url", + "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" + } + }, + "npm:whatwg-url@5.0.0": { + "type": "npm", + "name": "npm:whatwg-url@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.0.2", + "packageName": "which-boxed-primitive", + "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" + } + }, + "npm:which-builtin-type": { + "type": "npm", + "name": "npm:which-builtin-type", + "data": { + "version": "1.1.3", + "packageName": "which-builtin-type", + "hash": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==" + } + }, + "npm:which-collection": { + "type": "npm", + "name": "npm:which-collection", + "data": { + "version": "1.0.1", + "packageName": "which-collection", + "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" + } + }, + "npm:which-module": { + "type": "npm", + "name": "npm:which-module", + "data": { + "version": "2.0.1", + "packageName": "which-module", + "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.13", + "packageName": "which-typed-array", + "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" + } + }, + "npm:which@1.3.1": { + "type": "npm", + "name": "npm:which@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "which", + "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:wonka": { + "type": "npm", + "name": "npm:wonka", + "data": { + "version": "4.0.15", + "packageName": "wonka", + "hash": "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==" + } + }, + "npm:wonka@6.3.4": { + "type": "npm", + "name": "npm:wonka@6.3.4", + "data": { + "version": "6.3.4", + "packageName": "wonka", + "hash": "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@^7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi@6.2.0": { + "type": "npm", + "name": "npm:wrap-ansi@6.2.0", + "data": { + "version": "6.2.0", + "packageName": "wrap-ansi", + "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:write-file-atomic": { + "type": "npm", + "name": "npm:write-file-atomic", + "data": { + "version": "2.4.3", + "packageName": "write-file-atomic", + "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" + } + }, + "npm:write-file-atomic@4.0.2": { + "type": "npm", + "name": "npm:write-file-atomic@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "write-file-atomic", + "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" + } + }, + "npm:ws@6.2.2": { + "type": "npm", + "name": "npm:ws@6.2.2", + "data": { + "version": "6.2.2", + "packageName": "ws", + "hash": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "7.5.9", + "packageName": "ws", + "hash": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==" + } + }, + "npm:ws@8.16.0": { + "type": "npm", + "name": "npm:ws@8.16.0", + "data": { + "version": "8.16.0", + "packageName": "ws", + "hash": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==" + } + }, + "npm:xcode": { + "type": "npm", + "name": "npm:xcode", + "data": { + "version": "3.0.1", + "packageName": "xcode", + "hash": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==" + } + }, + "npm:xml-js": { + "type": "npm", + "name": "npm:xml-js", + "data": { + "version": "1.6.11", + "packageName": "xml-js", + "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:xml2js@0.4.23": { + "type": "npm", + "name": "npm:xml2js@0.4.23", + "data": { + "version": "0.4.23", + "packageName": "xml2js", + "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" + } + }, + "npm:xml2js": { + "type": "npm", + "name": "npm:xml2js", + "data": { + "version": "0.6.0", + "packageName": "xml2js", + "hash": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==" + } + }, + "npm:xmlbuilder@14.0.0": { + "type": "npm", + "name": "npm:xmlbuilder@14.0.0", + "data": { + "version": "14.0.0", + "packageName": "xmlbuilder", + "hash": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==" + } + }, + "npm:xmlbuilder@15.1.1": { + "type": "npm", + "name": "npm:xmlbuilder@15.1.1", + "data": { + "version": "15.1.1", + "packageName": "xmlbuilder", + "hash": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==" + } + }, + "npm:xmlbuilder": { + "type": "npm", + "name": "npm:xmlbuilder", + "data": { + "version": "11.0.1", + "packageName": "xmlbuilder", + "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + } + }, + "npm:xmlchars": { + "type": "npm", + "name": "npm:xmlchars", + "data": { + "version": "2.2.0", + "packageName": "xmlchars", + "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + } + }, + "npm:xmlhttprequest": { + "type": "npm", + "name": "npm:xmlhttprequest", + "data": { + "version": "1.8.0", + "packageName": "xmlhttprequest", + "hash": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" + } + }, + "npm:xtend": { + "type": "npm", + "name": "npm:xtend", + "data": { + "version": "4.0.2", + "packageName": "xtend", + "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + }, + "npm:y18n@4.0.3": { + "type": "npm", + "name": "npm:y18n@4.0.3", + "data": { + "version": "4.0.3", + "packageName": "y18n", + "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yallist@3.1.1": { + "type": "npm", + "name": "npm:yallist@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yaml@2.3.1": { + "type": "npm", + "name": "npm:yaml@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "yaml", + "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "1.10.2", + "packageName": "yaml", + "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + } + }, + "npm:yaml@2.3.4": { + "type": "npm", + "name": "npm:yaml@2.3.4", + "data": { + "version": "2.3.4", + "packageName": "yaml", + "hash": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==" + } + }, + "npm:yargs-parser@18.1.3": { + "type": "npm", + "name": "npm:yargs-parser@18.1.3", + "data": { + "version": "18.1.3", + "packageName": "yargs-parser", + "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs@15.4.1": { + "type": "npm", + "name": "npm:yargs@15.4.1", + "data": { + "version": "15.4.1", + "packageName": "yargs", + "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:yocto-queue@1.0.0": { + "type": "npm", + "name": "npm:yocto-queue@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "yocto-queue", + "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" + } + } + }, + "dependencies": { + "npm:@ampproject/remapping": [ + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@ampproject/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@babel/code-frame@7.10.4": [ + { + "source": "npm:@babel/code-frame@7.10.4", + "target": "npm:@babel/highlight", + "type": "static" + } + ], + "npm:@babel/code-frame": [ + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/highlight", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:@babel/core": [ + { + "source": "npm:@babel/core", + "target": "npm:@ampproject/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/generator": [ + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/helper-annotate-as-pure": [ + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ + { + "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-compilation-targets": [ + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache@5.1.1", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-class-features-plugin": [ + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-class-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-create-regexp-features-plugin": [ + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:regexpu-core", + "type": "static" + }, + { + "source": "npm:@babel/helper-create-regexp-features-plugin", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/helper-define-polyfill-provider": [ + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@babel/helper-define-polyfill-provider", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:@babel/helper-function-name": [ + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-function-name", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-hoist-variables": [ + { + "source": "npm:@babel/helper-hoist-variables", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-member-expression-to-functions": [ + { + "source": "npm:@babel/helper-member-expression-to-functions", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-imports": [ + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-transforms": [ + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-simple-access", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/helper-optimise-call-expression": [ + { + "source": "npm:@babel/helper-optimise-call-expression", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-remap-async-to-generator": [ + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-remap-async-to-generator", + "target": "npm:@babel/helper-wrap-function", + "type": "static" + } + ], + "npm:@babel/helper-replace-supers": [ + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-member-expression-to-functions", + "type": "static" + }, + { + "source": "npm:@babel/helper-replace-supers", + "target": "npm:@babel/helper-optimise-call-expression", + "type": "static" + } + ], + "npm:@babel/helper-simple-access": [ + { + "source": "npm:@babel/helper-simple-access", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-skip-transparent-expression-wrappers": [ + { + "source": "npm:@babel/helper-skip-transparent-expression-wrappers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-split-export-declaration": [ + { + "source": "npm:@babel/helper-split-export-declaration", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-wrap-function": [ + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helper-wrap-function", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helpers": [ + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/highlight": [ + { + "source": "npm:@babel/highlight", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:@babel/highlight", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ + { + "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": [ + { + "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-async-generator-functions": [ + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-class-properties": [ + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-decorators": [ + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-decorators", + "target": "npm:@babel/plugin-syntax-decorators", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-export-default-from": [ + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-export-default-from", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-numeric-separator": [ + { + "source": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-object-rest-spread": [ + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + } + ], + "npm:@babel/plugin-proposal-optional-chaining": [ + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-proposal-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-async-generators": [ + { + "source": "npm:@babel/plugin-syntax-async-generators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-bigint": [ + { + "source": "npm:@babel/plugin-syntax-bigint", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-properties": [ + { + "source": "npm:@babel/plugin-syntax-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-class-static-block": [ + { + "source": "npm:@babel/plugin-syntax-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-decorators": [ + { + "source": "npm:@babel/plugin-syntax-decorators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-dynamic-import": [ + { + "source": "npm:@babel/plugin-syntax-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-export-default-from": [ + { + "source": "npm:@babel/plugin-syntax-export-default-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-export-namespace-from": [ + { + "source": "npm:@babel/plugin-syntax-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-flow": [ + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-assertions": [ + { + "source": "npm:@babel/plugin-syntax-import-assertions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-attributes": [ + { + "source": "npm:@babel/plugin-syntax-import-attributes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-import-meta": [ + { + "source": "npm:@babel/plugin-syntax-import-meta", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-json-strings": [ + { + "source": "npm:@babel/plugin-syntax-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx": [ + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-syntax-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-numeric-separator": [ + { + "source": "npm:@babel/plugin-syntax-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-object-rest-spread": [ + { + "source": "npm:@babel/plugin-syntax-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-syntax-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-optional-chaining": [ + { + "source": "npm:@babel/plugin-syntax-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-private-property-in-object": [ + { + "source": "npm:@babel/plugin-syntax-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-top-level-await": [ + { + "source": "npm:@babel/plugin-syntax-top-level-await", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-typescript": [ + { + "source": "npm:@babel/plugin-syntax-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-arrow-functions": [ + { + "source": "npm:@babel/plugin-transform-arrow-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-generator-functions": [ + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-generator-functions", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-async-to-generator": [ + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-async-to-generator", + "target": "npm:@babel/helper-remap-async-to-generator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoped-functions": [ + { + "source": "npm:@babel/plugin-transform-block-scoped-functions", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-block-scoping": [ + { + "source": "npm:@babel/plugin-transform-block-scoping", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-properties": [ + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-class-static-block": [ + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-class-static-block", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + } + ], + "npm:@babel/plugin-transform-classes": [ + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-classes", + "target": "npm:globals@11.12.0", + "type": "static" + } + ], + "npm:@babel/plugin-transform-computed-properties": [ + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-computed-properties", + "target": "npm:@babel/template", + "type": "static" + } + ], + "npm:@babel/plugin-transform-destructuring": [ + { + "source": "npm:@babel/plugin-transform-destructuring", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dotall-regex": [ + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dotall-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-duplicate-keys": [ + { + "source": "npm:@babel/plugin-transform-duplicate-keys", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-dynamic-import": [ + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-dynamic-import", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + } + ], + "npm:@babel/plugin-transform-exponentiation-operator": [ + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-exponentiation-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-export-namespace-from": [ + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-export-namespace-from", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + } + ], + "npm:@babel/plugin-transform-flow-strip-types": [ + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + } + ], + "npm:@babel/plugin-transform-for-of": [ + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-for-of", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-function-name": [ + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-function-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-json-strings": [ + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-json-strings", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + } + ], + "npm:@babel/plugin-transform-literals": [ + { + "source": "npm:@babel/plugin-transform-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-logical-assignment-operators": [ + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-logical-assignment-operators", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + } + ], + "npm:@babel/plugin-transform-member-expression-literals": [ + { + "source": "npm:@babel/plugin-transform-member-expression-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-amd": [ + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-amd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-commonjs": [ + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-commonjs", + "target": "npm:@babel/helper-simple-access", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-systemjs": [ + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-systemjs", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/plugin-transform-modules-umd": [ + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-modules-umd", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-named-capturing-groups-regex": [ + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-new-target": [ + { + "source": "npm:@babel/plugin-transform-new-target", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-nullish-coalescing-operator": [ + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-numeric-separator": [ + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-numeric-separator", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-assign": [ + { + "source": "npm:@babel/plugin-transform-object-assign", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-rest-spread": [ + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-rest-spread", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + } + ], + "npm:@babel/plugin-transform-object-super": [ + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-object-super", + "target": "npm:@babel/helper-replace-supers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-catch-binding": [ + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-catch-binding", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + } + ], + "npm:@babel/plugin-transform-optional-chaining": [ + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-optional-chaining", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + } + ], + "npm:@babel/plugin-transform-parameters": [ + { + "source": "npm:@babel/plugin-transform-parameters", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-methods": [ + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-methods", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-private-property-in-object": [ + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-private-property-in-object", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + } + ], + "npm:@babel/plugin-transform-property-literals": [ + { + "source": "npm:@babel/plugin-transform-property-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-display-name": [ + { + "source": "npm:@babel/plugin-transform-react-display-name", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx-development": [ + { + "source": "npm:@babel/plugin-transform-react-jsx-development", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx-self": [ + { + "source": "npm:@babel/plugin-transform-react-jsx-self", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx-source": [ + { + "source": "npm:@babel/plugin-transform-react-jsx-source", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx": [ + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-pure-annotations": [ + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-pure-annotations", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-regenerator": [ + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-regenerator", + "target": "npm:regenerator-transform", + "type": "static" + } + ], + "npm:@babel/plugin-transform-reserved-words": [ + { + "source": "npm:@babel/plugin-transform-reserved-words", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-runtime": [ + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-runtime", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/plugin-transform-shorthand-properties": [ + { + "source": "npm:@babel/plugin-transform-shorthand-properties", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-spread": [ + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-spread", + "target": "npm:@babel/helper-skip-transparent-expression-wrappers", + "type": "static" + } + ], + "npm:@babel/plugin-transform-sticky-regex": [ + { + "source": "npm:@babel/plugin-transform-sticky-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-template-literals": [ + { + "source": "npm:@babel/plugin-transform-template-literals", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typeof-symbol": [ + { + "source": "npm:@babel/plugin-transform-typeof-symbol", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-typescript": [ + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-create-class-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-typescript", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-escapes": [ + { + "source": "npm:@babel/plugin-transform-unicode-escapes", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-property-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-property-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-unicode-sets-regex": [ + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-create-regexp-features-plugin", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-unicode-sets-regex", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/preset-env": [ + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-proposal-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-assertions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-attributes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-syntax-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-class-static-block", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dotall-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-duplicate-keys", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-dynamic-import", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-exponentiation-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-json-strings", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-amd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-systemjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-modules-umd", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-new-target", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-numeric-separator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-optional-chaining", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-reserved-words", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-typeof-symbol", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-escapes", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-property-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/plugin-transform-unicode-sets-regex", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:@babel/preset-modules", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs2", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-corejs3", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:babel-plugin-polyfill-regenerator", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:core-js-compat", + "type": "static" + }, + { + "source": "npm:@babel/preset-env", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:@babel/preset-flow": [ + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-flow", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + } + ], + "npm:@babel/preset-modules": [ + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/preset-modules", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:@babel/preset-react": [ + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-jsx-development", + "type": "static" + }, + { + "source": "npm:@babel/preset-react", + "target": "npm:@babel/plugin-transform-react-pure-annotations", + "type": "static" + } + ], + "npm:@babel/preset-typescript": [ + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@babel/preset-typescript", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + } + ], + "npm:@babel/register": [ + { + "source": "npm:@babel/register", + "target": "npm:clone-deep", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:find-cache-dir@2.1.0", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@babel/register", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:@babel/runtime": [ + { + "source": "npm:@babel/runtime", + "target": "npm:regenerator-runtime@0.14.1", + "type": "static" + } + ], + "npm:@babel/template": [ + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/traverse": [ + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-environment-visitor", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-function-name", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-hoist-variables", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-split-export-declaration", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:globals@11.12.0", + "type": "static" + } + ], + "npm:@babel/types": [ + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:to-fast-properties", + "type": "static" + } + ], + "npm:@egjs/hammerjs": [ + { + "source": "npm:@egjs/hammerjs", + "target": "npm:@types/hammerjs", + "type": "static" + } + ], + "npm:@emotion/is-prop-valid": [ + { + "source": "npm:@emotion/is-prop-valid", + "target": "npm:@emotion/memoize", + "type": "static" + } + ], + "npm:@eslint-community/eslint-utils": [ + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@eslint/eslintrc": [ + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:@expo/bunyan": [ + { + "source": "npm:@expo/bunyan", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:@expo/bunyan", + "target": "npm:mv", + "type": "static" + }, + { + "source": "npm:@expo/bunyan", + "target": "npm:safe-json-stringify", + "type": "static" + } + ], + "npm:@expo/cli@0.17.2": [ + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/code-signing-certificates", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/devcert", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/env", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/image-utils", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/metro-config", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/osascript", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/package-manager", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/plist", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/prebuild-config", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/rudder-sdk-node", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@expo/xcpretty", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@react-native/dev-middleware", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@urql/core", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:@urql/exchange-retry", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:arg", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:better-opn", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:bplist-parser", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:env-editor", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:form-data@3.0.1", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:freeport-async", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:graphql", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:graphql-tag", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:internal-ip", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:json-schema-deref-sync", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:lodash.debounce", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:md5hex", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:picomatch@3.0.1", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:pretty-bytes", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:qrcode-terminal", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:requireg", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:structured-headers", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:tempy@0.7.1", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:terminal-link", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:text-table", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:url-join", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:@expo/cli@0.17.2", + "target": "npm:ws@8.16.0", + "type": "static" + } + ], + "npm:@expo/code-signing-certificates": [ + { + "source": "npm:@expo/code-signing-certificates", + "target": "npm:node-forge", + "type": "static" + }, + { + "source": "npm:@expo/code-signing-certificates", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:@expo/config-plugins": [ + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/fingerprint", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/plist", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@expo/sdk-runtime-versions", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins", + "target": "npm:xml2js", + "type": "static" + } + ], + "npm:@expo/config-plugins@5.0.4": [ + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/config-types@47.0.0", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/json-file@8.2.36", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/plist@0.0.18", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@expo/sdk-runtime-versions", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/config-plugins@5.0.4", + "target": "npm:xml2js@0.4.23", + "type": "static" + } + ], + "npm:@expo/config": [ + { + "source": "npm:@expo/config", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config", + "target": "npm:sucrase", + "type": "static" + } + ], + "npm:@expo/config@7.0.3": [ + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@expo/config-plugins@5.0.4", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@expo/config-types@47.0.0", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:@expo/json-file@8.2.36", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:slugify", + "type": "static" + }, + { + "source": "npm:@expo/config@7.0.3", + "target": "npm:sucrase@3.35.0", + "type": "static" + } + ], + "npm:@expo/configure-splash-screen": [ + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:color-string", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:commander@5.1.0", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:pngjs@5.0.0", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:xcode", + "type": "static" + }, + { + "source": "npm:@expo/configure-splash-screen", + "target": "npm:xml-js", + "type": "static" + } + ], + "npm:@expo/devcert": [ + { + "source": "npm:@expo/devcert", + "target": "npm:application-config-path", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:command-exists", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:eol", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:password-prompt", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:sudo-prompt@8.2.5", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:@expo/devcert", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@expo/env": [ + { + "source": "npm:@expo/env", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:dotenv@16.0.3", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:@expo/env", + "target": "npm:getenv", + "type": "static" + } + ], + "npm:@expo/fingerprint": [ + { + "source": "npm:@expo/fingerprint", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:@expo/fingerprint", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@expo/image-utils@0.3.22": [ + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:fs-extra@9.0.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:jimp-compact", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:mime@2.6.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:parse-png", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.22", + "target": "npm:tempy", + "type": "static" + } + ], + "npm:@expo/image-utils@0.3.23": [ + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:fs-extra@9.0.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:jimp-compact", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:mime@2.6.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:parse-png", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/image-utils@0.3.23", + "target": "npm:tempy", + "type": "static" + } + ], + "npm:@expo/image-utils": [ + { + "source": "npm:@expo/image-utils", + "target": "npm:@expo/spawn-async", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:fs-extra@9.0.0", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:jimp-compact", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:parse-png", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/image-utils", + "target": "npm:tempy", + "type": "static" + } + ], + "npm:@expo/json-file@8.2.36": [ + { + "source": "npm:@expo/json-file@8.2.36", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/json-file@8.2.36", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:@expo/json-file@8.2.36", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:@expo/json-file": [ + { + "source": "npm:@expo/json-file", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@expo/json-file", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:@expo/metro-config": [ + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/env", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:babel-preset-fbjs", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:jsc-safe-url", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:lightningcss", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/metro-config", + "target": "npm:sucrase", + "type": "static" + } + ], + "npm:@expo/osascript": [ + { + "source": "npm:@expo/osascript", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/osascript", + "target": "npm:exec-async", + "type": "static" + } + ], + "npm:@expo/package-manager": [ + { + "source": "npm:@expo/package-manager", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:@expo/spawn-async@1.7.2", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:npm-package-arg", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:split", + "type": "static" + }, + { + "source": "npm:@expo/package-manager", + "target": "npm:sudo-prompt", + "type": "static" + } + ], + "npm:@expo/plist@0.0.18": [ + { + "source": "npm:@expo/plist@0.0.18", + "target": "npm:@xmldom/xmldom", + "type": "static" + }, + { + "source": "npm:@expo/plist@0.0.18", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:@expo/plist@0.0.18", + "target": "npm:xmlbuilder@14.0.0", + "type": "static" + } + ], + "npm:@expo/plist": [ + { + "source": "npm:@expo/plist", + "target": "npm:@xmldom/xmldom", + "type": "static" + }, + { + "source": "npm:@expo/plist", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:@expo/plist", + "target": "npm:xmlbuilder@14.0.0", + "type": "static" + } + ], + "npm:@expo/prebuild-config@5.0.7": [ + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/config@7.0.3", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/config-plugins@5.0.4", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/config-types@47.0.0", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/image-utils@0.3.22", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:@expo/json-file@8.2.36", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:semver@7.3.2", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config@5.0.7", + "target": "npm:xml2js@0.4.23", + "type": "static" + } + ], + "npm:@expo/prebuild-config": [ + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/config-types", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/image-utils", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:semver@7.5.3", + "type": "static" + }, + { + "source": "npm:@expo/prebuild-config", + "target": "npm:xml2js", + "type": "static" + } + ], + "npm:@expo/rudder-sdk-node": [ + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:@expo/bunyan", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:@segment/loosely-validate-event", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:fetch-retry", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:md5", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:remove-trailing-slash", + "type": "static" + }, + { + "source": "npm:@expo/rudder-sdk-node", + "target": "npm:uuid", + "type": "static" + } + ], + "npm:@expo/server": [ + { + "source": "npm:@expo/server", + "target": "npm:@remix-run/node", + "type": "static" + }, + { + "source": "npm:@expo/server", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:@expo/server", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@expo/server", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:@expo/spawn-async": [ + { + "source": "npm:@expo/spawn-async", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + } + ], + "npm:@expo/spawn-async@1.7.2": [ + { + "source": "npm:@expo/spawn-async@1.7.2", + "target": "npm:cross-spawn", + "type": "static" + } + ], + "npm:@expo/webpack-config": [ + { + "source": "npm:@expo/webpack-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:babel-loader@8.3.0", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:clean-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:copy-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:css-loader", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:css-minimizer-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:expo-pwa", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:fs-extra@11.2.0", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:getenv", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:html-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:mini-css-extract-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:node-html-parser", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:source-map-loader", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:style-loader", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:webpack", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:webpack-dev-server", + "type": "static" + }, + { + "source": "npm:@expo/webpack-config", + "target": "npm:webpack-manifest-plugin", + "type": "static" + } + ], + "npm:@expo/xcpretty": [ + { + "source": "npm:@expo/xcpretty", + "target": "npm:@babel/code-frame@7.10.4", + "type": "static" + }, + { + "source": "npm:@expo/xcpretty", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@expo/xcpretty", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@expo/xcpretty", + "target": "npm:js-yaml@4.1.0", + "type": "static" + } + ], + "npm:@gorhom/bottom-sheet": [ + { + "source": "npm:@gorhom/bottom-sheet", + "target": "npm:@gorhom/portal", + "type": "static" + }, + { + "source": "npm:@gorhom/bottom-sheet", + "target": "npm:invariant", + "type": "static" + } + ], + "npm:@gorhom/portal": [ + { + "source": "npm:@gorhom/portal", + "target": "npm:nanoid", + "type": "static" + } + ], + "npm:@hapi/topo": [ + { + "source": "npm:@hapi/topo", + "target": "npm:@hapi/hoek", + "type": "static" + } + ], + "npm:@humanwhocodes/config-array": [ + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:@humanwhocodes/object-schema", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@humanwhocodes/config-array", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:@isaacs/cliui": [ + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui", + "target": "npm:wrap-ansi-cjs", + "type": "static" + } + ], + "npm:@istanbuljs/load-nyc-config": [ + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:get-package-type", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@istanbuljs/load-nyc-config", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@jest/console": [ + { + "source": "npm:@jest/console", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/console", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/core": [ + { + "source": "npm:@jest/core", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/reporters", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-changed-files", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-resolve-dependencies", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/core", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:@jest/create-cache-key-function": [ + { + "source": "npm:@jest/create-cache-key-function", + "target": "npm:@jest/types", + "type": "static" + } + ], + "npm:@jest/environment": [ + { + "source": "npm:@jest/environment", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/environment", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/expect-utils": [ + { + "source": "npm:@jest/expect-utils", + "target": "npm:jest-get-type", + "type": "static" + } + ], + "npm:@jest/expect": [ + { + "source": "npm:@jest/expect", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@jest/expect", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:@jest/fake-timers": [ + { + "source": "npm:@jest/fake-timers", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@sinonjs/fake-timers", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:@jest/fake-timers", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:@jest/globals": [ + { + "source": "npm:@jest/globals", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/globals", + "target": "npm:jest-mock", + "type": "static" + } + ], + "npm:@jest/reporters": [ + { + "source": "npm:@jest/reporters", + "target": "npm:@bcoe/v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-instrument", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-report", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-lib-source-maps", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:string-length", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@jest/reporters", + "target": "npm:v8-to-istanbul", + "type": "static" + } + ], + "npm:@jest/schemas": [ + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + } + ], + "npm:@jest/source-map": [ + { + "source": "npm:@jest/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:@jest/source-map", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:@jest/test-result": [ + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/test-result", + "target": "npm:collect-v8-coverage", + "type": "static" + } + ], + "npm:@jest/test-sequencer": [ + { + "source": "npm:@jest/test-sequencer", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/test-sequencer", + "target": "npm:slash", + "type": "static" + } + ], + "npm:@jest/transform": [ + { + "source": "npm:@jest/transform", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:@jest/transform", + "target": "npm:write-file-atomic@4.0.2", + "type": "static" + } + ], + "npm:@jest/types@26.6.2": [ + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:@types/yargs@15.0.19", + "type": "static" + }, + { + "source": "npm:@jest/types@26.6.2", + "target": "npm:chalk", + "type": "static" + } + ], + "npm:@jest/types": [ + { + "source": "npm:@jest/types", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/istanbul-reports", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:@types/yargs", + "type": "static" + }, + { + "source": "npm:@jest/types", + "target": "npm:chalk", + "type": "static" + } + ], + "npm:@jridgewell/gen-mapping": [ + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/set-array", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/source-map": [ + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/source-map", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping": [ + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@motify/components": [ + { + "source": "npm:@motify/components", + "target": "npm:@motify/core", + "type": "static" + } + ], + "npm:@motify/components@0.18.0": [ + { + "source": "npm:@motify/components@0.18.0", + "target": "npm:@motify/core@0.18.0", + "type": "static" + } + ], + "npm:@motify/core": [ + { + "source": "npm:@motify/core", + "target": "npm:framer-motion@3.10.6", + "type": "static" + } + ], + "npm:@motify/core@0.18.0": [ + { + "source": "npm:@motify/core@0.18.0", + "target": "npm:framer-motion", + "type": "static" + } + ], + "npm:@motify/interactions": [ + { + "source": "npm:@motify/interactions", + "target": "npm:@motify/components", + "type": "static" + }, + { + "source": "npm:@motify/interactions", + "target": "npm:@motify/core", + "type": "static" + } + ], + "npm:@motify/skeleton": [ + { + "source": "npm:@motify/skeleton", + "target": "npm:@motify/components@0.18.0", + "type": "static" + }, + { + "source": "npm:@motify/skeleton", + "target": "npm:@motify/core@0.18.0", + "type": "static" + } + ], + "npm:@motionone/animation": [ + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/easing", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/dom": [ + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/animation", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/generators", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/easing": [ + { + "source": "npm:@motionone/easing", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/easing", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/generators": [ + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/utils": [ + { + "source": "npm:@motionone/utils", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@nodelib/fs.scandir": [ + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + } + ], + "npm:@nodelib/fs.walk": [ + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + } + ], + "npm:@npmcli/fs": [ + { + "source": "npm:@npmcli/fs", + "target": "npm:@gar/promisify", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@npmcli/move-file": [ + { + "source": "npm:@npmcli/move-file", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:@npmcli/move-file", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:@radix-ui/react-compose-refs": [ + { + "source": "npm:@radix-ui/react-compose-refs", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:@radix-ui/react-slot": [ + { + "source": "npm:@radix-ui/react-slot", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:@radix-ui/react-slot", + "target": "npm:@radix-ui/react-compose-refs", + "type": "static" + } + ], + "npm:@react-native-async-storage/async-storage": [ + { + "source": "npm:@react-native-async-storage/async-storage", + "target": "npm:merge-options", + "type": "static" + } + ], + "npm:@react-native-community/cli-clean": [ + { + "source": "npm:@react-native-community/cli-clean", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-clean", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-clean", + "target": "npm:execa", + "type": "static" + } + ], + "npm:@react-native-community/cli-config": [ + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-config", + "target": "npm:joi", + "type": "static" + } + ], + "npm:@react-native-community/cli-debugger-ui": [ + { + "source": "npm:@react-native-community/cli-debugger-ui", + "target": "npm:serve-static", + "type": "static" + } + ], + "npm:@react-native-community/cli-doctor": [ + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-config", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-platform-android", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-platform-ios", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:command-exists", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:envinfo", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:hermes-profile-transformer", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:ip", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:node-stream-zip", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-doctor", + "target": "npm:yaml@2.3.4", + "type": "static" + } + ], + "npm:@react-native-community/cli-hermes": [ + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:@react-native-community/cli-platform-android", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:hermes-profile-transformer", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-hermes", + "target": "npm:ip", + "type": "static" + } + ], + "npm:@react-native-community/cli-platform-android": [ + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:fast-xml-parser", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-android", + "target": "npm:logkitty", + "type": "static" + } + ], + "npm:@react-native-community/cli-platform-ios": [ + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:fast-xml-parser", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-platform-ios", + "target": "npm:ora@5.4.1", + "type": "static" + } + ], + "npm:@react-native-community/cli-server-api": [ + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:@react-native-community/cli-debugger-ui", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:errorhandler", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:nocache", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:pretty-format@26.6.2", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-server-api", + "target": "npm:ws", + "type": "static" + } + ], + "npm:@react-native-community/cli-tools": [ + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:appdirsjs", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:mime@2.6.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:open@6.4.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:ora@5.4.1", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli-tools", + "target": "npm:sudo-prompt@9.2.1", + "type": "static" + } + ], + "npm:@react-native-community/cli-types": [ + { + "source": "npm:@react-native-community/cli-types", + "target": "npm:joi", + "type": "static" + } + ], + "npm:@react-native-community/cli": [ + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-clean", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-config", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-debugger-ui", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-doctor", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-hermes", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-plugin-metro", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-server-api", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:@react-native-community/cli-types", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:commander@9.5.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:fs-extra@8.1.0", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:prompts", + "type": "static" + }, + { + "source": "npm:@react-native-community/cli", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@react-native/babel-plugin-codegen@0.73.2": [ + { + "source": "npm:@react-native/babel-plugin-codegen@0.73.2", + "target": "npm:@react-native/codegen", + "type": "static" + } + ], + "npm:@react-native/babel-plugin-codegen": [ + { + "source": "npm:@react-native/babel-plugin-codegen", + "target": "npm:@react-native/codegen", + "type": "static" + } + ], + "npm:@react-native/babel-preset@0.73.19": [ + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-numeric-separator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-jsx-self", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-react-jsx-source", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:@react-native/babel-plugin-codegen@0.73.2", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:babel-plugin-transform-flow-enums", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset@0.73.19", + "target": "npm:react-refresh", + "type": "static" + } + ], + "npm:@react-native/babel-preset": [ + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-async-generator-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-numeric-separator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-dynamic-import", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-export-default-from", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-async-to-generator", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-private-methods", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-private-property-in-object", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-jsx-self", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-react-jsx-source", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-runtime", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-sticky-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-typescript", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/plugin-transform-unicode-regex", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:@react-native/babel-plugin-codegen", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:babel-plugin-transform-flow-enums", + "type": "static" + }, + { + "source": "npm:@react-native/babel-preset", + "target": "npm:react-refresh", + "type": "static" + } + ], + "npm:@react-native/codegen": [ + { + "source": "npm:@react-native/codegen", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:flow-parser", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:jscodeshift", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:@react-native/codegen", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:@react-native/community-cli-plugin": [ + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native-community/cli-server-api", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native-community/cli-tools", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native/dev-middleware", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:@react-native/metro-babel-transformer", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:metro", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:metro-config", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@react-native/community-cli-plugin", + "target": "npm:readline", + "type": "static" + } + ], + "npm:@react-native/dev-middleware": [ + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:@isaacs/ttlcache", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:@react-native/debugger-frontend", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:chrome-launcher", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:chromium-edge-launcher", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:@react-native/dev-middleware", + "target": "npm:temp-dir", + "type": "static" + } + ], + "npm:@react-native/metro-babel-transformer": [ + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:@react-native/babel-preset@0.73.19", + "type": "static" + }, + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:hermes-parser@0.15.0", + "type": "static" + }, + { + "source": "npm:@react-native/metro-babel-transformer", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:@react-native/virtualized-lists": [ + { + "source": "npm:@react-native/virtualized-lists", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:@react-native/virtualized-lists", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:@react-native/virtualized-lists@0.72.8": [ + { + "source": "npm:@react-native/virtualized-lists@0.72.8", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:@react-native/virtualized-lists@0.72.8", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:@react-navigation/bottom-tabs": [ + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:@react-navigation/bottom-tabs", + "target": "npm:warn-once", + "type": "static" + } + ], + "npm:@react-navigation/core": [ + { + "source": "npm:@react-navigation/core", + "target": "npm:@react-navigation/routers", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:query-string@7.1.3", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:@react-navigation/core", + "target": "npm:use-latest-callback", + "type": "static" + } + ], + "npm:@react-navigation/native-stack": [ + { + "source": "npm:@react-navigation/native-stack", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/native-stack", + "target": "npm:warn-once", + "type": "static" + } + ], + "npm:@react-navigation/native": [ + { + "source": "npm:@react-navigation/native", + "target": "npm:@react-navigation/core", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:@react-navigation/native", + "target": "npm:nanoid", + "type": "static" + } + ], + "npm:@react-navigation/routers": [ + { + "source": "npm:@react-navigation/routers", + "target": "npm:nanoid", + "type": "static" + } + ], + "npm:@react-navigation/stack": [ + { + "source": "npm:@react-navigation/stack", + "target": "npm:@react-navigation/elements", + "type": "static" + }, + { + "source": "npm:@react-navigation/stack", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:@react-navigation/stack", + "target": "npm:warn-once", + "type": "static" + } + ], + "npm:@remix-run/node": [ + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/server-runtime", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/web-fetch", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/web-file", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@remix-run/web-stream", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:@web3-storage/multipart-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:cookie-signature@1.2.1", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@remix-run/node", + "target": "npm:stream-slice", + "type": "static" + } + ], + "npm:@remix-run/server-runtime": [ + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:@remix-run/router", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:@types/cookie", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:@web3-storage/multipart-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:cookie@0.4.2", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:set-cookie-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/server-runtime", + "target": "npm:source-map@0.7.4", + "type": "static" + } + ], + "npm:@remix-run/web-blob": [ + { + "source": "npm:@remix-run/web-blob", + "target": "npm:@remix-run/web-stream", + "type": "static" + }, + { + "source": "npm:@remix-run/web-blob", + "target": "npm:web-encoding", + "type": "static" + } + ], + "npm:@remix-run/web-fetch": [ + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-blob", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-file", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-form-data", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@remix-run/web-stream", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:@web3-storage/multipart-parser", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:@remix-run/web-fetch", + "target": "npm:mrmime", + "type": "static" + } + ], + "npm:@remix-run/web-file": [ + { + "source": "npm:@remix-run/web-file", + "target": "npm:@remix-run/web-blob", + "type": "static" + } + ], + "npm:@remix-run/web-form-data": [ + { + "source": "npm:@remix-run/web-form-data", + "target": "npm:web-encoding", + "type": "static" + } + ], + "npm:@remix-run/web-stream": [ + { + "source": "npm:@remix-run/web-stream", + "target": "npm:web-streams-polyfill", + "type": "static" + } + ], + "npm:@segment/loosely-validate-event": [ + { + "source": "npm:@segment/loosely-validate-event", + "target": "npm:component-type", + "type": "static" + }, + { + "source": "npm:@segment/loosely-validate-event", + "target": "npm:join-component", + "type": "static" + } + ], + "npm:@sideway/address": [ + { + "source": "npm:@sideway/address", + "target": "npm:@hapi/hoek", + "type": "static" + } + ], + "npm:@sinonjs/commons": [ + { + "source": "npm:@sinonjs/commons", + "target": "npm:type-detect", + "type": "static" + } + ], + "npm:@sinonjs/fake-timers": [ + { + "source": "npm:@sinonjs/fake-timers", + "target": "npm:@sinonjs/commons", + "type": "static" + } + ], + "npm:@tanstack/react-query": [ + { + "source": "npm:@tanstack/react-query", + "target": "npm:@tanstack/query-core", + "type": "static" + }, + { + "source": "npm:@tanstack/react-query", + "target": "npm:use-sync-external-store", + "type": "static" + } + ], + "npm:@testing-library/jest-native": [ + { + "source": "npm:@testing-library/jest-native", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@testing-library/jest-native", + "target": "npm:redent", + "type": "static" + } + ], + "npm:@testing-library/react-native": [ + { + "source": "npm:@testing-library/react-native", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:@testing-library/react-native", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:@testing-library/react-native", + "target": "npm:redent", + "type": "static" + } + ], + "npm:@types/babel__core": [ + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:@types/babel__generator": [ + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__template": [ + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__traverse": [ + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/body-parser": [ + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/bonjour": [ + { + "source": "npm:@types/bonjour", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/connect-history-api-fallback": [ + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/connect-history-api-fallback", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/connect": [ + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/eslint-scope": [ + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:@types/eslint-scope", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:@types/eslint": [ + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + } + ], + "npm:@types/express-serve-static-core": [ + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + } + ], + "npm:@types/express": [ + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + } + ], + "npm:@types/glob": [ + { + "source": "npm:@types/glob", + "target": "npm:@types/minimatch", + "type": "static" + }, + { + "source": "npm:@types/glob", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/graceful-fs": [ + { + "source": "npm:@types/graceful-fs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/http-proxy": [ + { + "source": "npm:@types/http-proxy", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/istanbul-lib-report": [ + { + "source": "npm:@types/istanbul-lib-report", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + } + ], + "npm:@types/istanbul-reports": [ + { + "source": "npm:@types/istanbul-reports", + "target": "npm:@types/istanbul-lib-report", + "type": "static" + } + ], + "npm:@types/jest": [ + { + "source": "npm:@types/jest", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:@types/jest", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:@types/jsdom": [ + { + "source": "npm:@types/jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:@types/tough-cookie", + "type": "static" + }, + { + "source": "npm:@types/jsdom", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:@types/node-forge": [ + { + "source": "npm:@types/node-forge", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/node": [ + { + "source": "npm:@types/node", + "target": "npm:undici-types", + "type": "static" + } + ], + "npm:@types/react-native": [ + { + "source": "npm:@types/react-native", + "target": "npm:@react-native/virtualized-lists@0.72.8", + "type": "static" + }, + { + "source": "npm:@types/react-native", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react-test-renderer": [ + { + "source": "npm:@types/react-test-renderer", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react": [ + { + "source": "npm:@types/react", + "target": "npm:@types/prop-types", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:@types/scheduler", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@types/send": [ + { + "source": "npm:@types/send", + "target": "npm:@types/mime@1.3.5", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/serve-index": [ + { + "source": "npm:@types/serve-index", + "target": "npm:@types/express", + "type": "static" + } + ], + "npm:@types/serve-static": [ + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/mime", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/sockjs": [ + { + "source": "npm:@types/sockjs", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/ws": [ + { + "source": "npm:@types/ws", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/yargs@15.0.19": [ + { + "source": "npm:@types/yargs@15.0.19", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@types/yargs": [ + { + "source": "npm:@types/yargs", + "target": "npm:@types/yargs-parser", + "type": "static" + } + ], + "npm:@typescript-eslint/eslint-plugin@5.62.0": [ + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@typescript-eslint/type-utils@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:natural-compare-lite", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:@typescript-eslint/eslint-plugin": [ + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/parser@5.62.0": [ + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser@5.62.0", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@typescript-eslint/parser": [ + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager": [ + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager@6.19.1": [ + { + "source": "npm:@typescript-eslint/scope-manager@6.19.1", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager@6.19.1", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/type-utils@5.62.0": [ + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils@5.62.0", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:@typescript-eslint/type-utils": [ + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/typescript-estree@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/utils@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree": [ + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys@5.62.0", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:tsutils", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree@6.19.1": [ + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree@6.19.1", + "target": "npm:ts-api-utils", + "type": "static" + } + ], + "npm:@typescript-eslint/utils": [ + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@typescript-eslint/utils@6.19.1": [ + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@types/semver", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@typescript-eslint/scope-manager@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:@typescript-eslint/typescript-estree@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils@6.19.1", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys@5.62.0": [ + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys@5.62.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys": [ + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types@6.19.1", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:@urql/core": [ + { + "source": "npm:@urql/core", + "target": "npm:@graphql-typed-document-node/core", + "type": "static" + }, + { + "source": "npm:@urql/core", + "target": "npm:wonka", + "type": "static" + } + ], + "npm:@urql/core@4.2.3": [ + { + "source": "npm:@urql/core@4.2.3", + "target": "npm:@0no-co/graphql.web", + "type": "static" + }, + { + "source": "npm:@urql/core@4.2.3", + "target": "npm:wonka@6.3.4", + "type": "static" + } + ], + "npm:@urql/exchange-retry": [ + { + "source": "npm:@urql/exchange-retry", + "target": "npm:@urql/core@4.2.3", + "type": "static" + }, + { + "source": "npm:@urql/exchange-retry", + "target": "npm:wonka", + "type": "static" + } + ], + "npm:@webassemblyjs/ast": [ + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-numbers", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/ast", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-numbers": [ + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/floating-point-hex-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-numbers", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/helper-wasm-section": [ + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/helper-wasm-section", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + } + ], + "npm:@webassemblyjs/ieee754": [ + { + "source": "npm:@webassemblyjs/ieee754", + "target": "npm:@xtuc/ieee754", + "type": "static" + } + ], + "npm:@webassemblyjs/leb128": [ + { + "source": "npm:@webassemblyjs/leb128", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-edit": [ + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/helper-wasm-section", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-opt", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-edit", + "target": "npm:@webassemblyjs/wast-printer", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-gen": [ + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-gen", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-opt": [ + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/helper-buffer", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-gen", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-opt", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + } + ], + "npm:@webassemblyjs/wasm-parser": [ + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-api-error", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/helper-wasm-bytecode", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/ieee754", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/leb128", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wasm-parser", + "target": "npm:@webassemblyjs/utf8", + "type": "static" + } + ], + "npm:@webassemblyjs/wast-printer": [ + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:@webassemblyjs/wast-printer", + "target": "npm:@xtuc/long", + "type": "static" + } + ], + "npm:@welldone-software/why-did-you-render": [ + { + "source": "npm:@welldone-software/why-did-you-render", + "target": "npm:lodash", + "type": "static" + } + ], + "npm:abort-controller": [ + { + "source": "npm:abort-controller", + "target": "npm:event-target-shim", + "type": "static" + } + ], + "npm:accepts": [ + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + } + ], + "npm:acorn-globals": [ + { + "source": "npm:acorn-globals", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-globals", + "target": "npm:acorn-walk", + "type": "static" + } + ], + "npm:agent-base": [ + { + "source": "npm:agent-base", + "target": "npm:debug", + "type": "static" + } + ], + "npm:aggregate-error": [ + { + "source": "npm:aggregate-error", + "target": "npm:clean-stack", + "type": "static" + }, + { + "source": "npm:aggregate-error", + "target": "npm:indent-string", + "type": "static" + } + ], + "npm:ajv-formats@2.1.1": [ + { + "source": "npm:ajv-formats@2.1.1", + "target": "npm:ajv@8.12.0", + "type": "static" + } + ], + "npm:ajv-keywords@5.1.0": [ + { + "source": "npm:ajv-keywords@5.1.0", + "target": "npm:fast-deep-equal", + "type": "static" + } + ], + "npm:ajv@8.11.0": [ + { + "source": "npm:ajv@8.11.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.11.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.11.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.11.0", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv": [ + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse@0.4.1", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv@8.12.0": [ + { + "source": "npm:ajv@8.12.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ajv@8.12.0", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ansi-escapes": [ + { + "source": "npm:ansi-escapes", + "target": "npm:type-fest@0.21.3", + "type": "static" + } + ], + "npm:ansi-escapes@5.0.0": [ + { + "source": "npm:ansi-escapes@5.0.0", + "target": "npm:type-fest@1.4.0", + "type": "static" + } + ], + "npm:ansi-escapes@6.2.0": [ + { + "source": "npm:ansi-escapes@6.2.0", + "target": "npm:type-fest@3.13.1", + "type": "static" + } + ], + "npm:ansi-fragments": [ + { + "source": "npm:ansi-fragments", + "target": "npm:colorette@1.4.0", + "type": "static" + }, + { + "source": "npm:ansi-fragments", + "target": "npm:slice-ansi@2.1.0", + "type": "static" + }, + { + "source": "npm:ansi-fragments", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + } + ], + "npm:ansi-styles@3.2.1": [ + { + "source": "npm:ansi-styles@3.2.1", + "target": "npm:color-convert@1.9.3", + "type": "static" + } + ], + "npm:ansi-styles": [ + { + "source": "npm:ansi-styles", + "target": "npm:color-convert", + "type": "static" + } + ], + "npm:anymatch": [ + { + "source": "npm:anymatch", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:anymatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:argparse@1.0.10": [ + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "type": "static" + } + ], + "npm:array-buffer-byte-length": [ + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + } + ], + "npm:array-includes": [ + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + } + ], + "npm:array-union@1.0.2": [ + { + "source": "npm:array-union@1.0.2", + "target": "npm:array-uniq", + "type": "static" + } + ], + "npm:array.prototype.findlastindex": [ + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.findlastindex", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:array.prototype.flat": [ + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.flatmap": [ + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.tosorted": [ + { + "source": "npm:array.prototype.tosorted", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:arraybuffer.prototype.slice": [ + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-shared-array-buffer", + "type": "static" + } + ], + "npm:assert": [ + { + "source": "npm:assert", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:is-nan", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:object-is", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:assert", + "target": "npm:util", + "type": "static" + } + ], + "npm:ast-types": [ + { + "source": "npm:ast-types", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:asynciterator.prototype": [ + { + "source": "npm:asynciterator.prototype", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:axios": [ + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:form-data", + "type": "static" + } + ], + "npm:babel-jest": [ + { + "source": "npm:babel-jest", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-plugin-istanbul", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:babel-preset-jest", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:babel-jest", + "target": "npm:slash", + "type": "static" + } + ], + "npm:babel-loader@8.3.0": [ + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:find-cache-dir@3.3.2", + "type": "static" + }, + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:loader-utils", + "type": "static" + }, + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:babel-loader@8.3.0", + "target": "npm:schema-utils@2.7.1", + "type": "static" + } + ], + "npm:babel-loader": [ + { + "source": "npm:babel-loader", + "target": "npm:find-cache-dir", + "type": "static" + }, + { + "source": "npm:babel-loader", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:babel-plugin-istanbul": [ + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/load-nyc-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:istanbul-lib-instrument@5.2.1", + "type": "static" + }, + { + "source": "npm:babel-plugin-istanbul", + "target": "npm:test-exclude", + "type": "static" + } + ], + "npm:babel-plugin-jest-hoist": [ + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jest-hoist", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:babel-plugin-module-resolver": [ + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:find-babel-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:glob@8.1.0", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:reselect", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs2": [ + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs2", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-corejs3": [ + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + }, + { + "source": "npm:babel-plugin-polyfill-corejs3", + "target": "npm:core-js-compat", + "type": "static" + } + ], + "npm:babel-plugin-polyfill-regenerator": [ + { + "source": "npm:babel-plugin-polyfill-regenerator", + "target": "npm:@babel/helper-define-polyfill-provider", + "type": "static" + } + ], + "npm:babel-plugin-transform-flow-enums": [ + { + "source": "npm:babel-plugin-transform-flow-enums", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + } + ], + "npm:babel-preset-current-node-syntax": [ + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-async-generators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-bigint", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-import-meta", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-json-strings", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-logical-assignment-operators", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-numeric-separator", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-catch-binding", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-optional-chaining", + "type": "static" + }, + { + "source": "npm:babel-preset-current-node-syntax", + "target": "npm:@babel/plugin-syntax-top-level-await", + "type": "static" + } + ], + "npm:babel-preset-expo": [ + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-proposal-decorators", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-export-namespace-from", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/preset-env", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@babel/preset-react", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:@react-native/babel-preset", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:babel-plugin-react-native-web", + "type": "static" + }, + { + "source": "npm:babel-preset-expo", + "target": "npm:react-refresh", + "type": "static" + } + ], + "npm:babel-preset-fbjs": [ + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-proposal-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-class-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-syntax-object-rest-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-arrow-functions", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-block-scoped-functions", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-block-scoping", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-classes", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-computed-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-destructuring", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-for-of", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-function-name", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-member-expression-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-object-super", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-parameters", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-property-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-react-display-name", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-shorthand-properties", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-spread", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:@babel/plugin-transform-template-literals", + "type": "static" + }, + { + "source": "npm:babel-preset-fbjs", + "target": "npm:babel-plugin-syntax-trailing-function-commas", + "type": "static" + } + ], + "npm:babel-preset-jest": [ + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-plugin-jest-hoist", + "type": "static" + }, + { + "source": "npm:babel-preset-jest", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + } + ], + "npm:better-opn": [ + { + "source": "npm:better-opn", + "target": "npm:open", + "type": "static" + } + ], + "npm:bl": [ + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:body-parser": [ + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:bonjour-service": [ + { + "source": "npm:bonjour-service", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:bonjour-service", + "target": "npm:multicast-dns", + "type": "static" + } + ], + "npm:bplist-creator": [ + { + "source": "npm:bplist-creator", + "target": "npm:stream-buffers", + "type": "static" + } + ], + "npm:bplist-parser@0.3.1": [ + { + "source": "npm:bplist-parser@0.3.1", + "target": "npm:big-integer", + "type": "static" + } + ], + "npm:bplist-parser": [ + { + "source": "npm:bplist-parser", + "target": "npm:big-integer", + "type": "static" + } + ], + "npm:brace-expansion@1.1.11": [ + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.11", + "target": "npm:concat-map", + "type": "static" + } + ], + "npm:brace-expansion": [ + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match", + "type": "static" + } + ], + "npm:braces": [ + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + } + ], + "npm:browserslist": [ + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + } + ], + "npm:bser": [ + { + "source": "npm:bser", + "target": "npm:node-int64", + "type": "static" + } + ], + "npm:buffer-alloc": [ + { + "source": "npm:buffer-alloc", + "target": "npm:buffer-alloc-unsafe", + "type": "static" + }, + { + "source": "npm:buffer-alloc", + "target": "npm:buffer-fill", + "type": "static" + } + ], + "npm:buffer": [ + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:cacache": [ + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/move-file", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:infer-owner", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:promise-inflight", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + } + ], + "npm:call-bind": [ + { + "source": "npm:call-bind", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + } + ], + "npm:caller-callsite": [ + { + "source": "npm:caller-callsite", + "target": "npm:callsites@2.0.0", + "type": "static" + } + ], + "npm:caller-path": [ + { + "source": "npm:caller-path", + "target": "npm:caller-callsite", + "type": "static" + } + ], + "npm:camel-case": [ + { + "source": "npm:camel-case", + "target": "npm:pascal-case", + "type": "static" + }, + { + "source": "npm:camel-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:caniuse-api": [ + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + } + ], + "npm:chalk@1.1.3": [ + { + "source": "npm:chalk@1.1.3", + "target": "npm:ansi-styles@2.2.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:has-ansi", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:strip-ansi@3.0.1", + "type": "static" + }, + { + "source": "npm:chalk@1.1.3", + "target": "npm:supports-color@2.0.0", + "type": "static" + } + ], + "npm:chalk@2.4.2": [ + { + "source": "npm:chalk@2.4.2", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:chalk@2.4.2", + "target": "npm:supports-color@5.5.0", + "type": "static" + } + ], + "npm:chalk@3.0.0": [ + { + "source": "npm:chalk@3.0.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk@3.0.0", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chalk": [ + { + "source": "npm:chalk", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chokidar@3.6.0": [ + { + "source": "npm:chokidar@3.6.0", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar@3.6.0", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:chokidar": [ + { + "source": "npm:chokidar", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-binary-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:chrome-launcher": [ + { + "source": "npm:chrome-launcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:chrome-launcher", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chrome-launcher", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:chrome-launcher", + "target": "npm:lighthouse-logger", + "type": "static" + } + ], + "npm:chromium-edge-launcher": [ + { + "source": "npm:chromium-edge-launcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:lighthouse-logger", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:chromium-edge-launcher", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:clean-css": [ + { + "source": "npm:clean-css", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:clean-webpack-plugin": [ + { + "source": "npm:clean-webpack-plugin", + "target": "npm:del", + "type": "static" + } + ], + "npm:cli-cursor@2.1.0": [ + { + "source": "npm:cli-cursor@2.1.0", + "target": "npm:restore-cursor@2.0.0", + "type": "static" + } + ], + "npm:cli-cursor": [ + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + } + ], + "npm:cli-cursor@4.0.0": [ + { + "source": "npm:cli-cursor@4.0.0", + "target": "npm:restore-cursor@4.0.0", + "type": "static" + } + ], + "npm:cli-styles": [ + { + "source": "npm:cli-styles", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:cli-styles", + "target": "npm:figures@1.7.0", + "type": "static" + } + ], + "npm:cli-truncate": [ + { + "source": "npm:cli-truncate", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:cli-truncate", + "target": "npm:string-width@5.1.2", + "type": "static" + } + ], + "npm:cliui@6.0.0": [ + { + "source": "npm:cliui@6.0.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui@6.0.0", + "target": "npm:wrap-ansi@6.2.0", + "type": "static" + } + ], + "npm:cliui": [ + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:clone-deep": [ + { + "source": "npm:clone-deep", + "target": "npm:is-plain-object", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:kind-of", + "type": "static" + }, + { + "source": "npm:clone-deep", + "target": "npm:shallow-clone", + "type": "static" + } + ], + "npm:color-convert@1.9.3": [ + { + "source": "npm:color-convert@1.9.3", + "target": "npm:color-name@1.1.3", + "type": "static" + } + ], + "npm:color-convert": [ + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:color-string": [ + { + "source": "npm:color-string", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + } + ], + "npm:color": [ + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + } + ], + "npm:combined-stream": [ + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + } + ], + "npm:compare-urls": [ + { + "source": "npm:compare-urls", + "target": "npm:normalize-url", + "type": "static" + } + ], + "npm:compressible": [ + { + "source": "npm:compressible", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:compression": [ + { + "source": "npm:compression", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:bytes@3.0.0", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:compressible", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:on-headers", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:compression", + "target": "npm:vary", + "type": "static" + } + ], + "npm:connect": [ + { + "source": "npm:connect", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:connect", + "target": "npm:utils-merge", + "type": "static" + } + ], + "npm:content-disposition": [ + { + "source": "npm:content-disposition", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:copy-webpack-plugin": [ + { + "source": "npm:copy-webpack-plugin", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:globby@12.2.0", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:normalize-path", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:copy-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + } + ], + "npm:core-js-compat": [ + { + "source": "npm:core-js-compat", + "target": "npm:browserslist", + "type": "static" + } + ], + "npm:cosmiconfig": [ + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh@2.0.0", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:is-directory", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json@4.0.0", + "type": "static" + } + ], + "npm:create-jest": [ + { + "source": "npm:create-jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:create-jest", + "target": "npm:prompts", + "type": "static" + } + ], + "npm:cross-env": [ + { + "source": "npm:cross-env", + "target": "npm:cross-spawn", + "type": "static" + } + ], + "npm:cross-fetch": [ + { + "source": "npm:cross-fetch", + "target": "npm:node-fetch", + "type": "static" + } + ], + "npm:cross-spawn@6.0.5": [ + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:nice-try", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:shebang-command@1.2.0", + "type": "static" + }, + { + "source": "npm:cross-spawn@6.0.5", + "target": "npm:which@1.3.1", + "type": "static" + } + ], + "npm:cross-spawn": [ + { + "source": "npm:cross-spawn", + "target": "npm:path-key@3.1.1", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which", + "type": "static" + } + ], + "npm:css-in-js-utils": [ + { + "source": "npm:css-in-js-utils", + "target": "npm:hyphenate-style-name", + "type": "static" + } + ], + "npm:css-loader": [ + { + "source": "npm:css-loader", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-extract-imports", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-local-by-default", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-scope", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-modules-values", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:css-loader", + "target": "npm:semver", + "type": "static" + } + ], + "npm:css-minimizer-webpack-plugin": [ + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:cssnano", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:css-minimizer-webpack-plugin", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:css-select": [ + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-select@5.1.0": [ + { + "source": "npm:css-select@5.1.0", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:domutils@3.1.0", + "type": "static" + }, + { + "source": "npm:css-select@5.1.0", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-tree": [ + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:cssnano-preset-default": [ + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + } + ], + "npm:cssnano": [ + { + "source": "npm:cssnano", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:cssnano", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:csso@4.2.0": [ + { + "source": "npm:csso@4.2.0", + "target": "npm:css-tree", + "type": "static" + } + ], + "npm:cssstyle": [ + { + "source": "npm:cssstyle", + "target": "npm:cssom@0.3.8", + "type": "static" + } + ], + "npm:data-urls": [ + { + "source": "npm:data-urls", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:data-urls", + "target": "npm:whatwg-url", + "type": "static" + } + ], + "npm:debug@2.6.9": [ + { + "source": "npm:debug@2.6.9", + "target": "npm:ms@2.0.0", + "type": "static" + } + ], + "npm:debug": [ + { + "source": "npm:debug", + "target": "npm:ms@2.1.2", + "type": "static" + } + ], + "npm:debug@3.2.7": [ + { + "source": "npm:debug@3.2.7", + "target": "npm:ms", + "type": "static" + } + ], + "npm:default-gateway": [ + { + "source": "npm:default-gateway", + "target": "npm:execa@1.0.0", + "type": "static" + }, + { + "source": "npm:default-gateway", + "target": "npm:ip-regex", + "type": "static" + } + ], + "npm:default-gateway@6.0.3": [ + { + "source": "npm:default-gateway@6.0.3", + "target": "npm:execa", + "type": "static" + } + ], + "npm:defaults": [ + { + "source": "npm:defaults", + "target": "npm:clone@1.0.4", + "type": "static" + } + ], + "npm:define-data-property": [ + { + "source": "npm:define-data-property", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:define-properties": [ + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:del": [ + { + "source": "npm:del", + "target": "npm:@types/glob", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:globby@6.1.0", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:is-path-in-cwd", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:p-map@2.1.0", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:del", + "target": "npm:rimraf@2.7.1", + "type": "static" + } + ], + "npm:del@6.1.1": [ + { + "source": "npm:del@6.1.1", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:is-path-cwd", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:del@6.1.1", + "target": "npm:slash", + "type": "static" + } + ], + "npm:deprecated-react-native-prop-types": [ + { + "source": "npm:deprecated-react-native-prop-types", + "target": "npm:@react-native/normalize-colors", + "type": "static" + }, + { + "source": "npm:deprecated-react-native-prop-types", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:deprecated-react-native-prop-types", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:dir-glob": [ + { + "source": "npm:dir-glob", + "target": "npm:path-type", + "type": "static" + } + ], + "npm:dns-packet": [ + { + "source": "npm:dns-packet", + "target": "npm:@leichtgewicht/ip-codec", + "type": "static" + } + ], + "npm:doctrine": [ + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:doctrine@3.0.0": [ + { + "source": "npm:doctrine@3.0.0", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:dom-converter": [ + { + "source": "npm:dom-converter", + "target": "npm:utila", + "type": "static" + } + ], + "npm:dom-serializer": [ + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities@2.2.0", + "type": "static" + } + ], + "npm:dom-serializer@2.0.0": [ + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + }, + { + "source": "npm:dom-serializer@2.0.0", + "target": "npm:entities", + "type": "static" + } + ], + "npm:domexception": [ + { + "source": "npm:domexception", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:domhandler": [ + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domhandler@5.0.3": [ + { + "source": "npm:domhandler@5.0.3", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domutils": [ + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + } + ], + "npm:domutils@3.1.0": [ + { + "source": "npm:domutils@3.1.0", + "target": "npm:dom-serializer@2.0.0", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils@3.1.0", + "target": "npm:domhandler@5.0.3", + "type": "static" + } + ], + "npm:dot-case": [ + { + "source": "npm:dot-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:dot-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:end-of-stream": [ + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + } + ], + "npm:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:error-ex": [ + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + } + ], + "npm:error-stack-parser": [ + { + "source": "npm:error-stack-parser", + "target": "npm:stackframe", + "type": "static" + } + ], + "npm:errorhandler": [ + { + "source": "npm:errorhandler", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:errorhandler", + "target": "npm:escape-html", + "type": "static" + } + ], + "npm:es-abstract": [ + { + "source": "npm:es-abstract", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:arraybuffer.prototype.slice", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:es-iterator-helpers": [ + { + "source": "npm:es-iterator-helpers", + "target": "npm:asynciterator.prototype", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:iterator.prototype", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:safe-array-concat", + "type": "static" + } + ], + "npm:es-set-tostringtag": [ + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:es-shim-unscopables": [ + { + "source": "npm:es-shim-unscopables", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:es-to-primitive": [ + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:escodegen": [ + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:eslint-config-universe": [ + { + "source": "npm:eslint-config-universe", + "target": "npm:@typescript-eslint/eslint-plugin@5.62.0", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:@typescript-eslint/parser@5.62.0", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-import", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-node", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-prettier", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-react", + "type": "static" + }, + { + "source": "npm:eslint-config-universe", + "target": "npm:eslint-plugin-react-hooks", + "type": "static" + } + ], + "npm:eslint-import-resolver-node": [ + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-import-resolver-node", + "target": "npm:resolve", + "type": "static" + } + ], + "npm:eslint-module-utils": [ + { + "source": "npm:eslint-module-utils", + "target": "npm:debug@3.2.7", + "type": "static" + } + ], + "npm:eslint-plugin-es": [ + { + "source": "npm:eslint-plugin-es", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-es", + "target": "npm:regexpp", + "type": "static" + } + ], + "npm:eslint-plugin-import": [ + { + "source": "npm:eslint-plugin-import", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.findlastindex", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:debug@3.2.7", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-import-resolver-node", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:eslint-module-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.groupby", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-import", + "target": "npm:tsconfig-paths@3.15.0", + "type": "static" + } + ], + "npm:eslint-plugin-node": [ + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-plugin-es", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-node", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:eslint-plugin-prettier": [ + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:prettier-linter-helpers", + "type": "static" + } + ], + "npm:eslint-plugin-react-native": [ + { + "source": "npm:eslint-plugin-react-native", + "target": "npm:eslint-plugin-react-native-globals", + "type": "static" + } + ], + "npm:eslint-plugin-react": [ + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:es-iterator-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve@2.0.0-next.5", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver@6.3.1", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + } + ], + "npm:eslint-scope": [ + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse@4.3.0", + "type": "static" + } + ], + "npm:eslint-scope@7.2.2": [ + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope@7.2.2", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:eslint-utils": [ + { + "source": "npm:eslint-utils", + "target": "npm:eslint-visitor-keys@1.3.0", + "type": "static" + } + ], + "npm:eslint": [ + { + "source": "npm:eslint", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/config-array", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@ungap/structured-clone", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:doctrine@3.0.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope@7.2.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent@6.0.2", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:globals", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:graphemer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:js-yaml@4.1.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:text-table", + "type": "static" + } + ], + "npm:espree": [ + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:esquery": [ + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:esrecurse": [ + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:execa@7.2.0": [ + { + "source": "npm:execa@7.2.0", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:human-signals@4.3.1", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:is-stream@3.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:npm-run-path@5.2.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:onetime@6.0.0", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@7.2.0", + "target": "npm:strip-final-newline@3.0.0", + "type": "static" + } + ], + "npm:execa@1.0.0": [ + { + "source": "npm:execa@1.0.0", + "target": "npm:cross-spawn@6.0.5", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:get-stream@4.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:is-stream@1.1.0", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:npm-run-path@2.0.2", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:p-finally", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa@1.0.0", + "target": "npm:strip-eof", + "type": "static" + } + ], + "npm:execa": [ + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + } + ], + "npm:expect": [ + { + "source": "npm:expect", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:expect", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:expo-app-loading": [ + { + "source": "npm:expo-app-loading", + "target": "npm:expo-splash-screen@0.17.5", + "type": "static" + } + ], + "npm:expo-asset": [ + { + "source": "npm:expo-asset", + "target": "npm:@react-native/assets-registry", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:blueimp-md5", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:expo-constants", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:expo-file-system", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:expo-asset", + "target": "npm:md5-file", + "type": "static" + } + ], + "npm:expo-constants": [ + { + "source": "npm:expo-constants", + "target": "npm:@expo/config", + "type": "static" + } + ], + "npm:expo-crypto": [ + { + "source": "npm:expo-crypto", + "target": "npm:base64-js", + "type": "static" + } + ], + "npm:expo-dev-client": [ + { + "source": "npm:expo-dev-client", + "target": "npm:expo-dev-launcher", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-dev-menu", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-dev-menu-interface", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-manifests", + "type": "static" + }, + { + "source": "npm:expo-dev-client", + "target": "npm:expo-updates-interface", + "type": "static" + } + ], + "npm:expo-dev-launcher": [ + { + "source": "npm:expo-dev-launcher", + "target": "npm:ajv@8.11.0", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:expo-dev-menu@4.5.4", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:expo-manifests", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:expo-dev-launcher", + "target": "npm:semver", + "type": "static" + } + ], + "npm:expo-dev-menu@4.5.4": [ + { + "source": "npm:expo-dev-menu@4.5.4", + "target": "npm:expo-dev-menu-interface", + "type": "static" + }, + { + "source": "npm:expo-dev-menu@4.5.4", + "target": "npm:semver", + "type": "static" + } + ], + "npm:expo-dev-menu": [ + { + "source": "npm:expo-dev-menu", + "target": "npm:expo-dev-menu-interface", + "type": "static" + }, + { + "source": "npm:expo-dev-menu", + "target": "npm:semver", + "type": "static" + } + ], + "npm:expo-device": [ + { + "source": "npm:expo-device", + "target": "npm:ua-parser-js", + "type": "static" + } + ], + "npm:expo-font": [ + { + "source": "npm:expo-font", + "target": "npm:fontfaceobserver", + "type": "static" + } + ], + "npm:expo-linking": [ + { + "source": "npm:expo-linking", + "target": "npm:expo-constants", + "type": "static" + }, + { + "source": "npm:expo-linking", + "target": "npm:invariant", + "type": "static" + } + ], + "npm:expo-local-authentication": [ + { + "source": "npm:expo-local-authentication", + "target": "npm:invariant", + "type": "static" + } + ], + "npm:expo-localization": [ + { + "source": "npm:expo-localization", + "target": "npm:rtl-detect", + "type": "static" + } + ], + "npm:expo-manifests": [ + { + "source": "npm:expo-manifests", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-manifests", + "target": "npm:expo-json-utils", + "type": "static" + } + ], + "npm:expo-modules-autolinking": [ + { + "source": "npm:expo-modules-autolinking", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:expo-modules-autolinking", + "target": "npm:fs-extra", + "type": "static" + } + ], + "npm:expo-modules-core": [ + { + "source": "npm:expo-modules-core", + "target": "npm:invariant", + "type": "static" + } + ], + "npm:expo-notifications": [ + { + "source": "npm:expo-notifications", + "target": "npm:@expo/image-utils", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:@ide/backoff", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:assert", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:badgin", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:expo-application", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:expo-constants", + "type": "static" + }, + { + "source": "npm:expo-notifications", + "target": "npm:fs-extra", + "type": "static" + } + ], + "npm:expo-pwa": [ + { + "source": "npm:expo-pwa", + "target": "npm:@expo/image-utils@0.3.23", + "type": "static" + }, + { + "source": "npm:expo-pwa", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:expo-pwa", + "target": "npm:commander@2.20.0", + "type": "static" + }, + { + "source": "npm:expo-pwa", + "target": "npm:update-check", + "type": "static" + } + ], + "npm:expo-router": [ + { + "source": "npm:expo-router", + "target": "npm:@expo/metro-runtime", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@expo/server", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@radix-ui/react-slot", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@react-navigation/bottom-tabs", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@react-navigation/native", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:@react-navigation/native-stack", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:expo-splash-screen", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:react-helmet-async", + "type": "static" + }, + { + "source": "npm:expo-router", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:expo-splash-screen": [ + { + "source": "npm:expo-splash-screen", + "target": "npm:@expo/prebuild-config", + "type": "static" + } + ], + "npm:expo-splash-screen@0.17.5": [ + { + "source": "npm:expo-splash-screen@0.17.5", + "target": "npm:@expo/configure-splash-screen", + "type": "static" + }, + { + "source": "npm:expo-splash-screen@0.17.5", + "target": "npm:@expo/prebuild-config@5.0.7", + "type": "static" + } + ], + "npm:expo-system-ui": [ + { + "source": "npm:expo-system-ui", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:expo-system-ui", + "target": "npm:debug", + "type": "static" + } + ], + "npm:expo-updates": [ + { + "source": "npm:expo-updates", + "target": "npm:@expo/code-signing-certificates", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:arg@4.1.0", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-eas-client", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-manifests", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-structured-headers", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:expo-updates-interface", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:fbemitter", + "type": "static" + }, + { + "source": "npm:expo-updates", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:expo-web-browser": [ + { + "source": "npm:expo-web-browser", + "target": "npm:compare-urls", + "type": "static" + }, + { + "source": "npm:expo-web-browser", + "target": "npm:url", + "type": "static" + } + ], + "npm:expo": [ + { + "source": "npm:expo", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/cli@0.17.2", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/config-plugins", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/metro-config", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:@expo/vector-icons", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:babel-preset-expo", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-asset", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-file-system", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-font", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-keep-awake", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-modules-autolinking", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:expo-modules-core", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:fbemitter", + "type": "static" + }, + { + "source": "npm:expo", + "target": "npm:whatwg-url-without-unicode", + "type": "static" + } + ], + "npm:express": [ + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:array-flatten", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler@1.2.0", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:methods", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:utils-merge", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + } + ], + "npm:fast-glob": [ + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fast-xml-parser": [ + { + "source": "npm:fast-xml-parser", + "target": "npm:strnum", + "type": "static" + } + ], + "npm:fastq": [ + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + } + ], + "npm:faye-websocket": [ + { + "source": "npm:faye-websocket", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:fb-watchman": [ + { + "source": "npm:fb-watchman", + "target": "npm:bser", + "type": "static" + } + ], + "npm:fbemitter": [ + { + "source": "npm:fbemitter", + "target": "npm:fbjs", + "type": "static" + } + ], + "npm:fbjs": [ + { + "source": "npm:fbjs", + "target": "npm:cross-fetch", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:fbjs-css-vars", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:promise@7.3.1", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:setimmediate", + "type": "static" + }, + { + "source": "npm:fbjs", + "target": "npm:ua-parser-js@1.0.37", + "type": "static" + } + ], + "npm:figures@1.7.0": [ + { + "source": "npm:figures@1.7.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:figures@1.7.0", + "target": "npm:object-assign", + "type": "static" + } + ], + "npm:figures@2.0.0": [ + { + "source": "npm:figures@2.0.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + } + ], + "npm:file-entry-cache": [ + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + } + ], + "npm:fill-range": [ + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + } + ], + "npm:finalhandler": [ + { + "source": "npm:finalhandler", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished@2.3.0", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses@1.5.0", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:finalhandler@1.2.0": [ + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:finalhandler@1.2.0", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:find-babel-config": [ + { + "source": "npm:find-babel-config", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:find-babel-config", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-cache-dir@2.1.0": [ + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:make-dir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@2.1.0", + "target": "npm:pkg-dir@3.0.0", + "type": "static" + } + ], + "npm:find-cache-dir@3.3.2": [ + { + "source": "npm:find-cache-dir@3.3.2", + "target": "npm:commondir", + "type": "static" + }, + { + "source": "npm:find-cache-dir@3.3.2", + "target": "npm:make-dir@3.1.0", + "type": "static" + }, + { + "source": "npm:find-cache-dir@3.3.2", + "target": "npm:pkg-dir", + "type": "static" + } + ], + "npm:find-cache-dir": [ + { + "source": "npm:find-cache-dir", + "target": "npm:common-path-prefix", + "type": "static" + }, + { + "source": "npm:find-cache-dir", + "target": "npm:pkg-dir@7.0.0", + "type": "static" + } + ], + "npm:find-up@3.0.0": [ + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + } + ], + "npm:find-up@4.1.0": [ + { + "source": "npm:find-up@4.1.0", + "target": "npm:locate-path@5.0.0", + "type": "static" + }, + { + "source": "npm:find-up@4.1.0", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-up": [ + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:find-up@6.3.0": [ + { + "source": "npm:find-up@6.3.0", + "target": "npm:locate-path@7.2.0", + "type": "static" + }, + { + "source": "npm:find-up@6.3.0", + "target": "npm:path-exists@5.0.0", + "type": "static" + } + ], + "npm:find-yarn-workspace-root": [ + { + "source": "npm:find-yarn-workspace-root", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:flat-cache": [ + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:for-each": [ + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + } + ], + "npm:foreground-child": [ + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit@4.1.0", + "type": "static" + } + ], + "npm:form-data@3.0.1": [ + { + "source": "npm:form-data@3.0.1", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data@3.0.1", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data@3.0.1", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:form-data": [ + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:framer-motion@3.10.6": [ + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:framesync", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:popmotion@9.3.1", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:style-value-types", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:tslib@1.14.1", + "type": "static" + }, + { + "source": "npm:framer-motion@3.10.6", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + } + ], + "npm:framer-motion": [ + { + "source": "npm:framer-motion", + "target": "npm:@motionone/dom", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:framesync@6.0.1", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:popmotion", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:style-value-types@5.0.0", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:framer-motion", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + } + ], + "npm:framesync@6.0.1": [ + { + "source": "npm:framesync@6.0.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:fs-extra@9.0.0": [ + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@9.0.0", + "target": "npm:universalify@1.0.0", + "type": "static" + } + ], + "npm:fs-extra@11.2.0": [ + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra@11.2.0", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-extra@8.1.0": [ + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:jsonfile@4.0.0", + "type": "static" + }, + { + "source": "npm:fs-extra@8.1.0", + "target": "npm:universalify@0.1.2", + "type": "static" + } + ], + "npm:fs-extra": [ + { + "source": "npm:fs-extra", + "target": "npm:at-least-node", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:jsonfile", + "type": "static" + }, + { + "source": "npm:fs-extra", + "target": "npm:universalify", + "type": "static" + } + ], + "npm:fs-minipass": [ + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:function.prototype.name": [ + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + } + ], + "npm:get-intrinsic": [ + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:get-stream@4.1.0": [ + { + "source": "npm:get-stream@4.1.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:get-symbol-description": [ + { + "source": "npm:get-symbol-description", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:glob-parent": [ + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob-parent@6.0.2": [ + { + "source": "npm:glob-parent@6.0.2", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob@7.1.6": [ + { + "source": "npm:glob@7.1.6", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@7.1.6", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@10.3.10": [ + { + "source": "npm:glob@10.3.10", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minimatch@9.0.3", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:minipass@7.0.4", + "type": "static" + }, + { + "source": "npm:glob@10.3.10", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:glob@6.0.4": [ + { + "source": "npm:glob@6.0.4", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob@6.0.4", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob": [ + { + "source": "npm:glob", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-is-absolute", + "type": "static" + } + ], + "npm:glob@8.1.0": [ + { + "source": "npm:glob@8.1.0", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inflight", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:minimatch@5.1.6", + "type": "static" + }, + { + "source": "npm:glob@8.1.0", + "target": "npm:once", + "type": "static" + } + ], + "npm:globals": [ + { + "source": "npm:globals", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:globalthis": [ + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:globby": [ + { + "source": "npm:globby", + "target": "npm:array-union", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + } + ], + "npm:globby@12.2.0": [ + { + "source": "npm:globby@12.2.0", + "target": "npm:array-union@3.0.1", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:dir-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:globby@12.2.0", + "target": "npm:slash@4.0.0", + "type": "static" + } + ], + "npm:globby@6.1.0": [ + { + "source": "npm:globby@6.1.0", + "target": "npm:array-union@1.0.2", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pify", + "type": "static" + }, + { + "source": "npm:globby@6.1.0", + "target": "npm:pinkie-promise", + "type": "static" + } + ], + "npm:gopd": [ + { + "source": "npm:gopd", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:graphql-tag": [ + { + "source": "npm:graphql-tag", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:has-ansi": [ + { + "source": "npm:has-ansi", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + } + ], + "npm:has-property-descriptors": [ + { + "source": "npm:has-property-descriptors", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:has-tostringtag": [ + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:hasown": [ + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:hermes-parser@0.15.0": [ + { + "source": "npm:hermes-parser@0.15.0", + "target": "npm:hermes-estree@0.15.0", + "type": "static" + } + ], + "npm:hermes-parser": [ + { + "source": "npm:hermes-parser", + "target": "npm:hermes-estree", + "type": "static" + } + ], + "npm:hermes-profile-transformer": [ + { + "source": "npm:hermes-profile-transformer", + "target": "npm:source-map@0.7.4", + "type": "static" + } + ], + "npm:hoist-non-react-statics": [ + { + "source": "npm:hoist-non-react-statics", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:hosted-git-info": [ + { + "source": "npm:hosted-git-info", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:hpack.js": [ + { + "source": "npm:hpack.js", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:hpack.js", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:html-encoding-sniffer": [ + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + } + ], + "npm:html-minifier-terser": [ + { + "source": "npm:html-minifier-terser", + "target": "npm:camel-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:clean-css", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:commander@8.3.0", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:param-case", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:relateurl", + "type": "static" + }, + { + "source": "npm:html-minifier-terser", + "target": "npm:terser", + "type": "static" + } + ], + "npm:html-parse-stringify": [ + { + "source": "npm:html-parse-stringify", + "target": "npm:void-elements", + "type": "static" + } + ], + "npm:html-webpack-plugin": [ + { + "source": "npm:html-webpack-plugin", + "target": "npm:@types/html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:html-minifier-terser", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:pretty-error", + "type": "static" + }, + { + "source": "npm:html-webpack-plugin", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:htmlparser2": [ + { + "source": "npm:htmlparser2", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:htmlparser2", + "target": "npm:entities@2.2.0", + "type": "static" + } + ], + "npm:http-errors": [ + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + } + ], + "npm:http-errors@1.6.3": [ + { + "source": "npm:http-errors@1.6.3", + "target": "npm:depd@1.1.2", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:inherits@2.0.3", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:setprototypeof@1.1.0", + "type": "static" + }, + { + "source": "npm:http-errors@1.6.3", + "target": "npm:statuses@1.5.0", + "type": "static" + } + ], + "npm:http-proxy-agent": [ + { + "source": "npm:http-proxy-agent", + "target": "npm:@tootallnate/once", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy-middleware": [ + { + "source": "npm:http-proxy-middleware", + "target": "npm:@types/http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:is-plain-obj@3.0.0", + "type": "static" + }, + { + "source": "npm:http-proxy-middleware", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:http-proxy": [ + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3@4.0.7", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:https-proxy-agent": [ + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:i18next": [ + { + "source": "npm:i18next", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:iconv-lite@0.4.24": [ + { + "source": "npm:iconv-lite@0.4.24", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:iconv-lite": [ + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:image-size": [ + { + "source": "npm:image-size", + "target": "npm:queue", + "type": "static" + } + ], + "npm:import-fresh@2.0.0": [ + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:caller-path", + "type": "static" + }, + { + "source": "npm:import-fresh@2.0.0", + "target": "npm:resolve-from@3.0.0", + "type": "static" + } + ], + "npm:import-fresh": [ + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + } + ], + "npm:import-local": [ + { + "source": "npm:import-local", + "target": "npm:pkg-dir", + "type": "static" + }, + { + "source": "npm:import-local", + "target": "npm:resolve-cwd", + "type": "static" + } + ], + "npm:inflight": [ + { + "source": "npm:inflight", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:inflight", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:inline-style-prefixer": [ + { + "source": "npm:inline-style-prefixer", + "target": "npm:css-in-js-utils", + "type": "static" + }, + { + "source": "npm:inline-style-prefixer", + "target": "npm:fast-loops", + "type": "static" + } + ], + "npm:internal-ip": [ + { + "source": "npm:internal-ip", + "target": "npm:default-gateway", + "type": "static" + }, + { + "source": "npm:internal-ip", + "target": "npm:ipaddr.js", + "type": "static" + } + ], + "npm:internal-slot": [ + { + "source": "npm:internal-slot", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:invariant": [ + { + "source": "npm:invariant", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:is-arguments": [ + { + "source": "npm:is-arguments", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-arguments", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-array-buffer": [ + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:is-async-function": [ + { + "source": "npm:is-async-function", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-bigint": [ + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + } + ], + "npm:is-binary-path": [ + { + "source": "npm:is-binary-path", + "target": "npm:binary-extensions", + "type": "static" + } + ], + "npm:is-boolean-object": [ + { + "source": "npm:is-boolean-object", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-core-module": [ + { + "source": "npm:is-core-module", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:is-date-object": [ + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-finalizationregistry": [ + { + "source": "npm:is-finalizationregistry", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-generator-function": [ + { + "source": "npm:is-generator-function", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-glob@2.0.1": [ + { + "source": "npm:is-glob@2.0.1", + "target": "npm:is-extglob@1.0.0", + "type": "static" + } + ], + "npm:is-glob": [ + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + } + ], + "npm:is-invalid-path": [ + { + "source": "npm:is-invalid-path", + "target": "npm:is-glob@2.0.1", + "type": "static" + } + ], + "npm:is-nan": [ + { + "source": "npm:is-nan", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-nan", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:is-number-object": [ + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-path-in-cwd": [ + { + "source": "npm:is-path-in-cwd", + "target": "npm:is-path-inside@2.1.0", + "type": "static" + } + ], + "npm:is-path-inside@2.1.0": [ + { + "source": "npm:is-path-inside@2.1.0", + "target": "npm:path-is-inside", + "type": "static" + } + ], + "npm:is-plain-object": [ + { + "source": "npm:is-plain-object", + "target": "npm:isobject", + "type": "static" + } + ], + "npm:is-regex": [ + { + "source": "npm:is-regex", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-shared-array-buffer": [ + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-string": [ + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-symbol": [ + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:is-typed-array": [ + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:is-valid-path": [ + { + "source": "npm:is-valid-path", + "target": "npm:is-invalid-path", + "type": "static" + } + ], + "npm:is-weakref": [ + { + "source": "npm:is-weakref", + "target": "npm:call-bind", + "type": "static" + } + ], + "npm:is-weakset": [ + { + "source": "npm:is-weakset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:is-wsl": [ + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + } + ], + "npm:istanbul-lib-instrument@5.2.1": [ + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument@5.2.1", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:istanbul-lib-instrument": [ + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-instrument", + "target": "npm:semver", + "type": "static" + } + ], + "npm:istanbul-lib-report": [ + { + "source": "npm:istanbul-lib-report", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:make-dir@4.0.0", + "type": "static" + }, + { + "source": "npm:istanbul-lib-report", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:istanbul-lib-source-maps": [ + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:istanbul-lib-source-maps", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:istanbul-reports": [ + { + "source": "npm:istanbul-reports", + "target": "npm:html-escaper", + "type": "static" + }, + { + "source": "npm:istanbul-reports", + "target": "npm:istanbul-lib-report", + "type": "static" + } + ], + "npm:iterator.prototype": [ + { + "source": "npm:iterator.prototype", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:reflect.getprototypeof", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:set-function-name", + "type": "static" + } + ], + "npm:jackspeak": [ + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@pkgjs/parseargs", + "type": "static" + } + ], + "npm:jest-changed-files": [ + { + "source": "npm:jest-changed-files", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-changed-files", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:jest-circus": [ + { + "source": "npm:jest-circus", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/expect", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:co", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:dedent", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:is-generator-fn", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-each", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-circus", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-cli": [ + { + "source": "npm:jest-cli", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:create-jest", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:exit", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-config", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-cli", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:jest-config": [ + { + "source": "npm:jest-config", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/test-sequencer", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:deepmerge", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-circus", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-runner", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-config", + "target": "npm:strip-json-comments", + "type": "static" + } + ], + "npm:jest-diff": [ + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-docblock": [ + { + "source": "npm:jest-docblock", + "target": "npm:detect-newline", + "type": "static" + } + ], + "npm:jest-each": [ + { + "source": "npm:jest-each", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-each", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-environment-jsdom": [ + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/jsdom", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-environment-jsdom", + "target": "npm:jsdom", + "type": "static" + } + ], + "npm:jest-environment-node": [ + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-environment-node", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-expo": [ + { + "source": "npm:jest-expo", + "target": "npm:@expo/config", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:@expo/json-file", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:@jest/create-cache-key-function", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:babel-jest", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:jest-environment-jsdom", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:jest-watch-select-projects", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:jest-watch-typeahead", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:react-test-renderer", + "type": "static" + }, + { + "source": "npm:jest-expo", + "target": "npm:stacktrace-js", + "type": "static" + } + ], + "npm:jest-haste-map": [ + { + "source": "npm:jest-haste-map", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:jest-haste-map", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:jest-leak-detector": [ + { + "source": "npm:jest-leak-detector", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-leak-detector", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-matcher-utils": [ + { + "source": "npm:jest-matcher-utils", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-matcher-utils", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-message-util": [ + { + "source": "npm:jest-message-util", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:@types/stack-utils", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-message-util", + "target": "npm:stack-utils", + "type": "static" + } + ], + "npm:jest-mock": [ + { + "source": "npm:jest-mock", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-mock", + "target": "npm:jest-util", + "type": "static" + } + ], + "npm:jest-resolve-dependencies": [ + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-resolve-dependencies", + "target": "npm:jest-snapshot", + "type": "static" + } + ], + "npm:jest-resolve": [ + { + "source": "npm:jest-resolve", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-pnp-resolver", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:jest-resolve", + "target": "npm:slash", + "type": "static" + } + ], + "npm:jest-runner": [ + { + "source": "npm:jest-runner", + "target": "npm:@jest/console", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-docblock", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-leak-detector", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-runtime", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:jest-runner", + "target": "npm:source-map-support@0.5.13", + "type": "static" + } + ], + "npm:jest-runtime": [ + { + "source": "npm:jest-runtime", + "target": "npm:@jest/environment", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/fake-timers", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/globals", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/source-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:cjs-module-lexer", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:collect-v8-coverage", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-haste-map", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-mock", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-resolve", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-snapshot", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:jest-runtime", + "target": "npm:strip-bom@4.0.0", + "type": "static" + } + ], + "npm:jest-snapshot": [ + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/plugin-syntax-typescript", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/expect-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/transform", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:babel-preset-current-node-syntax", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:expect", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-matcher-utils", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-message-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:jest-snapshot", + "target": "npm:semver", + "type": "static" + } + ], + "npm:jest-util": [ + { + "source": "npm:jest-util", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jest-util", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:jest-validate": [ + { + "source": "npm:jest-validate", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:camelcase@6.3.0", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:jest-get-type", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:leven", + "type": "static" + }, + { + "source": "npm:jest-validate", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:jest-watch-select-projects": [ + { + "source": "npm:jest-watch-select-projects", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watch-select-projects", + "target": "npm:chalk@3.0.0", + "type": "static" + }, + { + "source": "npm:jest-watch-select-projects", + "target": "npm:prompts", + "type": "static" + } + ], + "npm:jest-watch-typeahead": [ + { + "source": "npm:jest-watch-typeahead", + "target": "npm:ansi-escapes@6.2.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-regex-util", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:jest-watcher", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:slash@5.1.0", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:string-length@5.0.1", + "type": "static" + }, + { + "source": "npm:jest-watch-typeahead", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:jest-watcher": [ + { + "source": "npm:jest-watcher", + "target": "npm:@jest/test-result", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:emittery", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-watcher", + "target": "npm:string-length", + "type": "static" + } + ], + "npm:jest-worker@27.5.1": [ + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker@27.5.1", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:jest-worker": [ + { + "source": "npm:jest-worker", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:jest-util", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:merge-stream", + "type": "static" + }, + { + "source": "npm:jest-worker", + "target": "npm:supports-color@8.1.1", + "type": "static" + } + ], + "npm:jest": [ + { + "source": "npm:jest", + "target": "npm:@jest/core", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:@jest/types", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:import-local", + "type": "static" + }, + { + "source": "npm:jest", + "target": "npm:jest-cli", + "type": "static" + } + ], + "npm:joi": [ + { + "source": "npm:joi", + "target": "npm:@hapi/hoek", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@hapi/topo", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/address", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/formula", + "type": "static" + }, + { + "source": "npm:joi", + "target": "npm:@sideway/pinpoint", + "type": "static" + } + ], + "npm:js-yaml": [ + { + "source": "npm:js-yaml", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:js-yaml@4.1.0": [ + { + "source": "npm:js-yaml@4.1.0", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:jscodeshift": [ + { + "source": "npm:jscodeshift", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-proposal-class-properties", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-proposal-optional-chaining", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/plugin-transform-modules-commonjs", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/preset-flow", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:@babel/register", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:babel-core", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:flow-parser@0.227.0", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:node-dir", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:recast", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:temp", + "type": "static" + }, + { + "source": "npm:jscodeshift", + "target": "npm:write-file-atomic", + "type": "static" + } + ], + "npm:jsdom": [ + { + "source": "npm:jsdom", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:acorn-globals", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssom", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:cssstyle", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:data-urls", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:decimal.js", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:domexception", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:is-potential-custom-element-name", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:nwsapi", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:saxes", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:symbol-tree", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:w3c-xmlserializer", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-mimetype", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:ws@8.16.0", + "type": "static" + }, + { + "source": "npm:jsdom", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:json-schema-deref-sync": [ + { + "source": "npm:json-schema-deref-sync", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:dag-map", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:is-valid-path", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:md5@2.2.1", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:memory-cache", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:traverse", + "type": "static" + }, + { + "source": "npm:json-schema-deref-sync", + "target": "npm:valid-url", + "type": "static" + } + ], + "npm:json5@1.0.2": [ + { + "source": "npm:json5@1.0.2", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:jsonfile@4.0.0": [ + { + "source": "npm:jsonfile@4.0.0", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsonfile": [ + { + "source": "npm:jsonfile", + "target": "npm:universalify", + "type": "static" + }, + { + "source": "npm:jsonfile", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:jsx-ast-utils": [ + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values", + "type": "static" + } + ], + "npm:keyv": [ + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + } + ], + "npm:klaw-sync": [ + { + "source": "npm:klaw-sync", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:launch-editor": [ + { + "source": "npm:launch-editor", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:launch-editor", + "target": "npm:shell-quote", + "type": "static" + } + ], + "npm:levn": [ + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:lighthouse-logger": [ + { + "source": "npm:lighthouse-logger", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:lighthouse-logger", + "target": "npm:marky", + "type": "static" + } + ], + "npm:lightningcss": [ + { + "source": "npm:lightningcss", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-arm64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-x64@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-gnu@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-musl@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-gnu@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-musl@1.19.0", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-win32-x64-msvc@1.19.0", + "type": "static" + } + ], + "npm:lint-staged": [ + { + "source": "npm:lint-staged", + "target": "npm:chalk@5.3.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:commander@11.0.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:execa@7.2.0", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:listr2", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:string-argv", + "type": "static" + }, + { + "source": "npm:lint-staged", + "target": "npm:yaml@2.3.1", + "type": "static" + } + ], + "npm:listr2": [ + { + "source": "npm:listr2", + "target": "npm:cli-truncate", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:log-update", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:listr2", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:loader-utils": [ + { + "source": "npm:loader-utils", + "target": "npm:big.js", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:emojis-list", + "type": "static" + }, + { + "source": "npm:loader-utils", + "target": "npm:json5", + "type": "static" + } + ], + "npm:locate-path@3.0.0": [ + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + } + ], + "npm:locate-path@5.0.0": [ + { + "source": "npm:locate-path@5.0.0", + "target": "npm:p-locate@4.1.0", + "type": "static" + } + ], + "npm:locate-path": [ + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + } + ], + "npm:locate-path@7.2.0": [ + { + "source": "npm:locate-path@7.2.0", + "target": "npm:p-locate@6.0.0", + "type": "static" + } + ], + "npm:log-symbols@2.2.0": [ + { + "source": "npm:log-symbols@2.2.0", + "target": "npm:chalk@2.4.2", + "type": "static" + } + ], + "npm:log-symbols": [ + { + "source": "npm:log-symbols", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported", + "type": "static" + } + ], + "npm:log-update": [ + { + "source": "npm:log-update", + "target": "npm:ansi-escapes@5.0.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:cli-cursor@4.0.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:slice-ansi", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + }, + { + "source": "npm:log-update", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + } + ], + "npm:logkitty": [ + { + "source": "npm:logkitty", + "target": "npm:ansi-fragments", + "type": "static" + }, + { + "source": "npm:logkitty", + "target": "npm:dayjs", + "type": "static" + }, + { + "source": "npm:logkitty", + "target": "npm:yargs@15.4.1", + "type": "static" + } + ], + "npm:loose-envify": [ + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:lower-case": [ + { + "source": "npm:lower-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:lru-cache@5.1.1": [ + { + "source": "npm:lru-cache@5.1.1", + "target": "npm:yallist@3.1.1", + "type": "static" + } + ], + "npm:lru-cache": [ + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:make-dir": [ + { + "source": "npm:make-dir", + "target": "npm:pify@4.0.1", + "type": "static" + }, + { + "source": "npm:make-dir", + "target": "npm:semver@5.7.2", + "type": "static" + } + ], + "npm:make-dir@3.1.0": [ + { + "source": "npm:make-dir@3.1.0", + "target": "npm:semver@6.3.1", + "type": "static" + } + ], + "npm:make-dir@4.0.0": [ + { + "source": "npm:make-dir@4.0.0", + "target": "npm:semver", + "type": "static" + } + ], + "npm:makeerror": [ + { + "source": "npm:makeerror", + "target": "npm:tmpl", + "type": "static" + } + ], + "npm:md5-file": [ + { + "source": "npm:md5-file", + "target": "npm:buffer-alloc", + "type": "static" + } + ], + "npm:md5": [ + { + "source": "npm:md5", + "target": "npm:charenc", + "type": "static" + }, + { + "source": "npm:md5", + "target": "npm:crypt", + "type": "static" + }, + { + "source": "npm:md5", + "target": "npm:is-buffer", + "type": "static" + } + ], + "npm:md5@2.2.1": [ + { + "source": "npm:md5@2.2.1", + "target": "npm:charenc", + "type": "static" + }, + { + "source": "npm:md5@2.2.1", + "target": "npm:crypt", + "type": "static" + }, + { + "source": "npm:md5@2.2.1", + "target": "npm:is-buffer", + "type": "static" + } + ], + "npm:memfs": [ + { + "source": "npm:memfs", + "target": "npm:fs-monkey", + "type": "static" + } + ], + "npm:merge-options": [ + { + "source": "npm:merge-options", + "target": "npm:is-plain-obj", + "type": "static" + } + ], + "npm:metro-babel-transformer": [ + { + "source": "npm:metro-babel-transformer", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro-babel-transformer", + "target": "npm:hermes-parser", + "type": "static" + }, + { + "source": "npm:metro-babel-transformer", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:metro-cache": [ + { + "source": "npm:metro-cache", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro-cache", + "target": "npm:rimraf", + "type": "static" + } + ], + "npm:metro-config": [ + { + "source": "npm:metro-config", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:jest-validate", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro-config", + "target": "npm:metro-runtime", + "type": "static" + } + ], + "npm:metro-core": [ + { + "source": "npm:metro-core", + "target": "npm:lodash.throttle", + "type": "static" + }, + { + "source": "npm:metro-core", + "target": "npm:metro-resolver@0.80.5", + "type": "static" + } + ], + "npm:metro-file-map": [ + { + "source": "npm:metro-file-map", + "target": "npm:anymatch", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:fb-watchman", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:node-abort-controller", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:walker", + "type": "static" + }, + { + "source": "npm:metro-file-map", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:metro-minify-terser": [ + { + "source": "npm:metro-minify-terser", + "target": "npm:terser", + "type": "static" + } + ], + "npm:metro-runtime": [ + { + "source": "npm:metro-runtime", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:metro-source-map": [ + { + "source": "npm:metro-source-map", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:metro-symbolicate", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:ob1", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro-source-map", + "target": "npm:vlq", + "type": "static" + } + ], + "npm:metro-symbolicate": [ + { + "source": "npm:metro-symbolicate", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:through2", + "type": "static" + }, + { + "source": "npm:metro-symbolicate", + "target": "npm:vlq", + "type": "static" + } + ], + "npm:metro-transform-plugins": [ + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro-transform-plugins", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:metro-transform-worker": [ + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-babel-transformer", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-cache-key", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-minify-terser", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:metro-transform-plugins", + "type": "static" + }, + { + "source": "npm:metro-transform-worker", + "target": "npm:nullthrows", + "type": "static" + } + ], + "npm:metro": [ + { + "source": "npm:metro", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:ci-info@2.0.0", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:connect", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:denodeify", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:hermes-parser", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:image-size", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:jest-worker", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:jsc-safe-url", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:lodash.throttle", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-babel-transformer", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-cache", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-cache-key", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-config", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-core", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-file-map", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-resolver@0.80.5", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-runtime", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-symbolicate", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-transform-plugins", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:metro-transform-worker", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:serialize-error", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:source-map@0.5.7", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:throat", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:metro", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:micromatch": [ + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:mime-types": [ + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:mini-css-extract-plugin": [ + { + "source": "npm:mini-css-extract-plugin", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:minimatch": [ + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.11", + "type": "static" + } + ], + "npm:minimatch@9.0.3": [ + { + "source": "npm:minimatch@9.0.3", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@5.1.6": [ + { + "source": "npm:minimatch@5.1.6", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minipass-collect": [ + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-flush": [ + { + "source": "npm:minipass-flush", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-pipeline": [ + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass": [ + { + "source": "npm:minipass", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:minizlib": [ + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:miragejs": [ + { + "source": "npm:miragejs", + "target": "npm:@miragejs/pretender-node-polyfill", + "type": "static" + }, + { + "source": "npm:miragejs", + "target": "npm:inflected", + "type": "static" + }, + { + "source": "npm:miragejs", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:miragejs", + "target": "npm:pretender", + "type": "static" + } + ], + "npm:mkdirp": [ + { + "source": "npm:mkdirp", + "target": "npm:minimist", + "type": "static" + } + ], + "npm:moti": [ + { + "source": "npm:moti", + "target": "npm:framer-motion", + "type": "static" + } + ], + "npm:multicast-dns": [ + { + "source": "npm:multicast-dns", + "target": "npm:dns-packet", + "type": "static" + }, + { + "source": "npm:multicast-dns", + "target": "npm:thunky", + "type": "static" + } + ], + "npm:mv": [ + { + "source": "npm:mv", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:ncp", + "type": "static" + }, + { + "source": "npm:mv", + "target": "npm:rimraf@2.4.5", + "type": "static" + } + ], + "npm:mz": [ + { + "source": "npm:mz", + "target": "npm:any-promise", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:mz", + "target": "npm:thenify-all", + "type": "static" + } + ], + "npm:no-case": [ + { + "source": "npm:no-case", + "target": "npm:lower-case", + "type": "static" + }, + { + "source": "npm:no-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:node-dir": [ + { + "source": "npm:node-dir", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:node-fetch": [ + { + "source": "npm:node-fetch", + "target": "npm:whatwg-url@5.0.0", + "type": "static" + } + ], + "npm:node-html-parser": [ + { + "source": "npm:node-html-parser", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:node-html-parser", + "target": "npm:he", + "type": "static" + } + ], + "npm:normalize-url": [ + { + "source": "npm:normalize-url", + "target": "npm:prepend-http", + "type": "static" + }, + { + "source": "npm:normalize-url", + "target": "npm:query-string@5.1.1", + "type": "static" + }, + { + "source": "npm:normalize-url", + "target": "npm:sort-keys", + "type": "static" + } + ], + "npm:npm-package-arg": [ + { + "source": "npm:npm-package-arg", + "target": "npm:hosted-git-info", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:osenv", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:semver@5.7.2", + "type": "static" + }, + { + "source": "npm:npm-package-arg", + "target": "npm:validate-npm-package-name", + "type": "static" + } + ], + "npm:npm-run-path@2.0.2": [ + { + "source": "npm:npm-run-path@2.0.2", + "target": "npm:path-key", + "type": "static" + } + ], + "npm:npm-run-path": [ + { + "source": "npm:npm-run-path", + "target": "npm:path-key@3.1.1", + "type": "static" + } + ], + "npm:npm-run-path@5.2.0": [ + { + "source": "npm:npm-run-path@5.2.0", + "target": "npm:path-key@4.0.0", + "type": "static" + } + ], + "npm:nth-check": [ + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + } + ], + "npm:object-is": [ + { + "source": "npm:object-is", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object-is", + "target": "npm:define-properties", + "type": "static" + } + ], + "npm:object.assign": [ + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:object.entries": [ + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.fromentries": [ + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.groupby": [ + { + "source": "npm:object.groupby", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.groupby", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:object.hasown": [ + { + "source": "npm:object.hasown", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.hasown", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:object.values": [ + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:on-finished": [ + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:on-finished@2.3.0": [ + { + "source": "npm:on-finished@2.3.0", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:once": [ + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:onetime@2.0.1": [ + { + "source": "npm:onetime@2.0.1", + "target": "npm:mimic-fn@1.2.0", + "type": "static" + } + ], + "npm:onetime": [ + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + } + ], + "npm:onetime@6.0.0": [ + { + "source": "npm:onetime@6.0.0", + "target": "npm:mimic-fn@4.0.0", + "type": "static" + } + ], + "npm:open@6.4.0": [ + { + "source": "npm:open@6.4.0", + "target": "npm:is-wsl@1.1.0", + "type": "static" + } + ], + "npm:open@7.4.2": [ + { + "source": "npm:open@7.4.2", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open@7.4.2", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:open": [ + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:optionator": [ + { + "source": "npm:optionator", + "target": "npm:@aashutoshrathi/word-wrap", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:ora": [ + { + "source": "npm:ora", + "target": "npm:chalk@2.4.2", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor@2.1.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols@2.2.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:ora@5.4.1": [ + { + "source": "npm:ora@5.4.1", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:ora@5.4.1", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:osenv": [ + { + "source": "npm:osenv", + "target": "npm:os-homedir", + "type": "static" + }, + { + "source": "npm:osenv", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:p-limit@2.3.0": [ + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + } + ], + "npm:p-limit": [ + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + } + ], + "npm:p-limit@4.0.0": [ + { + "source": "npm:p-limit@4.0.0", + "target": "npm:yocto-queue@1.0.0", + "type": "static" + } + ], + "npm:p-locate@3.0.0": [ + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-locate@4.1.0": [ + { + "source": "npm:p-locate@4.1.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-locate": [ + { + "source": "npm:p-locate", + "target": "npm:p-limit", + "type": "static" + } + ], + "npm:p-locate@6.0.0": [ + { + "source": "npm:p-locate@6.0.0", + "target": "npm:p-limit@4.0.0", + "type": "static" + } + ], + "npm:p-map": [ + { + "source": "npm:p-map", + "target": "npm:aggregate-error", + "type": "static" + } + ], + "npm:p-retry": [ + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry", + "type": "static" + } + ], + "npm:param-case": [ + { + "source": "npm:param-case", + "target": "npm:dot-case", + "type": "static" + }, + { + "source": "npm:param-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:parent-module": [ + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + } + ], + "npm:parse-json@4.0.0": [ + { + "source": "npm:parse-json@4.0.0", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json@4.0.0", + "target": "npm:json-parse-better-errors", + "type": "static" + } + ], + "npm:parse-json": [ + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns", + "type": "static" + } + ], + "npm:parse-png": [ + { + "source": "npm:parse-png", + "target": "npm:pngjs", + "type": "static" + } + ], + "npm:parse5": [ + { + "source": "npm:parse5", + "target": "npm:entities", + "type": "static" + } + ], + "npm:pascal-case": [ + { + "source": "npm:pascal-case", + "target": "npm:no-case", + "type": "static" + }, + { + "source": "npm:pascal-case", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:pass-stream": [ + { + "source": "npm:pass-stream", + "target": "npm:readable-stream@1.0.2", + "type": "static" + } + ], + "npm:password-prompt": [ + { + "source": "npm:password-prompt", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:password-prompt", + "target": "npm:cross-spawn", + "type": "static" + } + ], + "npm:patch-package": [ + { + "source": "npm:patch-package", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:ci-info", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:find-yarn-workspace-root", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:fs-extra", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:klaw-sync", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:open@7.4.2", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:rimraf@2.7.1", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:slash@2.0.0", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:patch-package", + "target": "npm:yaml@2.3.4", + "type": "static" + } + ], + "npm:path-scurry": [ + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@10.2.0", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass@7.0.4", + "type": "static" + } + ], + "npm:pinkie-promise": [ + { + "source": "npm:pinkie-promise", + "target": "npm:pinkie", + "type": "static" + } + ], + "npm:pkg-dir@3.0.0": [ + { + "source": "npm:pkg-dir@3.0.0", + "target": "npm:find-up@3.0.0", + "type": "static" + } + ], + "npm:pkg-dir": [ + { + "source": "npm:pkg-dir", + "target": "npm:find-up@4.1.0", + "type": "static" + } + ], + "npm:pkg-dir@7.0.0": [ + { + "source": "npm:pkg-dir@7.0.0", + "target": "npm:find-up@6.3.0", + "type": "static" + } + ], + "npm:pkg-up": [ + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + } + ], + "npm:plist": [ + { + "source": "npm:plist", + "target": "npm:@xmldom/xmldom@0.8.10", + "type": "static" + }, + { + "source": "npm:plist", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:plist", + "target": "npm:xmlbuilder@15.1.1", + "type": "static" + } + ], + "npm:popmotion": [ + { + "source": "npm:popmotion", + "target": "npm:framesync@6.0.1", + "type": "static" + }, + { + "source": "npm:popmotion", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:popmotion", + "target": "npm:style-value-types@5.0.0", + "type": "static" + }, + { + "source": "npm:popmotion", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:popmotion@9.3.1": [ + { + "source": "npm:popmotion@9.3.1", + "target": "npm:framesync", + "type": "static" + }, + { + "source": "npm:popmotion@9.3.1", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:popmotion@9.3.1", + "target": "npm:style-value-types", + "type": "static" + }, + { + "source": "npm:popmotion@9.3.1", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:postcss-calc": [ + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-colormin": [ + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-convert-values": [ + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-merge-longhand": [ + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + } + ], + "npm:postcss-merge-rules": [ + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-minify-font-values": [ + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-gradients": [ + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-params": [ + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-selectors": [ + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-local-by-default": [ + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:icss-utils", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-modules-local-by-default", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-modules-scope": [ + { + "source": "npm:postcss-modules-scope", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-modules-values": [ + { + "source": "npm:postcss-modules-values", + "target": "npm:icss-utils", + "type": "static" + } + ], + "npm:postcss-normalize-display-values": [ + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-positions": [ + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-repeat-style": [ + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-string": [ + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-timing-functions": [ + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-unicode": [ + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-url": [ + { + "source": "npm:postcss-normalize-url", + "target": "npm:normalize-url@6.1.0", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-whitespace": [ + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-ordered-values": [ + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-reduce-initial": [ + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + } + ], + "npm:postcss-reduce-transforms": [ + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-selector-parser": [ + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:postcss-svgo": [ + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo@2.8.0", + "type": "static" + } + ], + "npm:postcss-unique-selectors": [ + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss": [ + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:pretender": [ + { + "source": "npm:pretender", + "target": "npm:fake-xml-http-request", + "type": "static" + }, + { + "source": "npm:pretender", + "target": "npm:route-recognizer", + "type": "static" + } + ], + "npm:prettier-linter-helpers": [ + { + "source": "npm:prettier-linter-helpers", + "target": "npm:fast-diff", + "type": "static" + } + ], + "npm:pretty-error": [ + { + "source": "npm:pretty-error", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:pretty-error", + "target": "npm:renderkid", + "type": "static" + } + ], + "npm:pretty-format@26.6.2": [ + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:@jest/types@26.6.2", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:pretty-format@26.6.2", + "target": "npm:react-is@17.0.2", + "type": "static" + } + ], + "npm:pretty-format": [ + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.2.0", + "type": "static" + } + ], + "npm:pretty-quick": [ + { + "source": "npm:pretty-quick", + "target": "npm:execa", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:mri", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:picomatch@3.0.1", + "type": "static" + }, + { + "source": "npm:pretty-quick", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:promise@7.3.1": [ + { + "source": "npm:promise@7.3.1", + "target": "npm:asap", + "type": "static" + } + ], + "npm:promise": [ + { + "source": "npm:promise", + "target": "npm:asap", + "type": "static" + } + ], + "npm:prompt-skeleton": [ + { + "source": "npm:prompt-skeleton", + "target": "npm:ansi-escapes@1.4.0", + "type": "static" + }, + { + "source": "npm:prompt-skeleton", + "target": "npm:pass-stream", + "type": "static" + } + ], + "npm:prompt-sync": [ + { + "source": "npm:prompt-sync", + "target": "npm:strip-ansi@5.2.0", + "type": "static" + } + ], + "npm:prompts": [ + { + "source": "npm:prompts", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:prompts", + "target": "npm:sisteransi", + "type": "static" + } + ], + "npm:prop-types": [ + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:proxy-addr": [ + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + } + ], + "npm:pump": [ + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + } + ], + "npm:qs": [ + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:qs@6.11.2": [ + { + "source": "npm:qs@6.11.2", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:query-string": [ + { + "source": "npm:query-string", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:filter-obj", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:split-on-first", + "type": "static" + }, + { + "source": "npm:query-string", + "target": "npm:strict-uri-encode", + "type": "static" + } + ], + "npm:query-string@5.1.1": [ + { + "source": "npm:query-string@5.1.1", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string@5.1.1", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:query-string@5.1.1", + "target": "npm:strict-uri-encode@1.1.0", + "type": "static" + } + ], + "npm:query-string@7.1.3": [ + { + "source": "npm:query-string@7.1.3", + "target": "npm:decode-uri-component", + "type": "static" + }, + { + "source": "npm:query-string@7.1.3", + "target": "npm:filter-obj", + "type": "static" + }, + { + "source": "npm:query-string@7.1.3", + "target": "npm:split-on-first", + "type": "static" + }, + { + "source": "npm:query-string@7.1.3", + "target": "npm:strict-uri-encode", + "type": "static" + } + ], + "npm:queue": [ + { + "source": "npm:queue", + "target": "npm:inherits", + "type": "static" + } + ], + "npm:randombytes": [ + { + "source": "npm:randombytes", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:raw-body": [ + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite@0.4.24", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:rc": [ + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + } + ], + "npm:react-devtools-core": [ + { + "source": "npm:react-devtools-core", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:react-devtools-core", + "target": "npm:ws", + "type": "static" + } + ], + "npm:react-dom": [ + { + "source": "npm:react-dom", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + } + ], + "npm:react-helmet-async": [ + { + "source": "npm:react-helmet-async", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:react-fast-compare", + "type": "static" + }, + { + "source": "npm:react-helmet-async", + "target": "npm:shallowequal", + "type": "static" + } + ], + "npm:react-i18next": [ + { + "source": "npm:react-i18next", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-i18next", + "target": "npm:html-parse-stringify", + "type": "static" + } + ], + "npm:react-native-gesture-handler": [ + { + "source": "npm:react-native-gesture-handler", + "target": "npm:@egjs/hammerjs", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:hoist-non-react-statics", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:react-native-gesture-handler", + "target": "npm:prop-types", + "type": "static" + } + ], + "npm:react-native-keyboard-aware-scroll-view": [ + { + "source": "npm:react-native-keyboard-aware-scroll-view", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:react-native-keyboard-aware-scroll-view", + "target": "npm:react-native-iphone-x-helper", + "type": "static" + } + ], + "npm:react-native-reanimated": [ + { + "source": "npm:react-native-reanimated", + "target": "npm:@babel/plugin-transform-object-assign", + "type": "static" + }, + { + "source": "npm:react-native-reanimated", + "target": "npm:@babel/preset-typescript", + "type": "static" + }, + { + "source": "npm:react-native-reanimated", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:react-native-reanimated", + "target": "npm:invariant", + "type": "static" + } + ], + "npm:react-native-screens": [ + { + "source": "npm:react-native-screens", + "target": "npm:react-freeze", + "type": "static" + }, + { + "source": "npm:react-native-screens", + "target": "npm:warn-once", + "type": "static" + } + ], + "npm:react-native-svg": [ + { + "source": "npm:react-native-svg", + "target": "npm:css-select@5.1.0", + "type": "static" + }, + { + "source": "npm:react-native-svg", + "target": "npm:css-tree", + "type": "static" + } + ], + "npm:react-native-web": [ + { + "source": "npm:react-native-web", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:@react-native/normalize-color", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:fbjs", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:inline-style-prefixer", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:memoize-one@6.0.0", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:react-native-web", + "target": "npm:styleq", + "type": "static" + } + ], + "npm:react-native": [ + { + "source": "npm:react-native", + "target": "npm:@jest/create-cache-key-function", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native-community/cli", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native-community/cli-platform-android", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native-community/cli-platform-ios", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/assets-registry", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/codegen", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/community-cli-plugin", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/gradle-plugin", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/js-polyfills", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/normalize-colors", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:@react-native/virtualized-lists", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:abort-controller", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:anser", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:deprecated-react-native-prop-types", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:event-target-shim", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:flow-enums-runtime", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:invariant", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:jest-environment-node", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:jsc-android", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:memoize-one", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:metro-runtime", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:metro-source-map", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:mkdirp", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:nullthrows", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:pretty-format@26.6.2", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:promise", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:react-devtools-core", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:react-refresh", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:regenerator-runtime", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:stacktrace-parser", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:whatwg-fetch", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:ws@6.2.2", + "type": "static" + }, + { + "source": "npm:react-native", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:react-shallow-renderer": [ + { + "source": "npm:react-shallow-renderer", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:react-shallow-renderer", + "target": "npm:react-is@18.2.0", + "type": "static" + } + ], + "npm:react-test-renderer": [ + { + "source": "npm:react-test-renderer", + "target": "npm:react-is@18.2.0", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:react-shallow-renderer", + "type": "static" + }, + { + "source": "npm:react-test-renderer", + "target": "npm:scheduler", + "type": "static" + } + ], + "npm:react": [ + { + "source": "npm:react", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:reactotron-core-client": [ + { + "source": "npm:reactotron-core-client", + "target": "npm:reactotron-core-contract", + "type": "static" + } + ], + "npm:reactotron-react-native": [ + { + "source": "npm:reactotron-react-native", + "target": "npm:mitt", + "type": "static" + }, + { + "source": "npm:reactotron-react-native", + "target": "npm:query-string", + "type": "static" + }, + { + "source": "npm:reactotron-react-native", + "target": "npm:reactotron-core-client", + "type": "static" + }, + { + "source": "npm:reactotron-react-native", + "target": "npm:react-native-flipper", + "type": "static" + } + ], + "npm:readable-stream@2.3.8": [ + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:core-util-is", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:isarray@1.0.0", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:process-nextick-args", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:string_decoder@1.1.1", + "type": "static" + }, + { + "source": "npm:readable-stream@2.3.8", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readable-stream": [ + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:readdirp": [ + { + "source": "npm:readdirp", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:recast": [ + { + "source": "npm:recast", + "target": "npm:ast-types", + "type": "static" + }, + { + "source": "npm:recast", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:recast", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:recast", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:redent": [ + { + "source": "npm:redent", + "target": "npm:indent-string", + "type": "static" + }, + { + "source": "npm:redent", + "target": "npm:strip-indent", + "type": "static" + } + ], + "npm:reflect.getprototypeof": [ + { + "source": "npm:reflect.getprototypeof", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:which-builtin-type", + "type": "static" + } + ], + "npm:regenerate-unicode-properties": [ + { + "source": "npm:regenerate-unicode-properties", + "target": "npm:regenerate", + "type": "static" + } + ], + "npm:regenerator-transform": [ + { + "source": "npm:regenerator-transform", + "target": "npm:@babel/runtime", + "type": "static" + } + ], + "npm:regexp.prototype.flags": [ + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + } + ], + "npm:regexpu-core": [ + { + "source": "npm:regexpu-core", + "target": "npm:@babel/regjsgen", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regenerate-unicode-properties", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:regjsparser", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-ecmascript", + "type": "static" + }, + { + "source": "npm:regexpu-core", + "target": "npm:unicode-match-property-value-ecmascript", + "type": "static" + } + ], + "npm:registry-auth-token": [ + { + "source": "npm:registry-auth-token", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:registry-auth-token", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:registry-url": [ + { + "source": "npm:registry-url", + "target": "npm:rc", + "type": "static" + } + ], + "npm:regjsparser": [ + { + "source": "npm:regjsparser", + "target": "npm:jsesc@0.5.0", + "type": "static" + } + ], + "npm:renderkid": [ + { + "source": "npm:renderkid", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:dom-converter", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:htmlparser2", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:renderkid", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:requireg": [ + { + "source": "npm:requireg", + "target": "npm:nested-error-stacks", + "type": "static" + }, + { + "source": "npm:requireg", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:requireg", + "target": "npm:resolve@1.7.1", + "type": "static" + } + ], + "npm:resolve-cwd": [ + { + "source": "npm:resolve-cwd", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:resolve": [ + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve@2.0.0-next.5": [ + { + "source": "npm:resolve@2.0.0-next.5", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.5", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@2.0.0-next.5", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve@1.7.1": [ + { + "source": "npm:resolve@1.7.1", + "target": "npm:path-parse", + "type": "static" + } + ], + "npm:restore-cursor@2.0.0": [ + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:onetime@2.0.1", + "type": "static" + }, + { + "source": "npm:restore-cursor@2.0.0", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:restore-cursor": [ + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:restore-cursor@4.0.0": [ + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor@4.0.0", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:rimraf@2.7.1": [ + { + "source": "npm:rimraf@2.7.1", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rimraf": [ + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + } + ], + "npm:rimraf@2.4.5": [ + { + "source": "npm:rimraf@2.4.5", + "target": "npm:glob@6.0.4", + "type": "static" + } + ], + "npm:rimraf@2.6.3": [ + { + "source": "npm:rimraf@2.6.3", + "target": "npm:glob", + "type": "static" + } + ], + "npm:run-parallel": [ + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + } + ], + "npm:safe-array-concat": [ + { + "source": "npm:safe-array-concat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:isarray", + "type": "static" + } + ], + "npm:safe-regex-test": [ + { + "source": "npm:safe-regex-test", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + } + ], + "npm:sass": [ + { + "source": "npm:sass", + "target": "npm:chokidar@3.6.0", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:immutable", + "type": "static" + }, + { + "source": "npm:sass", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:saxes": [ + { + "source": "npm:saxes", + "target": "npm:xmlchars", + "type": "static" + } + ], + "npm:scheduler@0.24.0-canary-efb381bbf-20230505": [ + { + "source": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:scheduler": [ + { + "source": "npm:scheduler", + "target": "npm:loose-envify", + "type": "static" + } + ], + "npm:schema-utils@2.7.1": [ + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@2.7.1", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils@3.3.0": [ + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:schema-utils@3.3.0", + "target": "npm:ajv-keywords", + "type": "static" + } + ], + "npm:schema-utils": [ + { + "source": "npm:schema-utils", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv@8.12.0", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-formats@2.1.1", + "type": "static" + }, + { + "source": "npm:schema-utils", + "target": "npm:ajv-keywords@5.1.0", + "type": "static" + } + ], + "npm:select-prompt": [ + { + "source": "npm:select-prompt", + "target": "npm:ansi-escapes@1.4.0", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:chalk@1.1.3", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:cli-styles", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:figures@2.0.0", + "type": "static" + }, + { + "source": "npm:select-prompt", + "target": "npm:prompt-skeleton", + "type": "static" + } + ], + "npm:selfsigned": [ + { + "source": "npm:selfsigned", + "target": "npm:@types/node-forge", + "type": "static" + }, + { + "source": "npm:selfsigned", + "target": "npm:node-forge", + "type": "static" + } + ], + "npm:semver@7.5.3": [ + { + "source": "npm:semver@7.5.3", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:semver": [ + { + "source": "npm:semver", + "target": "npm:lru-cache", + "type": "static" + } + ], + "npm:send": [ + { + "source": "npm:send", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:destroy", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + } + ], + "npm:serialize-javascript": [ + { + "source": "npm:serialize-javascript", + "target": "npm:randombytes", + "type": "static" + } + ], + "npm:serve-index": [ + { + "source": "npm:serve-index", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:batch", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:debug@2.6.9", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:http-errors@1.6.3", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:serve-index", + "target": "npm:parseurl", + "type": "static" + } + ], + "npm:serve-static": [ + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + } + ], + "npm:set-function-length": [ + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:set-function-name": [ + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:shallow-clone": [ + { + "source": "npm:shallow-clone", + "target": "npm:kind-of", + "type": "static" + } + ], + "npm:shebang-command@1.2.0": [ + { + "source": "npm:shebang-command@1.2.0", + "target": "npm:shebang-regex@1.0.0", + "type": "static" + } + ], + "npm:shebang-command": [ + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + } + ], + "npm:side-channel": [ + { + "source": "npm:side-channel", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + } + ], + "npm:simple-plist": [ + { + "source": "npm:simple-plist", + "target": "npm:bplist-creator", + "type": "static" + }, + { + "source": "npm:simple-plist", + "target": "npm:bplist-parser@0.3.1", + "type": "static" + }, + { + "source": "npm:simple-plist", + "target": "npm:plist", + "type": "static" + } + ], + "npm:simple-swizzle": [ + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.2", + "type": "static" + } + ], + "npm:slice-ansi@2.1.0": [ + { + "source": "npm:slice-ansi@2.1.0", + "target": "npm:ansi-styles@3.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi@2.1.0", + "target": "npm:astral-regex", + "type": "static" + }, + { + "source": "npm:slice-ansi@2.1.0", + "target": "npm:is-fullwidth-code-point@2.0.0", + "type": "static" + } + ], + "npm:slice-ansi": [ + { + "source": "npm:slice-ansi", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:slice-ansi", + "target": "npm:is-fullwidth-code-point@4.0.0", + "type": "static" + } + ], + "npm:sockjs": [ + { + "source": "npm:sockjs", + "target": "npm:faye-websocket", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:uuid", + "type": "static" + }, + { + "source": "npm:sockjs", + "target": "npm:websocket-driver", + "type": "static" + } + ], + "npm:sort-keys": [ + { + "source": "npm:sort-keys", + "target": "npm:is-plain-obj@1.1.0", + "type": "static" + } + ], + "npm:source-map-loader": [ + { + "source": "npm:source-map-loader", + "target": "npm:abab", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:source-map-loader", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:source-map-support@0.5.13": [ + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support@0.5.13", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:source-map-support": [ + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:spdy-transport": [ + { + "source": "npm:spdy-transport", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:detect-node", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:hpack.js", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:obuf", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:spdy-transport", + "target": "npm:wbuf", + "type": "static" + } + ], + "npm:spdy": [ + { + "source": "npm:spdy", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:handle-thing", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:http-deceiver", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:select-hose", + "type": "static" + }, + { + "source": "npm:spdy", + "target": "npm:spdy-transport", + "type": "static" + } + ], + "npm:split": [ + { + "source": "npm:split", + "target": "npm:through", + "type": "static" + } + ], + "npm:ssri": [ + { + "source": "npm:ssri", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:stack-generator": [ + { + "source": "npm:stack-generator", + "target": "npm:stackframe", + "type": "static" + } + ], + "npm:stack-utils": [ + { + "source": "npm:stack-utils", + "target": "npm:escape-string-regexp@2.0.0", + "type": "static" + } + ], + "npm:stacktrace-gps": [ + { + "source": "npm:stacktrace-gps", + "target": "npm:source-map@0.5.6", + "type": "static" + }, + { + "source": "npm:stacktrace-gps", + "target": "npm:stackframe", + "type": "static" + } + ], + "npm:stacktrace-js": [ + { + "source": "npm:stacktrace-js", + "target": "npm:error-stack-parser", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stack-generator", + "type": "static" + }, + { + "source": "npm:stacktrace-js", + "target": "npm:stacktrace-gps", + "type": "static" + } + ], + "npm:stacktrace-parser": [ + { + "source": "npm:stacktrace-parser", + "target": "npm:type-fest@0.7.1", + "type": "static" + } + ], + "npm:string-length": [ + { + "source": "npm:string-length", + "target": "npm:char-regex", + "type": "static" + }, + { + "source": "npm:string-length", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-length@5.0.1": [ + { + "source": "npm:string-length@5.0.1", + "target": "npm:char-regex@2.0.1", + "type": "static" + }, + { + "source": "npm:string-length@5.0.1", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:string-width-cjs": [ + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-width": [ + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string-width@5.1.2": [ + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:string.prototype.matchall": [ + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:string.prototype.trim": [ + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trimend": [ + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trimstart": [ + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string_decoder": [ + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:string_decoder@1.1.1": [ + { + "source": "npm:string_decoder@1.1.1", + "target": "npm:safe-buffer@5.1.2", + "type": "static" + } + ], + "npm:strip-ansi-cjs": [ + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi": [ + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:strip-ansi@3.0.1": [ + { + "source": "npm:strip-ansi@3.0.1", + "target": "npm:ansi-regex@2.1.1", + "type": "static" + } + ], + "npm:strip-ansi@5.2.0": [ + { + "source": "npm:strip-ansi@5.2.0", + "target": "npm:ansi-regex@4.1.1", + "type": "static" + } + ], + "npm:strip-ansi@7.1.0": [ + { + "source": "npm:strip-ansi@7.1.0", + "target": "npm:ansi-regex@6.0.1", + "type": "static" + } + ], + "npm:strip-indent": [ + { + "source": "npm:strip-indent", + "target": "npm:min-indent", + "type": "static" + } + ], + "npm:style-value-types": [ + { + "source": "npm:style-value-types", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:style-value-types", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:style-value-types@5.0.0": [ + { + "source": "npm:style-value-types@5.0.0", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:style-value-types@5.0.0", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:stylehacks": [ + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:sucrase": [ + { + "source": "npm:sucrase", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:commander@4.1.1", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:glob@7.1.6", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:mz", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:sucrase", + "target": "npm:ts-interface-checker", + "type": "static" + } + ], + "npm:sucrase@3.35.0": [ + { + "source": "npm:sucrase@3.35.0", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:commander@4.1.1", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:glob@10.3.10", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:mz", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:pirates", + "type": "static" + }, + { + "source": "npm:sucrase@3.35.0", + "target": "npm:ts-interface-checker", + "type": "static" + } + ], + "npm:supports-color@5.5.0": [ + { + "source": "npm:supports-color@5.5.0", + "target": "npm:has-flag@3.0.0", + "type": "static" + } + ], + "npm:supports-color": [ + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-color@8.1.1": [ + { + "source": "npm:supports-color@8.1.1", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:supports-hyperlinks": [ + { + "source": "npm:supports-hyperlinks", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:supports-hyperlinks", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:svgo@2.8.0": [ + { + "source": "npm:svgo@2.8.0", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:csso@4.2.0", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:svgo@2.8.0", + "target": "npm:stable", + "type": "static" + } + ], + "npm:tar": [ + { + "source": "npm:tar", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass@5.0.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:mkdirp@1.0.4", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:temp": [ + { + "source": "npm:temp", + "target": "npm:rimraf@2.6.3", + "type": "static" + } + ], + "npm:tempy": [ + { + "source": "npm:tempy", + "target": "npm:temp-dir@1.0.0", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:type-fest@0.3.1", + "type": "static" + }, + { + "source": "npm:tempy", + "target": "npm:unique-string", + "type": "static" + } + ], + "npm:tempy@0.7.1": [ + { + "source": "npm:tempy@0.7.1", + "target": "npm:del@6.1.1", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:temp-dir", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:type-fest@0.16.0", + "type": "static" + }, + { + "source": "npm:tempy@0.7.1", + "target": "npm:unique-string@2.0.0", + "type": "static" + } + ], + "npm:terminal-link": [ + { + "source": "npm:terminal-link", + "target": "npm:ansi-escapes", + "type": "static" + }, + { + "source": "npm:terminal-link", + "target": "npm:supports-hyperlinks", + "type": "static" + } + ], + "npm:terser-webpack-plugin": [ + { + "source": "npm:terser-webpack-plugin", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:jest-worker@27.5.1", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:serialize-javascript", + "type": "static" + }, + { + "source": "npm:terser-webpack-plugin", + "target": "npm:terser", + "type": "static" + } + ], + "npm:terser": [ + { + "source": "npm:terser", + "target": "npm:@jridgewell/source-map", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:commander@2.20.3", + "type": "static" + }, + { + "source": "npm:terser", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:test-exclude": [ + { + "source": "npm:test-exclude", + "target": "npm:@istanbuljs/schema", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:test-exclude", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:thenify-all": [ + { + "source": "npm:thenify-all", + "target": "npm:thenify", + "type": "static" + } + ], + "npm:thenify": [ + { + "source": "npm:thenify", + "target": "npm:any-promise", + "type": "static" + } + ], + "npm:through2": [ + { + "source": "npm:through2", + "target": "npm:readable-stream@2.3.8", + "type": "static" + }, + { + "source": "npm:through2", + "target": "npm:xtend", + "type": "static" + } + ], + "npm:tmp": [ + { + "source": "npm:tmp", + "target": "npm:os-tmpdir", + "type": "static" + } + ], + "npm:to-regex-range": [ + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + } + ], + "npm:tough-cookie": [ + { + "source": "npm:tough-cookie", + "target": "npm:psl", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:universalify@0.2.0", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:url-parse", + "type": "static" + } + ], + "npm:tr46": [ + { + "source": "npm:tr46", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:tsconfig-paths@3.15.0": [ + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:@types/json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:json5@1.0.2", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths@3.15.0", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:tsutils": [ + { + "source": "npm:tsutils", + "target": "npm:tslib@1.14.1", + "type": "static" + } + ], + "npm:type-check": [ + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + } + ], + "npm:type-is": [ + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:typed-array-buffer": [ + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-length": [ + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-offset": [ + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-length": [ + { + "source": "npm:typed-array-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:unbox-primitive": [ + { + "source": "npm:unbox-primitive", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + } + ], + "npm:unicode-match-property-ecmascript": [ + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-canonical-property-names-ecmascript", + "type": "static" + }, + { + "source": "npm:unicode-match-property-ecmascript", + "target": "npm:unicode-property-aliases-ecmascript", + "type": "static" + } + ], + "npm:unique-filename": [ + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + } + ], + "npm:unique-slug": [ + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unique-string": [ + { + "source": "npm:unique-string", + "target": "npm:crypto-random-string", + "type": "static" + } + ], + "npm:unique-string@2.0.0": [ + { + "source": "npm:unique-string@2.0.0", + "target": "npm:crypto-random-string@2.0.0", + "type": "static" + } + ], + "npm:update-browserslist-db": [ + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:update-check": [ + { + "source": "npm:update-check", + "target": "npm:registry-auth-token", + "type": "static" + }, + { + "source": "npm:update-check", + "target": "npm:registry-url", + "type": "static" + } + ], + "npm:uri-js": [ + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:url-parse": [ + { + "source": "npm:url-parse", + "target": "npm:querystringify", + "type": "static" + }, + { + "source": "npm:url-parse", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:url": [ + { + "source": "npm:url", + "target": "npm:punycode@1.4.1", + "type": "static" + }, + { + "source": "npm:url", + "target": "npm:qs@6.11.2", + "type": "static" + } + ], + "npm:util": [ + { + "source": "npm:util", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-arguments", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:util", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:v8-to-istanbul": [ + { + "source": "npm:v8-to-istanbul", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:@types/istanbul-lib-coverage", + "type": "static" + }, + { + "source": "npm:v8-to-istanbul", + "target": "npm:convert-source-map", + "type": "static" + } + ], + "npm:validate-npm-package-name": [ + { + "source": "npm:validate-npm-package-name", + "target": "npm:builtins", + "type": "static" + } + ], + "npm:w3c-xmlserializer": [ + { + "source": "npm:w3c-xmlserializer", + "target": "npm:xml-name-validator", + "type": "static" + } + ], + "npm:walker": [ + { + "source": "npm:walker", + "target": "npm:makeerror", + "type": "static" + } + ], + "npm:watchpack": [ + { + "source": "npm:watchpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:watchpack", + "target": "npm:graceful-fs", + "type": "static" + } + ], + "npm:wbuf": [ + { + "source": "npm:wbuf", + "target": "npm:minimalistic-assert", + "type": "static" + } + ], + "npm:wcwidth": [ + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + } + ], + "npm:web-encoding": [ + { + "source": "npm:web-encoding", + "target": "npm:util", + "type": "static" + }, + { + "source": "npm:web-encoding", + "target": "npm:@zxing/text-encoding", + "type": "static" + } + ], + "npm:webpack-dev-middleware": [ + { + "source": "npm:webpack-dev-middleware", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:memfs", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:webpack-dev-middleware", + "target": "npm:schema-utils", + "type": "static" + } + ], + "npm:webpack-dev-server": [ + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/bonjour", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:@types/ws", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ansi-html-community", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:bonjour-service", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:compression", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:connect-history-api-fallback", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:default-gateway@6.0.3", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:http-proxy-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ipaddr.js@2.1.0", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:launch-editor", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:rimraf", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:schema-utils", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:selfsigned", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:serve-index", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:sockjs", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:spdy", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:webpack-dev-middleware", + "type": "static" + }, + { + "source": "npm:webpack-dev-server", + "target": "npm:ws@8.16.0", + "type": "static" + } + ], + "npm:webpack-manifest-plugin": [ + { + "source": "npm:webpack-manifest-plugin", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack-manifest-plugin", + "target": "npm:webpack-sources@2.3.1", + "type": "static" + } + ], + "npm:webpack-sources@2.3.1": [ + { + "source": "npm:webpack-sources@2.3.1", + "target": "npm:source-list-map", + "type": "static" + }, + { + "source": "npm:webpack-sources@2.3.1", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:webpack": [ + { + "source": "npm:webpack", + "target": "npm:@types/eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/ast", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-edit", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:@webassemblyjs/wasm-parser", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:acorn-import-assertions", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:chrome-trace-event", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:events", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:loader-runner", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:neo-async", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:schema-utils@3.3.0", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:terser-webpack-plugin", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:watchpack", + "type": "static" + }, + { + "source": "npm:webpack", + "target": "npm:webpack-sources", + "type": "static" + } + ], + "npm:websocket-driver": [ + { + "source": "npm:websocket-driver", + "target": "npm:http-parser-js", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:websocket-driver", + "target": "npm:websocket-extensions", + "type": "static" + } + ], + "npm:whatwg-encoding": [ + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite", + "type": "static" + } + ], + "npm:whatwg-url-without-unicode": [ + { + "source": "npm:whatwg-url-without-unicode", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:whatwg-url-without-unicode", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:whatwg-url-without-unicode", + "target": "npm:webidl-conversions@5.0.0", + "type": "static" + } + ], + "npm:whatwg-url": [ + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:whatwg-url@5.0.0": [ + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:tr46@0.0.3", + "type": "static" + }, + { + "source": "npm:whatwg-url@5.0.0", + "target": "npm:webidl-conversions@3.0.1", + "type": "static" + } + ], + "npm:which-boxed-primitive": [ + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:which-builtin-type": [ + { + "source": "npm:which-builtin-type", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-async-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-finalizationregistry", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-collection", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:which-collection": [ + { + "source": "npm:which-collection", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakmap", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakset", + "type": "static" + } + ], + "npm:which-typed-array": [ + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:which@1.3.1": [ + { + "source": "npm:which@1.3.1", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:which": [ + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:wrap-ansi-cjs": [ + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:wrap-ansi": [ + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:wrap-ansi@6.2.0": [ + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi@6.2.0", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:wrap-ansi@8.1.0": [ + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles@6.2.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi@7.1.0", + "type": "static" + } + ], + "npm:write-file-atomic": [ + { + "source": "npm:write-file-atomic", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:write-file-atomic@4.0.2": [ + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:write-file-atomic@4.0.2", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:ws@6.2.2": [ + { + "source": "npm:ws@6.2.2", + "target": "npm:async-limiter", + "type": "static" + } + ], + "npm:xcode": [ + { + "source": "npm:xcode", + "target": "npm:simple-plist", + "type": "static" + }, + { + "source": "npm:xcode", + "target": "npm:uuid@7.0.3", + "type": "static" + } + ], + "npm:xml-js": [ + { + "source": "npm:xml-js", + "target": "npm:sax", + "type": "static" + } + ], + "npm:xml2js@0.4.23": [ + { + "source": "npm:xml2js@0.4.23", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:xml2js@0.4.23", + "target": "npm:xmlbuilder", + "type": "static" + } + ], + "npm:xml2js": [ + { + "source": "npm:xml2js", + "target": "npm:sax", + "type": "static" + }, + { + "source": "npm:xml2js", + "target": "npm:xmlbuilder", + "type": "static" + } + ], + "npm:yargs-parser@18.1.3": [ + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:camelcase", + "type": "static" + }, + { + "source": "npm:yargs-parser@18.1.3", + "target": "npm:decamelize", + "type": "static" + } + ], + "npm:yargs@15.4.1": [ + { + "source": "npm:yargs@15.4.1", + "target": "npm:cliui@6.0.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:decamelize", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:find-up@4.1.0", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:require-main-filename", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:set-blocking", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:which-module", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:y18n@4.0.3", + "type": "static" + }, + { + "source": "npm:yargs@15.4.1", + "target": "npm:yargs-parser@18.1.3", + "type": "static" + } + ], + "npm:yargs": [ + { + "source": "npm:yargs", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + } + ] + }, + "version": "6.0" +} diff --git a/App.tsx b/App.tsx index e22bc10e..9c2cd17d 100644 --- a/App.tsx +++ b/App.tsx @@ -6,11 +6,12 @@ import 'setimmediate' import 'react-native-reanimated' // Rest imports -import '~i18n' +import '@baca/i18n' + import * as Device from 'expo-device' import 'expo-router/entry' -import { enableAndroidBackgroundNotificationListener, startMockedServer } from '~services' +import { enableAndroidBackgroundNotificationListener, startMockedServer } from '@baca/services' // FIXME: there is some issue with miragejs that causes console.log to not work const DISABLE_CONSOLE_ENABLE_MOCKED_SERVER = false diff --git a/app/(app)/(authorized)/(tabs)/_layout.tsx b/app/(app)/(authorized)/(tabs)/_layout.tsx index 970c045f..1de78b31 100644 --- a/app/(app)/(authorized)/(tabs)/_layout.tsx +++ b/app/(app)/(authorized)/(tabs)/_layout.tsx @@ -1,5 +1,5 @@ -import { useScreenOptions } from '~hooks' -import { ResponsiveNavigator } from '~navigation/tabNavigator/navigator' +import { useScreenOptions } from '@baca/hooks' +import { ResponsiveNavigator } from '@baca/navigation/tabNavigator/navigator' export const unstable_settings = { initialRouteName: 'home', diff --git a/app/(app)/(authorized)/(tabs)/example/colors.tsx b/app/(app)/(authorized)/(tabs)/example/colors.tsx index 6721eee5..f7c2aad6 100644 --- a/app/(app)/(authorized)/(tabs)/example/colors.tsx +++ b/app/(app)/(authorized)/(tabs)/example/colors.tsx @@ -1,3 +1,3 @@ -import { ColorsScreen } from '~screens' +import { ColorsScreen } from '@baca/screens' export default ColorsScreen diff --git a/app/(app)/(authorized)/(tabs)/example/components.tsx b/app/(app)/(authorized)/(tabs)/example/components.tsx index 6f5c79e2..9d8d2585 100644 --- a/app/(app)/(authorized)/(tabs)/example/components.tsx +++ b/app/(app)/(authorized)/(tabs)/example/components.tsx @@ -1,3 +1,3 @@ -import { ComponentsScreen } from '~screens' +import { ComponentsScreen } from '@baca/screens' export default ComponentsScreen diff --git a/app/(app)/(authorized)/(tabs)/example/data-from-be.tsx b/app/(app)/(authorized)/(tabs)/example/data-from-be.tsx index e7368d3a..b87bc493 100644 --- a/app/(app)/(authorized)/(tabs)/example/data-from-be.tsx +++ b/app/(app)/(authorized)/(tabs)/example/data-from-be.tsx @@ -1,3 +1,3 @@ -import { DataFromBeScreen_EXAMPLE } from '~screens' +import { DataFromBeScreen_EXAMPLE } from '@baca/screens' export default DataFromBeScreen_EXAMPLE diff --git a/app/(app)/(authorized)/(tabs)/example/index.tsx b/app/(app)/(authorized)/(tabs)/example/index.tsx index 5343ca7f..0a4e5cb7 100644 --- a/app/(app)/(authorized)/(tabs)/example/index.tsx +++ b/app/(app)/(authorized)/(tabs)/example/index.tsx @@ -1,3 +1,3 @@ -import { ExamplesScreen } from '~screens' +import { ExamplesScreen } from '@baca/screens' export default ExamplesScreen diff --git a/app/(app)/(authorized)/(tabs)/example/test-form.tsx b/app/(app)/(authorized)/(tabs)/example/test-form.tsx index 16c87b63..955b5810 100644 --- a/app/(app)/(authorized)/(tabs)/example/test-form.tsx +++ b/app/(app)/(authorized)/(tabs)/example/test-form.tsx @@ -1,3 +1,3 @@ -import { TestFormScreen } from '~screens' +import { TestFormScreen } from '@baca/screens' export default TestFormScreen diff --git a/app/(app)/(authorized)/(tabs)/example/typography.tsx b/app/(app)/(authorized)/(tabs)/example/typography.tsx index 467b08e6..61ccb375 100644 --- a/app/(app)/(authorized)/(tabs)/example/typography.tsx +++ b/app/(app)/(authorized)/(tabs)/example/typography.tsx @@ -1,3 +1,3 @@ -import { TypographyScreen } from '~screens' +import { TypographyScreen } from '@baca/screens' export default TypographyScreen diff --git a/app/(app)/(authorized)/(tabs)/home/details.tsx b/app/(app)/(authorized)/(tabs)/home/details.tsx index 45347ddb..4349ee42 100644 --- a/app/(app)/(authorized)/(tabs)/home/details.tsx +++ b/app/(app)/(authorized)/(tabs)/home/details.tsx @@ -1,3 +1,3 @@ -import { DetailsScreen } from '~screens' +import { DetailsScreen } from '@baca/screens' export default DetailsScreen diff --git a/app/(app)/(authorized)/(tabs)/home/index.tsx b/app/(app)/(authorized)/(tabs)/home/index.tsx index dbfe4261..82596509 100644 --- a/app/(app)/(authorized)/(tabs)/home/index.tsx +++ b/app/(app)/(authorized)/(tabs)/home/index.tsx @@ -1,3 +1,3 @@ -import { HomeScreen } from '~screens' +import { HomeScreen } from '@baca/screens' export default HomeScreen diff --git a/app/(app)/(authorized)/(tabs)/settings/index.tsx b/app/(app)/(authorized)/(tabs)/settings/index.tsx index 8e6518a0..7c4a8649 100644 --- a/app/(app)/(authorized)/(tabs)/settings/index.tsx +++ b/app/(app)/(authorized)/(tabs)/settings/index.tsx @@ -1,3 +1,3 @@ -import { SettingsScreen } from '~screens' +import { SettingsScreen } from '@baca/screens' export default SettingsScreen diff --git a/app/(app)/(authorized)/_layout.tsx b/app/(app)/(authorized)/_layout.tsx index 7dca3eed..f2e0f22d 100644 --- a/app/(app)/(authorized)/_layout.tsx +++ b/app/(app)/(authorized)/_layout.tsx @@ -1,8 +1,7 @@ +import { isSignedInAtom } from '@baca/store/auth' import { Redirect, Stack } from 'expo-router' import { useAtomValue } from 'jotai' -import { isSignedInAtom } from '~store/auth' - export const unstable_settings = { initialRouteName: '(tabs)', } diff --git a/app/(app)/(authorized)/big-form.tsx b/app/(app)/(authorized)/big-form.tsx index 16c87b63..955b5810 100644 --- a/app/(app)/(authorized)/big-form.tsx +++ b/app/(app)/(authorized)/big-form.tsx @@ -1,3 +1,3 @@ -import { TestFormScreen } from '~screens' +import { TestFormScreen } from '@baca/screens' export default TestFormScreen diff --git a/app/(app)/(common)/blog.tsx b/app/(app)/(common)/blog.tsx index e56f2aee..bd239e6c 100644 --- a/app/(app)/(common)/blog.tsx +++ b/app/(app)/(common)/blog.tsx @@ -1,3 +1,3 @@ -import { BlogScreen } from '~screens/BlogScreen' +import { BlogScreen } from '@baca/screens/BlogScreen' export default BlogScreen diff --git a/app/(app)/(modals)/application-info.tsx b/app/(app)/(modals)/application-info.tsx index d6ae0616..d5f36479 100644 --- a/app/(app)/(modals)/application-info.tsx +++ b/app/(app)/(modals)/application-info.tsx @@ -1,3 +1,3 @@ -import { ApplicationInfoScreen } from '~screens' +import { ApplicationInfoScreen } from '@baca/screens' export default ApplicationInfoScreen diff --git a/app/(app)/(not-authorized)/_layout.tsx b/app/(app)/(not-authorized)/_layout.tsx index f545ee2f..97a17446 100644 --- a/app/(app)/(not-authorized)/_layout.tsx +++ b/app/(app)/(not-authorized)/_layout.tsx @@ -1,7 +1,7 @@ +import { isSignedInAtom } from '@baca/store/auth' import { Redirect, Stack } from 'expo-router' import { useAtomValue } from 'jotai' -import { isSignedInAtom } from '~store/auth' export const unstable_settings = { initialRouteName: 'sign-in', } diff --git a/app/(app)/(not-authorized)/sign-in.tsx b/app/(app)/(not-authorized)/sign-in.tsx index f75d4a25..6e29959c 100644 --- a/app/(app)/(not-authorized)/sign-in.tsx +++ b/app/(app)/(not-authorized)/sign-in.tsx @@ -1,3 +1,3 @@ -import { SignInScreen } from '~screens' +import { SignInScreen } from '@baca/screens' export default SignInScreen diff --git a/app/(app)/(not-authorized)/sign-up.tsx b/app/(app)/(not-authorized)/sign-up.tsx index 94ad1b91..bc4dba41 100644 --- a/app/(app)/(not-authorized)/sign-up.tsx +++ b/app/(app)/(not-authorized)/sign-up.tsx @@ -1,3 +1,3 @@ -import { SignUpScreen } from '~screens' +import { SignUpScreen } from '@baca/screens' export default SignUpScreen diff --git a/app/[...unmatched].tsx b/app/[...unmatched].tsx index 97b638f5..e81b1d30 100644 --- a/app/[...unmatched].tsx +++ b/app/[...unmatched].tsx @@ -1,3 +1,3 @@ -import { NotFoundScreen } from '~screens' +import { NotFoundScreen } from '@baca/screens' export default NotFoundScreen diff --git a/app/_layout.tsx b/app/_layout.tsx index 8fbaf315..537ab8fc 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -1,12 +1,11 @@ +import { AbsoluteFullFill, Loader, StatusBar } from '@baca/components' +import { useNavigationTheme, useRouterNotifications } from '@baca/hooks' +import { Providers } from '@baca/providers' +import { isSignedInAtom } from '@baca/store/auth' import { ThemeProvider } from '@react-navigation/native' import { Slot } from 'expo-router' import { useAtomValue } from 'jotai' -import { AbsoluteFullFill, Loader, StatusBar } from '~components' -import { useNavigationTheme, useRouterNotifications } from '~hooks' -import { Providers } from '~providers' -import { isSignedInAtom } from '~store/auth' - export const unstable_settings = { initialRouteName: 'index', } diff --git a/app/index.tsx b/app/index.tsx index 1c450294..7d9392d0 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -1,10 +1,9 @@ +import { LandingScreen } from '@baca/screens/LandingScreen' +import { isSignedInAtom } from '@baca/store/auth' import { Redirect } from 'expo-router' import { useAtomValue } from 'jotai' import { Platform } from 'react-native' -import { LandingScreen } from '~screens/LandingScreen' -import { isSignedInAtom } from '~store/auth' - export default function Root() { const isSignedIn = useAtomValue(isSignedInAtom) diff --git a/babel.config.js b/babel.config.js index 2b407999..7525fab3 100644 --- a/babel.config.js +++ b/babel.config.js @@ -18,8 +18,8 @@ module.exports = function (api) { /** * Regular expression is used to match all files inside `./src` directory and map each `.src/folder/[..]` to `~folder/[..]` path */ - '~assets': './assets', - '^~(.+)': './src/\\1', + '@baca/assets': './assets', + '^@baca/(.+)': './src/\\1', }, extensions: [ '.ios.js', diff --git a/scripts/create_new_screen.js b/scripts/create_new_screen.js index 3aa91d10..04579139 100644 --- a/scripts/create_new_screen.js +++ b/scripts/create_new_screen.js @@ -111,7 +111,7 @@ const addToScreens = (name, screenType) => { if (screenType.type === 'tabs_new') { // 3. c) Add new tab to bottomTabs and create stack with screen contents = addBefore(contents, '// StackEnums', Content.screenEnumImport(screenType.value)) - contents = addBefore(contents, "} from '~screens'", Content.screenNameImport(name)) + contents = addBefore(contents, "} from '@baca/screens'", Content.screenNameImport(name)) contents = addBefore( contents, '// ExamplesStack_SCREENS_START', @@ -124,7 +124,7 @@ const addToScreens = (name, screenType) => { typeToSearch.replace(screenType.value, screenType.value) contents = addBefore(contents, typeToSearch, newScreen) - contents = addBefore(contents, "} from '~screens'", Content.screenNameImport(name)) + contents = addBefore(contents, "} from '@baca/screens'", Content.screenNameImport(name)) } const path = screenType.type === 'root' ? screensFileSrc : tabsFileSrc diff --git a/src/components/AppLoading.tsx b/src/components/AppLoading.tsx index 6c4d248b..f0bd8c09 100644 --- a/src/components/AppLoading.tsx +++ b/src/components/AppLoading.tsx @@ -1,3 +1,5 @@ +import { useBoolean, useCachedResources, useFonts } from '@baca/hooks' +import { isSignedInAtom } from '@baca/store/auth' import * as SplashScreen from 'expo-splash-screen' import { useAtomValue } from 'jotai' import { FC, PropsWithChildren, useCallback, useEffect } from 'react' @@ -5,9 +7,6 @@ import { View, StyleSheet } from 'react-native' import { AbsoluteFullFill, Loader, Center } from './atoms' -import { useBoolean, useCachedResources, useFonts } from '~hooks' -import { isSignedInAtom } from '~store/auth' - SplashScreen.preventAutoHideAsync() export const AppLoading: FC = ({ children }) => { diff --git a/src/components/Header.tsx b/src/components/Header.tsx index f2a539b1..7c0d4708 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,8 +1,7 @@ +import { Box, Column, Row, Icon, Text, Touchable } from '@baca/components/atoms' import { NativeStackHeaderProps } from '@react-navigation/native-stack' import { useRouter } from 'expo-router' -import { Box, Column, Row, Icon, Text, Touchable } from '~components/atoms' - const logoHeight = 24 export const Header = ({ options }: NativeStackHeaderProps) => { diff --git a/src/components/KeyboardAwareScrollView.tsx b/src/components/KeyboardAwareScrollView.tsx index 8d8e8982..e1e0eb9d 100644 --- a/src/components/KeyboardAwareScrollView.tsx +++ b/src/components/KeyboardAwareScrollView.tsx @@ -1,3 +1,4 @@ +import { useNavigationTheme } from '@baca/hooks' import { forwardRef, useMemo } from 'react' import { Platform, StyleProp, ViewStyle } from 'react-native' import { @@ -5,8 +6,6 @@ import { KeyboardAwareScrollViewProps, } from 'react-native-keyboard-aware-scroll-view' -import { useNavigationTheme } from '~hooks' - const keyboardDismissMode = Platform.OS === 'android' ? 'on-drag' : 'interactive' type Props = Omit & { diff --git a/src/components/LandingHeader.tsx b/src/components/LandingHeader.tsx index 3932041e..0b3a9ad5 100644 --- a/src/components/LandingHeader.tsx +++ b/src/components/LandingHeader.tsx @@ -1,14 +1,13 @@ +import { Box, Button, Icon, Pressable } from '@baca/components' +import { darkLogoFull, lightLogoFull } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' +import { useTranslation } from '@baca/hooks' +import { TabColorsStrings } from '@baca/navigation/tabNavigator/config' +import { isSignedInAtom } from '@baca/store/auth' import { useRouter } from 'expo-router' import { useAtomValue } from 'jotai' import { Image, StyleSheet, Platform, View } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' - -import { Box, Button, Icon, Pressable } from '~components' -import { darkLogoFull, lightLogoFull } from '~constants' -import { useColorScheme } from '~contexts' -import { useTranslation } from '~hooks' -import { TabColorsStrings } from '~navigation/tabNavigator/config' -import { isSignedInAtom } from '~store/auth' export function LandingHeader() { const { colorScheme } = useColorScheme() const { top } = useSafeAreaInsets() diff --git a/src/components/LanguagePicker.tsx b/src/components/LanguagePicker.tsx index 81fca1b0..d48f7849 100644 --- a/src/components/LanguagePicker.tsx +++ b/src/components/LanguagePicker.tsx @@ -1,3 +1,4 @@ +import { useCallback, useTranslation, useTheme } from '@baca/hooks' import { StyleSheet } from 'react-native' import Animated, { useAnimatedStyle, @@ -13,8 +14,6 @@ import { Touchable, TouchableProps } from './atoms/Touchables/Touchable' import { Menu } from './organisms/Menu' import languages from '../../assets/languages.json' -import { useCallback, useTranslation, useTheme } from '~hooks' - export const LanguagePicker: React.FC = () => { const { size } = useTheme() diff --git a/src/components/Modal.tsx b/src/components/Modal.tsx index 24d51081..0e33d720 100644 --- a/src/components/Modal.tsx +++ b/src/components/Modal.tsx @@ -1,3 +1,4 @@ +import { useTheme } from '@baca/hooks' import { Modal as RNModal, ModalProps, @@ -10,8 +11,6 @@ import { import { KeyboardAwareScrollView } from './KeyboardAwareScrollView' -import { useTheme } from '~hooks' - type Props = { visible: boolean onRequestClose: () => void diff --git a/src/components/README.md b/src/components/README.md index 815855c1..3a7d493b 100644 --- a/src/components/README.md +++ b/src/components/README.md @@ -14,7 +14,7 @@ On the other hand, below you can find documentation of the implemented component ### Usage ```tsx -import { Absolute } from '~components' +import { Absolute } from '@baca/components' const MyComponent: React.FC = ({ children }) => ( {children} @@ -36,7 +36,7 @@ export default MyComponent ### Usage ```tsx -import { AbsoluteFullFill } from '~components' +import { AbsoluteFullFill } from '@baca/components' const MyComponent: React.FC = ({ children }) => ( {children} @@ -56,7 +56,7 @@ The **Input** component allows user to provide input in a text field. ### Usage ```tsx -import { Input, AbsoluteFullFill } from '~components' +import { Input, AbsoluteFullFill } from '@baca/components' const MyComponent: React.FC = () => ( @@ -102,7 +102,7 @@ The **Spacer** component is used to pass space between components in a render tr ### Usage ```tsx -import { Spacer, Input, Container } from '~components' +import { Spacer, Input, Container } from '@baca/components' const MyComponent: React.FC = () => ( @@ -191,7 +191,7 @@ _type_: `JSX.Element` | `undefined` ### Usage ```tsx -import { Field } from '~components' +import { Field } from '@baca/components' const MyComponent: React.FC = () => ( ( @@ -271,7 +271,7 @@ _type_: `FieldErrors` ```tsx import { useForm } from 'react-hook-form' -import { ControlledField } from '~components' +import { ControlledField } from '@baca/components' const MyComponent: React.FC = () => { const { @@ -340,7 +340,7 @@ _type_: `FieldErrors` | `undefined` ```tsx import { useForm } from 'react-hook-form' -import { ControlledField } from '~components' +import { ControlledField } from '@baca/components' const MyComponent: React.FC = () => { const { diff --git a/src/components/StatusBar.tsx b/src/components/StatusBar.tsx index 84dea9c6..f3ca961c 100644 --- a/src/components/StatusBar.tsx +++ b/src/components/StatusBar.tsx @@ -1,7 +1,6 @@ +import { useColorScheme } from '@baca/contexts' import { StatusBar as ExpoStatusBar, StatusBarProps } from 'expo-status-bar' -import { useColorScheme } from '~contexts' - export const StatusBar = (props: StatusBarProps): JSX.Element => { const { colorScheme } = useColorScheme() diff --git a/src/components/atoms/BricksLoader.tsx b/src/components/atoms/BricksLoader.tsx index 7d2ebed4..0245cbdc 100644 --- a/src/components/atoms/BricksLoader.tsx +++ b/src/components/atoms/BricksLoader.tsx @@ -1,8 +1,7 @@ +import { useBricksLoader } from '@baca/hooks/loaders' import React from 'react' import Animated from 'react-native-reanimated' -import { useBricksLoader } from '~hooks/loaders' - export type BricksLoaderType = { color?: string colors?: [string, string, string] diff --git a/src/components/atoms/BubblesLoader.tsx b/src/components/atoms/BubblesLoader.tsx index 3ec8d682..e9ba85a6 100644 --- a/src/components/atoms/BubblesLoader.tsx +++ b/src/components/atoms/BubblesLoader.tsx @@ -1,10 +1,9 @@ +import { useBubblesLoader } from '@baca/hooks/loaders' import React from 'react' import Animated from 'react-native-reanimated' import { Box } from './Box' -import { useBubblesLoader } from '~hooks/loaders' - export type BubblesLoaderType = { color?: string size?: number diff --git a/src/components/atoms/Button/Button.test.tsx b/src/components/atoms/Button/Button.test.tsx index cdfd3f98..b46ca827 100644 --- a/src/components/atoms/Button/Button.test.tsx +++ b/src/components/atoms/Button/Button.test.tsx @@ -1,10 +1,9 @@ +import { theme } from '@baca/constants' +import { cleanup, render, fireEvent, act } from '@baca/utils/testUtils' import { StyleSheet } from 'react-native' import { Button } from './Button' -import { theme } from '~constants' -import { cleanup, render, fireEvent, act } from '~utils/testUtils' - afterEach(cleanup) describe('Button', () => { it('renders correctly', () => { diff --git a/src/components/atoms/Button/Button.tsx b/src/components/atoms/Button/Button.tsx index 63dc16c7..ded53a5c 100644 --- a/src/components/atoms/Button/Button.tsx +++ b/src/components/atoms/Button/Button.tsx @@ -1,3 +1,7 @@ +import { theme } from '@baca/constants' +import { buttonVariants } from '@baca/constants/buttonVariants' +import { useColorScheme } from '@baca/contexts' +import { getColorValue } from '@baca/utils' import { useMemo, memo, @@ -24,11 +28,6 @@ import { Loader } from '../Loader' import { Text } from '../Text' import { StyledProps } from '../types' -import { theme } from '~constants' -import { buttonVariants } from '~constants/buttonVariants' -import { useColorScheme } from '~contexts' -import { getColorValue } from '~utils' - export type ButtonProps = StyledProps & PressableProps & { title?: string diff --git a/src/components/atoms/Checkbox.tsx b/src/components/atoms/Checkbox.tsx index 2e98c69d..80e7f6b9 100644 --- a/src/components/atoms/Checkbox.tsx +++ b/src/components/atoms/Checkbox.tsx @@ -1,3 +1,4 @@ +import { useTheme } from '@baca/hooks' import { forwardRef, useCallback, useMemo } from 'react' import { View, Pressable, StyleSheet } from 'react-native' @@ -6,8 +7,6 @@ import { Icon } from './Icon' import { Text } from './Text' import { CheckboxProps } from './types' -import { useTheme } from '~hooks' - export const Checkbox = forwardRef( ( { diff --git a/src/components/atoms/CircleLoader.tsx b/src/components/atoms/CircleLoader.tsx index dab0b701..3836dcb0 100644 --- a/src/components/atoms/CircleLoader.tsx +++ b/src/components/atoms/CircleLoader.tsx @@ -1,3 +1,4 @@ +import { useCircleLoader } from '@baca/hooks/loaders' import React from 'react' import Animated, { Extrapolate, @@ -8,8 +9,6 @@ import Animated, { import { Box } from './Box' -import { useCircleLoader } from '~hooks/loaders' - type HalfCircleProps = { progress: SharedValue isFlipped?: boolean diff --git a/src/components/atoms/FormErrorMessage.tsx b/src/components/atoms/FormErrorMessage.tsx index 42b30081..4574a81f 100644 --- a/src/components/atoms/FormErrorMessage.tsx +++ b/src/components/atoms/FormErrorMessage.tsx @@ -1,8 +1,7 @@ +import { useTheme } from '@baca/hooks' import React from 'react' import { StyleSheet, Text } from 'react-native' -import { useTheme } from '~hooks' - export const FormErrorMessage = ({ errorMessage }: { errorMessage?: string }) => { const { colors } = useTheme() return ( diff --git a/src/components/atoms/FormLabel.tsx b/src/components/atoms/FormLabel.tsx index 252447ff..6e46c2ae 100644 --- a/src/components/atoms/FormLabel.tsx +++ b/src/components/atoms/FormLabel.tsx @@ -1,11 +1,10 @@ +import { useTheme } from '@baca/hooks' import React from 'react' import { StyleSheet, View } from 'react-native' import { Text } from './Text' import { FormLabelProps } from './types' -import { useTheme } from '~hooks' - export const FormLabel = ({ label, isRequired, labelStyle }: FormLabelProps) => { const { colors } = useTheme() diff --git a/src/components/atoms/Icon.tsx b/src/components/atoms/Icon.tsx index d5679684..28c5913f 100644 --- a/src/components/atoms/Icon.tsx +++ b/src/components/atoms/Icon.tsx @@ -1,11 +1,10 @@ +import { useTheme } from '@baca/hooks' +import { IconNames } from '@baca/types/icon' +import { getColorValue } from '@baca/utils' import { createIconSetFromIcoMoon } from '@expo/vector-icons' import iconJson from 'assets/icomoon/selection.json' import { StyleProp, ViewStyle } from 'react-native' -import { useTheme } from '~hooks' -import { IconNames } from '~types/icon' -import { getColorValue } from '~utils' - export type IconProps = { style?: StyleProp color?: ColorNames diff --git a/src/components/atoms/Input.tsx b/src/components/atoms/Input.tsx index 43b31797..9a24e59c 100644 --- a/src/components/atoms/Input.tsx +++ b/src/components/atoms/Input.tsx @@ -1,3 +1,13 @@ +import { + useSecurePassword, + useRef, + useTheme, + useState, + useCallback, + useImperativeHandle, + useMemo, +} from '@baca/hooks' +import { convertEmToNumber, getColorValue, getFontWeight } from '@baca/utils' import { forwardRef } from 'react' import { NativeSyntheticEvent, @@ -13,17 +23,6 @@ import { Touchable } from './Touchables/Touchable' import type { InputProps } from './types' import { generateStyleSheet, generateStyledSystem } from '../utils' -import { - useSecurePassword, - useRef, - useTheme, - useState, - useCallback, - useImperativeHandle, - useMemo, -} from '~hooks' -import { convertEmToNumber, getColorValue, getFontWeight } from '~utils' - const layoutPropsKeys = [ 'm', 'margin', diff --git a/src/components/atoms/Select.tsx b/src/components/atoms/Select.tsx index 491d174e..31e496d1 100644 --- a/src/components/atoms/Select.tsx +++ b/src/components/atoms/Select.tsx @@ -1,3 +1,6 @@ +import { BottomSheet } from '@baca/components/bottomSheets/BottomSheet' +import { BottomSheetFlatList } from '@baca/components/bottomSheets/BottomSheetFlatList' +import { useTheme } from '@baca/hooks' import { BottomSheetModal } from '@gorhom/bottom-sheet' import { useCallback, useMemo, useRef } from 'react' import { Keyboard, StyleSheet, Dimensions } from 'react-native' @@ -10,10 +13,6 @@ import { Text } from './Text' import { Touchable } from './Touchables/Touchable' import { SelectKey, SelectItemProps, SelectProps } from './types' -import { BottomSheet } from '~components/bottomSheets/BottomSheet' -import { BottomSheetFlatList } from '~components/bottomSheets/BottomSheetFlatList' -import { useTheme } from '~hooks' - const ITEM_HEIGHT = 56 const BOTTOM_SHEET_CONTENT_HEIGHT = Dimensions.get('screen').height / 1.5 diff --git a/src/components/atoms/Text/Text.test.tsx b/src/components/atoms/Text/Text.test.tsx index 8de9a07b..d5c260cb 100644 --- a/src/components/atoms/Text/Text.test.tsx +++ b/src/components/atoms/Text/Text.test.tsx @@ -1,7 +1,7 @@ -import { Text } from './Text' +import { theme } from '@baca/constants' +import { cleanup, render } from '@baca/utils/testUtils' -import { theme } from '~constants' -import { cleanup, render } from '~utils/testUtils' +import { Text } from './Text' afterEach(cleanup) diff --git a/src/components/atoms/Text/Text.tsx b/src/components/atoms/Text/Text.tsx index 3fda3f69..eab0a4ee 100644 --- a/src/components/atoms/Text/Text.tsx +++ b/src/components/atoms/Text/Text.tsx @@ -1,13 +1,12 @@ +import { textVariants } from '@baca/constants/textVariants' +import { useTheme } from '@baca/hooks' +import { getColorValue, convertEmToNumber } from '@baca/utils' import { useMemo, memo, forwardRef, PropsWithoutRef, RefAttributes } from 'react' import { TextProps as BaseTextProps, Text as BaseText, TextStyle } from 'react-native' import { generateStyledComponent, generateStyleSheet } from '../../utils' import { StyledProps } from '../types' -import { textVariants } from '~constants/textVariants' -import { useTheme } from '~hooks' -import { getColorValue, convertEmToNumber } from '~utils' - type TypographyProps = { fontSize?: FontSizes | number letterSpacing?: LetterSpacings diff --git a/src/components/atoms/Touchables/Pressable.tsx b/src/components/atoms/Touchables/Pressable.tsx index 46d8513b..a98a026b 100644 --- a/src/components/atoms/Touchables/Pressable.tsx +++ b/src/components/atoms/Touchables/Pressable.tsx @@ -1,4 +1,5 @@ /* eslint-disable @typescript-eslint/ban-ts-comment */ +import { useTheme, useCallback } from '@baca/hooks' import { forwardRef, useImperativeHandle, useRef } from 'react' import { GestureResponderEvent, @@ -15,8 +16,6 @@ import { useIsPressed } from './useIsPressed' import { generateStyledSystem } from '../../utils' import { StyledProps } from '../types' -import { useTheme, useCallback } from '~hooks' - export type PressableRef = { isHovered: boolean isPressed: boolean diff --git a/src/components/atoms/Touchables/Touchable.tsx b/src/components/atoms/Touchables/Touchable.tsx index 18ab3b49..7099f892 100644 --- a/src/components/atoms/Touchables/Touchable.tsx +++ b/src/components/atoms/Touchables/Touchable.tsx @@ -1,4 +1,5 @@ /* eslint-disable @typescript-eslint/ban-ts-comment */ +import { useTheme, useCallback } from '@baca/hooks' import { forwardRef, useImperativeHandle, useRef } from 'react' import { GestureResponderEvent, @@ -14,8 +15,6 @@ import { useIsPressed } from './useIsPressed' import { generateStyledSystem } from '../../utils' import { StyledProps } from '../types' -import { useTheme, useCallback } from '~hooks' - export type TouchableRef = { isHovered: boolean isPressed: boolean diff --git a/src/components/atoms/Touchables/useFocus.ts b/src/components/atoms/Touchables/useFocus.ts index 6610dfdb..43503c42 100644 --- a/src/components/atoms/Touchables/useFocus.ts +++ b/src/components/atoms/Touchables/useFocus.ts @@ -1,4 +1,4 @@ -import { useState } from '~hooks' +import { useState } from '@baca/hooks' export const useFocus = () => { const [isFocused, setFocused] = useState(false) diff --git a/src/components/atoms/Touchables/useHover.ts b/src/components/atoms/Touchables/useHover.ts index 8e298cbf..29cec714 100644 --- a/src/components/atoms/Touchables/useHover.ts +++ b/src/components/atoms/Touchables/useHover.ts @@ -1,4 +1,4 @@ -import { useState } from '~hooks' +import { useState } from '@baca/hooks' export const useHover = () => { const [isHovered, setHovered] = useState(false) diff --git a/src/components/atoms/Touchables/useIsPressed.ts b/src/components/atoms/Touchables/useIsPressed.ts index 148ec686..63650588 100644 --- a/src/components/atoms/Touchables/useIsPressed.ts +++ b/src/components/atoms/Touchables/useIsPressed.ts @@ -1,4 +1,4 @@ -import { useState } from '~hooks' +import { useState } from '@baca/hooks' export const useIsPressed = () => { const [isPressed, setIsPressed] = useState(false) diff --git a/src/components/atoms/types.ts b/src/components/atoms/types.ts index 080fce23..be3976cf 100644 --- a/src/components/atoms/types.ts +++ b/src/components/atoms/types.ts @@ -1,10 +1,9 @@ +import { _appTheme } from '@baca/constants' +import { IconNames } from '@baca/types/icon' import { DimensionValue, TextStyle, ViewProps, ViewStyle, TextInputProps } from 'react-native' import { BoxProps } from './Box' -import { _appTheme } from '~constants' -import { IconNames } from '~types/icon' - type Sizing = | 'w' | 'width' diff --git a/src/components/bottomSheets/BottomSheet.tsx b/src/components/bottomSheets/BottomSheet.tsx index 89485b12..f8f1ee4d 100644 --- a/src/components/bottomSheets/BottomSheet.tsx +++ b/src/components/bottomSheets/BottomSheet.tsx @@ -1,3 +1,5 @@ +import { Box } from '@baca/components/atoms/Box' +import { useSafeAreaInsets } from '@baca/hooks' import { BottomSheetModal, BottomSheetScrollView, @@ -10,9 +12,6 @@ import { Dimensions } from 'react-native' import { BottomSheetHeader } from './BottomSheetHeader' -import { Box } from '~components/atoms/Box' -import { useSafeAreaInsets } from '~hooks' - const screenHeight = Dimensions.get('screen').height type Props = { diff --git a/src/components/bottomSheets/BottomSheet.web.tsx b/src/components/bottomSheets/BottomSheet.web.tsx index 66ad2829..35600fb3 100644 --- a/src/components/bottomSheets/BottomSheet.web.tsx +++ b/src/components/bottomSheets/BottomSheet.web.tsx @@ -1,12 +1,11 @@ +import { Box, Modal } from '@baca/components' +import { useBoolean, useWeb } from '@baca/hooks' import { BottomSheetModal } from '@gorhom/bottom-sheet' import { RefObject, useCallback, useImperativeHandle } from 'react' import { ScrollView } from 'react-native' import { BottomSheetHeader } from './BottomSheetHeader' -import { Box, Modal } from '~components' -import { useBoolean, useWeb } from '~hooks' - type Props = { bottomSheetRef: RefObject children: JSX.Element | JSX.Element[] diff --git a/src/components/bottomSheets/BottomSheetHeader.tsx b/src/components/bottomSheets/BottomSheetHeader.tsx index f6af310d..2464eb39 100644 --- a/src/components/bottomSheets/BottomSheetHeader.tsx +++ b/src/components/bottomSheets/BottomSheetHeader.tsx @@ -1,8 +1,8 @@ -import { Box } from '~components/atoms/Box' -import { Icon } from '~components/atoms/Icon' -import { Row } from '~components/atoms/Row' -import { Text } from '~components/atoms/Text' -import { Touchable } from '~components/atoms/Touchables/Touchable' +import { Box } from '@baca/components/atoms/Box' +import { Icon } from '@baca/components/atoms/Icon' +import { Row } from '@baca/components/atoms/Row' +import { Text } from '@baca/components/atoms/Text' +import { Touchable } from '@baca/components/atoms/Touchables/Touchable' export const BottomSheetHeader = ({ title, diff --git a/src/components/molecules/Field/Select.tsx b/src/components/molecules/Field/Select.tsx index 5221965f..e352eb87 100644 --- a/src/components/molecules/Field/Select.tsx +++ b/src/components/molecules/Field/Select.tsx @@ -1,11 +1,10 @@ +import { useMemo } from '@baca/hooks' import React from 'react' import { Pressable } from 'react-native' import type { FieldSelectProps } from './types' import { Select as CustomSelect, Box, FormErrorMessage, FormLabel, SelectKey } from '../../atoms' -import { useMemo } from '~hooks' - const layoutPropsKeys = [ 'm', 'margin', diff --git a/src/components/molecules/Field/types.ts b/src/components/molecules/Field/types.ts index acaeb195..23a1b0e6 100644 --- a/src/components/molecules/Field/types.ts +++ b/src/components/molecules/Field/types.ts @@ -1,4 +1,10 @@ -import { CheckboxProps, FormLabelProps, InputProps, RadioProps, SelectProps } from '~components' +import { + CheckboxProps, + FormLabelProps, + InputProps, + RadioProps, + SelectProps, +} from '@baca/components' export type FieldInputProps = InputProps & FormLabelProps & { diff --git a/src/components/organisms/ControlledField/Checkbox.tsx b/src/components/organisms/ControlledField/Checkbox.tsx index 06f42848..c15c277c 100644 --- a/src/components/organisms/ControlledField/Checkbox.tsx +++ b/src/components/organisms/ControlledField/Checkbox.tsx @@ -1,10 +1,9 @@ +import { useCallback } from '@baca/hooks' import { Controller, ControllerProps, get } from 'react-hook-form' import type { ControlledCheckboxProps } from './types' import { Field } from '../../molecules' -import { useCallback } from '~hooks' - export const Checkbox: React.FC = ({ name, control, diff --git a/src/components/organisms/ControlledField/Radio.tsx b/src/components/organisms/ControlledField/Radio.tsx index f4784557..ae332c6b 100644 --- a/src/components/organisms/ControlledField/Radio.tsx +++ b/src/components/organisms/ControlledField/Radio.tsx @@ -1,10 +1,9 @@ +import { useCallback } from '@baca/hooks' import { Controller, get, ControllerProps } from 'react-hook-form' import type { ControlledRadioProps } from './types' import { Field } from '../../molecules' -import { useCallback } from '~hooks' - export const Radio = ({ name, control, diff --git a/src/components/organisms/ControlledField/Select.tsx b/src/components/organisms/ControlledField/Select.tsx index ff9a49fa..2cbb99d4 100644 --- a/src/components/organisms/ControlledField/Select.tsx +++ b/src/components/organisms/ControlledField/Select.tsx @@ -1,11 +1,10 @@ +import { SelectKey } from '@baca/components/atoms' import { useCallback } from 'react' import { Controller, get, ControllerProps } from 'react-hook-form' import type { ControlledSelectProps } from './types' import { Field } from '../../molecules' -import { SelectKey } from '~components/atoms' - export const Select = ({ control, name, diff --git a/src/components/organisms/ControlledField/types.ts b/src/components/organisms/ControlledField/types.ts index 8710e5df..c3f49abf 100644 --- a/src/components/organisms/ControlledField/types.ts +++ b/src/components/organisms/ControlledField/types.ts @@ -1,4 +1,10 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ +import { + FieldCheckboxProps, + FieldInputProps, + FieldRadioProps, + FieldSelectProps, +} from '@baca/components/molecules' import { Control, ControllerRenderProps, @@ -8,13 +14,6 @@ import { RegisterOptions, } from 'react-hook-form' -import { - FieldCheckboxProps, - FieldInputProps, - FieldRadioProps, - FieldSelectProps, -} from '~components/molecules' - export type ControlledCheckboxProps = Omit & { // TODO: Think how to change this to proper type // Could be helpful when solving diff --git a/src/components/organisms/Menu/index.tsx b/src/components/organisms/Menu/index.tsx index aad3ef30..d6476225 100644 --- a/src/components/organisms/Menu/index.tsx +++ b/src/components/organisms/Menu/index.tsx @@ -1,3 +1,4 @@ +import { useRef, useState, useMemo, useTheme, useCallback } from '@baca/hooks' import { Portal } from '@gorhom/portal' import React, { NamedExoticComponent, PropsWithChildren, memo } from 'react' import { View, Modal, TouchableWithoutFeedback } from 'react-native' @@ -5,8 +6,6 @@ import { View, Modal, TouchableWithoutFeedback } from 'react-native' import { AbsoluteFullFill, Box, TouchableProps, ScrollView } from '../../atoms' import { MenuItem } from '../../molecules/MenuItem' -import { useRef, useState, useMemo, useTheme, useCallback } from '~hooks' - type TriggerPosition = { x: number y: number diff --git a/src/components/utils/generateSize.ts b/src/components/utils/generateSize.ts index 1b0e15c9..ab941338 100644 --- a/src/components/utils/generateSize.ts +++ b/src/components/utils/generateSize.ts @@ -1,8 +1,7 @@ +import { SizingValue } from '@baca/components' +import { size, scale } from '@baca/constants' import { ViewStyle, DimensionValue, Animated } from 'react-native' -import { SizingValue } from '~components' -import { size, scale } from '~constants' - const isDimensionValue = (value?: DimensionValue) => { // Dimension accepts only `percentage` strings that can be converted to numbers if (typeof value === 'string' && value.endsWith('%') && !isNaN(parseFloat(value.split('%')[0]))) { diff --git a/src/components/utils/generateStyledComponent.tsx b/src/components/utils/generateStyledComponent.tsx index 478dc4d9..fdf4c2f3 100644 --- a/src/components/utils/generateStyledComponent.tsx +++ b/src/components/utils/generateStyledComponent.tsx @@ -1,10 +1,9 @@ +import { useTheme } from '@baca/hooks' import React, { forwardRef, ComponentType } from 'react' import { generateStyledSystem } from './generateStyledSystem' import { StyledProps } from '../atoms/types' -import { useTheme } from '~hooks' - type StylePropKeys = 'style' | 'contentContainerStyle' /** @@ -16,7 +15,7 @@ type StylePropKeys = 'style' | 'contentContainerStyle' * @returns {FunctionComponent

} A styled component with styled-system props. * @example * import { Text } from 'react-native' - * import { generateStyledComponent } from '~components/utils' + * import { generateStyledComponent } from '@baca/components/utils' * * const StyledText = generateStyledComponent(Text) * diff --git a/src/components/utils/generateStyledSystem.ts b/src/components/utils/generateStyledSystem.ts index 4636b7b1..c00439a0 100644 --- a/src/components/utils/generateStyledSystem.ts +++ b/src/components/utils/generateStyledSystem.ts @@ -1,3 +1,4 @@ +import { hex2rgba, getColorValue, removeFalsyProperties } from '@baca/utils' import { ImageStyle, StyleProp, StyleSheet, TextStyle, ViewStyle } from 'react-native' import { generateSize } from './generateSize' @@ -12,8 +13,6 @@ import { BackgroundProps, } from '../atoms/types' -import { hex2rgba, getColorValue, removeFalsyProperties } from '~utils' - const generateFlexStyle = ({ flex, justifyContent, diff --git a/src/constants/images.ts b/src/constants/images.ts index fa14b904..ba65176d 100644 --- a/src/constants/images.ts +++ b/src/constants/images.ts @@ -1,9 +1,9 @@ /* eslint-disable @typescript-eslint/no-var-requires */ -export const darkLogo = require('~assets/logo-dark.png') -export const lightLogo = require('~assets/logo-light.png') +export const darkLogo = require('@baca/assets/logo-dark.png') +export const lightLogo = require('@baca/assets/logo-light.png') -export const darkLogoFull = require('~assets/logo/logo-full-dark.png') -export const lightLogoFull = require('~assets/logo/logo-full-light.png') +export const darkLogoFull = require('@baca/assets/logo/logo-full-dark.png') +export const lightLogoFull = require('@baca/assets/logo/logo-full-light.png') -export const darkLogoSygnet = require('~assets/logo/logo-sygnet-dark.png') -export const lightLogoSygnet = require('~assets/logo/logo-sygnet-light.png') +export const darkLogoSygnet = require('@baca/assets/logo/logo-sygnet-dark.png') +export const lightLogoSygnet = require('@baca/assets/logo/logo-sygnet-light.png') diff --git a/src/constants/textVariants.ts b/src/constants/textVariants.ts index 48cadad8..5e027801 100644 --- a/src/constants/textVariants.ts +++ b/src/constants/textVariants.ts @@ -1,4 +1,4 @@ -import { TextVariant } from '~components' +import { TextVariant } from '@baca/components' type VariantStyle = { fontFamily: Fonts diff --git a/src/contexts/ColorSchemeContext.ts b/src/contexts/ColorSchemeContext.ts index 42a83844..a56b5a87 100644 --- a/src/contexts/ColorSchemeContext.ts +++ b/src/contexts/ColorSchemeContext.ts @@ -1,5 +1,5 @@ -import { colorSchemesList } from '~constants' -import createGenericContext from '~utils/createGenericContext' +import { colorSchemesList } from '@baca/constants' +import createGenericContext from '@baca/utils/createGenericContext' export type SettingColorSchemeName = (typeof colorSchemesList)[number] export type ColorSchemeName = Exclude diff --git a/src/contexts/NotificationContext.ts b/src/contexts/NotificationContext.ts index 249c521e..aca04d89 100644 --- a/src/contexts/NotificationContext.ts +++ b/src/contexts/NotificationContext.ts @@ -1,9 +1,8 @@ +import createGenericContext from '@baca/utils/createGenericContext' import { PermissionStatus } from 'expo-modules-core' import * as Notifications from 'expo-notifications' import { Dispatch, SetStateAction } from 'react' -import createGenericContext from '~utils/createGenericContext' - export type NotificationContextType = { permissionStatus?: PermissionStatus setPermissionStatus: Dispatch> diff --git a/src/hooks/forms/useSignInForm.ts b/src/hooks/forms/useSignInForm.ts index 6e08a527..101c7512 100644 --- a/src/hooks/forms/useSignInForm.ts +++ b/src/hooks/forms/useSignInForm.ts @@ -1,14 +1,13 @@ +import { setToken } from '@baca/services' +import { isSignedInAtom } from '@baca/store/auth' +import { SignInFormValues } from '@baca/types/authForms' +import { hapticImpact, wait } from '@baca/utils' import { isError } from '@tanstack/react-query' import { useSetAtom } from 'jotai' import { useState } from 'react' import { useForm } from 'react-hook-form' import { useTranslation } from 'react-i18next' -import { setToken } from '~services' -import { isSignedInAtom } from '~store/auth' -import { SignInFormValues } from '~types/authForms' -import { hapticImpact, wait } from '~utils' - const defaultValues: SignInFormValues = { // TODO: Reset this values when building production app email: 'test@example.com', diff --git a/src/hooks/forms/useSignUpForm.ts b/src/hooks/forms/useSignUpForm.ts index 5de48f4c..854bf1f3 100644 --- a/src/hooks/forms/useSignUpForm.ts +++ b/src/hooks/forms/useSignUpForm.ts @@ -1,13 +1,12 @@ +import { isSignedInAtom } from '@baca/store/auth' +import { SignUpFormValues } from '@baca/types/authForms' +import { hapticImpact, wait } from '@baca/utils' import { isError } from '@tanstack/react-query' import { useSetAtom } from 'jotai' import { useState } from 'react' import { useForm } from 'react-hook-form' import { useTranslation } from 'react-i18next' -import { isSignedInAtom } from '~store/auth' -import { SignUpFormValues } from '~types/authForms' -import { hapticImpact, wait } from '~utils' - const defaultValues: SignUpFormValues = { user: '', email: '', diff --git a/src/hooks/forms/useTestForm.ts b/src/hooks/forms/useTestForm.ts index b9f74765..7b604a2d 100644 --- a/src/hooks/forms/useTestForm.ts +++ b/src/hooks/forms/useTestForm.ts @@ -1,10 +1,9 @@ +import { TestFormValues } from '@baca/types/testForm' import { isError } from '@tanstack/react-query' import { useState } from 'react' import { FieldPath, useForm } from 'react-hook-form' import { useTranslation } from 'react-i18next' -import { TestFormValues } from '~types/testForm' - const defaultValues: TestFormValues = { name: '', surname: '', diff --git a/src/hooks/navigation/useNavigationStatePersistence.ts b/src/hooks/navigation/useNavigationStatePersistence.ts index 88cf54ac..6b1a04b9 100644 --- a/src/hooks/navigation/useNavigationStatePersistence.ts +++ b/src/hooks/navigation/useNavigationStatePersistence.ts @@ -1,11 +1,10 @@ +import { ASYNC_STORAGE_KEYS, isProduction } from '@baca/constants' import AsyncStorage from '@react-native-async-storage/async-storage' import { InitialState, NavigationState } from '@react-navigation/native' import { getInitialURL } from 'expo-linking' import { useCallback, useEffect, useState } from 'react' import { Platform } from 'react-native' -import { ASYNC_STORAGE_KEYS, isProduction } from '~constants' - const EXPO_LINK_REGEXP = /^exp:\/\/\d+\.\d+\.\d+\.\d+:\d*$/ const checkInitialURL = (initialUrl: string | null) => { diff --git a/src/hooks/navigation/useNavigationTheme.ts b/src/hooks/navigation/useNavigationTheme.ts index 016dccb1..02dd27c9 100644 --- a/src/hooks/navigation/useNavigationTheme.ts +++ b/src/hooks/navigation/useNavigationTheme.ts @@ -1,10 +1,9 @@ +import { darkNavigationTheme, lightNavigationTheme } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' import { useMemo } from 'react' import { useTheme } from '../useTheme' -import { darkNavigationTheme, lightNavigationTheme } from '~constants' -import { useColorScheme } from '~contexts' - export const useNavigationTheme = () => { const { colorScheme } = useColorScheme() const { colors } = useTheme() diff --git a/src/hooks/navigation/usePreventGoBack.ts b/src/hooks/navigation/usePreventGoBack.ts index 98494015..fd4415a1 100644 --- a/src/hooks/navigation/usePreventGoBack.ts +++ b/src/hooks/navigation/usePreventGoBack.ts @@ -1,3 +1,4 @@ +import { alert } from '@baca/utils' import { EventListenerCallback, EventMapCore, @@ -10,8 +11,6 @@ import React from 'react' import { useTranslation } from 'react-i18next' import useLatestCallback from 'use-latest-callback' -import { alert } from '~utils' - // This is copy of this hook: usePreventRemove // https://github.com/react-navigation/react-navigation/blob/90cfbf23bcc5259f3262691a9eec6c5b906e5262/packages/core/src/usePreventRemove.tsx#L17 // Previous implementation wasn't working properly on expo router diff --git a/src/hooks/navigation/useScreenTracker.ts b/src/hooks/navigation/useScreenTracker.ts index a88695fe..0951b7ff 100644 --- a/src/hooks/navigation/useScreenTracker.ts +++ b/src/hooks/navigation/useScreenTracker.ts @@ -1,8 +1,7 @@ +import { navigationRef } from '@baca/utils' import { NavigationContainerRefWithCurrent } from '@react-navigation/core' import { useCallback, useRef } from 'react' -import { navigationRef } from '~utils' - type Callback = (currentRouteName: string) => Promise | undefined const defaultCallback: Callback = async (currentRouteName) => { diff --git a/src/hooks/navigation/useWeb.ts b/src/hooks/navigation/useWeb.ts index 44f85d1e..876680ba 100644 --- a/src/hooks/navigation/useWeb.ts +++ b/src/hooks/navigation/useWeb.ts @@ -1,8 +1,7 @@ +import { breakpoints } from '@baca/constants' import { useState, useEffect } from 'react' import { Dimensions } from 'react-native' -import { breakpoints } from '~constants' - type ReturnType = { webContentWidth: number shouldApplyDesktopStyles: boolean diff --git a/src/hooks/useAppStateActive.ts b/src/hooks/useAppStateActive.ts index 06f6fed9..4ea3e85f 100644 --- a/src/hooks/useAppStateActive.ts +++ b/src/hooks/useAppStateActive.ts @@ -1,8 +1,7 @@ +import { noop } from '@baca/utils' import { useCallback, useEffect, useRef } from 'react' import { AppState, AppStateStatus } from 'react-native' -import { noop } from '~utils' - /** * This hook will run on every app state change from background to foreground */ diff --git a/src/hooks/useCachedResources.ts b/src/hooks/useCachedResources.ts index abf884ae..f447411a 100644 --- a/src/hooks/useCachedResources.ts +++ b/src/hooks/useCachedResources.ts @@ -1,6 +1,6 @@ +import { checkForUpdates } from '@baca/utils' import { useEffect, useState } from 'react' -import { checkForUpdates } from '~utils' export const useCachedResources = (): boolean => { const [isLoadingComplete, setLoadingComplete] = useState(false) diff --git a/src/hooks/useSecurePassword.ts b/src/hooks/useSecurePassword.ts index eb6d8f9b..1ee96a1d 100644 --- a/src/hooks/useSecurePassword.ts +++ b/src/hooks/useSecurePassword.ts @@ -1,6 +1,6 @@ +import { IconNames } from '@baca/types/icon' import { useCallback, useState } from 'react' -import { IconNames } from '~types/icon' export const useSecurePassword = (type?: 'text' | 'password') => { const isPasswordType = type === 'password' const [securePassword, setSecurePassword] = useState(isPasswordType) diff --git a/src/hooks/useTheme.ts b/src/hooks/useTheme.ts index 8e21dc2b..9bcdd0e5 100644 --- a/src/hooks/useTheme.ts +++ b/src/hooks/useTheme.ts @@ -1,5 +1,5 @@ -import { theme } from '~constants' -import { useColorScheme } from '~contexts' +import { theme } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' export const useTheme = (): AppTheme => { const { colorScheme } = useColorScheme() diff --git a/src/hooks/useTimestamp.ts b/src/hooks/useTimestamp.ts index d8194d10..f56c4c78 100644 --- a/src/hooks/useTimestamp.ts +++ b/src/hooks/useTimestamp.ts @@ -1,7 +1,6 @@ +import { alert } from '@baca/utils' import { useEffect } from 'react' -import { alert } from '~utils' - export const useTimestamp = (): void => { useEffect(() => { fetch('/api/timestamp') diff --git a/src/i18n/languageDetector.ts b/src/i18n/languageDetector.ts index 5f1a2a2e..a61bd032 100644 --- a/src/i18n/languageDetector.ts +++ b/src/i18n/languageDetector.ts @@ -1,8 +1,8 @@ +import { ASYNC_STORAGE_KEYS } from '@baca/constants' import AsyncStorage from '@react-native-async-storage/async-storage' import * as Localization from 'expo-localization' import { LanguageDetectorAsyncModule } from 'i18next' -import { ASYNC_STORAGE_KEYS } from '~constants' const { USER_LANGUAGE } = ASYNC_STORAGE_KEYS const languageDetector: LanguageDetectorAsyncModule = { type: 'languageDetector', diff --git a/src/logic/AuthLogic.tsx b/src/logic/AuthLogic.tsx index 692f26bc..35191e1d 100644 --- a/src/logic/AuthLogic.tsx +++ b/src/logic/AuthLogic.tsx @@ -1,10 +1,9 @@ +import { useEffect } from '@baca/hooks' +import { getToken } from '@baca/services' +import { isSignedInAtom } from '@baca/store/auth' import { useSetAtom } from 'jotai' import { FC } from 'react' -import { useEffect } from '~hooks' -import { getToken } from '~services' -import { isSignedInAtom } from '~store/auth' - export const AuthLogic: FC = () => { const setIsSignedIn = useSetAtom(isSignedInAtom) diff --git a/src/navigation/tabNavigator/components/AppHeader.tsx b/src/navigation/tabNavigator/components/AppHeader.tsx index 5f3eef5e..44b62cf7 100644 --- a/src/navigation/tabNavigator/components/AppHeader.tsx +++ b/src/navigation/tabNavigator/components/AppHeader.tsx @@ -1,11 +1,10 @@ +import { darkLogoFull, lightLogoFull } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' import { Image, Platform, StyleSheet, View } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' import { TabColorsStrings } from '../config' -import { darkLogoFull, lightLogoFull } from '~constants' -import { useColorScheme } from '~contexts' - export function AppHeader() { const { colorScheme } = useColorScheme() const { top } = useSafeAreaInsets() diff --git a/src/navigation/tabNavigator/components/BottomBar.tsx b/src/navigation/tabNavigator/components/BottomBar.tsx index 206bc3bb..b88a0e25 100644 --- a/src/navigation/tabNavigator/components/BottomBar.tsx +++ b/src/navigation/tabNavigator/components/BottomBar.tsx @@ -1,3 +1,6 @@ +import { Icon } from '@baca/components' +import { useColorScheme } from '@baca/contexts' +import cssStyles from '@baca/styles' import { Platform, StyleSheet, View } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' @@ -5,10 +8,6 @@ import { TabBarItemWrapper } from './TabBarItemWrapper' import { bottomTabs, TabColors, TabColorsStrings } from '../config' import { cns } from '../utils' -import { Icon } from '~components' -import { useColorScheme } from '~contexts' -import cssStyles from '~styles' - export function BottomBar({ visible }: { visible: boolean }) { const { colorScheme } = useColorScheme() return ( diff --git a/src/navigation/tabNavigator/components/HeaderLogo.tsx b/src/navigation/tabNavigator/components/HeaderLogo.tsx index c7e6d338..b1b0d197 100644 --- a/src/navigation/tabNavigator/components/HeaderLogo.tsx +++ b/src/navigation/tabNavigator/components/HeaderLogo.tsx @@ -1,3 +1,6 @@ +import { darkLogoFull, darkLogoSygnet, lightLogoFull, lightLogoSygnet } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' +import cssStyles from '@baca/styles' import { Pressable, Text } from '@bacons/react-views' import { Link } from 'expo-router' import { Image, Platform, StyleSheet, View } from 'react-native' @@ -6,10 +9,6 @@ import { TabColorsStrings } from '../config' import { useWidth } from '../hooks' import { cns } from '../utils' -import { darkLogoFull, darkLogoSygnet, lightLogoFull, lightLogoSygnet } from '~constants' -import { useColorScheme } from '~contexts' -import cssStyles from '~styles' - export function HeaderLogo() { const { colorScheme } = useColorScheme() const isLargeHorizontal = useWidth(1264) diff --git a/src/navigation/tabNavigator/components/SideBar.tsx b/src/navigation/tabNavigator/components/SideBar.tsx index 1da2dff0..6c573980 100644 --- a/src/navigation/tabNavigator/components/SideBar.tsx +++ b/src/navigation/tabNavigator/components/SideBar.tsx @@ -1,3 +1,5 @@ +import { signOut } from '@baca/store/auth' +import cssStyles from '@baca/styles' import { Platform, StyleSheet, View } from 'react-native' import { HeaderLogo } from './HeaderLogo' @@ -6,9 +8,6 @@ import { TabColorsStrings, upperSideTabs } from '../config' import { useWidth } from '../hooks' import { cns } from '../utils' -import { signOut } from '~store/auth' -import cssStyles from '~styles' - const NAV_MEDIUM_WIDTH = 244 export function SideBar({ visible }: { visible: boolean }) { diff --git a/src/navigation/tabNavigator/components/SideBarTabItem.tsx b/src/navigation/tabNavigator/components/SideBarTabItem.tsx index e656e47e..0bb52d63 100644 --- a/src/navigation/tabNavigator/components/SideBarTabItem.tsx +++ b/src/navigation/tabNavigator/components/SideBarTabItem.tsx @@ -1,3 +1,7 @@ +import { Icon } from '@baca/components' +import { useColorScheme } from '@baca/contexts' +import cssStyles from '@baca/styles' +import { IconNames } from '@baca/types/icon' import { Text } from '@bacons/react-views' import { Platform, StyleSheet, View } from 'react-native' @@ -6,11 +10,6 @@ import { TabColors, TabColorsStrings } from '../config' import { useWidth } from '../hooks' import { cns } from '../utils' -import { Icon } from '~components' -import { useColorScheme } from '~contexts' -import cssStyles from '~styles' -import { IconNames } from '~types/icon' - export function SideBarTabItem({ children, icon, diff --git a/src/navigation/tabNavigator/config.ts b/src/navigation/tabNavigator/config.ts index 3b862756..8ffe7da3 100644 --- a/src/navigation/tabNavigator/config.ts +++ b/src/navigation/tabNavigator/config.ts @@ -1,6 +1,6 @@ -import { palette } from '~constants' -import { IconNames } from '~types/icon' -import { hex2rgba } from '~utils' +import { palette } from '@baca/constants' +import { IconNames } from '@baca/types/icon' +import { hex2rgba } from '@baca/utils' type Tab = { displayedName: string diff --git a/src/navigation/tabNavigator/navigator.tsx b/src/navigation/tabNavigator/navigator.tsx index 9af562c9..33a3076c 100644 --- a/src/navigation/tabNavigator/navigator.tsx +++ b/src/navigation/tabNavigator/navigator.tsx @@ -1,3 +1,4 @@ +import cssStyles from '@baca/styles' import { StyleSheet } from '@bacons/react-views' import React from 'react' import { Platform, View } from 'react-native' @@ -7,8 +8,6 @@ import { useWidth } from './hooks' import { TabbedNavigator } from './tab-slot' import { cns } from './utils' -import cssStyles from '~styles' - export function ResponsiveNavigator() { const isRowLayout = useWidth(768) diff --git a/src/providers/ColorSchemeProvider.tsx b/src/providers/ColorSchemeProvider.tsx index 4bdf0268..4e5b68b6 100644 --- a/src/providers/ColorSchemeProvider.tsx +++ b/src/providers/ColorSchemeProvider.tsx @@ -1,14 +1,13 @@ -import { useAsyncStorage } from '@react-native-async-storage/async-storage' -import { FC, PropsWithChildren, useEffect } from 'react' -import { useColorScheme as useRNColorScheme } from 'react-native' - -import { colorSchemes, ASYNC_STORAGE_KEYS } from '~constants' +import { colorSchemes, ASYNC_STORAGE_KEYS } from '@baca/constants' import { ColorSchemeContextProvider, ColorSchemeContextType, SettingColorSchemeName, -} from '~contexts' -import { useState, useMemo, useCallback } from '~hooks' +} from '@baca/contexts' +import { useState, useMemo, useCallback } from '@baca/hooks' +import { useAsyncStorage } from '@react-native-async-storage/async-storage' +import { FC, PropsWithChildren, useEffect } from 'react' +import { useColorScheme as useRNColorScheme } from 'react-native' const defaultColorScheme = colorSchemes.LIGHT diff --git a/src/providers/NotificationProvider.tsx b/src/providers/NotificationProvider.tsx index b8f2215a..e386ac56 100644 --- a/src/providers/NotificationProvider.tsx +++ b/src/providers/NotificationProvider.tsx @@ -1,13 +1,12 @@ -import * as Notifications from 'expo-notifications' -import { PropsWithChildren, FC } from 'react' - -import { NotificationContextProvider, NotificationContextType } from '~contexts' -import { useState, useMemo, useEffect } from '~hooks' +import { NotificationContextProvider, NotificationContextType } from '@baca/contexts' +import { useState, useMemo, useEffect } from '@baca/hooks' import { disableAndroidBackgroundNotificationListener, getNotificationFromStack, getNotificationStackLength, -} from '~services' +} from '@baca/services' +import * as Notifications from 'expo-notifications' +import { PropsWithChildren, FC } from 'react' export const NotificationProvider: FC = ({ children }) => { const [permissionStatus, setPermissionStatus] = diff --git a/src/providers/Providers.tsx b/src/providers/Providers.tsx index 510d9c85..357c549a 100644 --- a/src/providers/Providers.tsx +++ b/src/providers/Providers.tsx @@ -1,3 +1,8 @@ +import { AppLoading } from '@baca/components' +import { useAppStateActive } from '@baca/hooks' +import { AuthLogic } from '@baca/logic/AuthLogic' +import { store } from '@baca/store' +import { checkForUpdates } from '@baca/utils' import { BottomSheetModalProvider } from '@gorhom/bottom-sheet' import { PortalProvider } from '@gorhom/portal' import { QueryClientProvider, QueryClient } from '@tanstack/react-query' @@ -11,12 +16,6 @@ import { ColorSchemeProvider } from './ColorSchemeProvider' import { NotificationsProvider } from './NotificatedProvider' import { NotificationProvider as ExpoNotificationsProvider } from './NotificationProvider' -import { AppLoading } from '~components' -import { useAppStateActive } from '~hooks' -import { AuthLogic } from '~logic/AuthLogic' -import { store } from '~store' -import { checkForUpdates } from '~utils' - const queryClient = new QueryClient({}) export const Providers: FC = ({ children }) => { diff --git a/src/query-hooks/useGetData_EXAMPLE.ts b/src/query-hooks/useGetData_EXAMPLE.ts index c9f4f2e7..83c2a26c 100644 --- a/src/query-hooks/useGetData_EXAMPLE.ts +++ b/src/query-hooks/useGetData_EXAMPLE.ts @@ -1,9 +1,8 @@ +import { QueryKeys } from '@baca/enums' +import { getData } from '@baca/services' +import { TodoList } from '@baca/types/todos' import { useQuery } from '@tanstack/react-query' -import { QueryKeys } from '~enums' -import { getData } from '~services' -import { TodoList } from '~types/todos' - export const useGetCity_EXAMPLE = () => { const { data: dataList, diff --git a/src/screens/ApplicationInfoScreen.tsx b/src/screens/ApplicationInfoScreen.tsx index 677f10d1..aa66a950 100644 --- a/src/screens/ApplicationInfoScreen.tsx +++ b/src/screens/ApplicationInfoScreen.tsx @@ -1,20 +1,19 @@ // TODO: there are tons of more interesting methods there! -import * as Application from 'expo-application' -import * as Clipboard from 'expo-clipboard' -import Constants from 'expo-constants' -import * as Notifications from 'expo-notifications' -import { useRouter } from 'expo-router' -import { ScrollView, StyleSheet } from 'react-native' - -import { Box, Button, Text } from '~components' -import { isExpoGo } from '~constants' +import { Box, Button, Text } from '@baca/components' +import { isExpoGo } from '@baca/constants' import { useCallback, usePreventGoBack, useSafeAreaInsets, useScreenOptions, useTranslation, -} from '~hooks' +} from '@baca/hooks' +import * as Application from 'expo-application' +import * as Clipboard from 'expo-clipboard' +import Constants from 'expo-constants' +import * as Notifications from 'expo-notifications' +import { useRouter } from 'expo-router' +import { ScrollView, StyleSheet } from 'react-native' const projectId = Constants.expoConfig?.extra?.eas?.projectId diff --git a/src/screens/BlogScreen.tsx b/src/screens/BlogScreen.tsx index b9be200b..b4541486 100644 --- a/src/screens/BlogScreen.tsx +++ b/src/screens/BlogScreen.tsx @@ -1,5 +1,5 @@ -import { Center, Text } from '~components' -import { LandingHeader } from '~components/LandingHeader' +import { Center, Text } from '@baca/components' +import { LandingHeader } from '@baca/components/LandingHeader' export const BlogScreen = () => { return ( diff --git a/src/screens/ColorsScreen.tsx b/src/screens/ColorsScreen.tsx index 101d3e76..aa438c46 100644 --- a/src/screens/ColorsScreen.tsx +++ b/src/screens/ColorsScreen.tsx @@ -1,5 +1,5 @@ -import { Text, Center, ScrollView } from '~components' -import { useScreenOptions, useTranslation } from '~hooks' +import { Text, Center, ScrollView } from '@baca/components' +import { useScreenOptions, useTranslation } from '@baca/hooks' const colorsVariants: NestedKeys[] = [ 'utility.success.500', diff --git a/src/screens/ComponentsScreen.tsx b/src/screens/ComponentsScreen.tsx index 3b50cd1c..96ee3783 100644 --- a/src/screens/ComponentsScreen.tsx +++ b/src/screens/ComponentsScreen.tsx @@ -1,8 +1,7 @@ +import { Icon, Loader, Box, Text, Button, Center, ScrollView } from '@baca/components' +import { useCallback, useNotifications, useScreenOptions, useTranslation } from '@baca/hooks' import * as Linking from 'expo-linking' -import { Icon, Loader, Box, Text, Button, Center, ScrollView } from '~components' -import { useCallback, useNotifications, useScreenOptions, useTranslation } from '~hooks' - const headingSizes = ['xs', 'sm', 'md', 'lg', '2xl', '3xl', '4xl'] as const const loaderVariants = [ { diff --git a/src/screens/DataFromBeScreen_EXAMPLE.tsx b/src/screens/DataFromBeScreen_EXAMPLE.tsx index 1b697620..0af4d5d8 100644 --- a/src/screens/DataFromBeScreen_EXAMPLE.tsx +++ b/src/screens/DataFromBeScreen_EXAMPLE.tsx @@ -1,11 +1,10 @@ +import { Loader, Center, Text, Box, Spacer } from '@baca/components' +import { useScreenOptions, useTranslation } from '@baca/hooks' +import { useGetCity_EXAMPLE } from '@baca/query-hooks' +import { TodoItem } from '@baca/types/todos' import React, { useCallback } from 'react' import { ListRenderItem, FlatList } from 'react-native' -import { Loader, Center, Text, Box, Spacer } from '~components' -import { useScreenOptions, useTranslation } from '~hooks' -import { useGetCity_EXAMPLE } from '~query-hooks' -import { TodoItem } from '~types/todos' - export const DataFromBeScreen_EXAMPLE = () => { const { t } = useTranslation() diff --git a/src/screens/DetailsScreen.tsx b/src/screens/DetailsScreen.tsx index 749113b1..f116c147 100644 --- a/src/screens/DetailsScreen.tsx +++ b/src/screens/DetailsScreen.tsx @@ -1,8 +1,7 @@ +import { useBottomSheet, Center, Text, Button, Box } from '@baca/components' +import { useScreenOptions, useState, useTranslation } from '@baca/hooks' import { useLocalSearchParams } from 'expo-router' -import { useBottomSheet, Center, Text, Button, Box } from '~components' -import { useScreenOptions, useState, useTranslation } from '~hooks' - export const DetailsScreen = (): JSX.Element => { const { t } = useTranslation() const localParams = useLocalSearchParams<{ user: string }>() diff --git a/src/screens/ExamplesScreen.tsx b/src/screens/ExamplesScreen.tsx index d95941e3..f4dd91a6 100644 --- a/src/screens/ExamplesScreen.tsx +++ b/src/screens/ExamplesScreen.tsx @@ -1,8 +1,7 @@ +import { Button, ScrollView } from '@baca/components' +import { useCallback, useTranslation, useScreenOptions } from '@baca/hooks' import { useRouter } from 'expo-router' -import { Button, ScrollView } from '~components' -import { useCallback, useTranslation, useScreenOptions } from '~hooks' - export const ExamplesScreen = () => { const { push } = useRouter() const { t } = useTranslation() diff --git a/src/screens/HomeScreen.tsx b/src/screens/HomeScreen.tsx index 36ee9ab7..165c24cd 100644 --- a/src/screens/HomeScreen.tsx +++ b/src/screens/HomeScreen.tsx @@ -1,11 +1,10 @@ +import { Button, Center, Text } from '@baca/components' +import { darkLogo, lightLogo } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' +import { useCallback, useScreenOptions, useTranslation } from '@baca/hooks' import { router } from 'expo-router' import { Image, StyleSheet } from 'react-native' -import { Button, Center, Text } from '~components' -import { darkLogo, lightLogo } from '~constants' -import { useColorScheme } from '~contexts' -import { useCallback, useScreenOptions, useTranslation } from '~hooks' - export const HomeScreen = () => { const { t } = useTranslation() diff --git a/src/screens/LandingScreen.tsx b/src/screens/LandingScreen.tsx index cb2af2b0..835655e5 100644 --- a/src/screens/LandingScreen.tsx +++ b/src/screens/LandingScreen.tsx @@ -1,12 +1,11 @@ +import { Button, Center, Text } from '@baca/components' +import { LandingHeader } from '@baca/components/LandingHeader' +import { darkLogo, lightLogo } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' +import { useCallback, useScreenOptions, useTranslation } from '@baca/hooks' import { router } from 'expo-router' import { Image, StyleSheet } from 'react-native' -import { Button, Center, Text } from '~components' -import { LandingHeader } from '~components/LandingHeader' -import { darkLogo, lightLogo } from '~constants' -import { useColorScheme } from '~contexts' -import { useCallback, useScreenOptions, useTranslation } from '~hooks' - export const LandingScreen = () => { const { t } = useTranslation() diff --git a/src/screens/NotFoundScreen.tsx b/src/screens/NotFoundScreen.tsx index 8726b1ec..5b9415de 100644 --- a/src/screens/NotFoundScreen.tsx +++ b/src/screens/NotFoundScreen.tsx @@ -1,5 +1,5 @@ -import { Center, Text } from '~components/atoms' -import { useScreenOptions, useTranslation } from '~hooks' +import { Center, Text } from '@baca/components/atoms' +import { useScreenOptions, useTranslation } from '@baca/hooks' export const NotFoundScreen = (): JSX.Element => { const { t } = useTranslation() diff --git a/src/screens/SettingsScreen.tsx b/src/screens/SettingsScreen.tsx index e88abfa6..10eead47 100644 --- a/src/screens/SettingsScreen.tsx +++ b/src/screens/SettingsScreen.tsx @@ -1,9 +1,9 @@ -import { Version, Spacer, Button, Center, Text, ScrollView } from '~components' -import { colorSchemesList } from '~constants' -import { useColorScheme } from '~contexts' -import { useCallback, useScreenOptions, useTranslation } from '~hooks' -import { signOut } from '~store/auth' -import { noop } from '~utils' +import { Version, Spacer, Button, Center, Text, ScrollView } from '@baca/components' +import { colorSchemesList } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' +import { useCallback, useScreenOptions, useTranslation } from '@baca/hooks' +import { signOut } from '@baca/store/auth' +import { noop } from '@baca/utils' export const SettingsScreen = (): JSX.Element => { const { t } = useTranslation() diff --git a/src/screens/SignInScreen.tsx b/src/screens/SignInScreen.tsx index b6f01014..e704c4b8 100644 --- a/src/screens/SignInScreen.tsx +++ b/src/screens/SignInScreen.tsx @@ -1,6 +1,3 @@ -import { useRouter } from 'expo-router' -import { StyleSheet, Image } from 'react-native' - import { ControlledField, KeyboardAwareScrollView, @@ -11,10 +8,18 @@ import { Center, Button, Text, -} from '~components' -import { REGEX, darkLogo, lightLogo } from '~constants' -import { useColorScheme } from '~contexts' -import { useCallback, useSignInForm, useTranslation, useEffect, useScreenOptions } from '~hooks' +} from '@baca/components' +import { REGEX, darkLogo, lightLogo } from '@baca/constants' +import { useColorScheme } from '@baca/contexts' +import { + useCallback, + useSignInForm, + useTranslation, + useEffect, + useScreenOptions, +} from '@baca/hooks' +import { useRouter } from 'expo-router' +import { StyleSheet, Image } from 'react-native' export const SignInScreen = (): JSX.Element => { const { push } = useRouter() diff --git a/src/screens/SignUpScreen.tsx b/src/screens/SignUpScreen.tsx index 73b34dc5..e50125e9 100644 --- a/src/screens/SignUpScreen.tsx +++ b/src/screens/SignUpScreen.tsx @@ -1,9 +1,8 @@ +import { Button, Center, Spacer, ControlledField, KeyboardAwareScrollView } from '@baca/components' +import { REGEX } from '@baca/constants' +import { useScreenOptions, useSignUpForm, useTranslation } from '@baca/hooks' import { useCallback, useEffect } from 'react' -import { Button, Center, Spacer, ControlledField, KeyboardAwareScrollView } from '~components' -import { REGEX } from '~constants' -import { useScreenOptions, useSignUpForm, useTranslation } from '~hooks' - export const SignUpScreen = () => { const { t } = useTranslation() diff --git a/src/screens/TestFormScreen.tsx b/src/screens/TestFormScreen.tsx index ba85f148..624dd0a8 100644 --- a/src/screens/TestFormScreen.tsx +++ b/src/screens/TestFormScreen.tsx @@ -1,9 +1,8 @@ +import { ControlledField, KeyboardAwareScrollView, TextArea, Button, Text } from '@baca/components' +import { useMemo, useScreenOptions, useTestForm, useTranslation } from '@baca/hooks' import { Controller } from 'react-hook-form' import { StyleSheet } from 'react-native' -import { ControlledField, KeyboardAwareScrollView, TextArea, Button, Text } from '~components' -import { useMemo, useScreenOptions, useTestForm, useTranslation } from '~hooks' - const shoeSizes = [ '34', '35', diff --git a/src/screens/TypographyScreen.tsx b/src/screens/TypographyScreen.tsx index 1b095739..0397392b 100644 --- a/src/screens/TypographyScreen.tsx +++ b/src/screens/TypographyScreen.tsx @@ -1,9 +1,8 @@ +import { Column, Row, Box, Text } from '@baca/components' +import { useColorScheme } from '@baca/contexts' +import { useTranslation } from '@baca/hooks' import { ScrollView, Switch, Platform } from 'react-native' -import { Column, Row, Box, Text } from '~components' -import { useColorScheme } from '~contexts' -import { useTranslation } from '~hooks' - export const fontSizes = [ 'xs', 'sm', diff --git a/src/services/TokenService.ts b/src/services/TokenService.ts index f3bddc47..897e03b4 100644 --- a/src/services/TokenService.ts +++ b/src/services/TokenService.ts @@ -1,5 +1,5 @@ -import { ASYNC_STORAGE_KEYS } from '~constants' -import { secureStore } from '~utils' +import { ASYNC_STORAGE_KEYS } from '@baca/constants' +import { secureStore } from '@baca/utils' const { USER_TOKEN } = ASYNC_STORAGE_KEYS diff --git a/src/services/api/apiClient.ts b/src/services/api/apiClient.ts index b669aa3d..43823e41 100644 --- a/src/services/api/apiClient.ts +++ b/src/services/api/apiClient.ts @@ -1,12 +1,11 @@ +import { ENV, SECOND_IN_MS } from '@baca/constants' +import { getApiError } from '@baca/utils' import axios, { AxiosError } from 'axios' import i18n from 'i18next' import qs from 'qs' import { injectTokenToRequest } from '../interceptors/injectToken' -import { ENV, SECOND_IN_MS } from '~constants' -import { getApiError } from '~utils' - export type ApiError = { message: string errors: { diff --git a/src/services/requests/AnyService_EXAMPLE.ts b/src/services/requests/AnyService_EXAMPLE.ts index 397ee2cf..c5a6b0d6 100644 --- a/src/services/requests/AnyService_EXAMPLE.ts +++ b/src/services/requests/AnyService_EXAMPLE.ts @@ -1,7 +1,7 @@ //THIS IS EXAMPLE REQUEST -import { apiClient } from '../api' +import { TodoList } from '@baca/types/todos' -import { TodoList } from '~types/todos' +import { apiClient } from '../api' export const getData = async () => { return apiClient.get(`/todos`) diff --git a/src/store/auth/authActions.ts b/src/store/auth/authActions.ts index c3c3c66c..acbc69a8 100644 --- a/src/store/auth/authActions.ts +++ b/src/store/auth/authActions.ts @@ -1,7 +1,7 @@ -import { isSignedInAtom } from './authState' +import { deleteToken } from '@baca/services' +import { store } from '@baca/store/store' -import { deleteToken } from '~services' -import { store } from '~store/store' +import { isSignedInAtom } from './authState' export async function signOut() { await deleteToken() diff --git a/src/types/i18next.d.ts b/src/types/i18next.d.ts index ae30cf94..15a4de8e 100644 --- a/src/types/i18next.d.ts +++ b/src/types/i18next.d.ts @@ -1,5 +1,5 @@ import 'i18next' -import english from '~i18n/translations/en.json' +import english from '@baca/i18n/translations/en.json' type EN = typeof english diff --git a/src/types/react-i18next.d.ts b/src/types/react-i18next.d.ts index 6e2df550..6c6e72bb 100644 --- a/src/types/react-i18next.d.ts +++ b/src/types/react-i18next.d.ts @@ -1,5 +1,5 @@ import 'react-i18next' -import english from '~i18n/translations/en.json' +import english from '@baca/i18n/translations/en.json' type EN = typeof english diff --git a/src/types/theme.d.ts b/src/types/theme.d.ts index 5e2d20de..b2ff63b1 100644 --- a/src/types/theme.d.ts +++ b/src/types/theme.d.ts @@ -1,5 +1,5 @@ -import { theme } from '~constants/theme' -import { themeColors } from '~constants/colors' +import { theme } from '@baca/constants/theme' +import { themeColors } from '@baca/constants/colors' declare global { // THEME diff --git a/src/utils/checkForUpdates.ts b/src/utils/checkForUpdates.ts index 0a52708d..3b97bf42 100644 --- a/src/utils/checkForUpdates.ts +++ b/src/utils/checkForUpdates.ts @@ -1,11 +1,10 @@ +import { isDevelopment } from '@baca/constants' import * as Updates from 'expo-updates' import i18n from 'i18next' import { alert } from './alert' import { wait } from './wait' -import { isDevelopment } from '~constants' - let isAlertOpened = false export const checkForUpdates = async (shouldReload?: boolean) => { diff --git a/src/utils/getFontWeight.ts b/src/utils/getFontWeight.ts index 31a4b67b..607d1206 100644 --- a/src/utils/getFontWeight.ts +++ b/src/utils/getFontWeight.ts @@ -1,7 +1,6 @@ +import { _appTheme } from '@baca/constants' import { TextStyle } from 'react-native' -import { _appTheme } from '~constants' - type FontWeights = NonNullable const fontWeightsMap: { [key in FontWeights]: TextStyle['fontWeight'] } = { diff --git a/src/utils/testUtils.tsx b/src/utils/testUtils.tsx index 617d7e6e..4ece7c39 100644 --- a/src/utils/testUtils.tsx +++ b/src/utils/testUtils.tsx @@ -1,11 +1,10 @@ +import i18n from '@baca/i18n/i18nForTests' +import { ColorSchemeProvider } from '@baca/providers/ColorSchemeProvider' import { PortalProvider } from '@gorhom/portal' import { render, RenderAPI } from '@testing-library/react-native' import { PropsWithChildren, ReactElement } from 'react' import { I18nextProvider } from 'react-i18next' -import i18n from '~i18n/i18nForTests' -import { ColorSchemeProvider } from '~providers/ColorSchemeProvider' - type RenderOptions = Parameters[1] const ProvidersWrapper: React.FC = ({ children }) => ( diff --git a/templates/component_template.tsx b/templates/component_template.tsx index 5ad9d04a..46024e58 100644 --- a/templates/component_template.tsx +++ b/templates/component_template.tsx @@ -1,8 +1,7 @@ +import { Center, Text } from '@baca/components/atoms' +import { useTranslation } from '@baca/hooks' import { FC } from 'react' -import { Center, Text } from '~components/atoms' -import { useTranslation } from '~hooks' - type _NAME_Props = { example: string } diff --git a/templates/screen_template.tsx b/templates/screen_template.tsx index ec5c6e6a..23b961ab 100644 --- a/templates/screen_template.tsx +++ b/templates/screen_template.tsx @@ -1,5 +1,5 @@ -import { Button, Center, Text } from '~components/atoms' -import { useCallback, useTranslation } from '~hooks' +import { Button, Center, Text } from '@baca/components/atoms' +import { useCallback, useTranslation } from '@baca/hooks' // @ts-expect-error: it's a template and will be removed export const _NAME_Screen = (props: _NAME_ScreenProps): JSX.Element => { diff --git a/tsconfig.json b/tsconfig.json index 47f41a0a..3d8b18af 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,8 +4,8 @@ "strict": true, "baseUrl": ".", "paths": { - "~*": ["src/*"], - "~assets": ["assets"] + "@baca/*": ["src/*"], + "@baca/assets": ["assets"] }, "allowSyntheticDefaultImports": true, // sets types for project using src/types folder From 817c9661f2a09ae617fc26eec988d2e4d835aca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Baumruck?= Date: Wed, 6 Mar 2024 09:43:30 +0100 Subject: [PATCH 2/4] move atoms to design system --- app/_layout.tsx | 3 ++- src/components/AppLoading.tsx | 3 +-- src/components/Header.tsx | 2 +- src/components/LandingHeader.tsx | 2 +- src/components/LanguagePicker.tsx | 6 ++---- src/components/Version.tsx | 3 +-- src/components/index.ts | 2 -- src/components/molecules/Field/Checkbox.tsx | 12 +++++++----- src/components/molecules/Field/Input.tsx | 7 ++++++- src/components/molecules/Field/Radio.tsx | 10 ++++++++-- src/components/molecules/Field/Select.tsx | 8 +++++++- src/components/molecules/Field/types.ts | 2 +- src/components/molecules/MenuItem.tsx | 2 +- src/components/molecules/TextArea.tsx | 4 +--- src/components/organisms/ControlledField/Select.tsx | 2 +- src/components/organisms/Menu/index.tsx | 2 +- src/constants/textVariants.ts | 2 +- .../bottomSheets/BottomSheet.tsx | 2 +- .../bottomSheets/BottomSheet.web.tsx | 3 ++- .../bottomSheets/BottomSheetFlatList.tsx | 0 .../bottomSheets/BottomSheetFlatList.web.tsx | 0 .../bottomSheets/BottomSheetHeader.tsx | 10 +++++----- .../bottomSheets/index.tsx | 0 .../bottomSheets/useBottomSheets.tsx | 0 .../atoms => design-system/components}/Absolute.tsx | 0 .../atoms => design-system/components}/Box.tsx | 0 .../components}/BricksLoader.tsx | 0 .../components}/BubblesLoader.tsx | 0 .../components}/Button/Button.test.tsx | 0 .../components}/Button/Button.tsx | 0 .../Button/__snapshots__/Button.test.tsx.snap | 0 .../components}/Button/index.ts | 0 .../atoms => design-system/components}/Center.tsx | 0 .../atoms => design-system/components}/Checkbox.tsx | 0 .../components}/CircleLoader.tsx | 0 .../atoms => design-system/components}/Column.tsx | 0 .../components}/DiskLoader.tsx | 0 .../components}/FormErrorMessage.tsx | 0 .../components}/FormLabel.tsx | 0 .../components}/GradientBox.tsx | 0 .../atoms => design-system/components}/Icon.tsx | 0 .../atoms => design-system/components}/Input.tsx | 0 .../atoms => design-system/components}/Loader.tsx | 0 .../atoms => design-system/components}/Row.tsx | 0 .../components}/ScrollView.tsx | 0 .../atoms => design-system/components}/Select.tsx | 4 ++-- .../atoms => design-system/components}/Spacer.tsx | 0 .../components}/Text/Text.test.tsx | 0 .../components}/Text/Text.tsx | 0 .../components}/Text/index.ts | 0 .../components}/Touchables/Pressable.tsx | 0 .../components}/Touchables/Touchable.tsx | 0 .../components}/Touchables/index.ts | 0 .../components}/Touchables/useFocus.ts | 0 .../components}/Touchables/useHover.ts | 0 .../components}/Touchables/useIsPressed.ts | 0 .../atoms => design-system/components}/index.ts | 0 .../atoms => design-system/components}/types.ts | 0 src/design-system/index.ts | 3 +++ .../utils/generateSize.test.ts | 0 .../utils/generateSize.ts | 2 +- .../utils/generateStyledComponent.tsx | 2 +- .../utils/generateStyledSystem.ts | 2 +- src/{components => design-system}/utils/index.ts | 0 .../tabNavigator/components/BottomBar.tsx | 2 +- .../tabNavigator/components/SideBarTabItem.tsx | 2 +- src/screens/ApplicationInfoScreen.tsx | 4 ++-- src/screens/BlogScreen.tsx | 2 +- src/screens/ColorsScreen.tsx | 2 +- src/screens/ComponentsScreen.tsx | 2 +- src/screens/DataFromBeScreen_EXAMPLE.tsx | 2 +- src/screens/DetailsScreen.tsx | 2 +- src/screens/ExamplesScreen.tsx | 2 +- src/screens/HomeScreen.tsx | 2 +- src/screens/LandingScreen.tsx | 2 +- src/screens/NotFoundScreen.tsx | 2 +- src/screens/SettingsScreen.tsx | 3 ++- src/screens/SignInScreen.tsx | 13 ++----------- src/screens/SignUpScreen.tsx | 3 ++- src/screens/TestFormScreen.tsx | 3 ++- src/screens/TypographyScreen.tsx | 2 +- templates/component_template.tsx | 2 +- templates/screen_template.tsx | 2 +- 83 files changed, 82 insertions(+), 72 deletions(-) rename src/{components => design-system}/bottomSheets/BottomSheet.tsx (96%) rename src/{components => design-system}/bottomSheets/BottomSheet.web.tsx (95%) rename src/{components => design-system}/bottomSheets/BottomSheetFlatList.tsx (100%) rename src/{components => design-system}/bottomSheets/BottomSheetFlatList.web.tsx (100%) rename src/{components => design-system}/bottomSheets/BottomSheetHeader.tsx (71%) rename src/{components => design-system}/bottomSheets/index.tsx (100%) rename src/{components => design-system}/bottomSheets/useBottomSheets.tsx (100%) rename src/{components/atoms => design-system/components}/Absolute.tsx (100%) rename src/{components/atoms => design-system/components}/Box.tsx (100%) rename src/{components/atoms => design-system/components}/BricksLoader.tsx (100%) rename src/{components/atoms => design-system/components}/BubblesLoader.tsx (100%) rename src/{components/atoms => design-system/components}/Button/Button.test.tsx (100%) rename src/{components/atoms => design-system/components}/Button/Button.tsx (100%) rename src/{components/atoms => design-system/components}/Button/__snapshots__/Button.test.tsx.snap (100%) rename src/{components/atoms => design-system/components}/Button/index.ts (100%) rename src/{components/atoms => design-system/components}/Center.tsx (100%) rename src/{components/atoms => design-system/components}/Checkbox.tsx (100%) rename src/{components/atoms => design-system/components}/CircleLoader.tsx (100%) rename src/{components/atoms => design-system/components}/Column.tsx (100%) rename src/{components/atoms => design-system/components}/DiskLoader.tsx (100%) rename src/{components/atoms => design-system/components}/FormErrorMessage.tsx (100%) rename src/{components/atoms => design-system/components}/FormLabel.tsx (100%) rename src/{components/atoms => design-system/components}/GradientBox.tsx (100%) rename src/{components/atoms => design-system/components}/Icon.tsx (100%) rename src/{components/atoms => design-system/components}/Input.tsx (100%) rename src/{components/atoms => design-system/components}/Loader.tsx (100%) rename src/{components/atoms => design-system/components}/Row.tsx (100%) rename src/{components/atoms => design-system/components}/ScrollView.tsx (100%) rename src/{components/atoms => design-system/components}/Select.tsx (97%) rename src/{components/atoms => design-system/components}/Spacer.tsx (100%) rename src/{components/atoms => design-system/components}/Text/Text.test.tsx (100%) rename src/{components/atoms => design-system/components}/Text/Text.tsx (100%) rename src/{components/atoms => design-system/components}/Text/index.ts (100%) rename src/{components/atoms => design-system/components}/Touchables/Pressable.tsx (100%) rename src/{components/atoms => design-system/components}/Touchables/Touchable.tsx (100%) rename src/{components/atoms => design-system/components}/Touchables/index.ts (100%) rename src/{components/atoms => design-system/components}/Touchables/useFocus.ts (100%) rename src/{components/atoms => design-system/components}/Touchables/useHover.ts (100%) rename src/{components/atoms => design-system/components}/Touchables/useIsPressed.ts (100%) rename src/{components/atoms => design-system/components}/index.ts (100%) rename src/{components/atoms => design-system/components}/types.ts (100%) create mode 100644 src/design-system/index.ts rename src/{components => design-system}/utils/generateSize.test.ts (100%) rename src/{components => design-system}/utils/generateSize.ts (97%) rename src/{components => design-system}/utils/generateStyledComponent.tsx (96%) rename src/{components => design-system}/utils/generateStyledSystem.ts (99%) rename src/{components => design-system}/utils/index.ts (100%) diff --git a/app/_layout.tsx b/app/_layout.tsx index 537ab8fc..5595096d 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -1,4 +1,5 @@ -import { AbsoluteFullFill, Loader, StatusBar } from '@baca/components' +import { StatusBar } from '@baca/components' +import { AbsoluteFullFill, Loader } from '@baca/design-system' import { useNavigationTheme, useRouterNotifications } from '@baca/hooks' import { Providers } from '@baca/providers' import { isSignedInAtom } from '@baca/store/auth' diff --git a/src/components/AppLoading.tsx b/src/components/AppLoading.tsx index f0bd8c09..912abd32 100644 --- a/src/components/AppLoading.tsx +++ b/src/components/AppLoading.tsx @@ -1,3 +1,4 @@ +import { AbsoluteFullFill, Loader, Center } from '@baca/design-system/components' import { useBoolean, useCachedResources, useFonts } from '@baca/hooks' import { isSignedInAtom } from '@baca/store/auth' import * as SplashScreen from 'expo-splash-screen' @@ -5,8 +6,6 @@ import { useAtomValue } from 'jotai' import { FC, PropsWithChildren, useCallback, useEffect } from 'react' import { View, StyleSheet } from 'react-native' -import { AbsoluteFullFill, Loader, Center } from './atoms' - SplashScreen.preventAutoHideAsync() export const AppLoading: FC = ({ children }) => { diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 7c0d4708..fd02683d 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,4 +1,4 @@ -import { Box, Column, Row, Icon, Text, Touchable } from '@baca/components/atoms' +import { Box, Column, Row, Icon, Text, Touchable } from '@baca/design-system' import { NativeStackHeaderProps } from '@react-navigation/native-stack' import { useRouter } from 'expo-router' diff --git a/src/components/LandingHeader.tsx b/src/components/LandingHeader.tsx index 0b3a9ad5..a34ed711 100644 --- a/src/components/LandingHeader.tsx +++ b/src/components/LandingHeader.tsx @@ -1,6 +1,6 @@ -import { Box, Button, Icon, Pressable } from '@baca/components' import { darkLogoFull, lightLogoFull } from '@baca/constants' import { useColorScheme } from '@baca/contexts' +import { Box, Button, Icon, Pressable } from '@baca/design-system' import { useTranslation } from '@baca/hooks' import { TabColorsStrings } from '@baca/navigation/tabNavigator/config' import { isSignedInAtom } from '@baca/store/auth' diff --git a/src/components/LanguagePicker.tsx b/src/components/LanguagePicker.tsx index d48f7849..806eabf5 100644 --- a/src/components/LanguagePicker.tsx +++ b/src/components/LanguagePicker.tsx @@ -1,3 +1,5 @@ +import { Icon, Row, Text } from '@baca/design-system/components' +import { Touchable, TouchableProps } from '@baca/design-system/components/Touchables/Touchable' import { useCallback, useTranslation, useTheme } from '@baca/hooks' import { StyleSheet } from 'react-native' import Animated, { @@ -7,10 +9,6 @@ import Animated, { withTiming, } from 'react-native-reanimated' -import { Icon } from './atoms/Icon' -import { Row } from './atoms/Row' -import { Text } from './atoms/Text' -import { Touchable, TouchableProps } from './atoms/Touchables/Touchable' import { Menu } from './organisms/Menu' import languages from '../../assets/languages.json' diff --git a/src/components/Version.tsx b/src/components/Version.tsx index 47d210b0..7330a418 100644 --- a/src/components/Version.tsx +++ b/src/components/Version.tsx @@ -1,3 +1,4 @@ +import { Spacer, Text } from '@baca/design-system/components' import * as Application from 'expo-application' import * as Clipboard from 'expo-clipboard' import Constants from 'expo-constants' @@ -5,8 +6,6 @@ import * as Updates from 'expo-updates' import { useCallback } from 'react' import { Pressable } from 'react-native' -import { Spacer, Text } from './atoms' - const appName = Application?.applicationName ?? Constants?.expoConfig?.name const appVersion = Application?.nativeApplicationVersion ?? Constants?.expoConfig?.version diff --git a/src/components/index.ts b/src/components/index.ts index 063c1bba..f33b3c77 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -1,5 +1,3 @@ -export * from './atoms' -export * from './bottomSheets' export * from './molecules' export * from './organisms' diff --git a/src/components/molecules/Field/Checkbox.tsx b/src/components/molecules/Field/Checkbox.tsx index 2637a1ee..9401d07a 100644 --- a/src/components/molecules/Field/Checkbox.tsx +++ b/src/components/molecules/Field/Checkbox.tsx @@ -1,11 +1,13 @@ +import { + Box, + Checkbox as CustomCheckbox, + FormErrorMessage, + FormLabel, + Spacer, +} from '@baca/design-system/components' import { Fragment, useMemo } from 'react' import { FieldCheckboxProps } from './types' -import { Box } from '../../atoms/Box' -import { Checkbox as CustomCheckbox } from '../../atoms/Checkbox' -import { FormErrorMessage } from '../../atoms/FormErrorMessage' -import { FormLabel } from '../../atoms/FormLabel' -import { Spacer } from '../../atoms/Spacer' export const Checkbox = ({ isInvalid, diff --git a/src/components/molecules/Field/Input.tsx b/src/components/molecules/Field/Input.tsx index b0e9186e..d9ea34d6 100644 --- a/src/components/molecules/Field/Input.tsx +++ b/src/components/molecules/Field/Input.tsx @@ -1,8 +1,13 @@ +import { + FormErrorMessage, + FormLabel, + Input as BaseInput, + Box, +} from '@baca/design-system/components' import { forwardRef, useCallback, useImperativeHandle, useRef, useMemo } from 'react' import { NativeSyntheticEvent, Pressable, TextInput, TextInputFocusEventData } from 'react-native' import type { FieldInputProps } from './types' -import { FormErrorMessage, FormLabel, Input as BaseInput, Box } from '../../atoms' const layoutPropsKeys = [ 'm', diff --git a/src/components/molecules/Field/Radio.tsx b/src/components/molecules/Field/Radio.tsx index d89c02da..deb40ee7 100644 --- a/src/components/molecules/Field/Radio.tsx +++ b/src/components/molecules/Field/Radio.tsx @@ -1,8 +1,14 @@ +import { + FormErrorMessage, + FormLabel, + Box, + Touchable, + Text, + TouchableRef, +} from '@baca/design-system/components' import { forwardRef, useCallback, useMemo } from 'react' import { FieldRadioProps } from './types' -import { FormErrorMessage, FormLabel, Box, Touchable, Text } from '../../atoms' -import type { TouchableRef } from '../../atoms/Touchables/Touchable' export const Radio = forwardRef( ( diff --git a/src/components/molecules/Field/Select.tsx b/src/components/molecules/Field/Select.tsx index e352eb87..1c4ca78a 100644 --- a/src/components/molecules/Field/Select.tsx +++ b/src/components/molecules/Field/Select.tsx @@ -1,9 +1,15 @@ +import { + Select as CustomSelect, + Box, + FormErrorMessage, + FormLabel, + SelectKey, +} from '@baca/design-system/components' import { useMemo } from '@baca/hooks' import React from 'react' import { Pressable } from 'react-native' import type { FieldSelectProps } from './types' -import { Select as CustomSelect, Box, FormErrorMessage, FormLabel, SelectKey } from '../../atoms' const layoutPropsKeys = [ 'm', diff --git a/src/components/molecules/Field/types.ts b/src/components/molecules/Field/types.ts index 23a1b0e6..16110b12 100644 --- a/src/components/molecules/Field/types.ts +++ b/src/components/molecules/Field/types.ts @@ -4,7 +4,7 @@ import { InputProps, RadioProps, SelectProps, -} from '@baca/components' +} from '@baca/design-system' export type FieldInputProps = InputProps & FormLabelProps & { diff --git a/src/components/molecules/MenuItem.tsx b/src/components/molecules/MenuItem.tsx index aaab6797..cf1df3a4 100644 --- a/src/components/molecules/MenuItem.tsx +++ b/src/components/molecules/MenuItem.tsx @@ -1,4 +1,4 @@ -import { Box, Touchable, Text } from '../atoms' +import { Box, Touchable, Text } from '@baca/design-system/components' type MenuItemProps = { onPress: () => void diff --git a/src/components/molecules/TextArea.tsx b/src/components/molecules/TextArea.tsx index 0cc4274b..d10d925e 100644 --- a/src/components/molecules/TextArea.tsx +++ b/src/components/molecules/TextArea.tsx @@ -1,9 +1,7 @@ +import { Input, InputProps } from '@baca/design-system/components' import { forwardRef } from 'react' import { TextInput } from 'react-native' -import { Input } from '../atoms/Input' -import type { InputProps } from '../atoms/types' - export const TextArea = forwardRef((props, ref) => ( )) diff --git a/src/components/organisms/ControlledField/Select.tsx b/src/components/organisms/ControlledField/Select.tsx index 2cbb99d4..d477a7ac 100644 --- a/src/components/organisms/ControlledField/Select.tsx +++ b/src/components/organisms/ControlledField/Select.tsx @@ -1,4 +1,4 @@ -import { SelectKey } from '@baca/components/atoms' +import { SelectKey } from '@baca/design-system' import { useCallback } from 'react' import { Controller, get, ControllerProps } from 'react-hook-form' diff --git a/src/components/organisms/Menu/index.tsx b/src/components/organisms/Menu/index.tsx index d6476225..bd464886 100644 --- a/src/components/organisms/Menu/index.tsx +++ b/src/components/organisms/Menu/index.tsx @@ -1,9 +1,9 @@ +import { AbsoluteFullFill, Box, TouchableProps, ScrollView } from '@baca/design-system/components' import { useRef, useState, useMemo, useTheme, useCallback } from '@baca/hooks' import { Portal } from '@gorhom/portal' import React, { NamedExoticComponent, PropsWithChildren, memo } from 'react' import { View, Modal, TouchableWithoutFeedback } from 'react-native' -import { AbsoluteFullFill, Box, TouchableProps, ScrollView } from '../../atoms' import { MenuItem } from '../../molecules/MenuItem' type TriggerPosition = { diff --git a/src/constants/textVariants.ts b/src/constants/textVariants.ts index 5e027801..282b1db0 100644 --- a/src/constants/textVariants.ts +++ b/src/constants/textVariants.ts @@ -1,4 +1,4 @@ -import { TextVariant } from '@baca/components' +import { TextVariant } from '@baca/design-system' type VariantStyle = { fontFamily: Fonts diff --git a/src/components/bottomSheets/BottomSheet.tsx b/src/design-system/bottomSheets/BottomSheet.tsx similarity index 96% rename from src/components/bottomSheets/BottomSheet.tsx rename to src/design-system/bottomSheets/BottomSheet.tsx index f8f1ee4d..6ffa1a5d 100644 --- a/src/components/bottomSheets/BottomSheet.tsx +++ b/src/design-system/bottomSheets/BottomSheet.tsx @@ -1,4 +1,4 @@ -import { Box } from '@baca/components/atoms/Box' +import { Box } from '@baca/design-system/components/Box' import { useSafeAreaInsets } from '@baca/hooks' import { BottomSheetModal, diff --git a/src/components/bottomSheets/BottomSheet.web.tsx b/src/design-system/bottomSheets/BottomSheet.web.tsx similarity index 95% rename from src/components/bottomSheets/BottomSheet.web.tsx rename to src/design-system/bottomSheets/BottomSheet.web.tsx index 35600fb3..cb81945a 100644 --- a/src/components/bottomSheets/BottomSheet.web.tsx +++ b/src/design-system/bottomSheets/BottomSheet.web.tsx @@ -1,10 +1,11 @@ -import { Box, Modal } from '@baca/components' +import { Modal } from '@baca/components/Modal' import { useBoolean, useWeb } from '@baca/hooks' import { BottomSheetModal } from '@gorhom/bottom-sheet' import { RefObject, useCallback, useImperativeHandle } from 'react' import { ScrollView } from 'react-native' import { BottomSheetHeader } from './BottomSheetHeader' +import { Box } from '../components/Box' type Props = { bottomSheetRef: RefObject diff --git a/src/components/bottomSheets/BottomSheetFlatList.tsx b/src/design-system/bottomSheets/BottomSheetFlatList.tsx similarity index 100% rename from src/components/bottomSheets/BottomSheetFlatList.tsx rename to src/design-system/bottomSheets/BottomSheetFlatList.tsx diff --git a/src/components/bottomSheets/BottomSheetFlatList.web.tsx b/src/design-system/bottomSheets/BottomSheetFlatList.web.tsx similarity index 100% rename from src/components/bottomSheets/BottomSheetFlatList.web.tsx rename to src/design-system/bottomSheets/BottomSheetFlatList.web.tsx diff --git a/src/components/bottomSheets/BottomSheetHeader.tsx b/src/design-system/bottomSheets/BottomSheetHeader.tsx similarity index 71% rename from src/components/bottomSheets/BottomSheetHeader.tsx rename to src/design-system/bottomSheets/BottomSheetHeader.tsx index 2464eb39..2a9b79ec 100644 --- a/src/components/bottomSheets/BottomSheetHeader.tsx +++ b/src/design-system/bottomSheets/BottomSheetHeader.tsx @@ -1,8 +1,8 @@ -import { Box } from '@baca/components/atoms/Box' -import { Icon } from '@baca/components/atoms/Icon' -import { Row } from '@baca/components/atoms/Row' -import { Text } from '@baca/components/atoms/Text' -import { Touchable } from '@baca/components/atoms/Touchables/Touchable' +import { Box } from '../components/Box' +import { Icon } from '../components/Icon' +import { Row } from '../components/Row' +import { Text } from '../components/Text' +import { Touchable } from '../components/Touchables/Touchable' export const BottomSheetHeader = ({ title, diff --git a/src/components/bottomSheets/index.tsx b/src/design-system/bottomSheets/index.tsx similarity index 100% rename from src/components/bottomSheets/index.tsx rename to src/design-system/bottomSheets/index.tsx diff --git a/src/components/bottomSheets/useBottomSheets.tsx b/src/design-system/bottomSheets/useBottomSheets.tsx similarity index 100% rename from src/components/bottomSheets/useBottomSheets.tsx rename to src/design-system/bottomSheets/useBottomSheets.tsx diff --git a/src/components/atoms/Absolute.tsx b/src/design-system/components/Absolute.tsx similarity index 100% rename from src/components/atoms/Absolute.tsx rename to src/design-system/components/Absolute.tsx diff --git a/src/components/atoms/Box.tsx b/src/design-system/components/Box.tsx similarity index 100% rename from src/components/atoms/Box.tsx rename to src/design-system/components/Box.tsx diff --git a/src/components/atoms/BricksLoader.tsx b/src/design-system/components/BricksLoader.tsx similarity index 100% rename from src/components/atoms/BricksLoader.tsx rename to src/design-system/components/BricksLoader.tsx diff --git a/src/components/atoms/BubblesLoader.tsx b/src/design-system/components/BubblesLoader.tsx similarity index 100% rename from src/components/atoms/BubblesLoader.tsx rename to src/design-system/components/BubblesLoader.tsx diff --git a/src/components/atoms/Button/Button.test.tsx b/src/design-system/components/Button/Button.test.tsx similarity index 100% rename from src/components/atoms/Button/Button.test.tsx rename to src/design-system/components/Button/Button.test.tsx diff --git a/src/components/atoms/Button/Button.tsx b/src/design-system/components/Button/Button.tsx similarity index 100% rename from src/components/atoms/Button/Button.tsx rename to src/design-system/components/Button/Button.tsx diff --git a/src/components/atoms/Button/__snapshots__/Button.test.tsx.snap b/src/design-system/components/Button/__snapshots__/Button.test.tsx.snap similarity index 100% rename from src/components/atoms/Button/__snapshots__/Button.test.tsx.snap rename to src/design-system/components/Button/__snapshots__/Button.test.tsx.snap diff --git a/src/components/atoms/Button/index.ts b/src/design-system/components/Button/index.ts similarity index 100% rename from src/components/atoms/Button/index.ts rename to src/design-system/components/Button/index.ts diff --git a/src/components/atoms/Center.tsx b/src/design-system/components/Center.tsx similarity index 100% rename from src/components/atoms/Center.tsx rename to src/design-system/components/Center.tsx diff --git a/src/components/atoms/Checkbox.tsx b/src/design-system/components/Checkbox.tsx similarity index 100% rename from src/components/atoms/Checkbox.tsx rename to src/design-system/components/Checkbox.tsx diff --git a/src/components/atoms/CircleLoader.tsx b/src/design-system/components/CircleLoader.tsx similarity index 100% rename from src/components/atoms/CircleLoader.tsx rename to src/design-system/components/CircleLoader.tsx diff --git a/src/components/atoms/Column.tsx b/src/design-system/components/Column.tsx similarity index 100% rename from src/components/atoms/Column.tsx rename to src/design-system/components/Column.tsx diff --git a/src/components/atoms/DiskLoader.tsx b/src/design-system/components/DiskLoader.tsx similarity index 100% rename from src/components/atoms/DiskLoader.tsx rename to src/design-system/components/DiskLoader.tsx diff --git a/src/components/atoms/FormErrorMessage.tsx b/src/design-system/components/FormErrorMessage.tsx similarity index 100% rename from src/components/atoms/FormErrorMessage.tsx rename to src/design-system/components/FormErrorMessage.tsx diff --git a/src/components/atoms/FormLabel.tsx b/src/design-system/components/FormLabel.tsx similarity index 100% rename from src/components/atoms/FormLabel.tsx rename to src/design-system/components/FormLabel.tsx diff --git a/src/components/atoms/GradientBox.tsx b/src/design-system/components/GradientBox.tsx similarity index 100% rename from src/components/atoms/GradientBox.tsx rename to src/design-system/components/GradientBox.tsx diff --git a/src/components/atoms/Icon.tsx b/src/design-system/components/Icon.tsx similarity index 100% rename from src/components/atoms/Icon.tsx rename to src/design-system/components/Icon.tsx diff --git a/src/components/atoms/Input.tsx b/src/design-system/components/Input.tsx similarity index 100% rename from src/components/atoms/Input.tsx rename to src/design-system/components/Input.tsx diff --git a/src/components/atoms/Loader.tsx b/src/design-system/components/Loader.tsx similarity index 100% rename from src/components/atoms/Loader.tsx rename to src/design-system/components/Loader.tsx diff --git a/src/components/atoms/Row.tsx b/src/design-system/components/Row.tsx similarity index 100% rename from src/components/atoms/Row.tsx rename to src/design-system/components/Row.tsx diff --git a/src/components/atoms/ScrollView.tsx b/src/design-system/components/ScrollView.tsx similarity index 100% rename from src/components/atoms/ScrollView.tsx rename to src/design-system/components/ScrollView.tsx diff --git a/src/components/atoms/Select.tsx b/src/design-system/components/Select.tsx similarity index 97% rename from src/components/atoms/Select.tsx rename to src/design-system/components/Select.tsx index 31e496d1..9c156485 100644 --- a/src/components/atoms/Select.tsx +++ b/src/design-system/components/Select.tsx @@ -1,5 +1,3 @@ -import { BottomSheet } from '@baca/components/bottomSheets/BottomSheet' -import { BottomSheetFlatList } from '@baca/components/bottomSheets/BottomSheetFlatList' import { useTheme } from '@baca/hooks' import { BottomSheetModal } from '@gorhom/bottom-sheet' import { useCallback, useMemo, useRef } from 'react' @@ -12,6 +10,8 @@ import { Row } from './Row' import { Text } from './Text' import { Touchable } from './Touchables/Touchable' import { SelectKey, SelectItemProps, SelectProps } from './types' +import { BottomSheet } from '../bottomSheets/BottomSheet' +import { BottomSheetFlatList } from '../bottomSheets/BottomSheetFlatList' const ITEM_HEIGHT = 56 const BOTTOM_SHEET_CONTENT_HEIGHT = Dimensions.get('screen').height / 1.5 diff --git a/src/components/atoms/Spacer.tsx b/src/design-system/components/Spacer.tsx similarity index 100% rename from src/components/atoms/Spacer.tsx rename to src/design-system/components/Spacer.tsx diff --git a/src/components/atoms/Text/Text.test.tsx b/src/design-system/components/Text/Text.test.tsx similarity index 100% rename from src/components/atoms/Text/Text.test.tsx rename to src/design-system/components/Text/Text.test.tsx diff --git a/src/components/atoms/Text/Text.tsx b/src/design-system/components/Text/Text.tsx similarity index 100% rename from src/components/atoms/Text/Text.tsx rename to src/design-system/components/Text/Text.tsx diff --git a/src/components/atoms/Text/index.ts b/src/design-system/components/Text/index.ts similarity index 100% rename from src/components/atoms/Text/index.ts rename to src/design-system/components/Text/index.ts diff --git a/src/components/atoms/Touchables/Pressable.tsx b/src/design-system/components/Touchables/Pressable.tsx similarity index 100% rename from src/components/atoms/Touchables/Pressable.tsx rename to src/design-system/components/Touchables/Pressable.tsx diff --git a/src/components/atoms/Touchables/Touchable.tsx b/src/design-system/components/Touchables/Touchable.tsx similarity index 100% rename from src/components/atoms/Touchables/Touchable.tsx rename to src/design-system/components/Touchables/Touchable.tsx diff --git a/src/components/atoms/Touchables/index.ts b/src/design-system/components/Touchables/index.ts similarity index 100% rename from src/components/atoms/Touchables/index.ts rename to src/design-system/components/Touchables/index.ts diff --git a/src/components/atoms/Touchables/useFocus.ts b/src/design-system/components/Touchables/useFocus.ts similarity index 100% rename from src/components/atoms/Touchables/useFocus.ts rename to src/design-system/components/Touchables/useFocus.ts diff --git a/src/components/atoms/Touchables/useHover.ts b/src/design-system/components/Touchables/useHover.ts similarity index 100% rename from src/components/atoms/Touchables/useHover.ts rename to src/design-system/components/Touchables/useHover.ts diff --git a/src/components/atoms/Touchables/useIsPressed.ts b/src/design-system/components/Touchables/useIsPressed.ts similarity index 100% rename from src/components/atoms/Touchables/useIsPressed.ts rename to src/design-system/components/Touchables/useIsPressed.ts diff --git a/src/components/atoms/index.ts b/src/design-system/components/index.ts similarity index 100% rename from src/components/atoms/index.ts rename to src/design-system/components/index.ts diff --git a/src/components/atoms/types.ts b/src/design-system/components/types.ts similarity index 100% rename from src/components/atoms/types.ts rename to src/design-system/components/types.ts diff --git a/src/design-system/index.ts b/src/design-system/index.ts new file mode 100644 index 00000000..c7cbf804 --- /dev/null +++ b/src/design-system/index.ts @@ -0,0 +1,3 @@ +export * from './bottomSheets' +export * from './components' +export * from './utils' diff --git a/src/components/utils/generateSize.test.ts b/src/design-system/utils/generateSize.test.ts similarity index 100% rename from src/components/utils/generateSize.test.ts rename to src/design-system/utils/generateSize.test.ts diff --git a/src/components/utils/generateSize.ts b/src/design-system/utils/generateSize.ts similarity index 97% rename from src/components/utils/generateSize.ts rename to src/design-system/utils/generateSize.ts index ab941338..5424b0b8 100644 --- a/src/components/utils/generateSize.ts +++ b/src/design-system/utils/generateSize.ts @@ -1,5 +1,5 @@ -import { SizingValue } from '@baca/components' import { size, scale } from '@baca/constants' +import { SizingValue } from '@baca/design-system' import { ViewStyle, DimensionValue, Animated } from 'react-native' const isDimensionValue = (value?: DimensionValue) => { diff --git a/src/components/utils/generateStyledComponent.tsx b/src/design-system/utils/generateStyledComponent.tsx similarity index 96% rename from src/components/utils/generateStyledComponent.tsx rename to src/design-system/utils/generateStyledComponent.tsx index fdf4c2f3..21c3a64a 100644 --- a/src/components/utils/generateStyledComponent.tsx +++ b/src/design-system/utils/generateStyledComponent.tsx @@ -2,7 +2,7 @@ import { useTheme } from '@baca/hooks' import React, { forwardRef, ComponentType } from 'react' import { generateStyledSystem } from './generateStyledSystem' -import { StyledProps } from '../atoms/types' +import { StyledProps } from '../components/types' type StylePropKeys = 'style' | 'contentContainerStyle' diff --git a/src/components/utils/generateStyledSystem.ts b/src/design-system/utils/generateStyledSystem.ts similarity index 99% rename from src/components/utils/generateStyledSystem.ts rename to src/design-system/utils/generateStyledSystem.ts index c00439a0..ae2bf61c 100644 --- a/src/components/utils/generateStyledSystem.ts +++ b/src/design-system/utils/generateStyledSystem.ts @@ -11,7 +11,7 @@ import { SizingProps, EffectsProps, BackgroundProps, -} from '../atoms/types' +} from '../components/types' const generateFlexStyle = ({ flex, diff --git a/src/components/utils/index.ts b/src/design-system/utils/index.ts similarity index 100% rename from src/components/utils/index.ts rename to src/design-system/utils/index.ts diff --git a/src/navigation/tabNavigator/components/BottomBar.tsx b/src/navigation/tabNavigator/components/BottomBar.tsx index b88a0e25..38e44481 100644 --- a/src/navigation/tabNavigator/components/BottomBar.tsx +++ b/src/navigation/tabNavigator/components/BottomBar.tsx @@ -1,5 +1,5 @@ -import { Icon } from '@baca/components' import { useColorScheme } from '@baca/contexts' +import { Icon } from '@baca/design-system' import cssStyles from '@baca/styles' import { Platform, StyleSheet, View } from 'react-native' import { useSafeAreaInsets } from 'react-native-safe-area-context' diff --git a/src/navigation/tabNavigator/components/SideBarTabItem.tsx b/src/navigation/tabNavigator/components/SideBarTabItem.tsx index 0bb52d63..e990196b 100644 --- a/src/navigation/tabNavigator/components/SideBarTabItem.tsx +++ b/src/navigation/tabNavigator/components/SideBarTabItem.tsx @@ -1,5 +1,5 @@ -import { Icon } from '@baca/components' import { useColorScheme } from '@baca/contexts' +import { Icon } from '@baca/design-system' import cssStyles from '@baca/styles' import { IconNames } from '@baca/types/icon' import { Text } from '@bacons/react-views' diff --git a/src/screens/ApplicationInfoScreen.tsx b/src/screens/ApplicationInfoScreen.tsx index aa66a950..f174e0e1 100644 --- a/src/screens/ApplicationInfoScreen.tsx +++ b/src/screens/ApplicationInfoScreen.tsx @@ -1,6 +1,5 @@ -// TODO: there are tons of more interesting methods there! -import { Box, Button, Text } from '@baca/components' import { isExpoGo } from '@baca/constants' +import { Box, Button, Text } from '@baca/design-system' import { useCallback, usePreventGoBack, @@ -8,6 +7,7 @@ import { useScreenOptions, useTranslation, } from '@baca/hooks' +// TODO: there are tons of more interesting methods there! import * as Application from 'expo-application' import * as Clipboard from 'expo-clipboard' import Constants from 'expo-constants' diff --git a/src/screens/BlogScreen.tsx b/src/screens/BlogScreen.tsx index b4541486..0ebec1c0 100644 --- a/src/screens/BlogScreen.tsx +++ b/src/screens/BlogScreen.tsx @@ -1,5 +1,5 @@ -import { Center, Text } from '@baca/components' import { LandingHeader } from '@baca/components/LandingHeader' +import { Center, Text } from '@baca/design-system' export const BlogScreen = () => { return ( diff --git a/src/screens/ColorsScreen.tsx b/src/screens/ColorsScreen.tsx index aa438c46..3c0f0ea2 100644 --- a/src/screens/ColorsScreen.tsx +++ b/src/screens/ColorsScreen.tsx @@ -1,4 +1,4 @@ -import { Text, Center, ScrollView } from '@baca/components' +import { Text, Center, ScrollView } from '@baca/design-system' import { useScreenOptions, useTranslation } from '@baca/hooks' const colorsVariants: NestedKeys[] = [ diff --git a/src/screens/ComponentsScreen.tsx b/src/screens/ComponentsScreen.tsx index 96ee3783..1b10f5c0 100644 --- a/src/screens/ComponentsScreen.tsx +++ b/src/screens/ComponentsScreen.tsx @@ -1,4 +1,4 @@ -import { Icon, Loader, Box, Text, Button, Center, ScrollView } from '@baca/components' +import { Icon, Loader, Box, Text, Button, Center, ScrollView } from '@baca/design-system' import { useCallback, useNotifications, useScreenOptions, useTranslation } from '@baca/hooks' import * as Linking from 'expo-linking' diff --git a/src/screens/DataFromBeScreen_EXAMPLE.tsx b/src/screens/DataFromBeScreen_EXAMPLE.tsx index 0af4d5d8..9f1b1ed9 100644 --- a/src/screens/DataFromBeScreen_EXAMPLE.tsx +++ b/src/screens/DataFromBeScreen_EXAMPLE.tsx @@ -1,4 +1,4 @@ -import { Loader, Center, Text, Box, Spacer } from '@baca/components' +import { Loader, Center, Text, Box, Spacer } from '@baca/design-system' import { useScreenOptions, useTranslation } from '@baca/hooks' import { useGetCity_EXAMPLE } from '@baca/query-hooks' import { TodoItem } from '@baca/types/todos' diff --git a/src/screens/DetailsScreen.tsx b/src/screens/DetailsScreen.tsx index f116c147..fd7dd28d 100644 --- a/src/screens/DetailsScreen.tsx +++ b/src/screens/DetailsScreen.tsx @@ -1,4 +1,4 @@ -import { useBottomSheet, Center, Text, Button, Box } from '@baca/components' +import { useBottomSheet, Center, Text, Button, Box } from '@baca/design-system' import { useScreenOptions, useState, useTranslation } from '@baca/hooks' import { useLocalSearchParams } from 'expo-router' diff --git a/src/screens/ExamplesScreen.tsx b/src/screens/ExamplesScreen.tsx index f4dd91a6..1434b48c 100644 --- a/src/screens/ExamplesScreen.tsx +++ b/src/screens/ExamplesScreen.tsx @@ -1,4 +1,4 @@ -import { Button, ScrollView } from '@baca/components' +import { Button, ScrollView } from '@baca/design-system' import { useCallback, useTranslation, useScreenOptions } from '@baca/hooks' import { useRouter } from 'expo-router' diff --git a/src/screens/HomeScreen.tsx b/src/screens/HomeScreen.tsx index 165c24cd..6ed4e97e 100644 --- a/src/screens/HomeScreen.tsx +++ b/src/screens/HomeScreen.tsx @@ -1,6 +1,6 @@ -import { Button, Center, Text } from '@baca/components' import { darkLogo, lightLogo } from '@baca/constants' import { useColorScheme } from '@baca/contexts' +import { Button, Center, Text } from '@baca/design-system' import { useCallback, useScreenOptions, useTranslation } from '@baca/hooks' import { router } from 'expo-router' import { Image, StyleSheet } from 'react-native' diff --git a/src/screens/LandingScreen.tsx b/src/screens/LandingScreen.tsx index 835655e5..ab343deb 100644 --- a/src/screens/LandingScreen.tsx +++ b/src/screens/LandingScreen.tsx @@ -1,7 +1,7 @@ -import { Button, Center, Text } from '@baca/components' import { LandingHeader } from '@baca/components/LandingHeader' import { darkLogo, lightLogo } from '@baca/constants' import { useColorScheme } from '@baca/contexts' +import { Button, Center, Text } from '@baca/design-system' import { useCallback, useScreenOptions, useTranslation } from '@baca/hooks' import { router } from 'expo-router' import { Image, StyleSheet } from 'react-native' diff --git a/src/screens/NotFoundScreen.tsx b/src/screens/NotFoundScreen.tsx index 5b9415de..488ad025 100644 --- a/src/screens/NotFoundScreen.tsx +++ b/src/screens/NotFoundScreen.tsx @@ -1,4 +1,4 @@ -import { Center, Text } from '@baca/components/atoms' +import { Center, Text } from '@baca/design-system' import { useScreenOptions, useTranslation } from '@baca/hooks' export const NotFoundScreen = (): JSX.Element => { diff --git a/src/screens/SettingsScreen.tsx b/src/screens/SettingsScreen.tsx index 10eead47..f40b3fd1 100644 --- a/src/screens/SettingsScreen.tsx +++ b/src/screens/SettingsScreen.tsx @@ -1,6 +1,7 @@ -import { Version, Spacer, Button, Center, Text, ScrollView } from '@baca/components' +import { Version } from '@baca/components' import { colorSchemesList } from '@baca/constants' import { useColorScheme } from '@baca/contexts' +import { Spacer, Button, Center, Text, ScrollView } from '@baca/design-system' import { useCallback, useScreenOptions, useTranslation } from '@baca/hooks' import { signOut } from '@baca/store/auth' import { noop } from '@baca/utils' diff --git a/src/screens/SignInScreen.tsx b/src/screens/SignInScreen.tsx index e704c4b8..d156352e 100644 --- a/src/screens/SignInScreen.tsx +++ b/src/screens/SignInScreen.tsx @@ -1,16 +1,7 @@ -import { - ControlledField, - KeyboardAwareScrollView, - LanguagePicker, - Spacer, - Version, - Box, - Center, - Button, - Text, -} from '@baca/components' +import { ControlledField, KeyboardAwareScrollView, LanguagePicker, Version } from '@baca/components' import { REGEX, darkLogo, lightLogo } from '@baca/constants' import { useColorScheme } from '@baca/contexts' +import { Box, Button, Center, Spacer, Text } from '@baca/design-system' import { useCallback, useSignInForm, diff --git a/src/screens/SignUpScreen.tsx b/src/screens/SignUpScreen.tsx index e50125e9..ce33878d 100644 --- a/src/screens/SignUpScreen.tsx +++ b/src/screens/SignUpScreen.tsx @@ -1,5 +1,6 @@ -import { Button, Center, Spacer, ControlledField, KeyboardAwareScrollView } from '@baca/components' +import { ControlledField, KeyboardAwareScrollView } from '@baca/components' import { REGEX } from '@baca/constants' +import { Button, Center, Spacer } from '@baca/design-system' import { useScreenOptions, useSignUpForm, useTranslation } from '@baca/hooks' import { useCallback, useEffect } from 'react' diff --git a/src/screens/TestFormScreen.tsx b/src/screens/TestFormScreen.tsx index 624dd0a8..f3e94503 100644 --- a/src/screens/TestFormScreen.tsx +++ b/src/screens/TestFormScreen.tsx @@ -1,4 +1,5 @@ -import { ControlledField, KeyboardAwareScrollView, TextArea, Button, Text } from '@baca/components' +import { ControlledField, KeyboardAwareScrollView, TextArea } from '@baca/components' +import { Button, Text } from '@baca/design-system' import { useMemo, useScreenOptions, useTestForm, useTranslation } from '@baca/hooks' import { Controller } from 'react-hook-form' import { StyleSheet } from 'react-native' diff --git a/src/screens/TypographyScreen.tsx b/src/screens/TypographyScreen.tsx index 0397392b..a680575c 100644 --- a/src/screens/TypographyScreen.tsx +++ b/src/screens/TypographyScreen.tsx @@ -1,5 +1,5 @@ -import { Column, Row, Box, Text } from '@baca/components' import { useColorScheme } from '@baca/contexts' +import { Column, Row, Box, Text } from '@baca/design-system' import { useTranslation } from '@baca/hooks' import { ScrollView, Switch, Platform } from 'react-native' diff --git a/templates/component_template.tsx b/templates/component_template.tsx index 46024e58..19c332ee 100644 --- a/templates/component_template.tsx +++ b/templates/component_template.tsx @@ -1,4 +1,4 @@ -import { Center, Text } from '@baca/components/atoms' +import { Center, Text } from '@baca/design-system' import { useTranslation } from '@baca/hooks' import { FC } from 'react' diff --git a/templates/screen_template.tsx b/templates/screen_template.tsx index 23b961ab..0e6ad613 100644 --- a/templates/screen_template.tsx +++ b/templates/screen_template.tsx @@ -1,4 +1,4 @@ -import { Button, Center, Text } from '@baca/components/atoms' +import { Button, Center, Text } from '@baca/design-system' import { useCallback, useTranslation } from '@baca/hooks' // @ts-expect-error: it's a template and will be removed From c2bb259318c218fa05274ced7e3e8f2bdaf949be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Baumruck?= Date: Wed, 6 Mar 2024 10:21:11 +0100 Subject: [PATCH 3/4] move theme config files to design system folder --- scripts/generate_theme.js | 2 +- src/constants/index.ts | 2 -- src/design-system/components/Button/Button.test.tsx | 2 +- src/design-system/components/Button/Button.tsx | 3 +-- src/design-system/components/Text/Text.test.tsx | 2 +- src/design-system/components/Text/Text.tsx | 2 +- src/design-system/components/types.ts | 2 +- src/{constants => design-system/config}/breakpoints.ts | 0 src/{constants => design-system/config}/buttonVariants.ts | 0 src/{constants => design-system/config}/colors.ts | 0 src/design-system/config/index.ts | 5 +++++ src/{constants => design-system/config}/textVariants.ts | 0 src/{constants => design-system/config}/theme.ts | 0 src/design-system/index.ts | 1 + src/design-system/utils/generateSize.ts | 2 +- src/hooks/navigation/useNavigationTheme.ts | 2 +- src/hooks/navigation/useWeb.ts | 2 +- src/hooks/useTheme.ts | 2 +- src/navigation/tabNavigator/config.ts | 2 +- src/types/theme.d.ts | 3 +-- src/utils/getFontWeight.ts | 2 +- 21 files changed, 19 insertions(+), 17 deletions(-) rename src/{constants => design-system/config}/breakpoints.ts (100%) rename src/{constants => design-system/config}/buttonVariants.ts (100%) rename src/{constants => design-system/config}/colors.ts (100%) create mode 100644 src/design-system/config/index.ts rename src/{constants => design-system/config}/textVariants.ts (100%) rename src/{constants => design-system/config}/theme.ts (100%) diff --git a/scripts/generate_theme.js b/scripts/generate_theme.js index 770bbb43..a0162168 100644 --- a/scripts/generate_theme.js +++ b/scripts/generate_theme.js @@ -100,7 +100,7 @@ const theme = { const objectString = `export const themeColors = ${JSON.stringify(theme, null, 2)}` // Specify the file path -const filePath = './src/constants/colors.ts' +const filePath = './src/design-system/config/colors.ts' fs.writeFileSync(filePath, objectString, 'utf-8') diff --git a/src/constants/index.ts b/src/constants/index.ts index cce21c52..fcbb97bd 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -1,10 +1,8 @@ export * from './asyncStorageKeys' -export * from './breakpoints' export * from './colorSchemes' export * from './env' export * from './environments' export * from './images' export * from './navigation' export * from './regex' -export * from './theme' export * from './time' diff --git a/src/design-system/components/Button/Button.test.tsx b/src/design-system/components/Button/Button.test.tsx index b46ca827..2ea0c888 100644 --- a/src/design-system/components/Button/Button.test.tsx +++ b/src/design-system/components/Button/Button.test.tsx @@ -1,4 +1,4 @@ -import { theme } from '@baca/constants' +import { theme } from '@baca/design-system' import { cleanup, render, fireEvent, act } from '@baca/utils/testUtils' import { StyleSheet } from 'react-native' diff --git a/src/design-system/components/Button/Button.tsx b/src/design-system/components/Button/Button.tsx index ded53a5c..7740c9f0 100644 --- a/src/design-system/components/Button/Button.tsx +++ b/src/design-system/components/Button/Button.tsx @@ -1,5 +1,3 @@ -import { theme } from '@baca/constants' -import { buttonVariants } from '@baca/constants/buttonVariants' import { useColorScheme } from '@baca/contexts' import { getColorValue } from '@baca/utils' import { @@ -22,6 +20,7 @@ import { View, } from 'react-native' +import { buttonVariants, theme } from '../../config' import { generateStyledComponent } from '../../utils' import { Box } from '../Box' import { Loader } from '../Loader' diff --git a/src/design-system/components/Text/Text.test.tsx b/src/design-system/components/Text/Text.test.tsx index d5c260cb..3fe1dbd9 100644 --- a/src/design-system/components/Text/Text.test.tsx +++ b/src/design-system/components/Text/Text.test.tsx @@ -1,4 +1,4 @@ -import { theme } from '@baca/constants' +import { theme } from '@baca/design-system' import { cleanup, render } from '@baca/utils/testUtils' import { Text } from './Text' diff --git a/src/design-system/components/Text/Text.tsx b/src/design-system/components/Text/Text.tsx index eab0a4ee..d79afa76 100644 --- a/src/design-system/components/Text/Text.tsx +++ b/src/design-system/components/Text/Text.tsx @@ -1,9 +1,9 @@ -import { textVariants } from '@baca/constants/textVariants' import { useTheme } from '@baca/hooks' import { getColorValue, convertEmToNumber } from '@baca/utils' import { useMemo, memo, forwardRef, PropsWithoutRef, RefAttributes } from 'react' import { TextProps as BaseTextProps, Text as BaseText, TextStyle } from 'react-native' +import { textVariants } from '../../config' import { generateStyledComponent, generateStyleSheet } from '../../utils' import { StyledProps } from '../types' diff --git a/src/design-system/components/types.ts b/src/design-system/components/types.ts index be3976cf..566e5c2c 100644 --- a/src/design-system/components/types.ts +++ b/src/design-system/components/types.ts @@ -1,4 +1,4 @@ -import { _appTheme } from '@baca/constants' +import { _appTheme } from '@baca/design-system' import { IconNames } from '@baca/types/icon' import { DimensionValue, TextStyle, ViewProps, ViewStyle, TextInputProps } from 'react-native' diff --git a/src/constants/breakpoints.ts b/src/design-system/config/breakpoints.ts similarity index 100% rename from src/constants/breakpoints.ts rename to src/design-system/config/breakpoints.ts diff --git a/src/constants/buttonVariants.ts b/src/design-system/config/buttonVariants.ts similarity index 100% rename from src/constants/buttonVariants.ts rename to src/design-system/config/buttonVariants.ts diff --git a/src/constants/colors.ts b/src/design-system/config/colors.ts similarity index 100% rename from src/constants/colors.ts rename to src/design-system/config/colors.ts diff --git a/src/design-system/config/index.ts b/src/design-system/config/index.ts new file mode 100644 index 00000000..d42fdf4e --- /dev/null +++ b/src/design-system/config/index.ts @@ -0,0 +1,5 @@ +export * from './breakpoints' +export * from './buttonVariants' +export * from './colors' +export * from './textVariants' +export * from './theme' diff --git a/src/constants/textVariants.ts b/src/design-system/config/textVariants.ts similarity index 100% rename from src/constants/textVariants.ts rename to src/design-system/config/textVariants.ts diff --git a/src/constants/theme.ts b/src/design-system/config/theme.ts similarity index 100% rename from src/constants/theme.ts rename to src/design-system/config/theme.ts diff --git a/src/design-system/index.ts b/src/design-system/index.ts index c7cbf804..23fc4f22 100644 --- a/src/design-system/index.ts +++ b/src/design-system/index.ts @@ -1,3 +1,4 @@ export * from './bottomSheets' export * from './components' +export * from './config' export * from './utils' diff --git a/src/design-system/utils/generateSize.ts b/src/design-system/utils/generateSize.ts index 5424b0b8..8f4c32d8 100644 --- a/src/design-system/utils/generateSize.ts +++ b/src/design-system/utils/generateSize.ts @@ -1,5 +1,5 @@ -import { size, scale } from '@baca/constants' import { SizingValue } from '@baca/design-system' +import { scale, size } from '@baca/design-system/config' import { ViewStyle, DimensionValue, Animated } from 'react-native' const isDimensionValue = (value?: DimensionValue) => { diff --git a/src/hooks/navigation/useNavigationTheme.ts b/src/hooks/navigation/useNavigationTheme.ts index 02dd27c9..62b55994 100644 --- a/src/hooks/navigation/useNavigationTheme.ts +++ b/src/hooks/navigation/useNavigationTheme.ts @@ -1,5 +1,5 @@ -import { darkNavigationTheme, lightNavigationTheme } from '@baca/constants' import { useColorScheme } from '@baca/contexts' +import { darkNavigationTheme, lightNavigationTheme } from '@baca/design-system/config' import { useMemo } from 'react' import { useTheme } from '../useTheme' diff --git a/src/hooks/navigation/useWeb.ts b/src/hooks/navigation/useWeb.ts index 876680ba..2581fdfb 100644 --- a/src/hooks/navigation/useWeb.ts +++ b/src/hooks/navigation/useWeb.ts @@ -1,4 +1,4 @@ -import { breakpoints } from '@baca/constants' +import { breakpoints } from '@baca/design-system/config' import { useState, useEffect } from 'react' import { Dimensions } from 'react-native' diff --git a/src/hooks/useTheme.ts b/src/hooks/useTheme.ts index 9bcdd0e5..1cfb2f98 100644 --- a/src/hooks/useTheme.ts +++ b/src/hooks/useTheme.ts @@ -1,5 +1,5 @@ -import { theme } from '@baca/constants' import { useColorScheme } from '@baca/contexts' +import { theme } from '@baca/design-system/config' export const useTheme = (): AppTheme => { const { colorScheme } = useColorScheme() diff --git a/src/navigation/tabNavigator/config.ts b/src/navigation/tabNavigator/config.ts index 8ffe7da3..a6bb8300 100644 --- a/src/navigation/tabNavigator/config.ts +++ b/src/navigation/tabNavigator/config.ts @@ -1,4 +1,4 @@ -import { palette } from '@baca/constants' +import { palette } from '@baca/design-system' import { IconNames } from '@baca/types/icon' import { hex2rgba } from '@baca/utils' diff --git a/src/types/theme.d.ts b/src/types/theme.d.ts index b2ff63b1..8aa90a37 100644 --- a/src/types/theme.d.ts +++ b/src/types/theme.d.ts @@ -1,5 +1,4 @@ -import { theme } from '@baca/constants/theme' -import { themeColors } from '@baca/constants/colors' +import { theme, themeColors } from '@baca/design-system' declare global { // THEME diff --git a/src/utils/getFontWeight.ts b/src/utils/getFontWeight.ts index 607d1206..34ec71a5 100644 --- a/src/utils/getFontWeight.ts +++ b/src/utils/getFontWeight.ts @@ -1,4 +1,4 @@ -import { _appTheme } from '@baca/constants' +import { _appTheme } from '@baca/design-system' import { TextStyle } from 'react-native' type FontWeights = NonNullable From 44d1d8480136469a6da17d18cfc5fc7da969b9db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Baumruck?= Date: Wed, 6 Mar 2024 14:36:41 +0100 Subject: [PATCH 4/4] delete nx cache files --- .nx/cache/file-map.json | 1730 -- .nx/cache/lockfile.hash | 1 - .nx/cache/parsed-lock-file.json | 39279 ------------------------------ .nx/cache/project-graph.json | 35728 --------------------------- 4 files changed, 76738 deletions(-) delete mode 100644 .nx/cache/file-map.json delete mode 100644 .nx/cache/lockfile.hash delete mode 100644 .nx/cache/parsed-lock-file.json delete mode 100644 .nx/cache/project-graph.json diff --git a/.nx/cache/file-map.json b/.nx/cache/file-map.json deleted file mode 100644 index 44764e6e..00000000 --- a/.nx/cache/file-map.json +++ /dev/null @@ -1,1730 +0,0 @@ -{ - "version": "6.0", - "nxVersion": "18.0.5", - "deps": { - "@bacons/react-views": "^1.1.3", - "@expo/config-plugins": "~7.8.0", - "@expo/prebuild-config": "~6.7.0", - "@expo/vector-icons": "^14.0.0", - "@gorhom/bottom-sheet": "^4.6.0", - "@motify/interactions": "^0.17.1", - "@motify/skeleton": "^0.18.0", - "@react-native-async-storage/async-storage": "1.21.0", - "@react-native-community/netinfo": "11.1.0", - "@react-navigation/bottom-tabs": "^6.5.11", - "@react-navigation/native": "^6.1.9", - "@react-navigation/native-stack": "^6.9.17", - "@react-navigation/stack": "^6.3.20", - "@tanstack/react-query": "^4.29.19", - "axios": "^0.27.2", - "expo": "^50.0.3", - "expo-app-loading": "^2.1.1", - "expo-application": "~5.8.3", - "expo-asset": "~9.0.2", - "expo-clipboard": "~5.0.1", - "expo-constants": "~15.4.5", - "expo-crypto": "~12.8.0", - "expo-dev-client": "~3.3.7", - "expo-device": "~5.9.3", - "expo-font": "~11.10.2", - "expo-haptics": "~12.8.1", - "expo-linear-gradient": "~12.7.1", - "expo-linking": "~6.2.2", - "expo-local-authentication": "~13.8.0", - "expo-localization": "~14.8.3", - "expo-network": "~5.8.0", - "expo-notifications": "~0.27.5", - "expo-router": "~3.4.6", - "expo-screen-orientation": "~6.4.1", - "expo-secure-store": "~12.8.1", - "expo-splash-screen": "~0.26.4", - "expo-status-bar": "~1.11.1", - "expo-system-ui": "~2.9.3", - "expo-updates": "~0.24.8", - "expo-web-browser": "~12.8.2", - "i18next": "^23.7.20", - "jotai": "^2.4.3", - "moti": "^0.25.3", - "react": "18.2.0", - "react-dom": "18.2.0", - "react-hook-form": "^7.49.3", - "react-i18next": "^14.0.1", - "react-native": "0.73.2", - "react-native-gesture-handler": "~2.14.0", - "react-native-keyboard-aware-scroll-view": "^0.9.5", - "react-native-notificated": "^0.0.1-beta.2", - "react-native-pager-view": "6.2.3", - "react-native-reanimated": "~3.6.2", - "react-native-safe-area-context": "4.8.2", - "react-native-screens": "~3.29.0", - "react-native-svg": "14.1.0", - "react-native-web": "~0.19.6", - "reactotron-react-native": "^5.0.3", - "sass": "^1.70.0", - "setimmediate": "^1.0.5", - "use-debounce": "^9.0.4", - "@babel/core": "^7.20.0", - "@babel/plugin-transform-export-namespace-from": "^7.23.4", - "@babel/preset-react": "^7.23.3", - "@expo/config": "~8.5.0", - "@expo/webpack-config": "~19.0.1", - "@testing-library/jest-native": "^5.4.2", - "@testing-library/react-native": "^12.4.3", - "@types/jest": "^29.5.3", - "@types/react": "~18.2.45", - "@types/react-native": "^0.72.2", - "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^6.19.1", - "@typescript-eslint/parser": "^6.19.1", - "@welldone-software/why-did-you-render": "^7.0.1", - "babel-loader": "^9.1.3", - "babel-plugin-module-resolver": "^5.0.0", - "babel-preset-expo": "^10.0.0", - "cross-env": "^7.0.3", - "dotenv": "^16.4.1", - "eslint": "^8.56.0", - "eslint-config-prettier": "^8.8.0", - "eslint-config-universe": "^11.2.0", - "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-react": "^7.32.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-react-native": "^4.0.0", - "eslint-plugin-react-native-globals": "^0.1.2", - "husky": "^8.0.3", - "jest": "^29.6.1", - "jest-expo": "~50.0.1", - "lint-staged": "^13.2.3", - "miragejs": "^0.1.48", - "patch-package": "^7.0.1", - "prettier": "^2.8.8", - "pretty-quick": "^4.0.0", - "prompt-sync": "^4.2.0", - "react-test-renderer": "^18.2.0", - "readline": "^1.3.0", - "select-prompt": "^0.3.2", - "typescript": "^5.3.0", - "xmlhttprequest": "^1.8.0" - }, - "pathMappings": { - "@baca/*": ["src/*"], - "@baca/assets": ["assets"] - }, - "nxJsonPlugins": [], - "fileMap": { - "projectFileMap": {}, - "nonProjectFiles": [ - { - "file": ".env", - "hash": "8941937231948495185" - }, - { - "file": ".env.production", - "hash": "15051416829832645510" - }, - { - "file": ".env.qa", - "hash": "8941937231948495185" - }, - { - "file": ".env.staging", - "hash": "16943473544490898149" - }, - { - "file": ".eslintignore", - "hash": "6362453565095005619" - }, - { - "file": ".eslintrc.js", - "hash": "15515311826055747163" - }, - { - "file": ".expo-shared/assets.json", - "hash": "14366155298413333343" - }, - { - "file": ".github/ISSUE_TEMPLATE/BUG-REPORT.yml", - "hash": "15017482256175696537" - }, - { - "file": ".github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml", - "hash": "12548442114824159194" - }, - { - "file": ".github/ISSUE_TEMPLATE/config.yml", - "hash": "17858606678031151155" - }, - { - "file": ".github/pull_request_template.md", - "hash": "5459460039162421041" - }, - { - "file": ".github/workflows/nodejs.yml", - "hash": "7014902562553630567" - }, - { - "file": ".gitignore", - "hash": "16118499907584407224" - }, - { - "file": ".husky/pre-commit", - "hash": "2583450222814972446" - }, - { - "file": ".prettierrc.json", - "hash": "603439696811686289" - }, - { - "file": ".vscode/settings.json", - "hash": "8912310731745577745" - }, - { - "file": "App.tsx", - "hash": "3432125951128798835" - }, - { - "file": "CONTRIBUTING.md", - "hash": "1133974508887394371" - }, - { - "file": "README.md", - "hash": "2010667023079277963" - }, - { - "file": "ReactotronConfig.ts", - "hash": "5543399854263958242" - }, - { - "file": "__mocks__/moti.ts", - "hash": "26788166116207504" - }, - { - "file": "app.config.ts", - "hash": "7509822783014014241" - }, - { - "file": "app.json", - "hash": "15782984755317767525" - }, - { - "file": "app/(app)/(authorized)/(tabs)/_layout.tsx", - "hash": "16775937341385365892" - }, - { - "file": "app/(app)/(authorized)/(tabs)/example/_layout.tsx", - "hash": "12039244030940678028" - }, - { - "file": "app/(app)/(authorized)/(tabs)/example/colors.tsx", - "hash": "9222055008911336953" - }, - { - "file": "app/(app)/(authorized)/(tabs)/example/components.tsx", - "hash": "517220493687429902" - }, - { - "file": "app/(app)/(authorized)/(tabs)/example/data-from-be.tsx", - "hash": "15027638579828332511" - }, - { - "file": "app/(app)/(authorized)/(tabs)/example/index.tsx", - "hash": "5962902535356252777" - }, - { - "file": "app/(app)/(authorized)/(tabs)/example/test-form.tsx", - "hash": "8243729862376180640" - }, - { - "file": "app/(app)/(authorized)/(tabs)/example/typography.tsx", - "hash": "8936806035251389752" - }, - { - "file": "app/(app)/(authorized)/(tabs)/home/_layout.tsx", - "hash": "12039244030940678028" - }, - { - "file": "app/(app)/(authorized)/(tabs)/home/details.tsx", - "hash": "4483067426556258949" - }, - { - "file": "app/(app)/(authorized)/(tabs)/home/index.tsx", - "hash": "10151636406867198793" - }, - { - "file": "app/(app)/(authorized)/(tabs)/settings/_layout.tsx", - "hash": "12039244030940678028" - }, - { - "file": "app/(app)/(authorized)/(tabs)/settings/index.tsx", - "hash": "14078863721716229184" - }, - { - "file": "app/(app)/(authorized)/_layout.tsx", - "hash": "13495600574558907509" - }, - { - "file": "app/(app)/(authorized)/big-form.tsx", - "hash": "8243729862376180640" - }, - { - "file": "app/(app)/(common)/blog.tsx", - "hash": "2111459794174140336" - }, - { - "file": "app/(app)/(modals)/_layout.tsx", - "hash": "9497547590693834669" - }, - { - "file": "app/(app)/(modals)/application-info.tsx", - "hash": "10808360863473583457" - }, - { - "file": "app/(app)/(not-authorized)/_layout.tsx", - "hash": "13176451877109339936" - }, - { - "file": "app/(app)/(not-authorized)/sign-in.tsx", - "hash": "5112874984883597760" - }, - { - "file": "app/(app)/(not-authorized)/sign-up.tsx", - "hash": "8158307425873478482" - }, - { - "file": "app/(app)/_layout.tsx", - "hash": "17929842024264486116" - }, - { - "file": "app/+html.tsx", - "hash": "17244293808408072149" - }, - { - "file": "app/[...unmatched].tsx", - "hash": "12233292659150683715" - }, - { - "file": "app/_layout.tsx", - "hash": "10639769468827773526" - }, - { - "file": "app/index.tsx", - "hash": "13198455955292342476" - }, - { - "file": "assets/figma/variables.json", - "hash": "10207225446290554705" - }, - { - "file": "assets/fonts/Lato_Black.ttf", - "hash": "7554918420529320063" - }, - { - "file": "assets/fonts/Lato_Bold.ttf", - "hash": "3297032094754642625" - }, - { - "file": "assets/fonts/Lato_Light.ttf", - "hash": "11662692782042457121" - }, - { - "file": "assets/fonts/Lato_Regular.ttf", - "hash": "3318709706417761337" - }, - { - "file": "assets/fonts/Lato_Thin.ttf", - "hash": "10106614687229089345" - }, - { - "file": "assets/icomoon/icomoon.ttf", - "hash": "607006765776686889" - }, - { - "file": "assets/icomoon/selection.json", - "hash": "10726602406530237231" - }, - { - "file": "assets/icons/android/adaptive-icon-production.png", - "hash": "16328803799443571359" - }, - { - "file": "assets/icons/android/adaptive-icon-qa.png", - "hash": "16328803799443571359" - }, - { - "file": "assets/icons/android/adaptive-icon-staging.png", - "hash": "16328803799443571359" - }, - { - "file": "assets/icons/ios/icon-production.png", - "hash": "3705425919829894958" - }, - { - "file": "assets/icons/ios/icon-qa.png", - "hash": "3705425919829894958" - }, - { - "file": "assets/icons/ios/icon-staging.png", - "hash": "3705425919829894958" - }, - { - "file": "assets/icons/web/favicon-production.png", - "hash": "10556792184362654649" - }, - { - "file": "assets/icons/web/favicon-qa.png", - "hash": "10556792184362654649" - }, - { - "file": "assets/icons/web/favicon-staging.png", - "hash": "10556792184362654649" - }, - { - "file": "assets/languages.json", - "hash": "12362774187921168980" - }, - { - "file": "assets/logo-dark.png", - "hash": "13514093848832008410" - }, - { - "file": "assets/logo-light.png", - "hash": "15112035124529429355" - }, - { - "file": "assets/logo/logo-full-dark.png", - "hash": "15578919071920371328" - }, - { - "file": "assets/logo/logo-full-light.png", - "hash": "14451461565546478129" - }, - { - "file": "assets/logo/logo-sygnet-dark.png", - "hash": "9290399853222058284" - }, - { - "file": "assets/logo/logo-sygnet-light.png", - "hash": "9798056798915001847" - }, - { - "file": "assets/splash.png", - "hash": "6261865686403574905" - }, - { - "file": "assets/tutorials/demo-dark.png", - "hash": "11372818248951908104" - }, - { - "file": "assets/tutorials/demo-light.png", - "hash": "9357227069134945412" - }, - { - "file": "assets/tutorials/demo-web-dark.png", - "hash": "5916620377625467470" - }, - { - "file": "assets/tutorials/demo-web-light.png", - "hash": "2227645904507164850" - }, - { - "file": "assets/tutorials/demo.mp4", - "hash": "10464491032565430919" - }, - { - "file": "babel.config.js", - "hash": "17665124311381491054" - }, - { - "file": "declaration.d.ts", - "hash": "8020384496060713473" - }, - { - "file": "docs/.gitignore", - "hash": "16129839563478165234" - }, - { - "file": "docs/README.md", - "hash": "1980246878577320622" - }, - { - "file": "docs/babel.config.js", - "hash": "12603636193646100930" - }, - { - "file": "docs/docs/bootstrap/BOOTSTRAP_INTRO.md", - "hash": "4484937867077512180" - }, - { - "file": "docs/docs/bootstrap/BOOTSTRAP_TESTING.mdx", - "hash": "1350098321983269063" - }, - { - "file": "docs/docs/bootstrap/_category_.json", - "hash": "13240284551415435057" - }, - { - "file": "docs/docs/deploy/DEPLOY_ANDROID.md", - "hash": "2986211801325424892" - }, - { - "file": "docs/docs/deploy/DEPLOY_BOTH.md", - "hash": "13067729267896144606" - }, - { - "file": "docs/docs/deploy/DEPLOY_EXPO_GO.md", - "hash": "10583554073010044387" - }, - { - "file": "docs/docs/deploy/DEPLOY_INTRO.md", - "hash": "11886934227619605334" - }, - { - "file": "docs/docs/deploy/DEPLOY_IOS.md", - "hash": "15340626339076892401" - }, - { - "file": "docs/docs/deploy/DEPLOY_UPDATE.md", - "hash": "5956395428756511226" - }, - { - "file": "docs/docs/deploy/_category_.json", - "hash": "17751302214829613621" - }, - { - "file": "docs/docs/tutorials/DOPPLER_CONFIG.mdx", - "hash": "13965575952127238790" - }, - { - "file": "docs/docs/tutorials/ICONS.md", - "hash": "3237544788124598942" - }, - { - "file": "docs/docs/tutorials/JOTAI.md", - "hash": "15447829528394957174" - }, - { - "file": "docs/docs/tutorials/NOTIFICATIONS_SETUP.md", - "hash": "152614396336684863" - }, - { - "file": "docs/docs/tutorials/_category_.json", - "hash": "7760577911856148779" - }, - { - "file": "docs/docusaurus.config.ts", - "hash": "94846999672700562" - }, - { - "file": "docs/package.json", - "hash": "5396909740897104622" - }, - { - "file": "docs/sidebars.ts", - "hash": "13566122366347499334" - }, - { - "file": "docs/src/components/Details.tsx", - "hash": "4972155526725104325" - }, - { - "file": "docs/src/components/HomepageFeatures/index.tsx", - "hash": "150496967724314727" - }, - { - "file": "docs/src/components/HomepageFeatures/styles.module.css", - "hash": "14149773169115351739" - }, - { - "file": "docs/src/css/custom.css", - "hash": "9203620918389163801" - }, - { - "file": "docs/src/pages/index.module.css", - "hash": "2272732276868299116" - }, - { - "file": "docs/src/pages/index.tsx", - "hash": "1201541901040548810" - }, - { - "file": "docs/src/pages/markdown-page.md", - "hash": "2637912770613796076" - }, - { - "file": "docs/static/.nojekyll", - "hash": "3244421341483603138" - }, - { - "file": "docs/static/img/android_accept_invite.png", - "hash": "15006715016788752032" - }, - { - "file": "docs/static/img/android_account.png", - "hash": "1792977879323533070" - }, - { - "file": "docs/static/img/android_builds.png", - "hash": "13343318192199550595" - }, - { - "file": "docs/static/img/android_choose_testers.png", - "hash": "13787676269497787839" - }, - { - "file": "docs/static/img/android_confirm_rollout.png", - "hash": "2014629161281800031" - }, - { - "file": "docs/static/img/android_copy_link.png", - "hash": "18012515418866719694" - }, - { - "file": "docs/static/img/android_create_button.png", - "hash": "15827610770391758952" - }, - { - "file": "docs/static/img/android_create_form.png", - "hash": "16163694221239684758" - }, - { - "file": "docs/static/img/android_download.png", - "hash": "15290388595532032567" - }, - { - "file": "docs/static/img/android_install_app.png", - "hash": "18307443302547338546" - }, - { - "file": "docs/static/img/android_new_release.png", - "hash": "7146021066903146323" - }, - { - "file": "docs/static/img/android_pick_build.png", - "hash": "4428540443733486555" - }, - { - "file": "docs/static/img/android_review_release.png", - "hash": "15866338507015279430" - }, - { - "file": "docs/static/img/android_start_rollout.png", - "hash": "5853161308600097681" - }, - { - "file": "docs/static/img/android_testers_tab.png", - "hash": "13680480268630284692" - }, - { - "file": "docs/static/img/android_upload_binary.png", - "hash": "16422790610867316287" - }, - { - "file": "docs/static/img/androind_internal_testing.png", - "hash": "15376765401758944890" - }, - { - "file": "docs/static/img/bootstrap_eas_id.png", - "hash": "4362398687102136271" - }, - { - "file": "docs/static/img/bootstrap_owner.png", - "hash": "1674509474584214180" - }, - { - "file": "docs/static/img/bootstrap_slug.png", - "hash": "11176851495548021733" - }, - { - "file": "docs/static/img/check-last-release-date.png", - "hash": "7915502638987240509" - }, - { - "file": "docs/static/img/deploy_add_button.png", - "hash": "17770846762481172581" - }, - { - "file": "docs/static/img/deploy_apps.png", - "hash": "567558839155423744" - }, - { - "file": "docs/static/img/deploy_new_app.png", - "hash": "10854539621982586537" - }, - { - "file": "docs/static/img/deploy_new_form.png", - "hash": "11973629579023909705" - }, - { - "file": "docs/static/img/docusaurus-social-card.jpg", - "hash": "11663222046504176426" - }, - { - "file": "docs/static/img/docusaurus.png", - "hash": "11805897491343913808" - }, - { - "file": "docs/static/img/doppler_access_confirm.png", - "hash": "7385558227572301296" - }, - { - "file": "docs/static/img/doppler_access_copy.png", - "hash": "8455686693359253463" - }, - { - "file": "docs/static/img/doppler_access_generate.png", - "hash": "11308716166852131036" - }, - { - "file": "docs/static/img/doppler_access_name.png", - "hash": "4373948471998351844" - }, - { - "file": "docs/static/img/doppler_access_tab.png", - "hash": "14600252940533528347" - }, - { - "file": "docs/static/img/doppler_create_workspace.png", - "hash": "10871064069389164357" - }, - { - "file": "docs/static/img/doppler_envirnoments.png", - "hash": "7008817338073770528" - }, - { - "file": "docs/static/img/doppler_open_dropdown.png", - "hash": "10890199977916883965" - }, - { - "file": "docs/static/img/doppler_project_button.png", - "hash": "17770548224784006611" - }, - { - "file": "docs/static/img/doppler_project_confirm.jpg", - "hash": "7457495518769740177" - }, - { - "file": "docs/static/img/doppler_project_name.png", - "hash": "11113195125055716063" - }, - { - "file": "docs/static/img/doppler_project_select.png", - "hash": "7412289783462138044" - }, - { - "file": "docs/static/img/doppler_secret_add.png", - "hash": "4959334712072025888" - }, - { - "file": "docs/static/img/doppler_secret_confirm.png", - "hash": "7355368474016303434" - }, - { - "file": "docs/static/img/doppler_secret_list.png", - "hash": "14145228324317888126" - }, - { - "file": "docs/static/img/doppler_secret_more.png", - "hash": "6688005562919132833" - }, - { - "file": "docs/static/img/doppler_secrets_save.png", - "hash": "9916111659479849719" - }, - { - "file": "docs/static/img/doppler_workspace_button.png", - "hash": "16753907838694160833" - }, - { - "file": "docs/static/img/doppler_workspace_name.jpg", - "hash": "16909953108456155117" - }, - { - "file": "docs/static/img/expo_all.png", - "hash": "16933781359282221891" - }, - { - "file": "docs/static/img/expo_create.png", - "hash": "9477563108672055439" - }, - { - "file": "docs/static/img/expo_new.png", - "hash": "5138242439308194062" - }, - { - "file": "docs/static/img/expo_select.jpg", - "hash": "7874643677978894073" - }, - { - "file": "docs/static/img/favicon.ico", - "hash": "12887840092079912286" - }, - { - "file": "docs/static/img/github-repository-template.png", - "hash": "8564193000062028816" - }, - { - "file": "docs/static/img/logo-dark.png", - "hash": "13514093848832008410" - }, - { - "file": "docs/static/img/logo-light.png", - "hash": "15112035124529429355" - }, - { - "file": "docs/static/img/logo.svg", - "hash": "15756779054106865036" - }, - { - "file": "docs/static/img/undraw_docusaurus_mountain.svg", - "hash": "14081778507541877421" - }, - { - "file": "docs/static/img/undraw_docusaurus_react.svg", - "hash": "17162343818337932230" - }, - { - "file": "docs/static/img/undraw_docusaurus_tree.svg", - "hash": "12684630426846910715" - }, - { - "file": "docs/tsconfig.json", - "hash": "6554115139338757959" - }, - { - "file": "docs/yarn.lock", - "hash": "1344615037763403702" - }, - { - "file": "eas.json", - "hash": "12069267315941841789" - }, - { - "file": "jest.config.json", - "hash": "15973312349008245544" - }, - { - "file": "jest.setup.js", - "hash": "10976856620478355139" - }, - { - "file": "package.json", - "hash": "16184325745217966966" - }, - { - "file": "patches/react-native-keyboard-aware-scroll-view+0.9.5.patch", - "hash": "17037331704880684500" - }, - { - "file": "scripts/README.md", - "hash": "1676246788836216293" - }, - { - "file": "scripts/bootstrap.js", - "hash": "8658370276024427710" - }, - { - "file": "scripts/contents/content.js", - "hash": "2461807724915314375" - }, - { - "file": "scripts/create_new_component.js", - "hash": "9183614266748780974" - }, - { - "file": "scripts/create_new_screen.js", - "hash": "7677799887541583668" - }, - { - "file": "scripts/generate_dotenv.sh", - "hash": "11294477836839082733" - }, - { - "file": "scripts/generate_icon_types.js", - "hash": "654432155340022283" - }, - { - "file": "scripts/generate_theme.js", - "hash": "8997467211765449347" - }, - { - "file": "scripts/upload_env.sh", - "hash": "5059767885715405099" - }, - { - "file": "scripts/utils.js", - "hash": "1598072878137162150" - }, - { - "file": "src/components/AppLoading.tsx", - "hash": "16957027588722365148" - }, - { - "file": "src/components/COMPONENTS.md", - "hash": "6011268020999452912" - }, - { - "file": "src/components/Header.tsx", - "hash": "9449303751552189110" - }, - { - "file": "src/components/KeyboardAwareScrollView.tsx", - "hash": "10641172719546107373" - }, - { - "file": "src/components/LandingHeader.tsx", - "hash": "15930464234146003677" - }, - { - "file": "src/components/LanguagePicker.tsx", - "hash": "1005226961279146695" - }, - { - "file": "src/components/Modal.tsx", - "hash": "4809490722064940886" - }, - { - "file": "src/components/README.md", - "hash": "5503919720339567747" - }, - { - "file": "src/components/StatusBar.tsx", - "hash": "4122253449852050734" - }, - { - "file": "src/components/Version.tsx", - "hash": "5818484172636431138" - }, - { - "file": "src/components/atoms/Absolute.tsx", - "hash": "15082349672358232284" - }, - { - "file": "src/components/atoms/Box.tsx", - "hash": "2209749632546129938" - }, - { - "file": "src/components/atoms/BricksLoader.tsx", - "hash": "12716640090634482544" - }, - { - "file": "src/components/atoms/BubblesLoader.tsx", - "hash": "9496402640470220190" - }, - { - "file": "src/components/atoms/Button/Button.test.tsx", - "hash": "1754326576086755288" - }, - { - "file": "src/components/atoms/Button/Button.tsx", - "hash": "15406773606074306271" - }, - { - "file": "src/components/atoms/Button/__snapshots__/Button.test.tsx.snap", - "hash": "13036643887006940581" - }, - { - "file": "src/components/atoms/Button/index.ts", - "hash": "11936205126108115086" - }, - { - "file": "src/components/atoms/Center.tsx", - "hash": "3682428934238380040" - }, - { - "file": "src/components/atoms/Checkbox.tsx", - "hash": "9862373001395780173" - }, - { - "file": "src/components/atoms/CircleLoader.tsx", - "hash": "5121887556815852972" - }, - { - "file": "src/components/atoms/Column.tsx", - "hash": "18281641675047479893" - }, - { - "file": "src/components/atoms/DiskLoader.tsx", - "hash": "15004111668246313188" - }, - { - "file": "src/components/atoms/FormErrorMessage.tsx", - "hash": "8166068283668867839" - }, - { - "file": "src/components/atoms/FormLabel.tsx", - "hash": "15265558975048493660" - }, - { - "file": "src/components/atoms/GradientBox.tsx", - "hash": "16645400007287825470" - }, - { - "file": "src/components/atoms/Icon.tsx", - "hash": "726707270198572327" - }, - { - "file": "src/components/atoms/Input.tsx", - "hash": "6579095480279518141" - }, - { - "file": "src/components/atoms/Loader.tsx", - "hash": "4165066725013499724" - }, - { - "file": "src/components/atoms/Row.tsx", - "hash": "4797531319416598820" - }, - { - "file": "src/components/atoms/ScrollView.tsx", - "hash": "16842807677653704023" - }, - { - "file": "src/components/atoms/Select.tsx", - "hash": "14864352869405059625" - }, - { - "file": "src/components/atoms/Spacer.tsx", - "hash": "2958601898866063681" - }, - { - "file": "src/components/atoms/Text/Text.test.tsx", - "hash": "4070838192421154686" - }, - { - "file": "src/components/atoms/Text/Text.tsx", - "hash": "8239194005027975136" - }, - { - "file": "src/components/atoms/Text/index.ts", - "hash": "13696411482562354027" - }, - { - "file": "src/components/atoms/Touchables/Pressable.tsx", - "hash": "4745640857051940509" - }, - { - "file": "src/components/atoms/Touchables/Touchable.tsx", - "hash": "15476864584972792645" - }, - { - "file": "src/components/atoms/Touchables/index.ts", - "hash": "13481069130617450418" - }, - { - "file": "src/components/atoms/Touchables/useFocus.ts", - "hash": "845933541372790663" - }, - { - "file": "src/components/atoms/Touchables/useHover.ts", - "hash": "12035457070430245906" - }, - { - "file": "src/components/atoms/Touchables/useIsPressed.ts", - "hash": "4387371735535821645" - }, - { - "file": "src/components/atoms/index.ts", - "hash": "15710350753459796208" - }, - { - "file": "src/components/atoms/types.ts", - "hash": "3486614015438132425" - }, - { - "file": "src/components/bottomSheets/BottomSheet.tsx", - "hash": "3454253101716571605" - }, - { - "file": "src/components/bottomSheets/BottomSheet.web.tsx", - "hash": "9028090935835934306" - }, - { - "file": "src/components/bottomSheets/BottomSheetFlatList.tsx", - "hash": "403466135632793510" - }, - { - "file": "src/components/bottomSheets/BottomSheetFlatList.web.tsx", - "hash": "2184984987472540579" - }, - { - "file": "src/components/bottomSheets/BottomSheetHeader.tsx", - "hash": "5791280130042782721" - }, - { - "file": "src/components/bottomSheets/index.tsx", - "hash": "7549245674089521705" - }, - { - "file": "src/components/bottomSheets/useBottomSheets.tsx", - "hash": "17016893928484498332" - }, - { - "file": "src/components/index.ts", - "hash": "10157556475702070247" - }, - { - "file": "src/components/molecules/Field/Checkbox.tsx", - "hash": "9460852231745840142" - }, - { - "file": "src/components/molecules/Field/Input.tsx", - "hash": "14292870419888248000" - }, - { - "file": "src/components/molecules/Field/Radio.tsx", - "hash": "3977126159990026348" - }, - { - "file": "src/components/molecules/Field/Select.tsx", - "hash": "605225748308942294" - }, - { - "file": "src/components/molecules/Field/index.tsx", - "hash": "187339777244965983" - }, - { - "file": "src/components/molecules/Field/types.ts", - "hash": "6414120266795182693" - }, - { - "file": "src/components/molecules/MenuItem.tsx", - "hash": "9095027106494854145" - }, - { - "file": "src/components/molecules/TextArea.tsx", - "hash": "14733098802128805733" - }, - { - "file": "src/components/molecules/index.ts", - "hash": "5360256293546580689" - }, - { - "file": "src/components/organisms/ControlledField/Checkbox.tsx", - "hash": "1524884679124226168" - }, - { - "file": "src/components/organisms/ControlledField/Input.tsx", - "hash": "13278847575248279830" - }, - { - "file": "src/components/organisms/ControlledField/Radio.tsx", - "hash": "18393524301091813263" - }, - { - "file": "src/components/organisms/ControlledField/Select.tsx", - "hash": "14026946301869219292" - }, - { - "file": "src/components/organisms/ControlledField/index.tsx", - "hash": "1079826559500969069" - }, - { - "file": "src/components/organisms/ControlledField/types.ts", - "hash": "9957489760953806839" - }, - { - "file": "src/components/organisms/Menu/index.tsx", - "hash": "10544061452708431200" - }, - { - "file": "src/components/organisms/index.ts", - "hash": "16675575206616089652" - }, - { - "file": "src/components/utils/generateSize.test.ts", - "hash": "15084989583075556243" - }, - { - "file": "src/components/utils/generateSize.ts", - "hash": "7625013241353024001" - }, - { - "file": "src/components/utils/generateStyledComponent.tsx", - "hash": "12382388355550177584" - }, - { - "file": "src/components/utils/generateStyledSystem.ts", - "hash": "15180469589750946925" - }, - { - "file": "src/components/utils/index.ts", - "hash": "15227454944847285333" - }, - { - "file": "src/constants/asyncStorageKeys.test.ts", - "hash": "4471249081264990977" - }, - { - "file": "src/constants/asyncStorageKeys.ts", - "hash": "7530999383319886295" - }, - { - "file": "src/constants/breakpoints.ts", - "hash": "5932455886761320177" - }, - { - "file": "src/constants/buttonVariants.ts", - "hash": "17278881127761522230" - }, - { - "file": "src/constants/colorSchemes.ts", - "hash": "8311404195254594842" - }, - { - "file": "src/constants/colors.ts", - "hash": "7703790479813226526" - }, - { - "file": "src/constants/env.ts", - "hash": "15694237031158292113" - }, - { - "file": "src/constants/environments.ts", - "hash": "6462925094621866783" - }, - { - "file": "src/constants/images.ts", - "hash": "15863656951953578488" - }, - { - "file": "src/constants/index.ts", - "hash": "11357346957528778797" - }, - { - "file": "src/constants/navigation.ts", - "hash": "10166447341881299191" - }, - { - "file": "src/constants/regex.ts", - "hash": "642166028200098242" - }, - { - "file": "src/constants/textVariants.ts", - "hash": "11986419058060264126" - }, - { - "file": "src/constants/theme.ts", - "hash": "15380751935719025447" - }, - { - "file": "src/constants/time.ts", - "hash": "1339200255929519859" - }, - { - "file": "src/contexts/ColorSchemeContext.ts", - "hash": "8868644817397954028" - }, - { - "file": "src/contexts/NotificationContext.ts", - "hash": "17378180327217406818" - }, - { - "file": "src/contexts/index.ts", - "hash": "9071452686146101800" - }, - { - "file": "src/enums/index.ts", - "hash": "6171415267444698980" - }, - { - "file": "src/enums/queryKeys.ts", - "hash": "11356421190365898588" - }, - { - "file": "src/hooks/forms/index.ts", - "hash": "17271927819339279123" - }, - { - "file": "src/hooks/forms/useSignInForm.ts", - "hash": "13333952302054271000" - }, - { - "file": "src/hooks/forms/useSignUpForm.ts", - "hash": "15595907409574925197" - }, - { - "file": "src/hooks/forms/useTestForm.ts", - "hash": "15264830886587295728" - }, - { - "file": "src/hooks/index.ts", - "hash": "7560712131694712327" - }, - { - "file": "src/hooks/loaders/index.ts", - "hash": "13806526488025589789" - }, - { - "file": "src/hooks/loaders/useBricksLoader.ts", - "hash": "13177841413020729291" - }, - { - "file": "src/hooks/loaders/useBubblesLoader.ts", - "hash": "10158714878564656459" - }, - { - "file": "src/hooks/loaders/useCircleLoader.ts", - "hash": "17952711721268113104" - }, - { - "file": "src/hooks/navigation/index.ts", - "hash": "10796279288091477437" - }, - { - "file": "src/hooks/navigation/useNavigationStatePersistence.ts", - "hash": "1513941764225445974" - }, - { - "file": "src/hooks/navigation/useNavigationTheme.ts", - "hash": "6501358688836046348" - }, - { - "file": "src/hooks/navigation/usePreventGoBack.ts", - "hash": "5328265897035839152" - }, - { - "file": "src/hooks/navigation/useRouterNotifications.ts", - "hash": "18117056565988349538" - }, - { - "file": "src/hooks/navigation/useScreenOptions.ts", - "hash": "5785238465622711283" - }, - { - "file": "src/hooks/navigation/useScreenTracker.ts", - "hash": "17428313843311903069" - }, - { - "file": "src/hooks/navigation/useWeb.ts", - "hash": "3322673041542335890" - }, - { - "file": "src/hooks/useAppStateActive.ts", - "hash": "7592725653435242278" - }, - { - "file": "src/hooks/useBoolean.ts", - "hash": "15064134222257154647" - }, - { - "file": "src/hooks/useCachedResources.ts", - "hash": "3101295520434892053" - }, - { - "file": "src/hooks/useKeyboardHeight.ts", - "hash": "1053054474544428777" - }, - { - "file": "src/hooks/useSafeAreaInsetsStyle.ts", - "hash": "8852044882753298993" - }, - { - "file": "src/hooks/useSecurePassword.ts", - "hash": "857331871247482477" - }, - { - "file": "src/hooks/useTheme.ts", - "hash": "6901636005813436918" - }, - { - "file": "src/hooks/useTimestamp.ts", - "hash": "15240857280726995402" - }, - { - "file": "src/hooks/useToggle.ts", - "hash": "11461537781491476290" - }, - { - "file": "src/i18n/i18nForTests.ts", - "hash": "4666672696951147844" - }, - { - "file": "src/i18n/index.ts", - "hash": "18299406002291098741" - }, - { - "file": "src/i18n/languageDetector.ts", - "hash": "463775853539731425" - }, - { - "file": "src/i18n/translations/en.json", - "hash": "1608814946585324347" - }, - { - "file": "src/i18n/translations/pl.json", - "hash": "4869622452139388861" - }, - { - "file": "src/logic/AuthLogic.tsx", - "hash": "16049493280559033942" - }, - { - "file": "src/logic/index.ts", - "hash": "3244421341483603138" - }, - { - "file": "src/navigation/tabNavigator/components/AppHeader.tsx", - "hash": "7715869571813526605" - }, - { - "file": "src/navigation/tabNavigator/components/BottomBar.tsx", - "hash": "14073665193417913684" - }, - { - "file": "src/navigation/tabNavigator/components/HeaderLogo.tsx", - "hash": "2864502147417342306" - }, - { - "file": "src/navigation/tabNavigator/components/SideBar.tsx", - "hash": "12045534224905606366" - }, - { - "file": "src/navigation/tabNavigator/components/SideBarTabItem.tsx", - "hash": "16392445940914216663" - }, - { - "file": "src/navigation/tabNavigator/components/TabBarItemWrapper.tsx", - "hash": "5590993292478114218" - }, - { - "file": "src/navigation/tabNavigator/components/index.ts", - "hash": "4213473592452267957" - }, - { - "file": "src/navigation/tabNavigator/config.ts", - "hash": "11795598356857279134" - }, - { - "file": "src/navigation/tabNavigator/hooks/index.ts", - "hash": "12338499285074412974" - }, - { - "file": "src/navigation/tabNavigator/hooks/useContextRoute.ts", - "hash": "9217256906281357223" - }, - { - "file": "src/navigation/tabNavigator/hooks/useIsTabSelected.ts", - "hash": "13458514500615389471" - }, - { - "file": "src/navigation/tabNavigator/hooks/useLinkBuilder.tsx", - "hash": "1525764324240210019" - }, - { - "file": "src/navigation/tabNavigator/hooks/useNavigatorContext.ts", - "hash": "1588641436443923639" - }, - { - "file": "src/navigation/tabNavigator/hooks/useWidth.ts", - "hash": "2858017802317839026" - }, - { - "file": "src/navigation/tabNavigator/navigator.tsx", - "hash": "1860831050691747412" - }, - { - "file": "src/navigation/tabNavigator/tab-slot.tsx", - "hash": "10731003404175489325" - }, - { - "file": "src/navigation/tabNavigator/utils/cns.ts", - "hash": "7193914733798713423" - }, - { - "file": "src/navigation/tabNavigator/utils/index.ts", - "hash": "1781913147302345443" - }, - { - "file": "src/providers/ColorSchemeProvider.tsx", - "hash": "16444078799372466057" - }, - { - "file": "src/providers/NotificatedProvider.tsx", - "hash": "11207403325919307749" - }, - { - "file": "src/providers/NotificationProvider.tsx", - "hash": "5349318008092754176" - }, - { - "file": "src/providers/Providers.tsx", - "hash": "4762181393690134386" - }, - { - "file": "src/providers/index.ts", - "hash": "10523175739397548776" - }, - { - "file": "src/query-hooks/index.ts", - "hash": "15602501319673947274" - }, - { - "file": "src/query-hooks/useGetData_EXAMPLE.ts", - "hash": "14130072731168168391" - }, - { - "file": "src/screens/ApplicationInfoScreen.tsx", - "hash": "5492842909904945749" - }, - { - "file": "src/screens/BlogScreen.tsx", - "hash": "11952207058013874274" - }, - { - "file": "src/screens/ColorsScreen.tsx", - "hash": "9053424676138748193" - }, - { - "file": "src/screens/ComponentsScreen.tsx", - "hash": "15924000592874024465" - }, - { - "file": "src/screens/DataFromBeScreen_EXAMPLE.tsx", - "hash": "634309004082714263" - }, - { - "file": "src/screens/DetailsScreen.tsx", - "hash": "3745291865829972765" - }, - { - "file": "src/screens/ExamplesScreen.tsx", - "hash": "10947535736371494888" - }, - { - "file": "src/screens/HomeScreen.tsx", - "hash": "9754377687014910402" - }, - { - "file": "src/screens/LandingScreen.tsx", - "hash": "9801184363626554005" - }, - { - "file": "src/screens/NotFoundScreen.tsx", - "hash": "977280752402402679" - }, - { - "file": "src/screens/SettingsScreen.tsx", - "hash": "13834686244739681171" - }, - { - "file": "src/screens/SignInScreen.tsx", - "hash": "15952768680106274392" - }, - { - "file": "src/screens/SignUpScreen.tsx", - "hash": "3527040121555083461" - }, - { - "file": "src/screens/TestFormScreen.tsx", - "hash": "15783836185900241475" - }, - { - "file": "src/screens/TypographyScreen.tsx", - "hash": "3228241379119583240" - }, - { - "file": "src/screens/index.ts", - "hash": "8543781507251895919" - }, - { - "file": "src/services/MockedServerService.ts", - "hash": "9060057850251722088" - }, - { - "file": "src/services/NotificationService.ts", - "hash": "12211015062274649953" - }, - { - "file": "src/services/TokenService.ts", - "hash": "2655877949019559655" - }, - { - "file": "src/services/api/apiClient.ts", - "hash": "11240390962543035049" - }, - { - "file": "src/services/api/index.ts", - "hash": "12235305835072896869" - }, - { - "file": "src/services/index.ts", - "hash": "10875047377727947788" - }, - { - "file": "src/services/interceptors/injectToken.ts", - "hash": "8658116713546351419" - }, - { - "file": "src/services/requests/AnyService_EXAMPLE.ts", - "hash": "3559154686510975631" - }, - { - "file": "src/services/requests/index.ts", - "hash": "16798303174629640789" - }, - { - "file": "src/store/auth/authActions.ts", - "hash": "2386712367715131347" - }, - { - "file": "src/store/auth/authState.ts", - "hash": "8456598002970636079" - }, - { - "file": "src/store/auth/index.ts", - "hash": "16642586777905033591" - }, - { - "file": "src/store/index.ts", - "hash": "5029109546585808742" - }, - { - "file": "src/store/store.ts", - "hash": "10294035652390588528" - }, - { - "file": "src/styles/index.ts", - "hash": "8008331729337354469" - }, - { - "file": "src/styles/root-layout.module.scss", - "hash": "2060547991753715075" - }, - { - "file": "src/types/authForms.ts", - "hash": "386774086284532835" - }, - { - "file": "src/types/global.d.ts", - "hash": "635318313691600830" - }, - { - "file": "src/types/i18next.d.ts", - "hash": "13996001322736385261" - }, - { - "file": "src/types/icon.d.ts", - "hash": "911054344008657768" - }, - { - "file": "src/types/react-i18next.d.ts", - "hash": "4951087371925837478" - }, - { - "file": "src/types/testForm.ts", - "hash": "302751465239627241" - }, - { - "file": "src/types/theme.d.ts", - "hash": "17374553206506145675" - }, - { - "file": "src/types/todos.ts", - "hash": "14691166469154891111" - }, - { - "file": "src/utils/alert.ts", - "hash": "14971819840630424802" - }, - { - "file": "src/utils/checkForUpdates.ts", - "hash": "2803043772072222879" - }, - { - "file": "src/utils/convertEmToNumber.ts", - "hash": "11529947235485843624" - }, - { - "file": "src/utils/createGenericContext.ts", - "hash": "7541142818533258904" - }, - { - "file": "src/utils/getApiError.ts", - "hash": "4855170982144469794" - }, - { - "file": "src/utils/getColorValue.ts", - "hash": "10729707445928438651" - }, - { - "file": "src/utils/getFontWeight.ts", - "hash": "15653122983671892311" - }, - { - "file": "src/utils/getNavigator.ts", - "hash": "7357839614603048214" - }, - { - "file": "src/utils/hapticImpact.ts", - "hash": "13981120877608165312" - }, - { - "file": "src/utils/hex2rgba.ts", - "hash": "2958889430405488106" - }, - { - "file": "src/utils/index.ts", - "hash": "15356218109072174571" - }, - { - "file": "src/utils/noop.ts", - "hash": "7191457754250985784" - }, - { - "file": "src/utils/removeFalsyProperties.test.ts", - "hash": "18325594995088514473" - }, - { - "file": "src/utils/removeFalsyProperties.ts", - "hash": "14967616767506612799" - }, - { - "file": "src/utils/secureStore.tsx", - "hash": "6414282529903447870" - }, - { - "file": "src/utils/testUtils.tsx", - "hash": "17851167488228739794" - }, - { - "file": "src/utils/wait.ts", - "hash": "8105682325221601677" - }, - { - "file": "src/wdyr.ts", - "hash": "15734091208795798433" - }, - { - "file": "templates/component_template.tsx", - "hash": "8999961463816009022" - }, - { - "file": "templates/pull_request_template.md", - "hash": "17152142272450741057" - }, - { - "file": "templates/readme_template.md", - "hash": "101331792217002585" - }, - { - "file": "templates/screen_template.tsx", - "hash": "4023492766610837178" - }, - { - "file": "tsconfig.json", - "hash": "14701674480042683090" - }, - { - "file": "web/_redirects", - "hash": "7930790779227108493" - }, - { - "file": "webpack.config.js", - "hash": "465218852528784385" - }, - { - "file": "yarn.lock", - "hash": "8936136592604700" - } - ] - } -} diff --git a/.nx/cache/lockfile.hash b/.nx/cache/lockfile.hash deleted file mode 100644 index ef927b47..00000000 --- a/.nx/cache/lockfile.hash +++ /dev/null @@ -1 +0,0 @@ -263016385813637415 \ No newline at end of file diff --git a/.nx/cache/parsed-lock-file.json b/.nx/cache/parsed-lock-file.json deleted file mode 100644 index 1bcc792d..00000000 --- a/.nx/cache/parsed-lock-file.json +++ /dev/null @@ -1,39279 +0,0 @@ -{ - "externalNodes": { - "npm:@0no-co/graphql.web": { - "type": "npm", - "name": "npm:@0no-co/graphql.web", - "data": { - "version": "1.0.4", - "packageName": "@0no-co/graphql.web", - "hash": "sha512-W3ezhHGfO0MS1PtGloaTpg0PbaT8aZSmmaerL7idtU5F7oCI+uu25k+MsMS31BVFlp4aMkHSrNRxiD72IlK8TA==" - } - }, - "npm:@aashutoshrathi/word-wrap": { - "type": "npm", - "name": "npm:@aashutoshrathi/word-wrap", - "data": { - "version": "1.2.6", - "packageName": "@aashutoshrathi/word-wrap", - "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.2.1", - "packageName": "@ampproject/remapping", - "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" - } - }, - "npm:@babel/code-frame@7.10.4": { - "type": "npm", - "name": "npm:@babel/code-frame@7.10.4", - "data": { - "version": "7.10.4", - "packageName": "@babel/code-frame", - "hash": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.23.5", - "packageName": "@babel/code-frame", - "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.23.5", - "packageName": "@babel/compat-data", - "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.23.9", - "packageName": "@babel/core", - "hash": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.23.6", - "packageName": "@babel/generator", - "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.23.6", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.23.9", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.5.0", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" - } - }, - "npm:@babel/helper-function-name": { - "type": "npm", - "name": "npm:@babel/helper-function-name", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-function-name", - "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" - } - }, - "npm:@babel/helper-hoist-variables": { - "type": "npm", - "name": "npm:@babel/helper-hoist-variables", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-hoist-variables", - "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.23.3", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.22.6", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.23.4", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.23.5", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.23.9", - "packageName": "@babel/helpers", - "hash": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.23.4", - "packageName": "@babel/highlight", - "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.23.9", - "packageName": "@babel/parser", - "hash": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "data": { - "version": "7.23.7", - "packageName": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "hash": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==" - } - }, - "npm:@babel/plugin-proposal-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-async-generator-functions", - "data": { - "version": "7.20.7", - "packageName": "@babel/plugin-proposal-async-generator-functions", - "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" - } - }, - "npm:@babel/plugin-proposal-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-class-properties", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-class-properties", - "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==" - } - }, - "npm:@babel/plugin-proposal-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-export-default-from", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-proposal-export-default-from", - "hash": "sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==" - } - }, - "npm:@babel/plugin-proposal-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", - "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" - } - }, - "npm:@babel/plugin-proposal-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-numeric-separator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-numeric-separator", - "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" - } - }, - "npm:@babel/plugin-proposal-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-object-rest-spread", - "data": { - "version": "7.20.7", - "packageName": "@babel/plugin-proposal-object-rest-spread", - "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" - } - }, - "npm:@babel/plugin-proposal-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-catch-binding", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-optional-catch-binding", - "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" - } - }, - "npm:@babel/plugin-proposal-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-chaining", - "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-optional-chaining", - "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@babel/plugin-syntax-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-default-from", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-export-default-from", - "hash": "sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:@babel/plugin-syntax-flow": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-flow", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-flow", - "hash": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.23.8", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" - } - }, - "npm:@babel/plugin-transform-flow-strip-types": { - "type": "npm", - "name": "npm:@babel/plugin-transform-flow-strip-types", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-flow-strip-types", - "hash": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" - } - }, - "npm:@babel/plugin-transform-object-assign": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-assign", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-object-assign", - "hash": "sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" - } - }, - "npm:@babel/plugin-transform-react-display-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-display-name", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-display-name", - "hash": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==" - } - }, - "npm:@babel/plugin-transform-react-jsx-development": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-development", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-jsx-development", - "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" - } - }, - "npm:@babel/plugin-transform-react-jsx-self": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-self", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-jsx-self", - "hash": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==" - } - }, - "npm:@babel/plugin-transform-react-jsx-source": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-source", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-jsx-source", - "hash": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==" - } - }, - "npm:@babel/plugin-transform-react-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-react-jsx", - "hash": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==" - } - }, - "npm:@babel/plugin-transform-react-pure-annotations": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-pure-annotations", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-pure-annotations", - "hash": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.23.9", - "packageName": "@babel/preset-env", - "hash": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==" - } - }, - "npm:@babel/preset-flow": { - "type": "npm", - "name": "npm:@babel/preset-flow", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-flow", - "hash": "sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@babel/preset-react": { - "type": "npm", - "name": "npm:@babel/preset-react", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-react", - "hash": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-typescript", - "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" - } - }, - "npm:@babel/register": { - "type": "npm", - "name": "npm:@babel/register", - "data": { - "version": "7.23.7", - "packageName": "@babel/register", - "hash": "sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.9", - "packageName": "@babel/runtime", - "hash": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.23.9", - "packageName": "@babel/template", - "hash": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.23.9", - "packageName": "@babel/traverse", - "hash": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.23.9", - "packageName": "@babel/types", - "hash": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==" - } - }, - "npm:@bacons/react-views": { - "type": "npm", - "name": "npm:@bacons/react-views", - "data": { - "version": "1.1.3", - "packageName": "@bacons/react-views", - "hash": "sha512-aLipQAkQKRzG64e28XHBpByyBPfANz0A6POqYHGyryHizG9vLCLNQwLe8gwFANEMBWW2Mx5YdQ7RkNdQMQ+CXQ==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@egjs/hammerjs": { - "type": "npm", - "name": "npm:@egjs/hammerjs", - "data": { - "version": "2.0.17", - "packageName": "@egjs/hammerjs", - "hash": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==" - } - }, - "npm:@emotion/is-prop-valid": { - "type": "npm", - "name": "npm:@emotion/is-prop-valid", - "data": { - "version": "0.8.8", - "packageName": "@emotion/is-prop-valid", - "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" - } - }, - "npm:@emotion/memoize": { - "type": "npm", - "name": "npm:@emotion/memoize", - "data": { - "version": "0.7.4", - "packageName": "@emotion/memoize", - "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.10.0", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "2.1.4", - "packageName": "@eslint/eslintrc", - "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "8.56.0", - "packageName": "@eslint/js", - "hash": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==" - } - }, - "npm:@expo/bunyan": { - "type": "npm", - "name": "npm:@expo/bunyan", - "data": { - "version": "4.0.0", - "packageName": "@expo/bunyan", - "hash": "sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==" - } - }, - "npm:@expo/cli@0.17.2": { - "type": "npm", - "name": "npm:@expo/cli@0.17.2", - "data": { - "version": "0.17.2", - "packageName": "@expo/cli", - "hash": "sha512-0uJGuiV8XGjsTGnga95CiCZAtAymtQlo8FxRBp7AjLKpG/oTXG7+s368H7ZIC+XQBsvWx83iv+HyXQfOtPbsxQ==" - } - }, - "npm:@expo/code-signing-certificates": { - "type": "npm", - "name": "npm:@expo/code-signing-certificates", - "data": { - "version": "0.0.5", - "packageName": "@expo/code-signing-certificates", - "hash": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==" - } - }, - "npm:@expo/config-plugins": { - "type": "npm", - "name": "npm:@expo/config-plugins", - "data": { - "version": "7.8.4", - "packageName": "@expo/config-plugins", - "hash": "sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==" - } - }, - "npm:@expo/config-plugins@5.0.4": { - "type": "npm", - "name": "npm:@expo/config-plugins@5.0.4", - "data": { - "version": "5.0.4", - "packageName": "@expo/config-plugins", - "hash": "sha512-vzUcVpqOMs3h+hyRdhGwk+eGIOhXa5xYdd92yO17RMNHav3v/+ekMbs7XA2c3lepMO8Yd4/5hqmRw9ZTL6jGzg==" - } - }, - "npm:@expo/config-types@47.0.0": { - "type": "npm", - "name": "npm:@expo/config-types@47.0.0", - "data": { - "version": "47.0.0", - "packageName": "@expo/config-types", - "hash": "sha512-r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g==" - } - }, - "npm:@expo/config-types": { - "type": "npm", - "name": "npm:@expo/config-types", - "data": { - "version": "50.0.0", - "packageName": "@expo/config-types", - "hash": "sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==" - } - }, - "npm:@expo/config": { - "type": "npm", - "name": "npm:@expo/config", - "data": { - "version": "8.5.4", - "packageName": "@expo/config", - "hash": "sha512-ggOLJPHGzJSJHVBC1LzwXwR6qUn8Mw7hkc5zEKRIdhFRuIQ6s2FE4eOvP87LrNfDF7eZGa6tJQYsiHSmZKG+8Q==" - } - }, - "npm:@expo/config@7.0.3": { - "type": "npm", - "name": "npm:@expo/config@7.0.3", - "data": { - "version": "7.0.3", - "packageName": "@expo/config", - "hash": "sha512-joVtB5o+NF40Tmsdp65UzryRtbnCuMbXkVO4wJnNJO4aaK0EYLdHCYSewORVqNcDfGN0LphQr8VTG2npbd9CJA==" - } - }, - "npm:@expo/configure-splash-screen": { - "type": "npm", - "name": "npm:@expo/configure-splash-screen", - "data": { - "version": "0.6.0", - "packageName": "@expo/configure-splash-screen", - "hash": "sha512-4DyPoNXJqx9bN4nEwF3HQreo//ECu7gDe1Xor3dnnzFm9P/VDxAKdbEhA0n+R6fgkNfT2onVHWijqvdpTS3Xew==" - } - }, - "npm:@expo/devcert": { - "type": "npm", - "name": "npm:@expo/devcert", - "data": { - "version": "1.1.0", - "packageName": "@expo/devcert", - "hash": "sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==" - } - }, - "npm:@expo/env": { - "type": "npm", - "name": "npm:@expo/env", - "data": { - "version": "0.2.1", - "packageName": "@expo/env", - "hash": "sha512-deZmRS7Dvp18VM8s559dq/ZjPlV1D9vtLoLXwHmCK/JYOvtNptdKsfxcWjI7ewmo6ln2PqgNI9HRI74q6Wk2eA==" - } - }, - "npm:@expo/fingerprint": { - "type": "npm", - "name": "npm:@expo/fingerprint", - "data": { - "version": "0.6.0", - "packageName": "@expo/fingerprint", - "hash": "sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==" - } - }, - "npm:@expo/image-utils@0.3.22": { - "type": "npm", - "name": "npm:@expo/image-utils@0.3.22", - "data": { - "version": "0.3.22", - "packageName": "@expo/image-utils", - "hash": "sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==" - } - }, - "npm:@expo/image-utils@0.3.23": { - "type": "npm", - "name": "npm:@expo/image-utils@0.3.23", - "data": { - "version": "0.3.23", - "packageName": "@expo/image-utils", - "hash": "sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==" - } - }, - "npm:@expo/image-utils": { - "type": "npm", - "name": "npm:@expo/image-utils", - "data": { - "version": "0.4.1", - "packageName": "@expo/image-utils", - "hash": "sha512-EZb+VHSmw+a5s2hS9qksTcWylY0FDaIAVufcxoaRS9tHIXLjW5zcKW7Rhj9dSEbZbRVy9yXXdHKa3GQdUQIOFw==" - } - }, - "npm:@expo/json-file@8.2.36": { - "type": "npm", - "name": "npm:@expo/json-file@8.2.36", - "data": { - "version": "8.2.36", - "packageName": "@expo/json-file", - "hash": "sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==" - } - }, - "npm:@expo/json-file": { - "type": "npm", - "name": "npm:@expo/json-file", - "data": { - "version": "8.3.0", - "packageName": "@expo/json-file", - "hash": "sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==" - } - }, - "npm:@expo/metro-config": { - "type": "npm", - "name": "npm:@expo/metro-config", - "data": { - "version": "0.17.3", - "packageName": "@expo/metro-config", - "hash": "sha512-YW8ixbaz6yL7/Mg1rJJejiAAVQQKjGY1wXvT2Dh487r/r9/j1yE1YRS/oRY1yItYzbnHvO0p0jMnEGfiFYL3Tg==" - } - }, - "npm:@expo/metro-runtime": { - "type": "npm", - "name": "npm:@expo/metro-runtime", - "data": { - "version": "3.1.2", - "packageName": "@expo/metro-runtime", - "hash": "sha512-Wekv2AZ3HY0NG9Im8AMB1KHGyHjmALg6xekVK34724I/DLtcocLKtQEP04oI9GcAZBotAhROHH5E4ADhJAEgYg==" - } - }, - "npm:@expo/osascript": { - "type": "npm", - "name": "npm:@expo/osascript", - "data": { - "version": "2.1.0", - "packageName": "@expo/osascript", - "hash": "sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==" - } - }, - "npm:@expo/package-manager": { - "type": "npm", - "name": "npm:@expo/package-manager", - "data": { - "version": "1.4.2", - "packageName": "@expo/package-manager", - "hash": "sha512-LKdo/6y4W7llZ6ghsg1kdx2CeH/qR/c6QI/JI8oPUvppsZoeIYjSkdflce978fAMfR8IXoi0wt0jA2w0kWpwbg==" - } - }, - "npm:@expo/plist@0.0.18": { - "type": "npm", - "name": "npm:@expo/plist@0.0.18", - "data": { - "version": "0.0.18", - "packageName": "@expo/plist", - "hash": "sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==" - } - }, - "npm:@expo/plist": { - "type": "npm", - "name": "npm:@expo/plist", - "data": { - "version": "0.1.0", - "packageName": "@expo/plist", - "hash": "sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==" - } - }, - "npm:@expo/prebuild-config@5.0.7": { - "type": "npm", - "name": "npm:@expo/prebuild-config@5.0.7", - "data": { - "version": "5.0.7", - "packageName": "@expo/prebuild-config", - "hash": "sha512-D+TBpJUHe4+oTGFPb4o0rrw/h1xxc6wF+abJnbDHUkhnaeiHkE2O3ByS7FdiZ2FT36t0OKqeSKG/xFwWT3m1Ew==" - } - }, - "npm:@expo/prebuild-config": { - "type": "npm", - "name": "npm:@expo/prebuild-config", - "data": { - "version": "6.7.4", - "packageName": "@expo/prebuild-config", - "hash": "sha512-x8EUdCa8DTMZ/dtEXjHAdlP+ljf6oSeSKNzhycXiHhpMSMG9jEhV28ocCwc6cKsjK5GziweEiHwvrj6+vsBlhA==" - } - }, - "npm:@expo/rudder-sdk-node": { - "type": "npm", - "name": "npm:@expo/rudder-sdk-node", - "data": { - "version": "1.1.1", - "packageName": "@expo/rudder-sdk-node", - "hash": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==" - } - }, - "npm:@expo/sdk-runtime-versions": { - "type": "npm", - "name": "npm:@expo/sdk-runtime-versions", - "data": { - "version": "1.0.0", - "packageName": "@expo/sdk-runtime-versions", - "hash": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==" - } - }, - "npm:@expo/server": { - "type": "npm", - "name": "npm:@expo/server", - "data": { - "version": "0.3.0", - "packageName": "@expo/server", - "hash": "sha512-5oIqedpLVMnf1LGI9Xd5OOGmK3DjgH9VpuqVN4e/6DwLT05RZJMyI7ylfG6QSy1e44yOgjv242tLyg0e/zdZ+A==" - } - }, - "npm:@expo/spawn-async": { - "type": "npm", - "name": "npm:@expo/spawn-async", - "data": { - "version": "1.5.0", - "packageName": "@expo/spawn-async", - "hash": "sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==" - } - }, - "npm:@expo/spawn-async@1.7.2": { - "type": "npm", - "name": "npm:@expo/spawn-async@1.7.2", - "data": { - "version": "1.7.2", - "packageName": "@expo/spawn-async", - "hash": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==" - } - }, - "npm:@expo/vector-icons": { - "type": "npm", - "name": "npm:@expo/vector-icons", - "data": { - "version": "14.0.0", - "packageName": "@expo/vector-icons", - "hash": "sha512-5orm59pdnBQlovhU9k4DbjMUZBHNlku7IRgFY56f7pcaaCnXq9yaLJoOQl9sMwNdFzf4gnkTyHmR5uN10mI9rA==" - } - }, - "npm:@expo/webpack-config": { - "type": "npm", - "name": "npm:@expo/webpack-config", - "data": { - "version": "19.0.1", - "packageName": "@expo/webpack-config", - "hash": "sha512-5bSxXTUd/DCF44+1dSyU23YKLOOYCr9pMJ+C5Vw7PAi6v6OEyNp4uOVMk2x5DAEpXtvOsJCxvNZdmtY/IqmO/A==" - } - }, - "npm:@expo/xcpretty": { - "type": "npm", - "name": "npm:@expo/xcpretty", - "data": { - "version": "4.3.1", - "packageName": "@expo/xcpretty", - "hash": "sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==" - } - }, - "npm:@gar/promisify": { - "type": "npm", - "name": "npm:@gar/promisify", - "data": { - "version": "1.1.3", - "packageName": "@gar/promisify", - "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - } - }, - "npm:@gorhom/bottom-sheet": { - "type": "npm", - "name": "npm:@gorhom/bottom-sheet", - "data": { - "version": "4.6.0", - "packageName": "@gorhom/bottom-sheet", - "hash": "sha512-XgNflkhATUqTIiMDGuLaQZAtjUzcrhGOEJGHT+7Tou1ctTMb958YRGGnU9KFo5TkD6YCZcfWfxHPi9F0FF+DjA==" - } - }, - "npm:@gorhom/portal": { - "type": "npm", - "name": "npm:@gorhom/portal", - "data": { - "version": "1.0.14", - "packageName": "@gorhom/portal", - "hash": "sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==" - } - }, - "npm:@graphql-typed-document-node/core": { - "type": "npm", - "name": "npm:@graphql-typed-document-node/core", - "data": { - "version": "3.2.0", - "packageName": "@graphql-typed-document-node/core", - "hash": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==" - } - }, - "npm:@hapi/hoek": { - "type": "npm", - "name": "npm:@hapi/hoek", - "data": { - "version": "9.3.0", - "packageName": "@hapi/hoek", - "hash": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" - } - }, - "npm:@hapi/topo": { - "type": "npm", - "name": "npm:@hapi/topo", - "data": { - "version": "5.1.0", - "packageName": "@hapi/topo", - "hash": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==" - } - }, - "npm:@humanwhocodes/config-array": { - "type": "npm", - "name": "npm:@humanwhocodes/config-array", - "data": { - "version": "0.11.14", - "packageName": "@humanwhocodes/config-array", - "hash": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/object-schema": { - "type": "npm", - "name": "npm:@humanwhocodes/object-schema", - "data": { - "version": "2.0.2", - "packageName": "@humanwhocodes/object-schema", - "hash": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==" - } - }, - "npm:@ide/backoff": { - "type": "npm", - "name": "npm:@ide/backoff", - "data": { - "version": "1.0.0", - "packageName": "@ide/backoff", - "hash": "sha512-F0YfUDjvT+Mtt/R4xdl2X0EYCHMMiJqNLdxHD++jDT5ydEFIyqbCHh51Qx2E211dgZprPKhV7sHmnXKpLuvc5g==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:@isaacs/ttlcache": { - "type": "npm", - "name": "npm:@isaacs/ttlcache", - "data": { - "version": "1.4.1", - "packageName": "@isaacs/ttlcache", - "hash": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.3", - "packageName": "@istanbuljs/schema", - "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:@jest/create-cache-key-function": { - "type": "npm", - "name": "npm:@jest/create-cache-key-function", - "data": { - "version": "29.7.0", - "packageName": "@jest/create-cache-key-function", - "hash": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:@jest/types@26.6.2": { - "type": "npm", - "name": "npm:@jest/types@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "@jest/types", - "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.3", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.1", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.1.2", - "packageName": "@jridgewell/set-array", - "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.5", - "packageName": "@jridgewell/source-map", - "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.15", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.22", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==" - } - }, - "npm:@leichtgewicht/ip-codec": { - "type": "npm", - "name": "npm:@leichtgewicht/ip-codec", - "data": { - "version": "2.0.4", - "packageName": "@leichtgewicht/ip-codec", - "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - } - }, - "npm:@miragejs/pretender-node-polyfill": { - "type": "npm", - "name": "npm:@miragejs/pretender-node-polyfill", - "data": { - "version": "0.1.2", - "packageName": "@miragejs/pretender-node-polyfill", - "hash": "sha512-M/BexG/p05C5lFfMunxo/QcgIJnMT2vDVCd00wNqK2ImZONIlEETZwWJu1QtLxtmYlSHlCFl3JNzp0tLe7OJ5g==" - } - }, - "npm:@motify/components": { - "type": "npm", - "name": "npm:@motify/components", - "data": { - "version": "0.17.1", - "packageName": "@motify/components", - "hash": "sha512-nUOEuNDmnjRVFD202goOilPYtjrZGr26/VCIMnPE5Jpfs9ds/4ezIhQ75zBXd3BuCcgfMRsKrnw01/O0rdWYsg==" - } - }, - "npm:@motify/components@0.18.0": { - "type": "npm", - "name": "npm:@motify/components@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "@motify/components", - "hash": "sha512-1StICST4CKXvWwkkoKtt6Pml//gE2fPI99Byxa+TbrFw4KieATeCYBRjSKD0BghmFmoF+2mRM2uf9FRYfJCGtQ==" - } - }, - "npm:@motify/core": { - "type": "npm", - "name": "npm:@motify/core", - "data": { - "version": "0.17.1", - "packageName": "@motify/core", - "hash": "sha512-czFnaE4o0gCNS7F3u0CdSxzx72b6Yzw2LGD/e/J5DPM7KPL70qyzj5cZ8Rq1sKnUZMfgvCfxyGql21FbGdyhew==" - } - }, - "npm:@motify/core@0.18.0": { - "type": "npm", - "name": "npm:@motify/core@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "@motify/core", - "hash": "sha512-8C4xnC5dZ+S/NEx5wIsHAccofffSOzo7M6lKYR8Ty0QA/XtfwNRL9jQBQafj0pon4h2XP7u2NcJ4lc0ANOsx3A==" - } - }, - "npm:@motify/interactions": { - "type": "npm", - "name": "npm:@motify/interactions", - "data": { - "version": "0.17.1", - "packageName": "@motify/interactions", - "hash": "sha512-RrlFdotOJCnSnwPLFibJyr3GxxTPeRwFhyrXKWKfqVg54D0Ez8JRFCszb90gpnGBSKft1T8FCgMnem8GOHTDfw==" - } - }, - "npm:@motify/skeleton": { - "type": "npm", - "name": "npm:@motify/skeleton", - "data": { - "version": "0.18.0", - "packageName": "@motify/skeleton", - "hash": "sha512-RoS1yVQjs0LhlYCZUUprOVfYeTrtynwhlYZN6upHetvl/CXuxCHt9mV0vChfL/mmRkpS5sOPgEkSlzmJj5uEsg==" - } - }, - "npm:@motionone/animation": { - "type": "npm", - "name": "npm:@motionone/animation", - "data": { - "version": "10.17.0", - "packageName": "@motionone/animation", - "hash": "sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==" - } - }, - "npm:@motionone/dom": { - "type": "npm", - "name": "npm:@motionone/dom", - "data": { - "version": "10.12.0", - "packageName": "@motionone/dom", - "hash": "sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==" - } - }, - "npm:@motionone/easing": { - "type": "npm", - "name": "npm:@motionone/easing", - "data": { - "version": "10.17.0", - "packageName": "@motionone/easing", - "hash": "sha512-Bxe2wSuLu/qxqW4rBFS5m9tMLOw+QBh8v5A7Z5k4Ul4sTj5jAOfZG5R0bn5ywmk+Fs92Ij1feZ5pmC4TeXA8Tg==" - } - }, - "npm:@motionone/generators": { - "type": "npm", - "name": "npm:@motionone/generators", - "data": { - "version": "10.17.0", - "packageName": "@motionone/generators", - "hash": "sha512-T6Uo5bDHrZWhIfxG/2Aut7qyWQyJIWehk6OB4qNvr/jwA/SRmixwbd7SOrxZi1z5rH3LIeFFBKK1xHnSbGPZSQ==" - } - }, - "npm:@motionone/types": { - "type": "npm", - "name": "npm:@motionone/types", - "data": { - "version": "10.17.0", - "packageName": "@motionone/types", - "hash": "sha512-EgeeqOZVdRUTEHq95Z3t8Rsirc7chN5xFAPMYFobx8TPubkEfRSm5xihmMUkbaR2ErKJTUw3347QDPTHIW12IA==" - } - }, - "npm:@motionone/utils": { - "type": "npm", - "name": "npm:@motionone/utils", - "data": { - "version": "10.17.0", - "packageName": "@motionone/utils", - "hash": "sha512-bGwrki4896apMWIj9yp5rAS2m0xyhxblg6gTB/leWDPt+pb410W8lYWsxyurX+DH+gO1zsQsfx2su/c1/LtTpg==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "1.1.1", - "packageName": "@npmcli/fs", - "hash": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==" - } - }, - "npm:@npmcli/move-file": { - "type": "npm", - "name": "npm:@npmcli/move-file", - "data": { - "version": "1.1.2", - "packageName": "@npmcli/move-file", - "hash": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@radix-ui/react-compose-refs": { - "type": "npm", - "name": "npm:@radix-ui/react-compose-refs", - "data": { - "version": "1.0.0", - "packageName": "@radix-ui/react-compose-refs", - "hash": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==" - } - }, - "npm:@radix-ui/react-slot": { - "type": "npm", - "name": "npm:@radix-ui/react-slot", - "data": { - "version": "1.0.1", - "packageName": "@radix-ui/react-slot", - "hash": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==" - } - }, - "npm:@react-native-async-storage/async-storage": { - "type": "npm", - "name": "npm:@react-native-async-storage/async-storage", - "data": { - "version": "1.21.0", - "packageName": "@react-native-async-storage/async-storage", - "hash": "sha512-JL0w36KuFHFCvnbOXRekqVAUplmOyT/OuCQkogo6X98MtpSaJOKEAeZnYO8JB0U/RIEixZaGI5px73YbRm/oag==" - } - }, - "npm:@react-native-community/cli-clean": { - "type": "npm", - "name": "npm:@react-native-community/cli-clean", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-clean", - "hash": "sha512-iAgLCOWYRGh9ukr+eVQnhkV/OqN3V2EGd/in33Ggn/Mj4uO6+oUncXFwB+yjlyaUNz6FfjudhIz09yYGSF+9sg==" - } - }, - "npm:@react-native-community/cli-config": { - "type": "npm", - "name": "npm:@react-native-community/cli-config", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-config", - "hash": "sha512-BrTn5ndFD9uOxO8kxBQ32EpbtOvAsQExGPI7SokdI4Zlve70FziLtTq91LTlTUgMq1InVZn/jJb3VIDk6BTInQ==" - } - }, - "npm:@react-native-community/cli-debugger-ui": { - "type": "npm", - "name": "npm:@react-native-community/cli-debugger-ui", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-debugger-ui", - "hash": "sha512-w3b0iwjQlk47GhZWHaeTG8kKH09NCMUJO729xSdMBXE8rlbm4kHpKbxQY9qKb6NlfWSJN4noGY+FkNZS2rRwnQ==" - } - }, - "npm:@react-native-community/cli-doctor": { - "type": "npm", - "name": "npm:@react-native-community/cli-doctor", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-doctor", - "hash": "sha512-BPCwNNesoQMkKsxB08Ayy6URgGQ8Kndv6mMhIvJSNdST3J1+x3ehBHXzG9B9Vfi+DrTKRb8lmEl/b/7VkDlPkA==" - } - }, - "npm:@react-native-community/cli-hermes": { - "type": "npm", - "name": "npm:@react-native-community/cli-hermes", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-hermes", - "hash": "sha512-G6FxpeZBO4AimKZwtWR3dpXRqTvsmEqlIkkxgwthdzn3LbVjDVIXKpVYU9PkR5cnT+KuAUxO0WwthrJ6Nmrrlg==" - } - }, - "npm:@react-native-community/cli-platform-android": { - "type": "npm", - "name": "npm:@react-native-community/cli-platform-android", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-platform-android", - "hash": "sha512-VU1NZw63+GLU2TnyQ919bEMThpHQ/oMFju9MCfrd3pyPJz4Sn+vc3NfnTDUVA5Z5yfLijFOkHIHr4vo/C9bjnw==" - } - }, - "npm:@react-native-community/cli-platform-ios": { - "type": "npm", - "name": "npm:@react-native-community/cli-platform-ios", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-platform-ios", - "hash": "sha512-H95Sgt3wT7L8V75V0syFJDtv4YgqK5zbu69ko4yrXGv8dv2EBi6qZP0VMmkqXDamoPm9/U7tDTdbcf26ctnLfg==" - } - }, - "npm:@react-native-community/cli-plugin-metro": { - "type": "npm", - "name": "npm:@react-native-community/cli-plugin-metro", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-plugin-metro", - "hash": "sha512-tYNHIYnNmxrBcsqbE2dAnLMzlKI3Cp1p1xUgTrNaOMsGPDN1epzNfa34n6Nps3iwKElSL7Js91CzYNqgTalucA==" - } - }, - "npm:@react-native-community/cli-server-api": { - "type": "npm", - "name": "npm:@react-native-community/cli-server-api", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-server-api", - "hash": "sha512-Rode8NrdyByC+lBKHHn+/W8Zu0c+DajJvLmOWbe2WY/ECvnwcd9MHHbu92hlT2EQaJ9LbLhGrSbQE3cQy9EOCw==" - } - }, - "npm:@react-native-community/cli-tools": { - "type": "npm", - "name": "npm:@react-native-community/cli-tools", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-tools", - "hash": "sha512-2GafnCr8D88VdClwnm9KZfkEb+lzVoFdr/7ybqhdeYM0Vnt/tr2N+fM1EQzwI1DpzXiBzTYemw8GjRq+Utcz2Q==" - } - }, - "npm:@react-native-community/cli-types": { - "type": "npm", - "name": "npm:@react-native-community/cli-types", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-types", - "hash": "sha512-MgOkmrXH4zsGxhte4YqKL7d+N8ZNEd3w1wo56MZlhu5WabwCJh87wYpU5T8vyfujFLYOFuFK5jjlcbs8F4/WDw==" - } - }, - "npm:@react-native-community/cli": { - "type": "npm", - "name": "npm:@react-native-community/cli", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli", - "hash": "sha512-XeQohi2E+S2+MMSz97QcEZ/bWpi8sfKiQg35XuYeJkc32Til2g0b97jRpn0/+fV0BInHoG1CQYWwHA7opMsrHg==" - } - }, - "npm:@react-native-community/netinfo": { - "type": "npm", - "name": "npm:@react-native-community/netinfo", - "data": { - "version": "11.1.0", - "packageName": "@react-native-community/netinfo", - "hash": "sha512-pIbCuqgrY7SkngAcjUs9fMzNh1h4soQMVw1IeGp1HN5//wox3fUVOuvyIubTscUbdLFKiltJAiuQek7Nhx1bqA==" - } - }, - "npm:@react-native/assets-registry": { - "type": "npm", - "name": "npm:@react-native/assets-registry", - "data": { - "version": "0.73.1", - "packageName": "@react-native/assets-registry", - "hash": "sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==" - } - }, - "npm:@react-native/babel-plugin-codegen@0.73.2": { - "type": "npm", - "name": "npm:@react-native/babel-plugin-codegen@0.73.2", - "data": { - "version": "0.73.2", - "packageName": "@react-native/babel-plugin-codegen", - "hash": "sha512-PadyFZWVaWXIBP7Q5dgEL7eAd7tnsgsLjoHJB1hIRZZuVUg1Zqe3nULwC7RFAqOtr5Qx7KXChkFFcKQ3WnZzGw==" - } - }, - "npm:@react-native/babel-plugin-codegen": { - "type": "npm", - "name": "npm:@react-native/babel-plugin-codegen", - "data": { - "version": "0.73.3", - "packageName": "@react-native/babel-plugin-codegen", - "hash": "sha512-+zQrDDbz6lB48LyzFHxNCgXDCBHH+oTRdXAjikRcBUdeG9St9ABbYFLtb799zSxLOrCqFVyXqhJR2vlgLLEbcg==" - } - }, - "npm:@react-native/babel-preset@0.73.19": { - "type": "npm", - "name": "npm:@react-native/babel-preset@0.73.19", - "data": { - "version": "0.73.19", - "packageName": "@react-native/babel-preset", - "hash": "sha512-ujon01uMOREZecIltQxPDmJ6xlVqAUFGI/JCSpeVYdxyXBoBH5dBb0ihj7h6LKH1q1jsnO9z4MxfddtypKkIbg==" - } - }, - "npm:@react-native/babel-preset": { - "type": "npm", - "name": "npm:@react-native/babel-preset", - "data": { - "version": "0.73.20", - "packageName": "@react-native/babel-preset", - "hash": "sha512-fU9NqkusbfFq71l4BWQfqqD/lLcLC0MZ++UYgieA3j8lIEppJTLVauv2RwtD2yltBkjebgYEC5Rwvt1l0MUBXw==" - } - }, - "npm:@react-native/codegen": { - "type": "npm", - "name": "npm:@react-native/codegen", - "data": { - "version": "0.73.2", - "packageName": "@react-native/codegen", - "hash": "sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==" - } - }, - "npm:@react-native/community-cli-plugin": { - "type": "npm", - "name": "npm:@react-native/community-cli-plugin", - "data": { - "version": "0.73.12", - "packageName": "@react-native/community-cli-plugin", - "hash": "sha512-xWU06OkC1cX++Duh/cD/Wv+oZ0oSY3yqbtxAqQA2H3Q+MQltNNJM6MqIHt1VOZSabRf/LVlR1JL6U9TXJirkaw==" - } - }, - "npm:@react-native/debugger-frontend": { - "type": "npm", - "name": "npm:@react-native/debugger-frontend", - "data": { - "version": "0.73.3", - "packageName": "@react-native/debugger-frontend", - "hash": "sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==" - } - }, - "npm:@react-native/dev-middleware": { - "type": "npm", - "name": "npm:@react-native/dev-middleware", - "data": { - "version": "0.73.7", - "packageName": "@react-native/dev-middleware", - "hash": "sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==" - } - }, - "npm:@react-native/gradle-plugin": { - "type": "npm", - "name": "npm:@react-native/gradle-plugin", - "data": { - "version": "0.73.4", - "packageName": "@react-native/gradle-plugin", - "hash": "sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==" - } - }, - "npm:@react-native/js-polyfills": { - "type": "npm", - "name": "npm:@react-native/js-polyfills", - "data": { - "version": "0.73.1", - "packageName": "@react-native/js-polyfills", - "hash": "sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==" - } - }, - "npm:@react-native/metro-babel-transformer": { - "type": "npm", - "name": "npm:@react-native/metro-babel-transformer", - "data": { - "version": "0.73.13", - "packageName": "@react-native/metro-babel-transformer", - "hash": "sha512-k9AQifogQfgUXPlqQSoMtX2KUhniw4XvJl+nZ4hphCH7qiMDAwuP8OmkJbz5E/N+Ro9OFuLE7ax4GlwxaTsAWg==" - } - }, - "npm:@react-native/normalize-color": { - "type": "npm", - "name": "npm:@react-native/normalize-color", - "data": { - "version": "2.1.0", - "packageName": "@react-native/normalize-color", - "hash": "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==" - } - }, - "npm:@react-native/normalize-colors": { - "type": "npm", - "name": "npm:@react-native/normalize-colors", - "data": { - "version": "0.73.2", - "packageName": "@react-native/normalize-colors", - "hash": "sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==" - } - }, - "npm:@react-native/virtualized-lists": { - "type": "npm", - "name": "npm:@react-native/virtualized-lists", - "data": { - "version": "0.73.4", - "packageName": "@react-native/virtualized-lists", - "hash": "sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==" - } - }, - "npm:@react-native/virtualized-lists@0.72.8": { - "type": "npm", - "name": "npm:@react-native/virtualized-lists@0.72.8", - "data": { - "version": "0.72.8", - "packageName": "@react-native/virtualized-lists", - "hash": "sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==" - } - }, - "npm:@react-navigation/bottom-tabs": { - "type": "npm", - "name": "npm:@react-navigation/bottom-tabs", - "data": { - "version": "6.5.11", - "packageName": "@react-navigation/bottom-tabs", - "hash": "sha512-CBN/NOdxnMvmjw+AJQI1kltOYaClTZmGec5pQ3ZNTPX86ytbIOylDIITKMfTgHZcIEFQDymx1SHeS++PIL3Szw==" - } - }, - "npm:@react-navigation/core": { - "type": "npm", - "name": "npm:@react-navigation/core", - "data": { - "version": "6.4.10", - "packageName": "@react-navigation/core", - "hash": "sha512-oYhqxETRHNHKsipm/BtGL0LI43Hs2VSFoWMbBdHK9OqgQPjTVUitslgLcPpo4zApCcmBWoOLX2qPxhsBda644A==" - } - }, - "npm:@react-navigation/elements": { - "type": "npm", - "name": "npm:@react-navigation/elements", - "data": { - "version": "1.3.21", - "packageName": "@react-navigation/elements", - "hash": "sha512-eyS2C6McNR8ihUoYfc166O1D8VYVh9KIl0UQPI8/ZJVsStlfSTgeEEh+WXge6+7SFPnZ4ewzEJdSAHH+jzcEfg==" - } - }, - "npm:@react-navigation/native-stack": { - "type": "npm", - "name": "npm:@react-navigation/native-stack", - "data": { - "version": "6.9.17", - "packageName": "@react-navigation/native-stack", - "hash": "sha512-X8p8aS7JptQq7uZZNFEvfEcPf6tlK4PyVwYDdryRbG98B4bh2wFQYMThxvqa+FGEN7USEuHdv2mF0GhFKfX0ew==" - } - }, - "npm:@react-navigation/native": { - "type": "npm", - "name": "npm:@react-navigation/native", - "data": { - "version": "6.1.9", - "packageName": "@react-navigation/native", - "hash": "sha512-AMuJDpwXE7UlfyhIXaUCCynXmv69Kb8NzKgKJO7v0k0L+u6xUTbt6xvshmJ79vsvaFyaEH9Jg5FMzek5/S5qNw==" - } - }, - "npm:@react-navigation/routers": { - "type": "npm", - "name": "npm:@react-navigation/routers", - "data": { - "version": "6.1.9", - "packageName": "@react-navigation/routers", - "hash": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==" - } - }, - "npm:@react-navigation/stack": { - "type": "npm", - "name": "npm:@react-navigation/stack", - "data": { - "version": "6.3.20", - "packageName": "@react-navigation/stack", - "hash": "sha512-vE6mgZzOgoa5Uy7ayT97Cj+ZIK7DK+JBYVuKUViILlWZy6IWK7HFDuqoChSbZ1ajTIfAxj/acVGg1jkbAKsToA==" - } - }, - "npm:@remix-run/node": { - "type": "npm", - "name": "npm:@remix-run/node", - "data": { - "version": "1.19.3", - "packageName": "@remix-run/node", - "hash": "sha512-z5qrVL65xLXIUpU4mkR4MKlMeKARLepgHAk4W5YY3IBXOreRqOGUC70POViYmY7x38c2Ia1NwqL80H+0h7jbMw==" - } - }, - "npm:@remix-run/router": { - "type": "npm", - "name": "npm:@remix-run/router", - "data": { - "version": "1.7.2", - "packageName": "@remix-run/router", - "hash": "sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==" - } - }, - "npm:@remix-run/server-runtime": { - "type": "npm", - "name": "npm:@remix-run/server-runtime", - "data": { - "version": "1.19.3", - "packageName": "@remix-run/server-runtime", - "hash": "sha512-KzQ+htUsKqpBgKE2tWo7kIIGy3MyHP58Io/itUPvV+weDjApwr9tQr9PZDPA3yAY6rAzLax7BU0NMSYCXWFY5A==" - } - }, - "npm:@remix-run/web-blob": { - "type": "npm", - "name": "npm:@remix-run/web-blob", - "data": { - "version": "3.1.0", - "packageName": "@remix-run/web-blob", - "hash": "sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==" - } - }, - "npm:@remix-run/web-fetch": { - "type": "npm", - "name": "npm:@remix-run/web-fetch", - "data": { - "version": "4.4.2", - "packageName": "@remix-run/web-fetch", - "hash": "sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==" - } - }, - "npm:@remix-run/web-file": { - "type": "npm", - "name": "npm:@remix-run/web-file", - "data": { - "version": "3.1.0", - "packageName": "@remix-run/web-file", - "hash": "sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==" - } - }, - "npm:@remix-run/web-form-data": { - "type": "npm", - "name": "npm:@remix-run/web-form-data", - "data": { - "version": "3.1.0", - "packageName": "@remix-run/web-form-data", - "hash": "sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==" - } - }, - "npm:@remix-run/web-stream": { - "type": "npm", - "name": "npm:@remix-run/web-stream", - "data": { - "version": "1.1.0", - "packageName": "@remix-run/web-stream", - "hash": "sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==" - } - }, - "npm:@segment/loosely-validate-event": { - "type": "npm", - "name": "npm:@segment/loosely-validate-event", - "data": { - "version": "2.0.0", - "packageName": "@segment/loosely-validate-event", - "hash": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==" - } - }, - "npm:@sideway/address": { - "type": "npm", - "name": "npm:@sideway/address", - "data": { - "version": "4.1.4", - "packageName": "@sideway/address", - "hash": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" - } - }, - "npm:@sideway/formula": { - "type": "npm", - "name": "npm:@sideway/formula", - "data": { - "version": "3.0.1", - "packageName": "@sideway/formula", - "hash": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" - } - }, - "npm:@sideway/pinpoint": { - "type": "npm", - "name": "npm:@sideway/pinpoint", - "data": { - "version": "2.0.0", - "packageName": "@sideway/pinpoint", - "hash": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.1", - "packageName": "@sinonjs/commons", - "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.3.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" - } - }, - "npm:@tanstack/query-core": { - "type": "npm", - "name": "npm:@tanstack/query-core", - "data": { - "version": "4.36.1", - "packageName": "@tanstack/query-core", - "hash": "sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==" - } - }, - "npm:@tanstack/react-query": { - "type": "npm", - "name": "npm:@tanstack/react-query", - "data": { - "version": "4.36.1", - "packageName": "@tanstack/react-query", - "hash": "sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==" - } - }, - "npm:@testing-library/jest-native": { - "type": "npm", - "name": "npm:@testing-library/jest-native", - "data": { - "version": "5.4.3", - "packageName": "@testing-library/jest-native", - "hash": "sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==" - } - }, - "npm:@testing-library/react-native": { - "type": "npm", - "name": "npm:@testing-library/react-native", - "data": { - "version": "12.4.3", - "packageName": "@testing-library/react-native", - "hash": "sha512-WLE7VbbR5jZJQl3vfNK7Wt+IHnzhOxyu95Mr56EHmzH3XhC8DkrPVAnUq9asq/QWj4aGnymbinFx6zZys/WZmA==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.8", - "packageName": "@types/babel__generator", - "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__traverse", - "hash": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.5", - "packageName": "@types/body-parser", - "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.13", - "packageName": "@types/bonjour", - "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.5.4", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.7", - "packageName": "@types/eslint-scope", - "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "8.56.2", - "packageName": "@types/eslint", - "hash": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.5", - "packageName": "@types/estree", - "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.17.42", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.21", - "packageName": "@types/express", - "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" - } - }, - "npm:@types/glob": { - "type": "npm", - "name": "npm:@types/glob", - "data": { - "version": "7.2.0", - "packageName": "@types/glob", - "hash": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.9", - "packageName": "@types/graceful-fs", - "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" - } - }, - "npm:@types/hammerjs": { - "type": "npm", - "name": "npm:@types/hammerjs", - "data": { - "version": "2.0.45", - "packageName": "@types/hammerjs", - "hash": "sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==" - } - }, - "npm:@types/html-minifier-terser": { - "type": "npm", - "name": "npm:@types/html-minifier-terser", - "data": { - "version": "6.1.0", - "packageName": "@types/html-minifier-terser", - "hash": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.4", - "packageName": "@types/http-errors", - "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.14", - "packageName": "@types/http-proxy", - "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.6", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "3.0.3", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.4", - "packageName": "@types/istanbul-reports", - "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.11", - "packageName": "@types/jest", - "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/json5": { - "type": "npm", - "name": "npm:@types/json5", - "data": { - "version": "0.0.29", - "packageName": "@types/json5", - "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "3.0.4", - "packageName": "@types/mime", - "hash": "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==" - } - }, - "npm:@types/mime@1.3.5": { - "type": "npm", - "name": "npm:@types/mime@1.3.5", - "data": { - "version": "1.3.5", - "packageName": "@types/mime", - "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" - } - }, - "npm:@types/minimatch": { - "type": "npm", - "name": "npm:@types/minimatch", - "data": { - "version": "5.1.2", - "packageName": "@types/minimatch", - "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - } - }, - "npm:@types/node-forge": { - "type": "npm", - "name": "npm:@types/node-forge", - "data": { - "version": "1.3.11", - "packageName": "@types/node-forge", - "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "20.11.7", - "packageName": "@types/node", - "hash": "sha512-GPmeN1C3XAyV5uybAf4cMLWT9fDWcmQhZVtMFu7OR32WjrqGG+Wnk2V1d0bmtUyE/Zy1QJ9BxyiTih9z8Oks8A==" - } - }, - "npm:@types/prop-types": { - "type": "npm", - "name": "npm:@types/prop-types", - "data": { - "version": "15.7.11", - "packageName": "@types/prop-types", - "hash": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.11", - "packageName": "@types/qs", - "hash": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/react-native": { - "type": "npm", - "name": "npm:@types/react-native", - "data": { - "version": "0.72.8", - "packageName": "@types/react-native", - "hash": "sha512-St6xA7+EoHN5mEYfdWnfYt0e8u6k2FR0P9s2arYgakQGFgU1f9FlPrIEcj0X24pLCF5c5i3WVuLCUdiCYHmOoA==" - } - }, - "npm:@types/react-test-renderer": { - "type": "npm", - "name": "npm:@types/react-test-renderer", - "data": { - "version": "18.0.7", - "packageName": "@types/react-test-renderer", - "hash": "sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==" - } - }, - "npm:@types/react": { - "type": "npm", - "name": "npm:@types/react", - "data": { - "version": "18.2.48", - "packageName": "@types/react", - "hash": "sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/scheduler": { - "type": "npm", - "name": "npm:@types/scheduler", - "data": { - "version": "0.16.8", - "packageName": "@types/scheduler", - "hash": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "7.5.6", - "packageName": "@types/semver", - "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "0.17.4", - "packageName": "@types/send", - "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.4", - "packageName": "@types/serve-index", - "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.5", - "packageName": "@types/serve-static", - "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.36", - "packageName": "@types/sockjs", - "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.5", - "packageName": "@types/tough-cookie", - "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.10", - "packageName": "@types/ws", - "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "21.0.3", - "packageName": "@types/yargs-parser", - "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" - } - }, - "npm:@types/yargs@15.0.19": { - "type": "npm", - "name": "npm:@types/yargs@15.0.19", - "data": { - "version": "15.0.19", - "packageName": "@types/yargs", - "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.32", - "packageName": "@types/yargs", - "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" - } - }, - "npm:@typescript-eslint/eslint-plugin@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==" - } - }, - "npm:@typescript-eslint/parser@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/parser@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==" - } - }, - "npm:@typescript-eslint/scope-manager@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==" - } - }, - "npm:@typescript-eslint/type-utils@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" - } - }, - "npm:@typescript-eslint/types@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/types@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==" - } - }, - "npm:@typescript-eslint/typescript-estree@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==" - } - }, - "npm:@typescript-eslint/utils@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/utils@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==" - } - }, - "npm:@typescript-eslint/visitor-keys@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==" - } - }, - "npm:@ungap/structured-clone": { - "type": "npm", - "name": "npm:@ungap/structured-clone", - "data": { - "version": "1.2.0", - "packageName": "@ungap/structured-clone", - "hash": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" - } - }, - "npm:@urql/core": { - "type": "npm", - "name": "npm:@urql/core", - "data": { - "version": "2.3.6", - "packageName": "@urql/core", - "hash": "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==" - } - }, - "npm:@urql/core@4.2.3": { - "type": "npm", - "name": "npm:@urql/core@4.2.3", - "data": { - "version": "4.2.3", - "packageName": "@urql/core", - "hash": "sha512-DJ9q9+lcs5JL8DcU2J3NqsgeXYJva+1+Qt8HU94kzTPqVOIRRA7ouvy4ksUfPY+B5G2PQ+vLh+JJGyZCNXv0cg==" - } - }, - "npm:@urql/exchange-retry": { - "type": "npm", - "name": "npm:@urql/exchange-retry", - "data": { - "version": "0.3.0", - "packageName": "@urql/exchange-retry", - "hash": "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==" - } - }, - "npm:@web3-storage/multipart-parser": { - "type": "npm", - "name": "npm:@web3-storage/multipart-parser", - "data": { - "version": "1.0.0", - "packageName": "@web3-storage/multipart-parser", - "hash": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" - } - }, - "npm:@welldone-software/why-did-you-render": { - "type": "npm", - "name": "npm:@welldone-software/why-did-you-render", - "data": { - "version": "7.0.1", - "packageName": "@welldone-software/why-did-you-render", - "hash": "sha512-Qe/8Xxa2G+LMdI6VoazescPzjjkHYduCDa8aHOJR50e9Bgs8ihkfMBY+ev7B4oc3N59Zm547Sgjf8h5y0FOyoA==" - } - }, - "npm:@xmldom/xmldom@0.8.10": { - "type": "npm", - "name": "npm:@xmldom/xmldom@0.8.10", - "data": { - "version": "0.8.10", - "packageName": "@xmldom/xmldom", - "hash": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==" - } - }, - "npm:@xmldom/xmldom": { - "type": "npm", - "name": "npm:@xmldom/xmldom", - "data": { - "version": "0.7.13", - "packageName": "@xmldom/xmldom", - "hash": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@zxing/text-encoding": { - "type": "npm", - "name": "npm:@zxing/text-encoding", - "data": { - "version": "0.9.0", - "packageName": "@zxing/text-encoding", - "hash": "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-assertions": { - "type": "npm", - "name": "npm:acorn-import-assertions", - "data": { - "version": "1.9.0", - "packageName": "acorn-import-assertions", - "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.2", - "packageName": "acorn-walk", - "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.11.3", - "packageName": "acorn", - "hash": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:ajv-formats@2.1.1": { - "type": "npm", - "name": "npm:ajv-formats@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ajv-keywords@5.1.0": { - "type": "npm", - "name": "npm:ajv-keywords@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:ajv@8.11.0": { - "type": "npm", - "name": "npm:ajv@8.11.0", - "data": { - "version": "8.11.0", - "packageName": "ajv", - "hash": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:ajv@8.12.0": { - "type": "npm", - "name": "npm:ajv@8.12.0", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:anser": { - "type": "npm", - "name": "npm:anser", - "data": { - "version": "1.4.10", - "packageName": "anser", - "hash": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==" - } - }, - "npm:ansi-escapes@1.4.0": { - "type": "npm", - "name": "npm:ansi-escapes@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "ansi-escapes", - "hash": "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.2", - "packageName": "ansi-escapes", - "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" - } - }, - "npm:ansi-escapes@5.0.0": { - "type": "npm", - "name": "npm:ansi-escapes@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "ansi-escapes", - "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" - } - }, - "npm:ansi-escapes@6.2.0": { - "type": "npm", - "name": "npm:ansi-escapes@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "ansi-escapes", - "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" - } - }, - "npm:ansi-fragments": { - "type": "npm", - "name": "npm:ansi-fragments", - "data": { - "version": "0.2.1", - "packageName": "ansi-fragments", - "hash": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:ansi-regex@2.1.1": { - "type": "npm", - "name": "npm:ansi-regex@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ansi-regex", - "hash": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - } - }, - "npm:ansi-regex@4.1.1": { - "type": "npm", - "name": "npm:ansi-regex@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ansi-regex", - "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:ansi-styles@2.2.1": { - "type": "npm", - "name": "npm:ansi-styles@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "ansi-styles", - "hash": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:any-promise": { - "type": "npm", - "name": "npm:any-promise", - "data": { - "version": "1.3.0", - "packageName": "any-promise", - "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:appdirsjs": { - "type": "npm", - "name": "npm:appdirsjs", - "data": { - "version": "1.2.7", - "packageName": "appdirsjs", - "hash": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==" - } - }, - "npm:application-config-path": { - "type": "npm", - "name": "npm:application-config-path", - "data": { - "version": "0.1.1", - "packageName": "application-config-path", - "hash": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==" - } - }, - "npm:arg@4.1.0": { - "type": "npm", - "name": "npm:arg@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "arg", - "hash": "sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "5.0.2", - "packageName": "arg", - "hash": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.0", - "packageName": "array-buffer-byte-length", - "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - } - }, - "npm:array-includes": { - "type": "npm", - "name": "npm:array-includes", - "data": { - "version": "3.1.7", - "packageName": "array-includes", - "hash": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==" - } - }, - "npm:array-union@1.0.2": { - "type": "npm", - "name": "npm:array-union@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "array-union", - "hash": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:array-union@3.0.1": { - "type": "npm", - "name": "npm:array-union@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "array-union", - "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" - } - }, - "npm:array-uniq": { - "type": "npm", - "name": "npm:array-uniq", - "data": { - "version": "1.0.3", - "packageName": "array-uniq", - "hash": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==" - } - }, - "npm:array.prototype.findlastindex": { - "type": "npm", - "name": "npm:array.prototype.findlastindex", - "data": { - "version": "1.2.3", - "packageName": "array.prototype.findlastindex", - "hash": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flat", - "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flatmap", - "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" - } - }, - "npm:array.prototype.tosorted": { - "type": "npm", - "name": "npm:array.prototype.tosorted", - "data": { - "version": "1.1.2", - "packageName": "array.prototype.tosorted", - "hash": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.2", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" - } - }, - "npm:asap": { - "type": "npm", - "name": "npm:asap", - "data": { - "version": "2.0.6", - "packageName": "asap", - "hash": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - } - }, - "npm:assert": { - "type": "npm", - "name": "npm:assert", - "data": { - "version": "2.1.0", - "packageName": "assert", - "hash": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==" - } - }, - "npm:ast-types": { - "type": "npm", - "name": "npm:ast-types", - "data": { - "version": "0.15.2", - "packageName": "ast-types", - "hash": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "1.0.0", - "packageName": "astral-regex", - "hash": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" - } - }, - "npm:async-limiter": { - "type": "npm", - "name": "npm:async-limiter", - "data": { - "version": "1.0.1", - "packageName": "async-limiter", - "hash": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - } - }, - "npm:asynciterator.prototype": { - "type": "npm", - "name": "npm:asynciterator.prototype", - "data": { - "version": "1.0.0", - "packageName": "asynciterator.prototype", - "hash": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.5", - "packageName": "available-typed-arrays", - "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "0.27.2", - "packageName": "axios", - "hash": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==" - } - }, - "npm:babel-core": { - "type": "npm", - "name": "npm:babel-core", - "data": { - "version": "7.0.0-bridge.0", - "packageName": "babel-core", - "hash": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:babel-loader@8.3.0": { - "type": "npm", - "name": "npm:babel-loader@8.3.0", - "data": { - "version": "8.3.0", - "packageName": "babel-loader", - "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "9.1.3", - "packageName": "babel-loader", - "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-plugin-module-resolver": { - "type": "npm", - "name": "npm:babel-plugin-module-resolver", - "data": { - "version": "5.0.0", - "packageName": "babel-plugin-module-resolver", - "hash": "sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.8", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.9.0", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.5.5", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==" - } - }, - "npm:babel-plugin-react-native-web": { - "type": "npm", - "name": "npm:babel-plugin-react-native-web", - "data": { - "version": "0.18.12", - "packageName": "babel-plugin-react-native-web", - "hash": "sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==" - } - }, - "npm:babel-plugin-syntax-trailing-function-commas": { - "type": "npm", - "name": "npm:babel-plugin-syntax-trailing-function-commas", - "data": { - "version": "7.0.0-beta.0", - "packageName": "babel-plugin-syntax-trailing-function-commas", - "hash": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" - } - }, - "npm:babel-plugin-transform-flow-enums": { - "type": "npm", - "name": "npm:babel-plugin-transform-flow-enums", - "data": { - "version": "0.0.2", - "packageName": "babel-plugin-transform-flow-enums", - "hash": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:babel-preset-expo": { - "type": "npm", - "name": "npm:babel-preset-expo", - "data": { - "version": "10.0.1", - "packageName": "babel-preset-expo", - "hash": "sha512-uWIGmLfbP3dS5+8nesxaW6mQs41d4iP7X82ZwRdisB/wAhKQmuJM9Y1jQe4006uNYkw6Phf2TT03ykLVro7KuQ==" - } - }, - "npm:babel-preset-fbjs": { - "type": "npm", - "name": "npm:babel-preset-fbjs", - "data": { - "version": "3.4.0", - "packageName": "babel-preset-fbjs", - "hash": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:badgin": { - "type": "npm", - "name": "npm:badgin", - "data": { - "version": "1.2.3", - "packageName": "badgin", - "hash": "sha512-NQGA7LcfCpSzIbGRbkgjgdWkjy7HI+Th5VLxTJfW5EeaAf3fnS+xWQaQOCYiny+q6QSvxqoSO04vCx+4u++EJw==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - } - }, - "npm:better-opn": { - "type": "npm", - "name": "npm:better-opn", - "data": { - "version": "3.0.2", - "packageName": "better-opn", - "hash": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==" - } - }, - "npm:big-integer": { - "type": "npm", - "name": "npm:big-integer", - "data": { - "version": "1.6.52", - "packageName": "big-integer", - "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.2.0", - "packageName": "binary-extensions", - "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:blueimp-md5": { - "type": "npm", - "name": "npm:blueimp-md5", - "data": { - "version": "2.19.0", - "packageName": "blueimp-md5", - "hash": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.20.1", - "packageName": "body-parser", - "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" - } - }, - "npm:bonjour-service": { - "type": "npm", - "name": "npm:bonjour-service", - "data": { - "version": "1.2.1", - "packageName": "bonjour-service", - "hash": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:bplist-creator": { - "type": "npm", - "name": "npm:bplist-creator", - "data": { - "version": "0.1.0", - "packageName": "bplist-creator", - "hash": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==" - } - }, - "npm:bplist-parser@0.3.1": { - "type": "npm", - "name": "npm:bplist-parser@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "bplist-parser", - "hash": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==" - } - }, - "npm:bplist-parser": { - "type": "npm", - "name": "npm:bplist-parser", - "data": { - "version": "0.3.2", - "packageName": "bplist-parser", - "hash": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==" - } - }, - "npm:brace-expansion@1.1.11": { - "type": "npm", - "name": "npm:brace-expansion@1.1.11", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.22.2", - "packageName": "browserslist", - "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.1", - "packageName": "bser", - "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" - } - }, - "npm:buffer-alloc-unsafe": { - "type": "npm", - "name": "npm:buffer-alloc-unsafe", - "data": { - "version": "1.1.0", - "packageName": "buffer-alloc-unsafe", - "hash": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" - } - }, - "npm:buffer-alloc": { - "type": "npm", - "name": "npm:buffer-alloc", - "data": { - "version": "1.2.0", - "packageName": "buffer-alloc", - "hash": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==" - } - }, - "npm:buffer-fill": { - "type": "npm", - "name": "npm:buffer-fill", - "data": { - "version": "1.0.0", - "packageName": "buffer-fill", - "hash": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "1.0.3", - "packageName": "builtins", - "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "15.3.0", - "packageName": "cacache", - "hash": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.5", - "packageName": "call-bind", - "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" - } - }, - "npm:caller-callsite": { - "type": "npm", - "name": "npm:caller-callsite", - "data": { - "version": "2.0.0", - "packageName": "caller-callsite", - "hash": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==" - } - }, - "npm:caller-path": { - "type": "npm", - "name": "npm:caller-path", - "data": { - "version": "2.0.0", - "packageName": "caller-path", - "hash": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==" - } - }, - "npm:callsites@2.0.0": { - "type": "npm", - "name": "npm:callsites@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "callsites", - "hash": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camel-case": { - "type": "npm", - "name": "npm:camel-case", - "data": { - "version": "4.1.2", - "packageName": "camel-case", - "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001580", - "packageName": "caniuse-lite", - "hash": "sha512-mtj5ur2FFPZcCEpXFy8ADXbDACuNFXg6mxVDqp7tqooX6l3zwm+d8EPoeOSIFRDvHs8qu7/SLFOGniULkcH2iA==" - } - }, - "npm:chalk@5.3.0": { - "type": "npm", - "name": "npm:chalk@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "chalk", - "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" - } - }, - "npm:chalk@1.1.3": { - "type": "npm", - "name": "npm:chalk@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "chalk", - "hash": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:char-regex@2.0.1": { - "type": "npm", - "name": "npm:char-regex@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "char-regex", - "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" - } - }, - "npm:charenc": { - "type": "npm", - "name": "npm:charenc", - "data": { - "version": "0.0.2", - "packageName": "charenc", - "hash": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==" - } - }, - "npm:chokidar@3.6.0": { - "type": "npm", - "name": "npm:chokidar@3.6.0", - "data": { - "version": "3.6.0", - "packageName": "chokidar", - "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.5.3", - "packageName": "chokidar", - "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:chrome-launcher": { - "type": "npm", - "name": "npm:chrome-launcher", - "data": { - "version": "0.15.2", - "packageName": "chrome-launcher", - "hash": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.3", - "packageName": "chrome-trace-event", - "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" - } - }, - "npm:chromium-edge-launcher": { - "type": "npm", - "name": "npm:chromium-edge-launcher", - "data": { - "version": "1.0.0", - "packageName": "chromium-edge-launcher", - "hash": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==" - } - }, - "npm:ci-info@2.0.0": { - "type": "npm", - "name": "npm:ci-info@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ci-info", - "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.3", - "packageName": "cjs-module-lexer", - "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" - } - }, - "npm:clean-css": { - "type": "npm", - "name": "npm:clean-css", - "data": { - "version": "5.3.3", - "packageName": "clean-css", - "hash": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:clean-webpack-plugin": { - "type": "npm", - "name": "npm:clean-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "clean-webpack-plugin", - "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" - } - }, - "npm:cli-cursor@2.1.0": { - "type": "npm", - "name": "npm:cli-cursor@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "cli-cursor", - "hash": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-cursor@4.0.0": { - "type": "npm", - "name": "npm:cli-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-cursor", - "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.9.2", - "packageName": "cli-spinners", - "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" - } - }, - "npm:cli-styles": { - "type": "npm", - "name": "npm:cli-styles", - "data": { - "version": "0.4.0", - "packageName": "cli-styles", - "hash": "sha512-vftbMiExtwwZn/sEFdD4Niw76lfKCmVSJkWHFyO9kqsNPiE6ngiXfP4sJaO9ak1XC1aNKpY53Fu8uMDy3UjhNA==" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "3.1.0", - "packageName": "cli-truncate", - "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" - } - }, - "npm:cliui@6.0.0": { - "type": "npm", - "name": "npm:cliui@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cliui", - "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:clone@1.0.4": { - "type": "npm", - "name": "npm:clone@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "2.1.2", - "packageName": "clone", - "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.2", - "packageName": "collect-v8-coverage", - "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" - } - }, - "npm:color-convert@1.9.3": { - "type": "npm", - "name": "npm:color-convert@1.9.3", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-name@1.1.3": { - "type": "npm", - "name": "npm:color-name@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.9.1", - "packageName": "color-string", - "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" - } - }, - "npm:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "4.2.3", - "packageName": "color", - "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette@1.4.0": { - "type": "npm", - "name": "npm:colorette@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "colorette", - "hash": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:command-exists": { - "type": "npm", - "name": "npm:command-exists", - "data": { - "version": "1.2.9", - "packageName": "command-exists", - "hash": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - } - }, - "npm:commander@11.0.0": { - "type": "npm", - "name": "npm:commander@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "commander", - "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" - } - }, - "npm:commander@2.20.0": { - "type": "npm", - "name": "npm:commander@2.20.0", - "data": { - "version": "2.20.0", - "packageName": "commander", - "hash": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==" - } - }, - "npm:commander@2.20.3": { - "type": "npm", - "name": "npm:commander@2.20.3", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:commander@4.1.1": { - "type": "npm", - "name": "npm:commander@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "commander", - "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" - } - }, - "npm:commander@5.1.0": { - "type": "npm", - "name": "npm:commander@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "commander", - "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:commander@8.3.0": { - "type": "npm", - "name": "npm:commander@8.3.0", - "data": { - "version": "8.3.0", - "packageName": "commander", - "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" - } - }, - "npm:commander@9.5.0": { - "type": "npm", - "name": "npm:commander@9.5.0", - "data": { - "version": "9.5.0", - "packageName": "commander", - "hash": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - } - }, - "npm:compare-urls": { - "type": "npm", - "name": "npm:compare-urls", - "data": { - "version": "2.0.0", - "packageName": "compare-urls", - "hash": "sha512-eCJcWn2OYFEIqbm70ta7LQowJOOZZqq1a2YbbFCFI1uwSvj+TWMwXVn7vPR1ceFNcAIt5RSTDbwdlX82gYLTkA==" - } - }, - "npm:component-type": { - "type": "npm", - "name": "npm:component-type", - "data": { - "version": "1.2.2", - "packageName": "component-type", - "hash": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.18", - "packageName": "compressible", - "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "2.0.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.7.0", - "packageName": "connect", - "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - } - }, - "npm:cookie-signature@1.2.1": { - "type": "npm", - "name": "npm:cookie-signature@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "cookie-signature", - "hash": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.5.0", - "packageName": "cookie", - "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - } - }, - "npm:cookie@0.4.2": { - "type": "npm", - "name": "npm:cookie@0.4.2", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "10.2.4", - "packageName": "copy-webpack-plugin", - "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.35.1", - "packageName": "core-js-compat", - "hash": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.3", - "packageName": "core-util-is", - "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "5.2.1", - "packageName": "cosmiconfig", - "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:cross-env": { - "type": "npm", - "name": "npm:cross-env", - "data": { - "version": "7.0.3", - "packageName": "cross-env", - "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" - } - }, - "npm:cross-fetch": { - "type": "npm", - "name": "npm:cross-fetch", - "data": { - "version": "3.1.8", - "packageName": "cross-fetch", - "hash": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==" - } - }, - "npm:cross-spawn@6.0.5": { - "type": "npm", - "name": "npm:cross-spawn@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "cross-spawn", - "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:crypt": { - "type": "npm", - "name": "npm:crypt", - "data": { - "version": "0.0.2", - "packageName": "crypt", - "hash": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==" - } - }, - "npm:crypto-random-string": { - "type": "npm", - "name": "npm:crypto-random-string", - "data": { - "version": "1.0.0", - "packageName": "crypto-random-string", - "hash": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==" - } - }, - "npm:crypto-random-string@2.0.0": { - "type": "npm", - "name": "npm:crypto-random-string@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "crypto-random-string", - "hash": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "6.4.1", - "packageName": "css-declaration-sorter", - "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" - } - }, - "npm:css-in-js-utils": { - "type": "npm", - "name": "npm:css-in-js-utils", - "data": { - "version": "3.1.0", - "packageName": "css-in-js-utils", - "hash": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "6.9.1", - "packageName": "css-loader", - "hash": "sha512-OzABOh0+26JKFdMzlK6PY1u5Zx8+Ck7CVRlcGNZoY9qwJjdfu2VWFuprTIpPW+Av5TZTVViYWcFQaEEQURLknQ==" - } - }, - "npm:css-minimizer-webpack-plugin": { - "type": "npm", - "name": "npm:css-minimizer-webpack-plugin", - "data": { - "version": "3.4.1", - "packageName": "css-minimizer-webpack-plugin", - "hash": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "4.3.0", - "packageName": "css-select", - "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" - } - }, - "npm:css-select@5.1.0": { - "type": "npm", - "name": "npm:css-select@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "css-select", - "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "1.1.3", - "packageName": "css-tree", - "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.1.0", - "packageName": "css-what", - "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "5.2.14", - "packageName": "cssnano-preset-default", - "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "3.1.0", - "packageName": "cssnano-utils", - "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" - } - }, - "npm:cssnano": { - "type": "npm", - "name": "npm:cssnano", - "data": { - "version": "5.1.15", - "packageName": "cssnano", - "hash": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==" - } - }, - "npm:csso@4.2.0": { - "type": "npm", - "name": "npm:csso@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "csso", - "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:csstype": { - "type": "npm", - "name": "npm:csstype", - "data": { - "version": "3.1.3", - "packageName": "csstype", - "hash": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - } - }, - "npm:dag-map": { - "type": "npm", - "name": "npm:dag-map", - "data": { - "version": "1.0.2", - "packageName": "dag-map", - "hash": "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==" - } - }, - "npm:data-uri-to-buffer": { - "type": "npm", - "name": "npm:data-uri-to-buffer", - "data": { - "version": "3.0.1", - "packageName": "data-uri-to-buffer", - "hash": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.10", - "packageName": "dayjs", - "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:decamelize": { - "type": "npm", - "name": "npm:decamelize", - "data": { - "version": "1.2.0", - "packageName": "decamelize", - "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:decode-uri-component": { - "type": "npm", - "name": "npm:decode-uri-component", - "data": { - "version": "0.2.2", - "packageName": "decode-uri-component", - "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" - } - }, - "npm:dedent": { - "type": "npm", - "name": "npm:dedent", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.3.1", - "packageName": "deepmerge", - "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "4.2.0", - "packageName": "default-gateway", - "hash": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==" - } - }, - "npm:default-gateway@6.0.3": { - "type": "npm", - "name": "npm:default-gateway@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.1", - "packageName": "define-data-property", - "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.2.1", - "packageName": "define-properties", - "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" - } - }, - "npm:del": { - "type": "npm", - "name": "npm:del", - "data": { - "version": "4.1.1", - "packageName": "del", - "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" - } - }, - "npm:del@6.1.1": { - "type": "npm", - "name": "npm:del@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "del", - "hash": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:denodeify": { - "type": "npm", - "name": "npm:denodeify", - "data": { - "version": "1.2.1", - "packageName": "denodeify", - "hash": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:depd@1.1.2": { - "type": "npm", - "name": "npm:depd@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - } - }, - "npm:deprecated-react-native-prop-types": { - "type": "npm", - "name": "npm:deprecated-react-native-prop-types", - "data": { - "version": "5.0.0", - "packageName": "deprecated-react-native-prop-types", - "hash": "sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.2.0", - "packageName": "destroy", - "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - } - }, - "npm:detect-libc": { - "type": "npm", - "name": "npm:detect-libc", - "data": { - "version": "1.0.3", - "packageName": "detect-libc", - "hash": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.1.0", - "packageName": "detect-node", - "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "5.6.1", - "packageName": "dns-packet", - "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "2.1.0", - "packageName": "doctrine", - "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - } - }, - "npm:doctrine@3.0.0": { - "type": "npm", - "name": "npm:doctrine@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:dom-converter": { - "type": "npm", - "name": "npm:dom-converter", - "data": { - "version": "0.2.0", - "packageName": "dom-converter", - "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "1.4.1", - "packageName": "dom-serializer", - "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" - } - }, - "npm:dom-serializer@2.0.0": { - "type": "npm", - "name": "npm:dom-serializer@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "dom-serializer", - "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "4.3.1", - "packageName": "domhandler", - "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" - } - }, - "npm:domhandler@5.0.3": { - "type": "npm", - "name": "npm:domhandler@5.0.3", - "data": { - "version": "5.0.3", - "packageName": "domhandler", - "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "2.8.0", - "packageName": "domutils", - "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" - } - }, - "npm:domutils@3.1.0": { - "type": "npm", - "name": "npm:domutils@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "domutils", - "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" - } - }, - "npm:dot-case": { - "type": "npm", - "name": "npm:dot-case", - "data": { - "version": "3.0.4", - "packageName": "dot-case", - "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "16.4.1", - "packageName": "dotenv", - "hash": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==" - } - }, - "npm:dotenv@16.0.3": { - "type": "npm", - "name": "npm:dotenv@16.0.3", - "data": { - "version": "16.0.3", - "packageName": "dotenv", - "hash": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.4.647", - "packageName": "electron-to-chromium", - "hash": "sha512-Z/fTNGwc45WrYQhPaEcz5tAJuZZ8G7S/DBnhS6Kgp4BxnS40Z/HqlJ0hHg3Z79IGVzuVartIlTcjw/cQbPLgOw==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.15.0", - "packageName": "enhanced-resolve", - "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" - } - }, - "npm:entities@2.2.0": { - "type": "npm", - "name": "npm:entities@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "entities", - "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:env-editor": { - "type": "npm", - "name": "npm:env-editor", - "data": { - "version": "0.4.2", - "packageName": "env-editor", - "hash": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.11.0", - "packageName": "envinfo", - "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" - } - }, - "npm:eol": { - "type": "npm", - "name": "npm:eol", - "data": { - "version": "0.9.1", - "packageName": "eol", - "hash": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:error-stack-parser": { - "type": "npm", - "name": "npm:error-stack-parser", - "data": { - "version": "2.1.4", - "packageName": "error-stack-parser", - "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" - } - }, - "npm:errorhandler": { - "type": "npm", - "name": "npm:errorhandler", - "data": { - "version": "1.5.1", - "packageName": "errorhandler", - "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.22.3", - "packageName": "es-abstract", - "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" - } - }, - "npm:es-iterator-helpers": { - "type": "npm", - "name": "npm:es-iterator-helpers", - "data": { - "version": "1.0.15", - "packageName": "es-iterator-helpers", - "hash": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "es-module-lexer", - "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.0.2", - "packageName": "es-set-tostringtag", - "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" - } - }, - "npm:es-shim-unscopables": { - "type": "npm", - "name": "npm:es-shim-unscopables", - "data": { - "version": "1.0.2", - "packageName": "es-shim-unscopables", - "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.1", - "packageName": "escalade", - "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "8.10.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==" - } - }, - "npm:eslint-config-universe": { - "type": "npm", - "name": "npm:eslint-config-universe", - "data": { - "version": "11.3.0", - "packageName": "eslint-config-universe", - "hash": "sha512-CL6v7IxV+OJn0q1vqtFVtX+sNUdY7MiIy3/XD0dy96D7RsDvYBWWqs4S1AIB4AdVgraNnv829q1+asluAePSSw==" - } - }, - "npm:eslint-import-resolver-node": { - "type": "npm", - "name": "npm:eslint-import-resolver-node", - "data": { - "version": "0.3.9", - "packageName": "eslint-import-resolver-node", - "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" - } - }, - "npm:eslint-module-utils": { - "type": "npm", - "name": "npm:eslint-module-utils", - "data": { - "version": "2.8.0", - "packageName": "eslint-module-utils", - "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" - } - }, - "npm:eslint-plugin-es": { - "type": "npm", - "name": "npm:eslint-plugin-es", - "data": { - "version": "3.0.1", - "packageName": "eslint-plugin-es", - "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" - } - }, - "npm:eslint-plugin-import": { - "type": "npm", - "name": "npm:eslint-plugin-import", - "data": { - "version": "2.29.1", - "packageName": "eslint-plugin-import", - "hash": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==" - } - }, - "npm:eslint-plugin-node": { - "type": "npm", - "name": "npm:eslint-plugin-node", - "data": { - "version": "11.1.0", - "packageName": "eslint-plugin-node", - "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" - } - }, - "npm:eslint-plugin-prettier": { - "type": "npm", - "name": "npm:eslint-plugin-prettier", - "data": { - "version": "4.2.1", - "packageName": "eslint-plugin-prettier", - "hash": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==" - } - }, - "npm:eslint-plugin-react-hooks": { - "type": "npm", - "name": "npm:eslint-plugin-react-hooks", - "data": { - "version": "4.6.0", - "packageName": "eslint-plugin-react-hooks", - "hash": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==" - } - }, - "npm:eslint-plugin-react-native-globals": { - "type": "npm", - "name": "npm:eslint-plugin-react-native-globals", - "data": { - "version": "0.1.2", - "packageName": "eslint-plugin-react-native-globals", - "hash": "sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==" - } - }, - "npm:eslint-plugin-react-native": { - "type": "npm", - "name": "npm:eslint-plugin-react-native", - "data": { - "version": "4.1.0", - "packageName": "eslint-plugin-react-native", - "hash": "sha512-QLo7rzTBOl43FvVqDdq5Ql9IoElIuTdjrz9SKAXCvULvBoRZ44JGSkx9z4999ZusCsb4rK3gjS8gOGyeYqZv2Q==" - } - }, - "npm:eslint-plugin-react": { - "type": "npm", - "name": "npm:eslint-plugin-react", - "data": { - "version": "7.33.2", - "packageName": "eslint-plugin-react", - "hash": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-scope@7.2.2": { - "type": "npm", - "name": "npm:eslint-scope@7.2.2", - "data": { - "version": "7.2.2", - "packageName": "eslint-scope", - "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" - } - }, - "npm:eslint-utils": { - "type": "npm", - "name": "npm:eslint-utils", - "data": { - "version": "2.1.0", - "packageName": "eslint-utils", - "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - } - }, - "npm:eslint-visitor-keys@1.3.0": { - "type": "npm", - "name": "npm:eslint-visitor-keys@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "8.56.0", - "packageName": "eslint", - "hash": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse@4.3.0": { - "type": "npm", - "name": "npm:estraverse@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:eventemitter3@4.0.7": { - "type": "npm", - "name": "npm:eventemitter3@4.0.7", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "5.0.1", - "packageName": "eventemitter3", - "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:exec-async": { - "type": "npm", - "name": "npm:exec-async", - "data": { - "version": "2.2.0", - "packageName": "exec-async", - "hash": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==" - } - }, - "npm:execa@7.2.0": { - "type": "npm", - "name": "npm:execa@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "execa", - "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" - } - }, - "npm:execa@1.0.0": { - "type": "npm", - "name": "npm:execa@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "execa", - "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:expo-app-loading": { - "type": "npm", - "name": "npm:expo-app-loading", - "data": { - "version": "2.1.1", - "packageName": "expo-app-loading", - "hash": "sha512-b3VNkPuFaI9J847HSpjI4uiuyE4+IWyAIPT9uzbkS7QFknL99DMoihtgzeWzKaJKSAmbYc3ph2Vl9skJAkVYUg==" - } - }, - "npm:expo-application": { - "type": "npm", - "name": "npm:expo-application", - "data": { - "version": "5.8.3", - "packageName": "expo-application", - "hash": "sha512-IISxzpPX+Xe4ynnwX8yY52T6dm1g9sME1GCj4lvUlrdc5xeTPM6U35x7Wj82V7lLWBaVGe+/Tg9EeKqfylCEwA==" - } - }, - "npm:expo-asset": { - "type": "npm", - "name": "npm:expo-asset", - "data": { - "version": "9.0.2", - "packageName": "expo-asset", - "hash": "sha512-PzYKME1MgUOoUvwtdzhAyXkjXOXGiSYqGKG/MsXwWr0Ef5wlBaBm2DCO9V6KYbng5tBPFu6hTjoRNil1tBOSow==" - } - }, - "npm:expo-clipboard": { - "type": "npm", - "name": "npm:expo-clipboard", - "data": { - "version": "5.0.1", - "packageName": "expo-clipboard", - "hash": "sha512-JH853QJPr5W3h87If3aDTnMK+ESSIrwzU2TdfZrqZttVDY2pMIf/w37mVHHNYodXM4ATHXadtOkjKbAa0DWwUg==" - } - }, - "npm:expo-constants": { - "type": "npm", - "name": "npm:expo-constants", - "data": { - "version": "15.4.5", - "packageName": "expo-constants", - "hash": "sha512-1pVVjwk733hbbIjtQcvUFCme540v4gFemdNlaxM2UXKbfRCOh2hzgKN5joHMOysoXQe736TTUrRj7UaZI5Yyhg==" - } - }, - "npm:expo-crypto": { - "type": "npm", - "name": "npm:expo-crypto", - "data": { - "version": "12.8.0", - "packageName": "expo-crypto", - "hash": "sha512-67CoxXz+b4VU1zMo/2kUp+9t6TiVs8HvCvHsW8zoLLAZkVNa3YW1l0arLtQ4oR4HQpEr1i9rAZhP0/mvo+fg5A==" - } - }, - "npm:expo-dev-client": { - "type": "npm", - "name": "npm:expo-dev-client", - "data": { - "version": "3.3.7", - "packageName": "expo-dev-client", - "hash": "sha512-dsucMzezNuP7zxSxYi1EbIA16j491tD9joUlGlpvBW1IylxUmbPraOqUqdXsDxRIAJh5HgJx/8X03Xoo1j7YKw==" - } - }, - "npm:expo-dev-launcher": { - "type": "npm", - "name": "npm:expo-dev-launcher", - "data": { - "version": "3.6.4", - "packageName": "expo-dev-launcher", - "hash": "sha512-i5NGm2QeVl7ePk9nyvW1hAEg29FRMltNNEkRiK/AF77ObrD0YG/FhhidQL8C/SIIm/3RcsjAiw4buF5QRoieKg==" - } - }, - "npm:expo-dev-menu-interface": { - "type": "npm", - "name": "npm:expo-dev-menu-interface", - "data": { - "version": "1.7.2", - "packageName": "expo-dev-menu-interface", - "hash": "sha512-V/geSB9rW0IPTR+d7E5CcvkV0uVUCE7SMHZqE/J0/dH06Wo8AahB16fimXeh5/hTL2Qztq8CQ41xpFUBoA9TEw==" - } - }, - "npm:expo-dev-menu@4.5.4": { - "type": "npm", - "name": "npm:expo-dev-menu@4.5.4", - "data": { - "version": "4.5.4", - "packageName": "expo-dev-menu", - "hash": "sha512-TLCfXKI7r5PJpMKUcslKz9J7tChdYdm6DmOEYwFQC3OLcegXzCT/H92WfTdVXU+xz5XYTcyvnIZQa7/d2Ig90g==" - } - }, - "npm:expo-dev-menu": { - "type": "npm", - "name": "npm:expo-dev-menu", - "data": { - "version": "4.5.5", - "packageName": "expo-dev-menu", - "hash": "sha512-PcbI/SqAvueOIEtR1O0s+WvVD7yizQSqXisDSkBrTym3u8XZSN+K730kz2Z64ukY9YIPG4qWR4sd+9rcjsbMWw==" - } - }, - "npm:expo-device": { - "type": "npm", - "name": "npm:expo-device", - "data": { - "version": "5.9.3", - "packageName": "expo-device", - "hash": "sha512-azH5rz8krDZUJb/arqkcA6oZGaX2T5s4aaXIMFsDDzvq8TW0CttZZy2HFp6itmFdiKGdRpFX3/Gj0n6ZmPoJ/w==" - } - }, - "npm:expo-eas-client": { - "type": "npm", - "name": "npm:expo-eas-client", - "data": { - "version": "0.11.2", - "packageName": "expo-eas-client", - "hash": "sha512-SY7rVFxb4ut/OMTgR7A39Jg+8+hXwQNRpZd+RBpB+B5XV2STj/pWXHnGFhBayEF4umI4SxrOvisY90rlPWVO9Q==" - } - }, - "npm:expo-file-system": { - "type": "npm", - "name": "npm:expo-file-system", - "data": { - "version": "16.0.5", - "packageName": "expo-file-system", - "hash": "sha512-JpKMbKfwTaMCbwUwq7MwcSbPR7r+IqZEL3RFam3ClPHDtKLnlEoywREeaDsWjSZb7dS25hG3WqXspfTuugCDvg==" - } - }, - "npm:expo-font": { - "type": "npm", - "name": "npm:expo-font", - "data": { - "version": "11.10.2", - "packageName": "expo-font", - "hash": "sha512-AE0Q0LiWiVosQ/jlKUPoWoob7p3GwYM2xmLoUkuopO9RYh9NL1hZKHiMKcWBZyDG8Gww1GtBQwh7ZREST8+jjQ==" - } - }, - "npm:expo-haptics": { - "type": "npm", - "name": "npm:expo-haptics", - "data": { - "version": "12.8.1", - "packageName": "expo-haptics", - "hash": "sha512-ntLsHkfle8K8w9MW8pZEw92ZN3sguaGUSSIxv30fPKNeQFu7Cq/h47Qv3tONv2MO3wU48N9FbKnant6XlfptpA==" - } - }, - "npm:expo-json-utils": { - "type": "npm", - "name": "npm:expo-json-utils", - "data": { - "version": "0.12.3", - "packageName": "expo-json-utils", - "hash": "sha512-4pypQdinpNc6XY9wsZk56njvzDh+B/9mISr7FPP3CVk1QGB1nSLh883/BCDSgnsephATZkC5HG+cdE60kCAR6A==" - } - }, - "npm:expo-keep-awake": { - "type": "npm", - "name": "npm:expo-keep-awake", - "data": { - "version": "12.8.2", - "packageName": "expo-keep-awake", - "hash": "sha512-uiQdGbSX24Pt8nGbnmBtrKq6xL/Tm3+DuDRGBk/3ZE/HlizzNosGRIufIMJ/4B4FRw4dw8KU81h2RLuTjbay6g==" - } - }, - "npm:expo-linear-gradient": { - "type": "npm", - "name": "npm:expo-linear-gradient", - "data": { - "version": "12.7.1", - "packageName": "expo-linear-gradient", - "hash": "sha512-2obkeC1hyOlljCpTbO3xS4WkEEYA9UtgDO486H+8wYYl1qf6C05d+LgWEVMD7B7CKI3xG/g5chPr9T0BLMSY4w==" - } - }, - "npm:expo-linking": { - "type": "npm", - "name": "npm:expo-linking", - "data": { - "version": "6.2.2", - "packageName": "expo-linking", - "hash": "sha512-FEe6lP4f7xFT/vjoHRG+tt6EPVtkEGaWNK1smpaUevmNdyCJKqW0PDB8o8sfG6y7fly8ULe8qg3HhKh5J7aqUQ==" - } - }, - "npm:expo-local-authentication": { - "type": "npm", - "name": "npm:expo-local-authentication", - "data": { - "version": "13.8.0", - "packageName": "expo-local-authentication", - "hash": "sha512-h0YA7grVdo3834AS70EUCsalaXrrEnoq+yTvIhRTxiPmzWxUv7rNo5ff+XsIEYNElKPmT/wh/xPV1yo3l3fhGg==" - } - }, - "npm:expo-localization": { - "type": "npm", - "name": "npm:expo-localization", - "data": { - "version": "14.8.3", - "packageName": "expo-localization", - "hash": "sha512-leg1e+7ocUgfNWa7Men/g16waXtdSpBMR9tCdv3CG4wztmFU8C+87VAnnVkvHi4CCUkTLzhP3y0FcE6KIWTwdw==" - } - }, - "npm:expo-manifests": { - "type": "npm", - "name": "npm:expo-manifests", - "data": { - "version": "0.13.2", - "packageName": "expo-manifests", - "hash": "sha512-l0Sia1WmLULx8V41K8RzGLsFoTe4qqthPRGpHjItsYn8ZB6lRrdTBM9OYp2McIflgqN1HAimUCQMFIwJyH+UmA==" - } - }, - "npm:expo-modules-autolinking": { - "type": "npm", - "name": "npm:expo-modules-autolinking", - "data": { - "version": "1.10.2", - "packageName": "expo-modules-autolinking", - "hash": "sha512-OEeoz0+zGx5EJwGtDm9pSywCr+gUCaisZV0mNkK7V3fuRl+EVPBSsI+957JwAc4ZxVps95jy28eLcRRtQ33yVg==" - } - }, - "npm:expo-modules-core": { - "type": "npm", - "name": "npm:expo-modules-core", - "data": { - "version": "1.11.8", - "packageName": "expo-modules-core", - "hash": "sha512-rlctE3nCNLCGv3LosGQNaTuwGrr2SyQA+hOgci/0l+VRc0gFNtvl0gskph9C0tnN1jzBeb8rRZQYVj5ih1yxcA==" - } - }, - "npm:expo-network": { - "type": "npm", - "name": "npm:expo-network", - "data": { - "version": "5.8.0", - "packageName": "expo-network", - "hash": "sha512-mTtyqRgLKvXWB+xCoY5WMtRrpVqYmcXWz3YbyN+X0HRGqXg7a+UYOXeKlxrkwBiadsElhmfMeaj1UpmW79Zw/w==" - } - }, - "npm:expo-notifications": { - "type": "npm", - "name": "npm:expo-notifications", - "data": { - "version": "0.27.5", - "packageName": "expo-notifications", - "hash": "sha512-Ym1vl6/w5X4qEmVmO78T2GapsVeRp2/G2d+0NEUJufh57l6S/KTOlhjtXPJakDmefPcftc2Co5vHsF03Wpd2Bw==" - } - }, - "npm:expo-pwa": { - "type": "npm", - "name": "npm:expo-pwa", - "data": { - "version": "0.0.127", - "packageName": "expo-pwa", - "hash": "sha512-8D9wEDkEXG9r6TPvAFpWt27IiP1cLm/4RWVRUHzFZflbWYLi8GkYArj5LHbbfokybRm1GVAanSrrYFEqHoIUiA==" - } - }, - "npm:expo-router": { - "type": "npm", - "name": "npm:expo-router", - "data": { - "version": "3.4.6", - "packageName": "expo-router", - "hash": "sha512-yxl0QE4KAqLmLyH8AxWsGSV3M34jsAE8X75cOB2oaK0+Pu9VHSUf6w3iRi93IiJ0rOUXm8jKrjhfhZOrrNh7EA==" - } - }, - "npm:expo-screen-orientation": { - "type": "npm", - "name": "npm:expo-screen-orientation", - "data": { - "version": "6.4.1", - "packageName": "expo-screen-orientation", - "hash": "sha512-VM0C9ORNL1aT6Dr2OUeryzV519n0FjtXI2m+HlijOMi1QT2bPg4tBkCd7HLgywU4dZ1Esa46ewUudmk+fOqmMQ==" - } - }, - "npm:expo-secure-store": { - "type": "npm", - "name": "npm:expo-secure-store", - "data": { - "version": "12.8.1", - "packageName": "expo-secure-store", - "hash": "sha512-Ju3jmkHby4w7rIzdYAt9kQyQ7HhHJ0qRaiQOInknhOLIltftHjEgF4I1UmzKc7P5RCfGNmVbEH729Pncp/sHXQ==" - } - }, - "npm:expo-splash-screen": { - "type": "npm", - "name": "npm:expo-splash-screen", - "data": { - "version": "0.26.4", - "packageName": "expo-splash-screen", - "hash": "sha512-2DwofTQ0FFQCsvDysm/msENsbyNsJiAJwK3qK/oXeizECAPqD7bK19J4z9kuEbr7ORPX9MLnTQYKl6kmX3keUg==" - } - }, - "npm:expo-splash-screen@0.17.5": { - "type": "npm", - "name": "npm:expo-splash-screen@0.17.5", - "data": { - "version": "0.17.5", - "packageName": "expo-splash-screen", - "hash": "sha512-ejSO78hwHXz8T9u8kh8t4r6CR4h70iBvA65gX8GK+dYxZl6/IANPbIb2VnUpND9vqfW+JnkDw+ZFst+gDnkpcQ==" - } - }, - "npm:expo-status-bar": { - "type": "npm", - "name": "npm:expo-status-bar", - "data": { - "version": "1.11.1", - "packageName": "expo-status-bar", - "hash": "sha512-ddQEtCOgYHTLlFUe/yH67dDBIoct5VIULthyT3LRJbEwdpzAgueKsX2FYK02ldh440V87PWKCamh7R9evk1rrg==" - } - }, - "npm:expo-structured-headers": { - "type": "npm", - "name": "npm:expo-structured-headers", - "data": { - "version": "3.7.2", - "packageName": "expo-structured-headers", - "hash": "sha512-/nGOyeWUXSUy4aIYKJTwQOznRNs0yKqKPAyEE6jtwvOl9qvfDWx9xskNtShioggBhFAssFkV6RBbPn+xZMQtvw==" - } - }, - "npm:expo-system-ui": { - "type": "npm", - "name": "npm:expo-system-ui", - "data": { - "version": "2.9.3", - "packageName": "expo-system-ui", - "hash": "sha512-RNFNBLJ9lhnjOGrHhtfDc15Ry/lF+SA4kwulmHzYGqaTeYvsL9q0K0+m9qmxuDdrbKJkuurvzvjVylDNnKNFVg==" - } - }, - "npm:expo-updates-interface": { - "type": "npm", - "name": "npm:expo-updates-interface", - "data": { - "version": "0.15.3", - "packageName": "expo-updates-interface", - "hash": "sha512-uLvsbaCmUsXgJqeen8rYH/jPr874ZUCXEvWpKHxrCv5/XATPlYEaDuecbNSGQ+cu78i6MdtB4BHOwZmoH2d47A==" - } - }, - "npm:expo-updates": { - "type": "npm", - "name": "npm:expo-updates", - "data": { - "version": "0.24.8", - "packageName": "expo-updates", - "hash": "sha512-jsnMAMG+Ib5At94LwuA94mQMmHSg4vmI5E0RpTjQ5kRxE10cX4QSzQyvmETnKrD6x+KsZPzEUFD7RIudEnx9JA==" - } - }, - "npm:expo-web-browser": { - "type": "npm", - "name": "npm:expo-web-browser", - "data": { - "version": "12.8.2", - "packageName": "expo-web-browser", - "hash": "sha512-Mw8WoFMSADecNjtC4PZVsVj1/lYdxIAH1jOVV+F8v8SEWYxORWofoShfXg7oUxRLu0iUG8JETfO5y4m8+fOgdg==" - } - }, - "npm:expo": { - "type": "npm", - "name": "npm:expo", - "data": { - "version": "50.0.3", - "packageName": "expo", - "hash": "sha512-3Yk42YShkugC90S24Dbo0mhrq/N3Kfn30FscrjCk3o8ldXh9OdE5RhVi/mc5Cqp28nw5a4DfiGSDFs0mA0t2ng==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.18.2", - "packageName": "express", - "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" - } - }, - "npm:fake-xml-http-request": { - "type": "npm", - "name": "npm:fake-xml-http-request", - "data": { - "version": "2.1.2", - "packageName": "fake-xml-http-request", - "hash": "sha512-HaFMBi7r+oEC9iJNpc3bvcW7Z7iLmM26hPDmlb0mFwyANSsOQAtJxbdWsXITKOzZUyMYK0zYCv3h5yDj9TsiXg==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-diff": { - "type": "npm", - "name": "npm:fast-diff", - "data": { - "version": "1.3.0", - "packageName": "fast-diff", - "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-loops": { - "type": "npm", - "name": "npm:fast-loops", - "data": { - "version": "1.1.3", - "packageName": "fast-loops", - "hash": "sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==" - } - }, - "npm:fast-xml-parser": { - "type": "npm", - "name": "npm:fast-xml-parser", - "data": { - "version": "4.3.3", - "packageName": "fast-xml-parser", - "hash": "sha512-coV/D1MhrShMvU6D0I+VAK3umz6hUaxxhL0yp/9RjfiYUfAv14rDhGQL+PLForhMdr0wq3PiV07WtkkNjJjNHg==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.16.0", - "packageName": "fastq", - "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.4", - "packageName": "faye-websocket", - "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fbemitter": { - "type": "npm", - "name": "npm:fbemitter", - "data": { - "version": "3.0.0", - "packageName": "fbemitter", - "hash": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" - } - }, - "npm:fbjs-css-vars": { - "type": "npm", - "name": "npm:fbjs-css-vars", - "data": { - "version": "1.0.2", - "packageName": "fbjs-css-vars", - "hash": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - } - }, - "npm:fbjs": { - "type": "npm", - "name": "npm:fbjs", - "data": { - "version": "3.0.5", - "packageName": "fbjs", - "hash": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==" - } - }, - "npm:fetch-retry": { - "type": "npm", - "name": "npm:fetch-retry", - "data": { - "version": "4.1.1", - "packageName": "fetch-retry", - "hash": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==" - } - }, - "npm:figures@1.7.0": { - "type": "npm", - "name": "npm:figures@1.7.0", - "data": { - "version": "1.7.0", - "packageName": "figures", - "hash": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==" - } - }, - "npm:figures@2.0.0": { - "type": "npm", - "name": "npm:figures@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "figures", - "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:filter-obj": { - "type": "npm", - "name": "npm:filter-obj", - "data": { - "version": "1.1.0", - "packageName": "filter-obj", - "hash": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.2", - "packageName": "finalhandler", - "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" - } - }, - "npm:finalhandler@1.2.0": { - "type": "npm", - "name": "npm:finalhandler@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "finalhandler", - "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - } - }, - "npm:find-babel-config": { - "type": "npm", - "name": "npm:find-babel-config", - "data": { - "version": "2.0.0", - "packageName": "find-babel-config", - "hash": "sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==" - } - }, - "npm:find-cache-dir@2.1.0": { - "type": "npm", - "name": "npm:find-cache-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-cache-dir", - "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" - } - }, - "npm:find-cache-dir@3.3.2": { - "type": "npm", - "name": "npm:find-cache-dir@3.3.2", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "4.0.0", - "packageName": "find-cache-dir", - "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" - } - }, - "npm:find-up@3.0.0": { - "type": "npm", - "name": "npm:find-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "find-up", - "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - } - }, - "npm:find-up@4.1.0": { - "type": "npm", - "name": "npm:find-up@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:find-yarn-workspace-root": { - "type": "npm", - "name": "npm:find-yarn-workspace-root", - "data": { - "version": "2.0.0", - "packageName": "find-yarn-workspace-root", - "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.9", - "packageName": "flatted", - "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" - } - }, - "npm:flow-enums-runtime": { - "type": "npm", - "name": "npm:flow-enums-runtime", - "data": { - "version": "0.0.6", - "packageName": "flow-enums-runtime", - "hash": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==" - } - }, - "npm:flow-parser@0.227.0": { - "type": "npm", - "name": "npm:flow-parser@0.227.0", - "data": { - "version": "0.227.0", - "packageName": "flow-parser", - "hash": "sha512-nOygtGKcX/siZK/lFzpfdHEfOkfGcTW7rNroR1Zsz6T/JxSahPALXVt5qVHq/fgvMJuv096BTKbgxN3PzVBaDA==" - } - }, - "npm:flow-parser": { - "type": "npm", - "name": "npm:flow-parser", - "data": { - "version": "0.206.0", - "packageName": "flow-parser", - "hash": "sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.5", - "packageName": "follow-redirects", - "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" - } - }, - "npm:fontfaceobserver": { - "type": "npm", - "name": "npm:fontfaceobserver", - "data": { - "version": "2.3.0", - "packageName": "fontfaceobserver", - "hash": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.3", - "packageName": "for-each", - "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:form-data@3.0.1": { - "type": "npm", - "name": "npm:form-data@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "form-data", - "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:framer-motion@3.10.6": { - "type": "npm", - "name": "npm:framer-motion@3.10.6", - "data": { - "version": "3.10.6", - "packageName": "framer-motion", - "hash": "sha512-OxOtKgQS4km9a8dm0IMBtNNp4f0DiHfQ/IzxKs818+Kg9V/Ve/pRUJ2dtWBb6+W4lIPNLgRSpbOwOACVj15XcQ==" - } - }, - "npm:framer-motion": { - "type": "npm", - "name": "npm:framer-motion", - "data": { - "version": "6.5.1", - "packageName": "framer-motion", - "hash": "sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==" - } - }, - "npm:framesync": { - "type": "npm", - "name": "npm:framesync", - "data": { - "version": "5.2.0", - "packageName": "framesync", - "hash": "sha512-dcl92w5SHc0o6pRK3//VBVNvu6WkYkiXmHG6ZIXrVzmgh0aDYMDAaoA3p3LH71JIdN5qmhDcfONFA4Lmq22tNA==" - } - }, - "npm:framesync@6.0.1": { - "type": "npm", - "name": "npm:framesync@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "framesync", - "hash": "sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==" - } - }, - "npm:freeport-async": { - "type": "npm", - "name": "npm:freeport-async", - "data": { - "version": "2.0.0", - "packageName": "freeport-async", - "hash": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - } - }, - "npm:fs-extra@9.0.0": { - "type": "npm", - "name": "npm:fs-extra@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "fs-extra", - "hash": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==" - } - }, - "npm:fs-extra@11.2.0": { - "type": "npm", - "name": "npm:fs-extra@11.2.0", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:fs-extra@8.1.0": { - "type": "npm", - "name": "npm:fs-extra@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.5", - "packageName": "fs-monkey", - "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.6", - "packageName": "function.prototype.name", - "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" - } - }, - "npm:functions-have-names": { - "type": "npm", - "name": "npm:functions-have-names", - "data": { - "version": "1.2.3", - "packageName": "functions-have-names", - "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.2", - "packageName": "get-intrinsic", - "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "3.2.0", - "packageName": "get-port", - "hash": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - } - }, - "npm:get-stream@4.1.0": { - "type": "npm", - "name": "npm:get-stream@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "get-stream", - "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.0", - "packageName": "get-symbol-description", - "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" - } - }, - "npm:getenv": { - "type": "npm", - "name": "npm:getenv", - "data": { - "version": "1.0.0", - "packageName": "getenv", - "hash": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-parent@6.0.2": { - "type": "npm", - "name": "npm:glob-parent@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:glob@7.1.6": { - "type": "npm", - "name": "npm:glob@7.1.6", - "data": { - "version": "7.1.6", - "packageName": "glob", - "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" - } - }, - "npm:glob@10.3.10": { - "type": "npm", - "name": "npm:glob@10.3.10", - "data": { - "version": "10.3.10", - "packageName": "glob", - "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" - } - }, - "npm:glob@6.0.4": { - "type": "npm", - "name": "npm:glob@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "glob", - "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.3", - "packageName": "glob", - "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" - } - }, - "npm:glob@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:globals@11.12.0": { - "type": "npm", - "name": "npm:globals@11.12.0", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "13.24.0", - "packageName": "globals", - "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.3", - "packageName": "globalthis", - "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:globby@12.2.0": { - "type": "npm", - "name": "npm:globby@12.2.0", - "data": { - "version": "12.2.0", - "packageName": "globby", - "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" - } - }, - "npm:globby@6.1.0": { - "type": "npm", - "name": "npm:globby@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "globby", - "hash": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:graphemer": { - "type": "npm", - "name": "npm:graphemer", - "data": { - "version": "1.4.0", - "packageName": "graphemer", - "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - } - }, - "npm:graphql-tag": { - "type": "npm", - "name": "npm:graphql-tag", - "data": { - "version": "2.12.6", - "packageName": "graphql-tag", - "hash": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==" - } - }, - "npm:graphql": { - "type": "npm", - "name": "npm:graphql", - "data": { - "version": "15.8.0", - "packageName": "graphql", - "hash": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.1", - "packageName": "handle-thing", - "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - } - }, - "npm:has-ansi": { - "type": "npm", - "name": "npm:has-ansi", - "data": { - "version": "2.0.0", - "packageName": "has-ansi", - "hash": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.0.2", - "packageName": "has-bigints", - "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" - } - }, - "npm:has-flag@3.0.0": { - "type": "npm", - "name": "npm:has-flag@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.1", - "packageName": "has-property-descriptors", - "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.1", - "packageName": "has-proto", - "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.3", - "packageName": "has-symbols", - "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.0", - "packageName": "has-tostringtag", - "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.0", - "packageName": "hasown", - "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:hermes-estree@0.15.0": { - "type": "npm", - "name": "npm:hermes-estree@0.15.0", - "data": { - "version": "0.15.0", - "packageName": "hermes-estree", - "hash": "sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==" - } - }, - "npm:hermes-estree": { - "type": "npm", - "name": "npm:hermes-estree", - "data": { - "version": "0.18.2", - "packageName": "hermes-estree", - "hash": "sha512-KoLsoWXJ5o81nit1wSyEZnWUGy9cBna9iYMZBR7skKh7okYAYKqQ9/OczwpMHn/cH0hKDyblulGsJ7FknlfVxQ==" - } - }, - "npm:hermes-parser@0.15.0": { - "type": "npm", - "name": "npm:hermes-parser@0.15.0", - "data": { - "version": "0.15.0", - "packageName": "hermes-parser", - "hash": "sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==" - } - }, - "npm:hermes-parser": { - "type": "npm", - "name": "npm:hermes-parser", - "data": { - "version": "0.18.2", - "packageName": "hermes-parser", - "hash": "sha512-1eQfvib+VPpgBZ2zYKQhpuOjw1tH+Emuib6QmjkJWJMhyjM8xnXMvA+76o9LhF0zOAJDZgPfQhg43cyXEyl5Ew==" - } - }, - "npm:hermes-profile-transformer": { - "type": "npm", - "name": "npm:hermes-profile-transformer", - "data": { - "version": "0.0.6", - "packageName": "hermes-profile-transformer", - "hash": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==" - } - }, - "npm:hey-listen": { - "type": "npm", - "name": "npm:hey-listen", - "data": { - "version": "1.0.8", - "packageName": "hey-listen", - "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" - } - }, - "npm:hoist-non-react-statics": { - "type": "npm", - "name": "npm:hoist-non-react-statics", - "data": { - "version": "3.3.2", - "packageName": "hoist-non-react-statics", - "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "3.0.8", - "packageName": "hosted-git-info", - "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.4.0", - "packageName": "html-entities", - "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.2", - "packageName": "html-escaper", - "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - } - }, - "npm:html-minifier-terser": { - "type": "npm", - "name": "npm:html-minifier-terser", - "data": { - "version": "6.1.0", - "packageName": "html-minifier-terser", - "hash": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" - } - }, - "npm:html-parse-stringify": { - "type": "npm", - "name": "npm:html-parse-stringify", - "data": { - "version": "3.0.1", - "packageName": "html-parse-stringify", - "hash": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==" - } - }, - "npm:html-webpack-plugin": { - "type": "npm", - "name": "npm:html-webpack-plugin", - "data": { - "version": "5.6.0", - "packageName": "html-webpack-plugin", - "hash": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "6.1.0", - "packageName": "htmlparser2", - "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.0", - "packageName": "http-errors", - "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.8", - "packageName": "http-parser-js", - "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:human-signals@4.3.1": { - "type": "npm", - "name": "npm:human-signals@4.3.1", - "data": { - "version": "4.3.1", - "packageName": "human-signals", - "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" - } - }, - "npm:husky": { - "type": "npm", - "name": "npm:husky", - "data": { - "version": "8.0.3", - "packageName": "husky", - "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" - } - }, - "npm:hyphenate-style-name": { - "type": "npm", - "name": "npm:hyphenate-style-name", - "data": { - "version": "1.0.4", - "packageName": "hyphenate-style-name", - "hash": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - } - }, - "npm:i18next": { - "type": "npm", - "name": "npm:i18next", - "data": { - "version": "23.7.20", - "packageName": "i18next", - "hash": "sha512-6qykxPpFPuzxC/VlVCXn3JxkHY5VCxf1w+/8Hz+Wxu4ZvfB+m3sbVruJ3C/rDWlE0Z1GCZTR6sBHIx7KGp0yXA==" - } - }, - "npm:iconv-lite@0.4.24": { - "type": "npm", - "name": "npm:iconv-lite@0.4.24", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.0", - "packageName": "ignore", - "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" - } - }, - "npm:image-size": { - "type": "npm", - "name": "npm:image-size", - "data": { - "version": "1.1.1", - "packageName": "image-size", - "hash": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "4.3.5", - "packageName": "immutable", - "hash": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==" - } - }, - "npm:import-fresh@2.0.0": { - "type": "npm", - "name": "npm:import-fresh@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "import-fresh", - "hash": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:infer-owner": { - "type": "npm", - "name": "npm:infer-owner", - "data": { - "version": "1.0.4", - "packageName": "infer-owner", - "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - } - }, - "npm:inflected": { - "type": "npm", - "name": "npm:inflected", - "data": { - "version": "2.1.0", - "packageName": "inflected", - "hash": "sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:inline-style-prefixer": { - "type": "npm", - "name": "npm:inline-style-prefixer", - "data": { - "version": "6.0.4", - "packageName": "inline-style-prefixer", - "hash": "sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==" - } - }, - "npm:internal-ip": { - "type": "npm", - "name": "npm:internal-ip", - "data": { - "version": "4.3.0", - "packageName": "internal-ip", - "hash": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.6", - "packageName": "internal-slot", - "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" - } - }, - "npm:invariant": { - "type": "npm", - "name": "npm:invariant", - "data": { - "version": "2.2.4", - "packageName": "invariant", - "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" - } - }, - "npm:ip-regex": { - "type": "npm", - "name": "npm:ip-regex", - "data": { - "version": "2.1.0", - "packageName": "ip-regex", - "hash": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==" - } - }, - "npm:ip": { - "type": "npm", - "name": "npm:ip", - "data": { - "version": "1.1.8", - "packageName": "ip", - "hash": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:ipaddr.js@2.1.0": { - "type": "npm", - "name": "npm:ipaddr.js@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "ipaddr.js", - "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" - } - }, - "npm:is-arguments": { - "type": "npm", - "name": "npm:is-arguments", - "data": { - "version": "1.1.1", - "packageName": "is-arguments", - "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.2", - "packageName": "is-array-buffer", - "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-arrayish@0.3.2": { - "type": "npm", - "name": "npm:is-arrayish@0.3.2", - "data": { - "version": "0.3.2", - "packageName": "is-arrayish", - "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - }, - "npm:is-async-function": { - "type": "npm", - "name": "npm:is-async-function", - "data": { - "version": "2.0.0", - "packageName": "is-async-function", - "hash": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.4", - "packageName": "is-bigint", - "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.1.2", - "packageName": "is-boolean-object", - "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" - } - }, - "npm:is-buffer": { - "type": "npm", - "name": "npm:is-buffer", - "data": { - "version": "1.1.6", - "packageName": "is-buffer", - "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.7", - "packageName": "is-callable", - "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.13.1", - "packageName": "is-core-module", - "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.0.5", - "packageName": "is-date-object", - "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" - } - }, - "npm:is-directory": { - "type": "npm", - "name": "npm:is-directory", - "data": { - "version": "0.3.1", - "packageName": "is-directory", - "hash": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-extglob@1.0.0": { - "type": "npm", - "name": "npm:is-extglob@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "is-extglob", - "hash": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-finalizationregistry": { - "type": "npm", - "name": "npm:is-finalizationregistry", - "data": { - "version": "1.0.2", - "packageName": "is-finalizationregistry", - "hash": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==" - } - }, - "npm:is-fullwidth-code-point@2.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:is-fullwidth-code-point@4.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.0.10", - "packageName": "is-generator-function", - "hash": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==" - } - }, - "npm:is-glob@2.0.1": { - "type": "npm", - "name": "npm:is-glob@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "is-glob", - "hash": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-invalid-path": { - "type": "npm", - "name": "npm:is-invalid-path", - "data": { - "version": "0.1.0", - "packageName": "is-invalid-path", - "hash": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==" - } - }, - "npm:is-map": { - "type": "npm", - "name": "npm:is-map", - "data": { - "version": "2.0.2", - "packageName": "is-map", - "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" - } - }, - "npm:is-nan": { - "type": "npm", - "name": "npm:is-nan", - "data": { - "version": "1.3.2", - "packageName": "is-nan", - "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.2", - "packageName": "is-negative-zero", - "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.0.7", - "packageName": "is-number-object", - "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-path-cwd": { - "type": "npm", - "name": "npm:is-path-cwd", - "data": { - "version": "2.2.0", - "packageName": "is-path-cwd", - "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - } - }, - "npm:is-path-in-cwd": { - "type": "npm", - "name": "npm:is-path-in-cwd", - "data": { - "version": "2.1.0", - "packageName": "is-path-in-cwd", - "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" - } - }, - "npm:is-path-inside@2.1.0": { - "type": "npm", - "name": "npm:is-path-inside@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "is-path-inside", - "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.3", - "packageName": "is-path-inside", - "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - } - }, - "npm:is-plain-obj@1.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "2.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" - } - }, - "npm:is-plain-obj@3.0.0": { - "type": "npm", - "name": "npm:is-plain-obj@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.1.4", - "packageName": "is-regex", - "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" - } - }, - "npm:is-set": { - "type": "npm", - "name": "npm:is-set", - "data": { - "version": "2.0.2", - "packageName": "is-set", - "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.2", - "packageName": "is-shared-array-buffer", - "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" - } - }, - "npm:is-stream@1.1.0": { - "type": "npm", - "name": "npm:is-stream@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.1", - "packageName": "is-stream", - "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - } - }, - "npm:is-stream@3.0.0": { - "type": "npm", - "name": "npm:is-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-stream", - "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.0.4", - "packageName": "is-symbol", - "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.12", - "packageName": "is-typed-array", - "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-valid-path": { - "type": "npm", - "name": "npm:is-valid-path", - "data": { - "version": "0.1.1", - "packageName": "is-valid-path", - "hash": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==" - } - }, - "npm:is-weakmap": { - "type": "npm", - "name": "npm:is-weakmap", - "data": { - "version": "2.0.1", - "packageName": "is-weakmap", - "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.0.2", - "packageName": "is-weakref", - "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" - } - }, - "npm:is-weakset": { - "type": "npm", - "name": "npm:is-weakset", - "data": { - "version": "2.0.2", - "packageName": "is-weakset", - "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:isarray@1.0.0": { - "type": "npm", - "name": "npm:isarray@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.2", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" - } - }, - "npm:istanbul-lib-instrument@5.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "6.0.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.1", - "packageName": "istanbul-lib-report", - "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.6", - "packageName": "istanbul-reports", - "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" - } - }, - "npm:iterator.prototype": { - "type": "npm", - "name": "npm:iterator.prototype", - "data": { - "version": "1.1.2", - "packageName": "iterator.prototype", - "hash": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.3.6", - "packageName": "jackspeak", - "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-expo": { - "type": "npm", - "name": "npm:jest-expo", - "data": { - "version": "50.0.1", - "packageName": "jest-expo", - "hash": "sha512-osvA63UDLJ/v7MG9UHjU7WJ0oZ0Krq9UhXxm2s6rdOlnt85ARocyMU57RC0T0yzPN47C9Ref45sEeOIxoV4Mzg==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.3", - "packageName": "jest-pnp-resolver", - "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:jest-watch-select-projects": { - "type": "npm", - "name": "npm:jest-watch-select-projects", - "data": { - "version": "2.0.0", - "packageName": "jest-watch-select-projects", - "hash": "sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==" - } - }, - "npm:jest-watch-typeahead": { - "type": "npm", - "name": "npm:jest-watch-typeahead", - "data": { - "version": "2.2.1", - "packageName": "jest-watch-typeahead", - "hash": "sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:jimp-compact": { - "type": "npm", - "name": "npm:jimp-compact", - "data": { - "version": "0.16.1", - "packageName": "jimp-compact", - "hash": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==" - } - }, - "npm:joi": { - "type": "npm", - "name": "npm:joi", - "data": { - "version": "17.12.0", - "packageName": "joi", - "hash": "sha512-HSLsmSmXz+PV9PYoi3p7cgIbj06WnEBNT28n+bbBNcPZXZFqCzzvGqpTBPujx/Z0nh1+KNQPDrNgdmQ8dq0qYw==" - } - }, - "npm:join-component": { - "type": "npm", - "name": "npm:join-component", - "data": { - "version": "1.1.0", - "packageName": "join-component", - "hash": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==" - } - }, - "npm:jotai": { - "type": "npm", - "name": "npm:jotai", - "data": { - "version": "2.4.3", - "packageName": "jotai", - "hash": "sha512-CSAHX9LqWG5WCrU8OgBoZbBJ+Bo9rQU0mPusEF4e0CZ/SNFgurG26vb3UpgvCSJZgYVcUQNiUBM5q86PA8rstQ==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "3.14.1", - "packageName": "js-yaml", - "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - } - }, - "npm:js-yaml@4.1.0": { - "type": "npm", - "name": "npm:js-yaml@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:jsc-android": { - "type": "npm", - "name": "npm:jsc-android", - "data": { - "version": "250231.0.0", - "packageName": "jsc-android", - "hash": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==" - } - }, - "npm:jsc-safe-url": { - "type": "npm", - "name": "npm:jsc-safe-url", - "data": { - "version": "0.2.4", - "packageName": "jsc-safe-url", - "hash": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==" - } - }, - "npm:jscodeshift": { - "type": "npm", - "name": "npm:jscodeshift", - "data": { - "version": "0.14.0", - "packageName": "jscodeshift", - "hash": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-parse-better-errors": { - "type": "npm", - "name": "npm:json-parse-better-errors", - "data": { - "version": "1.0.2", - "packageName": "json-parse-better-errors", - "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-schema-deref-sync": { - "type": "npm", - "name": "npm:json-schema-deref-sync", - "data": { - "version": "0.13.0", - "packageName": "json-schema-deref-sync", - "hash": "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json5@1.0.2": { - "type": "npm", - "name": "npm:json5@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "json5", - "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonfile@4.0.0": { - "type": "npm", - "name": "npm:jsonfile@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsx-ast-utils": { - "type": "npm", - "name": "npm:jsx-ast-utils", - "data": { - "version": "3.3.5", - "packageName": "jsx-ast-utils", - "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:klaw-sync": { - "type": "npm", - "name": "npm:klaw-sync", - "data": { - "version": "6.0.0", - "packageName": "klaw-sync", - "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:launch-editor": { - "type": "npm", - "name": "npm:launch-editor", - "data": { - "version": "2.6.1", - "packageName": "launch-editor", - "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:lighthouse-logger": { - "type": "npm", - "name": "npm:lighthouse-logger", - "data": { - "version": "1.4.2", - "packageName": "lighthouse-logger", - "hash": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==" - } - }, - "npm:lightningcss-darwin-arm64": { - "type": "npm", - "name": "npm:lightningcss-darwin-arm64", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-darwin-arm64", - "hash": "sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==" - } - }, - "npm:lightningcss-darwin-x64@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-darwin-x64@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-darwin-x64", - "hash": "sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==" - } - }, - "npm:lightningcss-linux-arm-gnueabihf@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-arm-gnueabihf", - "hash": "sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==" - } - }, - "npm:lightningcss-linux-arm64-gnu@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-gnu@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-arm64-gnu", - "hash": "sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==" - } - }, - "npm:lightningcss-linux-arm64-musl@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-musl@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-arm64-musl", - "hash": "sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==" - } - }, - "npm:lightningcss-linux-x64-gnu@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-gnu@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-x64-gnu", - "hash": "sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==" - } - }, - "npm:lightningcss-linux-x64-musl@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-musl@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-x64-musl", - "hash": "sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==" - } - }, - "npm:lightningcss-win32-x64-msvc@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-win32-x64-msvc@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-win32-x64-msvc", - "hash": "sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==" - } - }, - "npm:lightningcss": { - "type": "npm", - "name": "npm:lightningcss", - "data": { - "version": "1.19.0", - "packageName": "lightningcss", - "hash": "sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "2.1.0", - "packageName": "lilconfig", - "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "13.3.0", - "packageName": "lint-staged", - "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "6.6.1", - "packageName": "listr2", - "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:locate-path@3.0.0": { - "type": "npm", - "name": "npm:locate-path@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "locate-path", - "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" - } - }, - "npm:locate-path@5.0.0": { - "type": "npm", - "name": "npm:locate-path@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:locate-path@7.2.0": { - "type": "npm", - "name": "npm:locate-path@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "locate-path", - "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.throttle": { - "type": "npm", - "name": "npm:lodash.throttle", - "data": { - "version": "4.1.1", - "packageName": "lodash.throttle", - "hash": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:log-symbols@2.2.0": { - "type": "npm", - "name": "npm:log-symbols@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "log-symbols", - "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "5.0.1", - "packageName": "log-update", - "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" - } - }, - "npm:logkitty": { - "type": "npm", - "name": "npm:logkitty", - "data": { - "version": "0.7.1", - "packageName": "logkitty", - "hash": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==" - } - }, - "npm:loose-envify": { - "type": "npm", - "name": "npm:loose-envify", - "data": { - "version": "1.4.0", - "packageName": "loose-envify", - "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - } - }, - "npm:lower-case": { - "type": "npm", - "name": "npm:lower-case", - "data": { - "version": "2.0.2", - "packageName": "lower-case", - "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" - } - }, - "npm:lru-cache@5.1.1": { - "type": "npm", - "name": "npm:lru-cache@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:lru-cache@10.2.0": { - "type": "npm", - "name": "npm:lru-cache@10.2.0", - "data": { - "version": "10.2.0", - "packageName": "lru-cache", - "hash": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-dir@3.1.0": { - "type": "npm", - "name": "npm:make-dir@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:make-dir@4.0.0": { - "type": "npm", - "name": "npm:make-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:marky": { - "type": "npm", - "name": "npm:marky", - "data": { - "version": "1.2.5", - "packageName": "marky", - "hash": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" - } - }, - "npm:md5-file": { - "type": "npm", - "name": "npm:md5-file", - "data": { - "version": "3.2.3", - "packageName": "md5-file", - "hash": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==" - } - }, - "npm:md5": { - "type": "npm", - "name": "npm:md5", - "data": { - "version": "2.3.0", - "packageName": "md5", - "hash": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==" - } - }, - "npm:md5@2.2.1": { - "type": "npm", - "name": "npm:md5@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "md5", - "hash": "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==" - } - }, - "npm:md5hex": { - "type": "npm", - "name": "npm:md5hex", - "data": { - "version": "1.0.0", - "packageName": "md5hex", - "hash": "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.14", - "packageName": "mdn-data", - "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.6.0", - "packageName": "memfs", - "hash": "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==" - } - }, - "npm:memoize-one": { - "type": "npm", - "name": "npm:memoize-one", - "data": { - "version": "5.2.1", - "packageName": "memoize-one", - "hash": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" - } - }, - "npm:memoize-one@6.0.0": { - "type": "npm", - "name": "npm:memoize-one@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "memoize-one", - "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - } - }, - "npm:memory-cache": { - "type": "npm", - "name": "npm:memory-cache", - "data": { - "version": "0.2.0", - "packageName": "memory-cache", - "hash": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - } - }, - "npm:merge-options": { - "type": "npm", - "name": "npm:merge-options", - "data": { - "version": "3.0.4", - "packageName": "merge-options", - "hash": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - } - }, - "npm:metro-babel-transformer": { - "type": "npm", - "name": "npm:metro-babel-transformer", - "data": { - "version": "0.80.5", - "packageName": "metro-babel-transformer", - "hash": "sha512-sxH6hcWCorhTbk4kaShCWsadzu99WBL4Nvq4m/sDTbp32//iGuxtAnUK+ZV+6IEygr2u9Z0/4XoZ8Sbcl71MpA==" - } - }, - "npm:metro-cache-key": { - "type": "npm", - "name": "npm:metro-cache-key", - "data": { - "version": "0.80.5", - "packageName": "metro-cache-key", - "hash": "sha512-fr3QLZUarsB3tRbVcmr34kCBsTHk0Sh9JXGvBY/w3b2lbre+Lq5gtgLyFElHPecGF7o4z1eK9r3ubxtScHWcbA==" - } - }, - "npm:metro-cache": { - "type": "npm", - "name": "npm:metro-cache", - "data": { - "version": "0.80.5", - "packageName": "metro-cache", - "hash": "sha512-2u+dQ4PZwmC7eZo9uMBNhQQMig9f+w4QWBZwXCdVy/RYOHM0eObgGdMEOwODo73uxie82T9lWzxr3aZOZ+Nqtw==" - } - }, - "npm:metro-config": { - "type": "npm", - "name": "npm:metro-config", - "data": { - "version": "0.80.5", - "packageName": "metro-config", - "hash": "sha512-elqo/lwvF+VjZ1OPyvmW/9hSiGlmcqu+rQvDKw5F5WMX48ZC+ySTD1WcaD7e97pkgAlJHVYqZ98FCjRAYOAFRQ==" - } - }, - "npm:metro-core": { - "type": "npm", - "name": "npm:metro-core", - "data": { - "version": "0.80.5", - "packageName": "metro-core", - "hash": "sha512-vkLuaBhnZxTVpaZO8ZJVEHzjaqSXpOdpAiztSZ+NDaYM6jEFgle3/XIbLW91jTSf2+T8Pj5yB1G7KuOX+BcVwg==" - } - }, - "npm:metro-file-map": { - "type": "npm", - "name": "npm:metro-file-map", - "data": { - "version": "0.80.5", - "packageName": "metro-file-map", - "hash": "sha512-bKCvJ05drjq6QhQxnDUt3I8x7bTcHo3IIKVobEr14BK++nmxFGn/BmFLRzVBlghM6an3gqwpNEYxS5qNc+VKcg==" - } - }, - "npm:metro-minify-terser": { - "type": "npm", - "name": "npm:metro-minify-terser", - "data": { - "version": "0.80.5", - "packageName": "metro-minify-terser", - "hash": "sha512-S7oZLLcab6YXUT6jYFX/ZDMN7Fq6xBGGAG8liMFU1UljX6cTcEC2u+UIafYgCLrdVexp/+ClxrIetVPZ5LtL/g==" - } - }, - "npm:metro-resolver@0.80.5": { - "type": "npm", - "name": "npm:metro-resolver@0.80.5", - "data": { - "version": "0.80.5", - "packageName": "metro-resolver", - "hash": "sha512-haJ/Hveio3zv/Fr4eXVdKzjUeHHDogYok7OpRqPSXGhTXisNXB+sLN7CpcUrCddFRUDLnVaqQOYwhYsFndgUwA==" - } - }, - "npm:metro-runtime": { - "type": "npm", - "name": "npm:metro-runtime", - "data": { - "version": "0.80.5", - "packageName": "metro-runtime", - "hash": "sha512-L0syTWJUdWzfUmKgkScr6fSBVTh6QDr8eKEkRtn40OBd8LPagrJGySBboWSgbyn9eIb4ayW3Y347HxgXBSAjmg==" - } - }, - "npm:metro-source-map": { - "type": "npm", - "name": "npm:metro-source-map", - "data": { - "version": "0.80.5", - "packageName": "metro-source-map", - "hash": "sha512-DwSF4l03mKPNqCtyQ6K23I43qzU1BViAXnuH81eYWdHglP+sDlPpY+/7rUahXEo6qXEHXfAJgVoo1sirbXbmsQ==" - } - }, - "npm:metro-symbolicate": { - "type": "npm", - "name": "npm:metro-symbolicate", - "data": { - "version": "0.80.5", - "packageName": "metro-symbolicate", - "hash": "sha512-IsM4mTYvmo9JvIqwEkCZ5+YeDVPST78Q17ZgljfLdHLSpIivOHp9oVoiwQ/YGbLx0xRHRIS/tKiXueWBnj3UWA==" - } - }, - "npm:metro-transform-plugins": { - "type": "npm", - "name": "npm:metro-transform-plugins", - "data": { - "version": "0.80.5", - "packageName": "metro-transform-plugins", - "hash": "sha512-7IdlTqK/k5+qE3RvIU5QdCJUPk4tHWEqgVuYZu8exeW+s6qOJ66hGIJjXY/P7ccucqF+D4nsbAAW5unkoUdS6g==" - } - }, - "npm:metro-transform-worker": { - "type": "npm", - "name": "npm:metro-transform-worker", - "data": { - "version": "0.80.5", - "packageName": "metro-transform-worker", - "hash": "sha512-Q1oM7hfP+RBgAtzRFBDjPhArELUJF8iRCZ8OidqCpYzQJVGuJZ7InSnIf3hn1JyqiUQwv2f1LXBO78i2rAjzyA==" - } - }, - "npm:metro": { - "type": "npm", - "name": "npm:metro", - "data": { - "version": "0.80.5", - "packageName": "metro", - "hash": "sha512-OE/CGbOgbi8BlTN1QqJgKOBaC27dS0JBQw473JcivrpgVnqIsluROA7AavEaTVUrB9wPUZvoNVDROn5uiM2jfw==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.5", - "packageName": "micromatch", - "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@2.6.0": { - "type": "npm", - "name": "npm:mime@2.6.0", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:mimic-fn@1.2.0": { - "type": "npm", - "name": "npm:mimic-fn@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "mimic-fn", - "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:mimic-fn@4.0.0": { - "type": "npm", - "name": "npm:mimic-fn@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "mimic-fn", - "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" - } - }, - "npm:min-indent": { - "type": "npm", - "name": "npm:min-indent", - "data": { - "version": "1.0.1", - "packageName": "min-indent", - "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.7.7", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-+0n11YGyRavUR3IlaOzJ0/4Il1avMvJ1VJfhWfCn24ITQXhRr1gghbhhrda6tgtNcpZaWKdSuwKq20Jb7fnlyw==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "npm:minimatch@9.0.3": { - "type": "npm", - "name": "npm:minimatch@9.0.3", - "data": { - "version": "9.0.3", - "packageName": "minimatch", - "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" - } - }, - "npm:minimatch@5.1.6": { - "type": "npm", - "name": "npm:minimatch@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "minimatch", - "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "1.0.2", - "packageName": "minipass-collect", - "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:minipass@7.0.4": { - "type": "npm", - "name": "npm:minipass@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "minipass", - "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:miragejs": { - "type": "npm", - "name": "npm:miragejs", - "data": { - "version": "0.1.48", - "packageName": "miragejs", - "hash": "sha512-MGZAq0Q3OuRYgZKvlB69z4gLN4G3PvgC4A2zhkCXCXrLD5wm2cCnwNB59xOBVA+srZ0zEes6u+VylcPIkB4SqA==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "3.0.1", - "packageName": "mitt", - "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:moti": { - "type": "npm", - "name": "npm:moti", - "data": { - "version": "0.25.4", - "packageName": "moti", - "hash": "sha512-UiH0WcWzUYlUmo8Y1F+iyVW+qVVZ3YkXO3Q/gQUZzOhje6+Q0MdllYfqKW2m5IhFs+Vxt2i+osjvWBxXKK2yOw==" - } - }, - "npm:mri": { - "type": "npm", - "name": "npm:mri", - "data": { - "version": "1.2.0", - "packageName": "mri", - "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "1.0.1", - "packageName": "mrmime", - "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - }, - "npm:ms@2.1.2": { - "type": "npm", - "name": "npm:ms@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "7.2.5", - "packageName": "multicast-dns", - "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" - } - }, - "npm:mv": { - "type": "npm", - "name": "npm:mv", - "data": { - "version": "2.1.1", - "packageName": "mv", - "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" - } - }, - "npm:mz": { - "type": "npm", - "name": "npm:mz", - "data": { - "version": "2.7.0", - "packageName": "mz", - "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.7", - "packageName": "nanoid", - "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" - } - }, - "npm:natural-compare-lite": { - "type": "npm", - "name": "npm:natural-compare-lite", - "data": { - "version": "1.4.0", - "packageName": "natural-compare-lite", - "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:ncp": { - "type": "npm", - "name": "npm:ncp", - "data": { - "version": "2.0.0", - "packageName": "ncp", - "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:nested-error-stacks": { - "type": "npm", - "name": "npm:nested-error-stacks", - "data": { - "version": "2.0.1", - "packageName": "nested-error-stacks", - "hash": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "npm:no-case": { - "type": "npm", - "name": "npm:no-case", - "data": { - "version": "3.0.4", - "packageName": "no-case", - "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" - } - }, - "npm:nocache": { - "type": "npm", - "name": "npm:nocache", - "data": { - "version": "3.0.4", - "packageName": "nocache", - "hash": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==" - } - }, - "npm:node-abort-controller": { - "type": "npm", - "name": "npm:node-abort-controller", - "data": { - "version": "3.1.1", - "packageName": "node-abort-controller", - "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - } - }, - "npm:node-dir": { - "type": "npm", - "name": "npm:node-dir", - "data": { - "version": "0.1.17", - "packageName": "node-dir", - "hash": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.7.0", - "packageName": "node-fetch", - "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:node-html-parser": { - "type": "npm", - "name": "npm:node-html-parser", - "data": { - "version": "5.4.2", - "packageName": "node-html-parser", - "hash": "sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.14", - "packageName": "node-releases", - "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - } - }, - "npm:node-stream-zip": { - "type": "npm", - "name": "npm:node-stream-zip", - "data": { - "version": "1.15.0", - "packageName": "node-stream-zip", - "hash": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "2.0.1", - "packageName": "normalize-url", - "hash": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==" - } - }, - "npm:normalize-url@6.1.0": { - "type": "npm", - "name": "npm:normalize-url@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "7.0.0", - "packageName": "npm-package-arg", - "hash": "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:npm-run-path@5.2.0": { - "type": "npm", - "name": "npm:npm-run-path@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "npm-run-path", - "hash": "sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:nullthrows": { - "type": "npm", - "name": "npm:nullthrows", - "data": { - "version": "1.1.1", - "packageName": "nullthrows", - "hash": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.7", - "packageName": "nwsapi", - "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" - } - }, - "npm:ob1": { - "type": "npm", - "name": "npm:ob1", - "data": { - "version": "0.80.5", - "packageName": "ob1", - "hash": "sha512-zYDMnnNrFi/1Tqh0vo3PE4p97Tpl9/4MP2k2ECvkbLOZzQuAYZJLTUYVLZb7hJhbhjT+JJxAwBGS8iu5hCSd1w==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.1", - "packageName": "object-inspect", - "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" - } - }, - "npm:object-is": { - "type": "npm", - "name": "npm:object-is", - "data": { - "version": "1.1.5", - "packageName": "object-is", - "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.5", - "packageName": "object.assign", - "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" - } - }, - "npm:object.entries": { - "type": "npm", - "name": "npm:object.entries", - "data": { - "version": "1.1.7", - "packageName": "object.entries", - "hash": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==" - } - }, - "npm:object.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.7", - "packageName": "object.fromentries", - "hash": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==" - } - }, - "npm:object.groupby": { - "type": "npm", - "name": "npm:object.groupby", - "data": { - "version": "1.0.1", - "packageName": "object.groupby", - "hash": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==" - } - }, - "npm:object.hasown": { - "type": "npm", - "name": "npm:object.hasown", - "data": { - "version": "1.1.3", - "packageName": "object.hasown", - "hash": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.1.7", - "packageName": "object.values", - "hash": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:on-finished@2.3.0": { - "type": "npm", - "name": "npm:on-finished@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:onetime@2.0.1": { - "type": "npm", - "name": "npm:onetime@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "onetime", - "hash": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:onetime@6.0.0": { - "type": "npm", - "name": "npm:onetime@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "onetime", - "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" - } - }, - "npm:open@6.4.0": { - "type": "npm", - "name": "npm:open@6.4.0", - "data": { - "version": "6.4.0", - "packageName": "open", - "hash": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==" - } - }, - "npm:open@7.4.2": { - "type": "npm", - "name": "npm:open@7.4.2", - "data": { - "version": "7.4.2", - "packageName": "open", - "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.3", - "packageName": "optionator", - "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "3.4.0", - "packageName": "ora", - "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" - } - }, - "npm:ora@5.4.1": { - "type": "npm", - "name": "npm:ora@5.4.1", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:os-homedir": { - "type": "npm", - "name": "npm:os-homedir", - "data": { - "version": "1.0.2", - "packageName": "os-homedir", - "hash": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:osenv": { - "type": "npm", - "name": "npm:osenv", - "data": { - "version": "0.1.5", - "packageName": "osenv", - "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:p-locate@3.0.0": { - "type": "npm", - "name": "npm:p-locate@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-locate", - "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - } - }, - "npm:p-locate@4.1.0": { - "type": "npm", - "name": "npm:p-locate@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:p-map@2.1.0": { - "type": "npm", - "name": "npm:p-map@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "p-map", - "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:param-case": { - "type": "npm", - "name": "npm:param-case", - "data": { - "version": "3.0.4", - "packageName": "param-case", - "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-json@4.0.0": { - "type": "npm", - "name": "npm:parse-json@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse-json", - "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:parse-png": { - "type": "npm", - "name": "npm:parse-png", - "data": { - "version": "2.1.0", - "packageName": "parse-png", - "hash": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:pascal-case": { - "type": "npm", - "name": "npm:pascal-case", - "data": { - "version": "3.1.2", - "packageName": "pascal-case", - "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" - } - }, - "npm:pass-stream": { - "type": "npm", - "name": "npm:pass-stream", - "data": { - "version": "0.1.5", - "packageName": "pass-stream", - "hash": "sha512-pGa0s6MkFFPNs9tN3tYbZTaelRX8YIvsb/qmaJ3zjoMd5IJwOvy+sMvdieUDV03MF0O+dklnwG3hJBb2RYbxFA==" - } - }, - "npm:password-prompt": { - "type": "npm", - "name": "npm:password-prompt", - "data": { - "version": "1.1.3", - "packageName": "password-prompt", - "hash": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==" - } - }, - "npm:patch-package": { - "type": "npm", - "name": "npm:patch-package", - "data": { - "version": "7.0.2", - "packageName": "patch-package", - "hash": "sha512-PMYfL8LXxGIRmxXLqlEaBxzKPu7/SdP13ld6GSfAUJUZRmBDPp8chZs0dpzaAFn9TSPnFiMwkC6PJt6pBiAl8Q==" - } - }, - "npm:path-exists@3.0.0": { - "type": "npm", - "name": "npm:path-exists@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - } - }, - "npm:path-is-inside": { - "type": "npm", - "name": "npm:path-is-inside", - "data": { - "version": "1.0.2", - "packageName": "path-is-inside", - "hash": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key@3.1.1": { - "type": "npm", - "name": "npm:path-key@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:path-key@4.0.0": { - "type": "npm", - "name": "npm:path-key@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-key", - "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.10.1", - "packageName": "path-scurry", - "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.0", - "packageName": "picocolors", - "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch@3.0.1": { - "type": "npm", - "name": "npm:picomatch@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "picomatch", - "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.6.0", - "packageName": "pidtree", - "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pinkie-promise": { - "type": "npm", - "name": "npm:pinkie-promise", - "data": { - "version": "2.0.1", - "packageName": "pinkie-promise", - "hash": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==" - } - }, - "npm:pinkie": { - "type": "npm", - "name": "npm:pinkie", - "data": { - "version": "2.0.4", - "packageName": "pinkie", - "hash": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "npm:pkg-dir@3.0.0": { - "type": "npm", - "name": "npm:pkg-dir@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pkg-dir", - "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:pkg-dir@7.0.0": { - "type": "npm", - "name": "npm:pkg-dir@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "pkg-dir", - "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" - } - }, - "npm:pkg-up": { - "type": "npm", - "name": "npm:pkg-up", - "data": { - "version": "3.1.0", - "packageName": "pkg-up", - "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" - } - }, - "npm:plist": { - "type": "npm", - "name": "npm:plist", - "data": { - "version": "3.1.0", - "packageName": "plist", - "hash": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==" - } - }, - "npm:pngjs": { - "type": "npm", - "name": "npm:pngjs", - "data": { - "version": "3.4.0", - "packageName": "pngjs", - "hash": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" - } - }, - "npm:pngjs@5.0.0": { - "type": "npm", - "name": "npm:pngjs@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "pngjs", - "hash": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" - } - }, - "npm:popmotion": { - "type": "npm", - "name": "npm:popmotion", - "data": { - "version": "11.0.3", - "packageName": "popmotion", - "hash": "sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==" - } - }, - "npm:popmotion@9.3.1": { - "type": "npm", - "name": "npm:popmotion@9.3.1", - "data": { - "version": "9.3.1", - "packageName": "popmotion", - "hash": "sha512-Qozvg8rz2OGeZwWuIjqlSXqqgWto/+QL24ll8sAAc0n71KY/wvN1W4sAASxTuHv8YWdDnk9u9IdadyPo2DGvDA==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "8.2.4", - "packageName": "postcss-calc", - "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "5.3.1", - "packageName": "postcss-colormin", - "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-convert-values", - "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "5.1.2", - "packageName": "postcss-discard-comments", - "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "5.1.1", - "packageName": "postcss-discard-empty", - "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-overridden", - "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "5.1.7", - "packageName": "postcss-merge-longhand", - "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "5.1.4", - "packageName": "postcss-merge-rules", - "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-minify-font-values", - "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "5.1.1", - "packageName": "postcss-minify-gradients", - "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "5.1.4", - "packageName": "postcss-minify-params", - "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "5.2.1", - "packageName": "postcss-minify-selectors", - "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.4", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.1.1", - "packageName": "postcss-modules-scope", - "hash": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-charset", - "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-positions", - "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-string", - "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-url", - "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-ordered-values", - "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "5.1.2", - "packageName": "postcss-reduce-initial", - "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "5.1.0", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.15", - "packageName": "postcss-selector-parser", - "hash": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "5.1.0", - "packageName": "postcss-svgo", - "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "5.1.1", - "packageName": "postcss-unique-selectors", - "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.33", - "packageName": "postcss", - "hash": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prepend-http": { - "type": "npm", - "name": "npm:prepend-http", - "data": { - "version": "2.0.0", - "packageName": "prepend-http", - "hash": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==" - } - }, - "npm:pretender": { - "type": "npm", - "name": "npm:pretender", - "data": { - "version": "3.4.7", - "packageName": "pretender", - "hash": "sha512-jkPAvt1BfRi0RKamweJdEcnjkeu7Es8yix3bJ+KgBC5VpG/Ln4JE3hYN6vJym4qprm8Xo5adhWpm3HCoft1dOw==" - } - }, - "npm:prettier-linter-helpers": { - "type": "npm", - "name": "npm:prettier-linter-helpers", - "data": { - "version": "1.0.0", - "packageName": "prettier-linter-helpers", - "hash": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.8.8", - "packageName": "prettier", - "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:pretty-error": { - "type": "npm", - "name": "npm:pretty-error", - "data": { - "version": "4.0.0", - "packageName": "pretty-error", - "hash": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" - } - }, - "npm:pretty-format@26.6.2": { - "type": "npm", - "name": "npm:pretty-format@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "pretty-format", - "hash": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:pretty-quick": { - "type": "npm", - "name": "npm:pretty-quick", - "data": { - "version": "4.0.0", - "packageName": "pretty-quick", - "hash": "sha512-M+2MmeufXb/M7Xw3Afh1gxcYpj+sK0AxEfnfF958ktFeAyi5MsKY5brymVURQLgPLV1QaF5P4pb2oFJ54H3yzQ==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - } - }, - "npm:promise@7.3.1": { - "type": "npm", - "name": "npm:promise@7.3.1", - "data": { - "version": "7.3.1", - "packageName": "promise", - "hash": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" - } - }, - "npm:promise": { - "type": "npm", - "name": "npm:promise", - "data": { - "version": "8.3.0", - "packageName": "promise", - "hash": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==" - } - }, - "npm:prompt-skeleton": { - "type": "npm", - "name": "npm:prompt-skeleton", - "data": { - "version": "0.1.3", - "packageName": "prompt-skeleton", - "hash": "sha512-sv95G/H7jWjfs5SnNaXeMtiwcUXL3RId8JIvcyej6i3v1UPLVitA2DtLi+LlEzsLlOYudBoSQZL3A8rCqT1kpw==" - } - }, - "npm:prompt-sync": { - "type": "npm", - "name": "npm:prompt-sync", - "data": { - "version": "4.2.0", - "packageName": "prompt-sync", - "hash": "sha512-BuEzzc5zptP5LsgV5MZETjDaKSWfchl5U9Luiu8SKp7iZWD5tZalOxvNcZRwv+d2phNFr8xlbxmFNcRKfJOzJw==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:prop-types": { - "type": "npm", - "name": "npm:prop-types", - "data": { - "version": "15.8.1", - "packageName": "prop-types", - "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.9.0", - "packageName": "psl", - "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:punycode@1.4.1": { - "type": "npm", - "name": "npm:punycode@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "punycode", - "hash": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.4", - "packageName": "pure-rand", - "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" - } - }, - "npm:qrcode-terminal": { - "type": "npm", - "name": "npm:qrcode-terminal", - "data": { - "version": "0.11.0", - "packageName": "qrcode-terminal", - "hash": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:qs@6.11.2": { - "type": "npm", - "name": "npm:qs@6.11.2", - "data": { - "version": "6.11.2", - "packageName": "qs", - "hash": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==" - } - }, - "npm:query-string": { - "type": "npm", - "name": "npm:query-string", - "data": { - "version": "6.14.1", - "packageName": "query-string", - "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" - } - }, - "npm:query-string@5.1.1": { - "type": "npm", - "name": "npm:query-string@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "query-string", - "hash": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==" - } - }, - "npm:query-string@7.1.3": { - "type": "npm", - "name": "npm:query-string@7.1.3", - "data": { - "version": "7.1.3", - "packageName": "query-string", - "hash": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:queue": { - "type": "npm", - "name": "npm:queue", - "data": { - "version": "6.0.2", - "packageName": "queue", - "hash": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.5.1", - "packageName": "raw-body", - "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:react-devtools-core": { - "type": "npm", - "name": "npm:react-devtools-core", - "data": { - "version": "4.28.5", - "packageName": "react-devtools-core", - "hash": "sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==" - } - }, - "npm:react-dom": { - "type": "npm", - "name": "npm:react-dom", - "data": { - "version": "18.2.0", - "packageName": "react-dom", - "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" - } - }, - "npm:react-error-overlay@6.0.9": { - "type": "npm", - "name": "npm:react-error-overlay@6.0.9", - "data": { - "version": "6.0.9", - "packageName": "react-error-overlay", - "hash": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" - } - }, - "npm:react-fast-compare": { - "type": "npm", - "name": "npm:react-fast-compare", - "data": { - "version": "3.2.2", - "packageName": "react-fast-compare", - "hash": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" - } - }, - "npm:react-freeze": { - "type": "npm", - "name": "npm:react-freeze", - "data": { - "version": "1.0.3", - "packageName": "react-freeze", - "hash": "sha512-ZnXwLQnGzrDpHBHiC56TXFXvmolPeMjTn1UOm610M4EXGzbEDR7oOIyS2ZiItgbs6eZc4oU/a0hpk8PrcKvv5g==" - } - }, - "npm:react-helmet-async": { - "type": "npm", - "name": "npm:react-helmet-async", - "data": { - "version": "1.3.0", - "packageName": "react-helmet-async", - "hash": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" - } - }, - "npm:react-hook-form": { - "type": "npm", - "name": "npm:react-hook-form", - "data": { - "version": "7.49.3", - "packageName": "react-hook-form", - "hash": "sha512-foD6r3juidAT1cOZzpmD/gOKt7fRsDhXXZ0y28+Al1CHgX+AY1qIN9VSIIItXRq1dN68QrRwl1ORFlwjBaAqeQ==" - } - }, - "npm:react-i18next": { - "type": "npm", - "name": "npm:react-i18next", - "data": { - "version": "14.0.1", - "packageName": "react-i18next", - "hash": "sha512-TMV8hFismBmpMdIehoFHin/okfvgjFhp723RYgIqB4XyhDobVMyukyM3Z8wtTRmajyFMZrBl/OaaXF2P6WjUAw==" - } - }, - "npm:react-is@18.2.0": { - "type": "npm", - "name": "npm:react-is@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "16.13.1", - "packageName": "react-is", - "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - }, - "npm:react-is@17.0.2": { - "type": "npm", - "name": "npm:react-is@17.0.2", - "data": { - "version": "17.0.2", - "packageName": "react-is", - "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - } - }, - "npm:react-native-flipper": { - "type": "npm", - "name": "npm:react-native-flipper", - "data": { - "version": "0.164.0", - "packageName": "react-native-flipper", - "hash": "sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==" - } - }, - "npm:react-native-gesture-handler": { - "type": "npm", - "name": "npm:react-native-gesture-handler", - "data": { - "version": "2.14.1", - "packageName": "react-native-gesture-handler", - "hash": "sha512-YiM1BApV4aKeuwsM6O4C2ufwewYEKk6VMXOt0YqEZFMwABBFWhXLySFZYjBSNRU2USGppJbfHP1q1DfFQpKhdA==" - } - }, - "npm:react-native-iphone-x-helper": { - "type": "npm", - "name": "npm:react-native-iphone-x-helper", - "data": { - "version": "1.3.1", - "packageName": "react-native-iphone-x-helper", - "hash": "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==" - } - }, - "npm:react-native-keyboard-aware-scroll-view": { - "type": "npm", - "name": "npm:react-native-keyboard-aware-scroll-view", - "data": { - "version": "0.9.5", - "packageName": "react-native-keyboard-aware-scroll-view", - "hash": "sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==" - } - }, - "npm:react-native-notificated": { - "type": "npm", - "name": "npm:react-native-notificated", - "data": { - "version": "0.0.1-beta.2", - "packageName": "react-native-notificated", - "hash": "sha512-nOztCH/ja+Qb3bxtzSTmKv9FzOQS0pnfeS5s88wCjNbYiLFFi7RxMXKThkf8ONDLk0rA/PICdtzQvZkmxd9gXg==" - } - }, - "npm:react-native-pager-view": { - "type": "npm", - "name": "npm:react-native-pager-view", - "data": { - "version": "6.2.3", - "packageName": "react-native-pager-view", - "hash": "sha512-dqVpXWFtPNfD3D2QQQr8BP+ullS5MhjRJuF8Z/qml4QTILcrWaW8F5iAxKkQR3Jl0ikcEryG/+SQlNcwlo0Ggg==" - } - }, - "npm:react-native-reanimated": { - "type": "npm", - "name": "npm:react-native-reanimated", - "data": { - "version": "3.6.2", - "packageName": "react-native-reanimated", - "hash": "sha512-IIMREMOrxhtK35drfpzh2UhxNqAOHnuvGgtMofj7yHcMj16tmWZR2zFvMUf6z2MfmXv+aVgFQ6TRZ6yKYf7LNA==" - } - }, - "npm:react-native-safe-area-context": { - "type": "npm", - "name": "npm:react-native-safe-area-context", - "data": { - "version": "4.8.2", - "packageName": "react-native-safe-area-context", - "hash": "sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ==" - } - }, - "npm:react-native-screens": { - "type": "npm", - "name": "npm:react-native-screens", - "data": { - "version": "3.29.0", - "packageName": "react-native-screens", - "hash": "sha512-yB1GoAMamFAcYf4ku94uBPn0/ani9QG7NdI98beJ5cet2YFESYYzuEIuU+kt+CNRcO8qqKeugxlfgAa3HyTqlg==" - } - }, - "npm:react-native-svg": { - "type": "npm", - "name": "npm:react-native-svg", - "data": { - "version": "14.1.0", - "packageName": "react-native-svg", - "hash": "sha512-HeseElmEk+AXGwFZl3h56s0LtYD9HyGdrpg8yd9QM26X+d7kjETrRQ9vCjtxuT5dCZEIQ5uggU1dQhzasnsCWA==" - } - }, - "npm:react-native-web": { - "type": "npm", - "name": "npm:react-native-web", - "data": { - "version": "0.19.10", - "packageName": "react-native-web", - "hash": "sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==" - } - }, - "npm:react-native": { - "type": "npm", - "name": "npm:react-native", - "data": { - "version": "0.73.2", - "packageName": "react-native", - "hash": "sha512-7zj9tcUYpJUBdOdXY6cM8RcXYWkyql4kMyGZflW99E5EuFPoC7Ti+ZQSl7LP9ZPzGD0vMfslwyDW0I4tPWUCFw==" - } - }, - "npm:react-refresh": { - "type": "npm", - "name": "npm:react-refresh", - "data": { - "version": "0.14.0", - "packageName": "react-refresh", - "hash": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==" - } - }, - "npm:react-shallow-renderer": { - "type": "npm", - "name": "npm:react-shallow-renderer", - "data": { - "version": "16.15.0", - "packageName": "react-shallow-renderer", - "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" - } - }, - "npm:react-test-renderer": { - "type": "npm", - "name": "npm:react-test-renderer", - "data": { - "version": "18.2.0", - "packageName": "react-test-renderer", - "hash": "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==" - } - }, - "npm:react": { - "type": "npm", - "name": "npm:react", - "data": { - "version": "18.2.0", - "packageName": "react", - "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" - } - }, - "npm:reactotron-core-client": { - "type": "npm", - "name": "npm:reactotron-core-client", - "data": { - "version": "2.8.13", - "packageName": "reactotron-core-client", - "hash": "sha512-oI4dooNO6wjT42npHLXyBPHfjTUI499BiD4I4/YN86Tzv6WpuGD2kXOTZQl1jU1EhaZxSB/jl2G3p6sz/XvZsQ==" - } - }, - "npm:reactotron-core-contract": { - "type": "npm", - "name": "npm:reactotron-core-contract", - "data": { - "version": "0.2.1", - "packageName": "reactotron-core-contract", - "hash": "sha512-u92hDAuFLj1/OBXkUhyMHJR5TUZQqI4SWZqGlr6Zs5/apwAN11bGi5dbs5r3dUKZLWZvOgvQ/DT6L06JwJQPjw==" - } - }, - "npm:reactotron-react-native": { - "type": "npm", - "name": "npm:reactotron-react-native", - "data": { - "version": "5.0.5", - "packageName": "reactotron-react-native", - "hash": "sha512-/Eai1cKwRRGusOe3poLDM0SMOy6dHTf8iBYd5wSYwqznTz5vUlu0Jkoa8n4O00udoIEA3XSRqre7pAdr035vWQ==" - } - }, - "npm:readable-stream@2.3.8": { - "type": "npm", - "name": "npm:readable-stream@2.3.8", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:readable-stream@1.0.2": { - "type": "npm", - "name": "npm:readable-stream@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "readable-stream", - "hash": "8630138425327017741" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:readline": { - "type": "npm", - "name": "npm:readline", - "data": { - "version": "1.3.0", - "packageName": "readline", - "hash": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" - } - }, - "npm:recast": { - "type": "npm", - "name": "npm:recast", - "data": { - "version": "0.21.5", - "packageName": "recast", - "hash": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==" - } - }, - "npm:redent": { - "type": "npm", - "name": "npm:redent", - "data": { - "version": "3.0.0", - "packageName": "redent", - "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" - } - }, - "npm:reflect.getprototypeof": { - "type": "npm", - "name": "npm:reflect.getprototypeof", - "data": { - "version": "1.0.4", - "packageName": "reflect.getprototypeof", - "hash": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.1", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.13.11", - "packageName": "regenerator-runtime", - "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - } - }, - "npm:regenerator-runtime@0.14.1": { - "type": "npm", - "name": "npm:regenerator-runtime@0.14.1", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.1", - "packageName": "regexp.prototype.flags", - "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" - } - }, - "npm:regexpp": { - "type": "npm", - "name": "npm:regexpp", - "data": { - "version": "3.2.0", - "packageName": "regexpp", - "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:registry-auth-token": { - "type": "npm", - "name": "npm:registry-auth-token", - "data": { - "version": "3.3.2", - "packageName": "registry-auth-token", - "hash": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==" - } - }, - "npm:registry-url": { - "type": "npm", - "name": "npm:registry-url", - "data": { - "version": "3.1.0", - "packageName": "registry-url", - "hash": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:relateurl": { - "type": "npm", - "name": "npm:relateurl", - "data": { - "version": "0.2.7", - "packageName": "relateurl", - "hash": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" - } - }, - "npm:remove-trailing-slash": { - "type": "npm", - "name": "npm:remove-trailing-slash", - "data": { - "version": "0.1.1", - "packageName": "remove-trailing-slash", - "hash": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==" - } - }, - "npm:renderkid": { - "type": "npm", - "name": "npm:renderkid", - "data": { - "version": "3.0.0", - "packageName": "renderkid", - "hash": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:require-main-filename": { - "type": "npm", - "name": "npm:require-main-filename", - "data": { - "version": "2.0.0", - "packageName": "require-main-filename", - "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - } - }, - "npm:requireg": { - "type": "npm", - "name": "npm:requireg", - "data": { - "version": "0.2.2", - "packageName": "requireg", - "hash": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:reselect": { - "type": "npm", - "name": "npm:reselect", - "data": { - "version": "4.1.8", - "packageName": "reselect", - "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:resolve-from@3.0.0": { - "type": "npm", - "name": "npm:resolve-from@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "resolve-from", - "hash": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:resolve@2.0.0-next.5": { - "type": "npm", - "name": "npm:resolve@2.0.0-next.5", - "data": { - "version": "2.0.0-next.5", - "packageName": "resolve", - "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" - } - }, - "npm:resolve@1.7.1": { - "type": "npm", - "name": "npm:resolve@1.7.1", - "data": { - "version": "1.7.1", - "packageName": "resolve", - "hash": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==" - } - }, - "npm:restore-cursor@2.0.0": { - "type": "npm", - "name": "npm:restore-cursor@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "restore-cursor", - "hash": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:restore-cursor@4.0.0": { - "type": "npm", - "name": "npm:restore-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "restore-cursor", - "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.3.1", - "packageName": "rfdc", - "hash": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==" - } - }, - "npm:rimraf@2.7.1": { - "type": "npm", - "name": "npm:rimraf@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "rimraf", - "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@2.4.5": { - "type": "npm", - "name": "npm:rimraf@2.4.5", - "data": { - "version": "2.4.5", - "packageName": "rimraf", - "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" - } - }, - "npm:rimraf@2.6.3": { - "type": "npm", - "name": "npm:rimraf@2.6.3", - "data": { - "version": "2.6.3", - "packageName": "rimraf", - "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" - } - }, - "npm:route-recognizer": { - "type": "npm", - "name": "npm:route-recognizer", - "data": { - "version": "0.3.4", - "packageName": "route-recognizer", - "hash": "sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==" - } - }, - "npm:rtl-detect": { - "type": "npm", - "name": "npm:rtl-detect", - "data": { - "version": "1.1.2", - "packageName": "rtl-detect", - "hash": "sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:safe-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.1.0", - "packageName": "safe-array-concat", - "hash": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:safe-json-stringify": { - "type": "npm", - "name": "npm:safe-json-stringify", - "data": { - "version": "1.2.0", - "packageName": "safe-json-stringify", - "hash": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.0.2", - "packageName": "safe-regex-test", - "hash": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.70.0", - "packageName": "sass", - "hash": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:scheduler@0.24.0-canary-efb381bbf-20230505": { - "type": "npm", - "name": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", - "data": { - "version": "0.24.0-canary-efb381bbf-20230505", - "packageName": "scheduler", - "hash": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==" - } - }, - "npm:scheduler": { - "type": "npm", - "name": "npm:scheduler", - "data": { - "version": "0.23.0", - "packageName": "scheduler", - "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" - } - }, - "npm:schema-utils@2.7.1": { - "type": "npm", - "name": "npm:schema-utils@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "schema-utils", - "hash": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" - } - }, - "npm:schema-utils@3.3.0": { - "type": "npm", - "name": "npm:schema-utils@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "4.2.0", - "packageName": "schema-utils", - "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - } - }, - "npm:select-prompt": { - "type": "npm", - "name": "npm:select-prompt", - "data": { - "version": "0.3.2", - "packageName": "select-prompt", - "hash": "sha512-UcsoayiSDNyp8z3iaLfu/OxosdcCxrJ/FoV4iYkrYZkRrxN2Iepmdj1Fx6neHEMUWNzsbQjKhykaCaLIUUuRFg==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.4.1", - "packageName": "selfsigned", - "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" - } - }, - "npm:semver@7.3.2": { - "type": "npm", - "name": "npm:semver@7.3.2", - "data": { - "version": "7.3.2", - "packageName": "semver", - "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" - } - }, - "npm:semver@7.5.3": { - "type": "npm", - "name": "npm:semver@7.5.3", - "data": { - "version": "7.5.3", - "packageName": "semver", - "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" - } - }, - "npm:semver@5.7.2": { - "type": "npm", - "name": "npm:semver@5.7.2", - "data": { - "version": "5.7.2", - "packageName": "semver", - "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" - } - }, - "npm:semver@6.3.1": { - "type": "npm", - "name": "npm:semver@6.3.1", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.18.0", - "packageName": "send", - "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - } - }, - "npm:serialize-error": { - "type": "npm", - "name": "npm:serialize-error", - "data": { - "version": "2.1.0", - "packageName": "serialize-error", - "hash": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.2", - "packageName": "serialize-javascript", - "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.15.0", - "packageName": "serve-static", - "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - } - }, - "npm:set-cookie-parser": { - "type": "npm", - "name": "npm:set-cookie-parser", - "data": { - "version": "2.6.0", - "packageName": "set-cookie-parser", - "hash": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.0", - "packageName": "set-function-length", - "hash": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.1", - "packageName": "set-function-name", - "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" - } - }, - "npm:setimmediate": { - "type": "npm", - "name": "npm:setimmediate", - "data": { - "version": "1.0.5", - "packageName": "setimmediate", - "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shallowequal": { - "type": "npm", - "name": "npm:shallowequal", - "data": { - "version": "1.1.0", - "packageName": "shallowequal", - "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - } - }, - "npm:shebang-command@1.2.0": { - "type": "npm", - "name": "npm:shebang-command@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:shebang-regex@1.0.0": { - "type": "npm", - "name": "npm:shebang-regex@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.4", - "packageName": "side-channel", - "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:signal-exit@4.1.0": { - "type": "npm", - "name": "npm:signal-exit@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:simple-plist": { - "type": "npm", - "name": "npm:simple-plist", - "data": { - "version": "1.3.1", - "packageName": "simple-plist", - "hash": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.2", - "packageName": "simple-swizzle", - "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:slash@2.0.0": { - "type": "npm", - "name": "npm:slash@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "slash", - "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:slice-ansi@2.1.0": { - "type": "npm", - "name": "npm:slice-ansi@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "slice-ansi", - "hash": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "5.0.0", - "packageName": "slice-ansi", - "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" - } - }, - "npm:slugify": { - "type": "npm", - "name": "npm:slugify", - "data": { - "version": "1.6.6", - "packageName": "slugify", - "hash": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "2.0.0", - "packageName": "sort-keys", - "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" - } - }, - "npm:source-list-map": { - "type": "npm", - "name": "npm:source-list-map", - "data": { - "version": "2.0.1", - "packageName": "source-list-map", - "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.0.2", - "packageName": "source-map-js", - "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "3.0.2", - "packageName": "source-map-loader", - "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:source-map@0.5.6": { - "type": "npm", - "name": "npm:source-map@0.5.6", - "data": { - "version": "0.5.6", - "packageName": "source-map", - "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" - } - }, - "npm:source-map@0.5.7": { - "type": "npm", - "name": "npm:source-map@0.5.7", - "data": { - "version": "0.5.7", - "packageName": "source-map", - "hash": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map@0.7.4": { - "type": "npm", - "name": "npm:source-map@0.7.4", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:split-on-first": { - "type": "npm", - "name": "npm:split-on-first", - "data": { - "version": "1.1.0", - "packageName": "split-on-first", - "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" - } - }, - "npm:split": { - "type": "npm", - "name": "npm:split", - "data": { - "version": "1.0.1", - "packageName": "split", - "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "8.0.1", - "packageName": "ssri", - "hash": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==" - } - }, - "npm:stable": { - "type": "npm", - "name": "npm:stable", - "data": { - "version": "0.1.8", - "packageName": "stable", - "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - } - }, - "npm:stack-generator": { - "type": "npm", - "name": "npm:stack-generator", - "data": { - "version": "2.0.10", - "packageName": "stack-generator", - "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:stackframe": { - "type": "npm", - "name": "npm:stackframe", - "data": { - "version": "1.3.4", - "packageName": "stackframe", - "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - } - }, - "npm:stacktrace-gps": { - "type": "npm", - "name": "npm:stacktrace-gps", - "data": { - "version": "3.1.2", - "packageName": "stacktrace-gps", - "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" - } - }, - "npm:stacktrace-js": { - "type": "npm", - "name": "npm:stacktrace-js", - "data": { - "version": "2.0.2", - "packageName": "stacktrace-js", - "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" - } - }, - "npm:stacktrace-parser": { - "type": "npm", - "name": "npm:stacktrace-parser", - "data": { - "version": "0.1.10", - "packageName": "stacktrace-parser", - "hash": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - } - }, - "npm:statuses@1.5.0": { - "type": "npm", - "name": "npm:statuses@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - }, - "npm:stream-buffers": { - "type": "npm", - "name": "npm:stream-buffers", - "data": { - "version": "2.2.0", - "packageName": "stream-buffers", - "hash": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==" - } - }, - "npm:stream-slice": { - "type": "npm", - "name": "npm:stream-slice", - "data": { - "version": "0.1.2", - "packageName": "stream-slice", - "hash": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==" - } - }, - "npm:strict-uri-encode@1.1.0": { - "type": "npm", - "name": "npm:strict-uri-encode@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "strict-uri-encode", - "hash": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" - } - }, - "npm:strict-uri-encode": { - "type": "npm", - "name": "npm:strict-uri-encode", - "data": { - "version": "2.0.0", - "packageName": "strict-uri-encode", - "hash": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.2", - "packageName": "string-argv", - "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string-length@5.0.1": { - "type": "npm", - "name": "npm:string-length@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "string-length", - "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@^4.2.0", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string.prototype.matchall": { - "type": "npm", - "name": "npm:string.prototype.matchall", - "data": { - "version": "4.0.10", - "packageName": "string.prototype.matchall", - "hash": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.8", - "packageName": "string.prototype.trim", - "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimend", - "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimstart", - "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:string_decoder@1.1.1": { - "type": "npm", - "name": "npm:string_decoder@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@^6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi@3.0.1": { - "type": "npm", - "name": "npm:strip-ansi@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "strip-ansi", - "hash": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==" - } - }, - "npm:strip-ansi@5.2.0": { - "type": "npm", - "name": "npm:strip-ansi@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "strip-ansi", - "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" - } - }, - "npm:strip-ansi@7.1.0": { - "type": "npm", - "name": "npm:strip-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "strip-ansi", - "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-bom@4.0.0": { - "type": "npm", - "name": "npm:strip-bom@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:strip-final-newline@3.0.0": { - "type": "npm", - "name": "npm:strip-final-newline@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" - } - }, - "npm:strip-indent": { - "type": "npm", - "name": "npm:strip-indent", - "data": { - "version": "3.0.0", - "packageName": "strip-indent", - "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" - } - }, - "npm:strnum": { - "type": "npm", - "name": "npm:strnum", - "data": { - "version": "1.0.5", - "packageName": "strnum", - "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - } - }, - "npm:structured-headers": { - "type": "npm", - "name": "npm:structured-headers", - "data": { - "version": "0.4.1", - "packageName": "structured-headers", - "hash": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "3.3.4", - "packageName": "style-loader", - "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" - } - }, - "npm:style-value-types": { - "type": "npm", - "name": "npm:style-value-types", - "data": { - "version": "4.1.1", - "packageName": "style-value-types", - "hash": "sha512-cNLrl6jk+I1T18ZI2KIp/fcqKVuykcNELDrOz7y+TYZR97xmNdN0ewupURvVFnQxVrRJv98TMBq92VMsggq3kw==" - } - }, - "npm:style-value-types@5.0.0": { - "type": "npm", - "name": "npm:style-value-types@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "style-value-types", - "hash": "sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "5.1.1", - "packageName": "stylehacks", - "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" - } - }, - "npm:styleq": { - "type": "npm", - "name": "npm:styleq", - "data": { - "version": "0.1.3", - "packageName": "styleq", - "hash": "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==" - } - }, - "npm:sucrase": { - "type": "npm", - "name": "npm:sucrase", - "data": { - "version": "3.34.0", - "packageName": "sucrase", - "hash": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==" - } - }, - "npm:sucrase@3.35.0": { - "type": "npm", - "name": "npm:sucrase@3.35.0", - "data": { - "version": "3.35.0", - "packageName": "sucrase", - "hash": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==" - } - }, - "npm:sudo-prompt": { - "type": "npm", - "name": "npm:sudo-prompt", - "data": { - "version": "9.1.1", - "packageName": "sudo-prompt", - "hash": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==" - } - }, - "npm:sudo-prompt@8.2.5": { - "type": "npm", - "name": "npm:sudo-prompt@8.2.5", - "data": { - "version": "8.2.5", - "packageName": "sudo-prompt", - "hash": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - } - }, - "npm:sudo-prompt@9.2.1": { - "type": "npm", - "name": "npm:sudo-prompt@9.2.1", - "data": { - "version": "9.2.1", - "packageName": "sudo-prompt", - "hash": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==" - } - }, - "npm:supports-color@2.0.0": { - "type": "npm", - "name": "npm:supports-color@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "supports-color", - "hash": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:supports-color@8.1.1": { - "type": "npm", - "name": "npm:supports-color@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:supports-hyperlinks": { - "type": "npm", - "name": "npm:supports-hyperlinks", - "data": { - "version": "2.3.0", - "packageName": "supports-hyperlinks", - "hash": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svgo@2.8.0": { - "type": "npm", - "name": "npm:svgo@2.8.0", - "data": { - "version": "2.8.0", - "packageName": "svgo", - "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.2.0", - "packageName": "tar", - "hash": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==" - } - }, - "npm:temp-dir@1.0.0": { - "type": "npm", - "name": "npm:temp-dir@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "temp-dir", - "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "2.0.0", - "packageName": "temp-dir", - "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" - } - }, - "npm:temp": { - "type": "npm", - "name": "npm:temp", - "data": { - "version": "0.8.4", - "packageName": "temp", - "hash": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==" - } - }, - "npm:tempy": { - "type": "npm", - "name": "npm:tempy", - "data": { - "version": "0.3.0", - "packageName": "tempy", - "hash": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==" - } - }, - "npm:tempy@0.7.1": { - "type": "npm", - "name": "npm:tempy@0.7.1", - "data": { - "version": "0.7.1", - "packageName": "tempy", - "hash": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==" - } - }, - "npm:terminal-link": { - "type": "npm", - "name": "npm:terminal-link", - "data": { - "version": "2.1.1", - "packageName": "terminal-link", - "hash": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.10", - "packageName": "terser-webpack-plugin", - "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.27.0", - "packageName": "terser", - "hash": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - } - }, - "npm:thenify-all": { - "type": "npm", - "name": "npm:thenify-all", - "data": { - "version": "1.6.0", - "packageName": "thenify-all", - "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" - } - }, - "npm:thenify": { - "type": "npm", - "name": "npm:thenify", - "data": { - "version": "3.3.1", - "packageName": "thenify", - "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" - } - }, - "npm:throat": { - "type": "npm", - "name": "npm:throat", - "data": { - "version": "5.0.0", - "packageName": "throat", - "hash": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.1.0", - "packageName": "thunky", - "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.3", - "packageName": "tough-cookie", - "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.6.8", - "packageName": "traverse", - "hash": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "1.0.3", - "packageName": "ts-api-utils", - "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" - } - }, - "npm:ts-interface-checker": { - "type": "npm", - "name": "npm:ts-interface-checker", - "data": { - "version": "0.1.13", - "packageName": "ts-interface-checker", - "hash": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" - } - }, - "npm:tsconfig-paths@3.15.0": { - "type": "npm", - "name": "npm:tsconfig-paths@3.15.0", - "data": { - "version": "3.15.0", - "packageName": "tsconfig-paths", - "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" - } - }, - "npm:tslib@1.14.1": { - "type": "npm", - "name": "npm:tslib@1.14.1", - "data": { - "version": "1.14.1", - "packageName": "tslib", - "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.6.2", - "packageName": "tslib", - "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - } - }, - "npm:tsutils": { - "type": "npm", - "name": "npm:tsutils", - "data": { - "version": "3.21.0", - "packageName": "tsutils", - "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:type-fest@0.16.0": { - "type": "npm", - "name": "npm:type-fest@0.16.0", - "data": { - "version": "0.16.0", - "packageName": "type-fest", - "hash": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest@0.21.3": { - "type": "npm", - "name": "npm:type-fest@0.21.3", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:type-fest@0.3.1": { - "type": "npm", - "name": "npm:type-fest@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "type-fest", - "hash": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" - } - }, - "npm:type-fest@0.7.1": { - "type": "npm", - "name": "npm:type-fest@0.7.1", - "data": { - "version": "0.7.1", - "packageName": "type-fest", - "hash": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" - } - }, - "npm:type-fest@1.4.0": { - "type": "npm", - "name": "npm:type-fest@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "type-fest", - "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" - } - }, - "npm:type-fest@3.13.1": { - "type": "npm", - "name": "npm:type-fest@3.13.1", - "data": { - "version": "3.13.1", - "packageName": "type-fest", - "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.0", - "packageName": "typed-array-buffer", - "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-length", - "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-offset", - "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.4", - "packageName": "typed-array-length", - "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "5.3.3", - "packageName": "typescript", - "hash": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "0.7.37", - "packageName": "ua-parser-js", - "hash": "sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA==" - } - }, - "npm:ua-parser-js@1.0.37": { - "type": "npm", - "name": "npm:ua-parser-js@1.0.37", - "data": { - "version": "1.0.37", - "packageName": "ua-parser-js", - "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.2", - "packageName": "unbox-primitive", - "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" - } - }, - "npm:undici-types": { - "type": "npm", - "name": "npm:undici-types", - "data": { - "version": "5.26.5", - "packageName": "undici-types", - "hash": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "1.1.1", - "packageName": "unique-filename", - "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "2.0.2", - "packageName": "unique-slug", - "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" - } - }, - "npm:unique-string": { - "type": "npm", - "name": "npm:unique-string", - "data": { - "version": "1.0.0", - "packageName": "unique-string", - "hash": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==" - } - }, - "npm:unique-string@2.0.0": { - "type": "npm", - "name": "npm:unique-string@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "unique-string", - "hash": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" - } - }, - "npm:universalify@0.1.2": { - "type": "npm", - "name": "npm:universalify@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify@1.0.0": { - "type": "npm", - "name": "npm:universalify@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "universalify", - "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "2.0.1", - "packageName": "universalify", - "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.0.13", - "packageName": "update-browserslist-db", - "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" - } - }, - "npm:update-check": { - "type": "npm", - "name": "npm:update-check", - "data": { - "version": "1.5.3", - "packageName": "update-check", - "hash": "sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.0", - "packageName": "url-join", - "hash": "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:url": { - "type": "npm", - "name": "npm:url", - "data": { - "version": "0.11.3", - "packageName": "url", - "hash": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==" - } - }, - "npm:use-debounce": { - "type": "npm", - "name": "npm:use-debounce", - "data": { - "version": "9.0.4", - "packageName": "use-debounce", - "hash": "sha512-6X8H/mikbrt0XE8e+JXRtZ8yYVvKkdYRfmIhWZYsP8rcNs9hk3APV8Ua2mFkKRLcJKVdnX2/Vwrmg2GWKUQEaQ==" - } - }, - "npm:use-latest-callback": { - "type": "npm", - "name": "npm:use-latest-callback", - "data": { - "version": "0.1.9", - "packageName": "use-latest-callback", - "hash": "sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==" - } - }, - "npm:use-sync-external-store": { - "type": "npm", - "name": "npm:use-sync-external-store", - "data": { - "version": "1.2.0", - "packageName": "use-sync-external-store", - "hash": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "npm:util": { - "type": "npm", - "name": "npm:util", - "data": { - "version": "0.12.5", - "packageName": "util", - "hash": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==" - } - }, - "npm:utila": { - "type": "npm", - "name": "npm:utila", - "data": { - "version": "0.4.0", - "packageName": "utila", - "hash": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - } - }, - "npm:uuid@7.0.3": { - "type": "npm", - "name": "npm:uuid@7.0.3", - "data": { - "version": "7.0.3", - "packageName": "uuid", - "hash": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.2.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" - } - }, - "npm:valid-url": { - "type": "npm", - "name": "npm:valid-url", - "data": { - "version": "1.0.9", - "packageName": "valid-url", - "hash": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "3.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:vlq": { - "type": "npm", - "name": "npm:vlq", - "data": { - "version": "1.0.1", - "packageName": "vlq", - "hash": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" - } - }, - "npm:void-elements": { - "type": "npm", - "name": "npm:void-elements", - "data": { - "version": "3.1.0", - "packageName": "void-elements", - "hash": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:warn-once": { - "type": "npm", - "name": "npm:warn-once", - "data": { - "version": "0.1.1", - "packageName": "warn-once", - "hash": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.0", - "packageName": "watchpack", - "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "npm:web-encoding": { - "type": "npm", - "name": "npm:web-encoding", - "data": { - "version": "1.1.5", - "packageName": "web-encoding", - "hash": "sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==" - } - }, - "npm:web-streams-polyfill": { - "type": "npm", - "name": "npm:web-streams-polyfill", - "data": { - "version": "3.3.2", - "packageName": "web-streams-polyfill", - "hash": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webidl-conversions@5.0.0": { - "type": "npm", - "name": "npm:webidl-conversions@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "5.3.3", - "packageName": "webpack-dev-middleware", - "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "4.15.1", - "packageName": "webpack-dev-server", - "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" - } - }, - "npm:webpack-manifest-plugin": { - "type": "npm", - "name": "npm:webpack-manifest-plugin", - "data": { - "version": "4.1.1", - "packageName": "webpack-manifest-plugin", - "hash": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==" - } - }, - "npm:webpack-sources@2.3.1": { - "type": "npm", - "name": "npm:webpack-sources@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "webpack-sources", - "hash": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.90.0", - "packageName": "webpack", - "hash": "sha512-bdmyXRCXeeNIePv6R6tGPyy20aUobw4Zy8r0LUS2EWO+U+Ke/gYDgsCh7bl5rB6jPpr4r0SZa6dPxBxLooDT3w==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-fetch": { - "type": "npm", - "name": "npm:whatwg-fetch", - "data": { - "version": "3.6.20", - "packageName": "whatwg-fetch", - "hash": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:whatwg-url-without-unicode": { - "type": "npm", - "name": "npm:whatwg-url-without-unicode", - "data": { - "version": "8.0.0-3", - "packageName": "whatwg-url-without-unicode", - "hash": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.0.2", - "packageName": "which-boxed-primitive", - "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" - } - }, - "npm:which-builtin-type": { - "type": "npm", - "name": "npm:which-builtin-type", - "data": { - "version": "1.1.3", - "packageName": "which-builtin-type", - "hash": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==" - } - }, - "npm:which-collection": { - "type": "npm", - "name": "npm:which-collection", - "data": { - "version": "1.0.1", - "packageName": "which-collection", - "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" - } - }, - "npm:which-module": { - "type": "npm", - "name": "npm:which-module", - "data": { - "version": "2.0.1", - "packageName": "which-module", - "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.13", - "packageName": "which-typed-array", - "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" - } - }, - "npm:which@1.3.1": { - "type": "npm", - "name": "npm:which@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:wonka": { - "type": "npm", - "name": "npm:wonka", - "data": { - "version": "4.0.15", - "packageName": "wonka", - "hash": "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==" - } - }, - "npm:wonka@6.3.4": { - "type": "npm", - "name": "npm:wonka@6.3.4", - "data": { - "version": "6.3.4", - "packageName": "wonka", - "hash": "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@^7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi@6.2.0": { - "type": "npm", - "name": "npm:wrap-ansi@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "2.4.3", - "packageName": "write-file-atomic", - "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" - } - }, - "npm:write-file-atomic@4.0.2": { - "type": "npm", - "name": "npm:write-file-atomic@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:ws@6.2.2": { - "type": "npm", - "name": "npm:ws@6.2.2", - "data": { - "version": "6.2.2", - "packageName": "ws", - "hash": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "7.5.9", - "packageName": "ws", - "hash": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==" - } - }, - "npm:ws@8.16.0": { - "type": "npm", - "name": "npm:ws@8.16.0", - "data": { - "version": "8.16.0", - "packageName": "ws", - "hash": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==" - } - }, - "npm:xcode": { - "type": "npm", - "name": "npm:xcode", - "data": { - "version": "3.0.1", - "packageName": "xcode", - "hash": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==" - } - }, - "npm:xml-js": { - "type": "npm", - "name": "npm:xml-js", - "data": { - "version": "1.6.11", - "packageName": "xml-js", - "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:xml2js@0.4.23": { - "type": "npm", - "name": "npm:xml2js@0.4.23", - "data": { - "version": "0.4.23", - "packageName": "xml2js", - "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" - } - }, - "npm:xml2js": { - "type": "npm", - "name": "npm:xml2js", - "data": { - "version": "0.6.0", - "packageName": "xml2js", - "hash": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==" - } - }, - "npm:xmlbuilder@14.0.0": { - "type": "npm", - "name": "npm:xmlbuilder@14.0.0", - "data": { - "version": "14.0.0", - "packageName": "xmlbuilder", - "hash": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==" - } - }, - "npm:xmlbuilder@15.1.1": { - "type": "npm", - "name": "npm:xmlbuilder@15.1.1", - "data": { - "version": "15.1.1", - "packageName": "xmlbuilder", - "hash": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==" - } - }, - "npm:xmlbuilder": { - "type": "npm", - "name": "npm:xmlbuilder", - "data": { - "version": "11.0.1", - "packageName": "xmlbuilder", - "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:xmlhttprequest": { - "type": "npm", - "name": "npm:xmlhttprequest", - "data": { - "version": "1.8.0", - "packageName": "xmlhttprequest", - "hash": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" - } - }, - "npm:xtend": { - "type": "npm", - "name": "npm:xtend", - "data": { - "version": "4.0.2", - "packageName": "xtend", - "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - }, - "npm:y18n@4.0.3": { - "type": "npm", - "name": "npm:y18n@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "y18n", - "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yallist@3.1.1": { - "type": "npm", - "name": "npm:yallist@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yaml@2.3.1": { - "type": "npm", - "name": "npm:yaml@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "yaml", - "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:yaml@2.3.4": { - "type": "npm", - "name": "npm:yaml@2.3.4", - "data": { - "version": "2.3.4", - "packageName": "yaml", - "hash": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==" - } - }, - "npm:yargs-parser@18.1.3": { - "type": "npm", - "name": "npm:yargs-parser@18.1.3", - "data": { - "version": "18.1.3", - "packageName": "yargs-parser", - "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yargs@15.4.1": { - "type": "npm", - "name": "npm:yargs@15.4.1", - "data": { - "version": "15.4.1", - "packageName": "yargs", - "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - } - }, - "dependencies": [ - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/code-frame@7.10.4", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame@7.10.4", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-hoist-variables", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals@11.12.0", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals@11.12.0", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-assign", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-display-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-display-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx-development", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx-self", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx-source", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx-development", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-pure-annotations", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx-development", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-pure-annotations", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:find-cache-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals@11.12.0", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals@11.12.0", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@egjs/hammerjs", - "target": "npm:@types/hammerjs", - "type": "static" - }, - { - "source": "npm:@emotion/is-prop-valid", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:@expo/bunyan", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@expo/bunyan", - "target": "npm:mv", - "type": "static" - }, - { - "source": "npm:@expo/bunyan", - "target": "npm:safe-json-stringify", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/code-signing-certificates", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/devcert", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/env", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/image-utils", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/metro-config", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/osascript", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/package-manager", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/plist", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/prebuild-config", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/rudder-sdk-node", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/xcpretty", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@react-native/dev-middleware", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@urql/core", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@urql/exchange-retry", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:better-opn", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:bplist-parser", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:env-editor", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:form-data@3.0.1", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:freeport-async", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:graphql", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:graphql-tag", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:internal-ip", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:json-schema-deref-sync", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:md5hex", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:picomatch@3.0.1", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:qrcode-terminal", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:requireg", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:structured-headers", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:tempy@0.7.1", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:terminal-link", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:url-join", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:ws@8.16.0", - "type": "static" - }, - { - "source": "npm:@expo/code-signing-certificates", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:@expo/code-signing-certificates", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/fingerprint", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/plist", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/sdk-runtime-versions", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xml2js", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/fingerprint", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/plist", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/sdk-runtime-versions", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xml2js", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/fingerprint", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/plist", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/sdk-runtime-versions", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xml2js", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/config-types@47.0.0", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/json-file@8.2.36", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/plist@0.0.18", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/sdk-runtime-versions", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:xml2js@0.4.23", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:sucrase", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:sucrase", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@expo/config-plugins@5.0.4", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@expo/config-types@47.0.0", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@expo/json-file@8.2.36", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:sucrase@3.35.0", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:color-string", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:commander@5.1.0", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:pngjs@5.0.0", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:xml-js", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:application-config-path", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:command-exists", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:eol", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:password-prompt", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:sudo-prompt@8.2.5", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:dotenv@16.0.3", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:fs-extra@9.0.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:jimp-compact", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:parse-png", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:tempy", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:fs-extra@9.0.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:jimp-compact", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:parse-png", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:tempy", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:fs-extra@9.0.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:jimp-compact", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:parse-png", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:tempy", - "type": "static" - }, - { - "source": "npm:@expo/json-file@8.2.36", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/json-file@8.2.36", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:@expo/json-file@8.2.36", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/env", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:babel-preset-fbjs", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:jsc-safe-url", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:lightningcss", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:sucrase", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/env", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:babel-preset-fbjs", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:jsc-safe-url", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:lightningcss", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:sucrase", - "type": "static" - }, - { - "source": "npm:@expo/osascript", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/osascript", - "target": "npm:exec-async", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:split", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:sudo-prompt", - "type": "static" - }, - { - "source": "npm:@expo/plist@0.0.18", - "target": "npm:@xmldom/xmldom", - "type": "static" - }, - { - "source": "npm:@expo/plist@0.0.18", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:@expo/plist@0.0.18", - "target": "npm:xmlbuilder@14.0.0", - "type": "static" - }, - { - "source": "npm:@expo/plist", - "target": "npm:@xmldom/xmldom", - "type": "static" - }, - { - "source": "npm:@expo/plist", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:@expo/plist", - "target": "npm:xmlbuilder@14.0.0", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/config@7.0.3", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/config-plugins@5.0.4", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/config-types@47.0.0", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/image-utils@0.3.22", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/json-file@8.2.36", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:xml2js@0.4.23", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/image-utils", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:xml2js", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/image-utils", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:xml2js", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:@expo/bunyan", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:@segment/loosely-validate-event", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:fetch-retry", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:md5", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:remove-trailing-slash", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@expo/server", - "target": "npm:@remix-run/node", - "type": "static" - }, - { - "source": "npm:@expo/server", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:@expo/server", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/server", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@expo/spawn-async", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:@expo/spawn-async@1.7.2", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:@expo/spawn-async@1.7.2", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:babel-loader@8.3.0", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:clean-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:copy-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:css-minimizer-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:expo-pwa", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:html-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:mini-css-extract-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:node-html-parser", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:webpack-manifest-plugin", - "type": "static" - }, - { - "source": "npm:@expo/xcpretty", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/xcpretty", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/xcpretty", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/xcpretty", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:@gorhom/bottom-sheet", - "target": "npm:@gorhom/portal", - "type": "static" - }, - { - "source": "npm:@gorhom/bottom-sheet", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:@gorhom/portal", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@hapi/topo", - "target": "npm:@hapi/hoek", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:@humanwhocodes/object-schema", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/create-cache-key-function", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/create-cache-key-function", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic@4.0.2", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/yargs@15.0.19", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@motify/components", - "target": "npm:@motify/core", - "type": "static" - }, - { - "source": "npm:@motify/components@0.18.0", - "target": "npm:@motify/core@0.18.0", - "type": "static" - }, - { - "source": "npm:@motify/core", - "target": "npm:framer-motion@3.10.6", - "type": "static" - }, - { - "source": "npm:@motify/core@0.18.0", - "target": "npm:framer-motion", - "type": "static" - }, - { - "source": "npm:@motify/interactions", - "target": "npm:@motify/components", - "type": "static" - }, - { - "source": "npm:@motify/interactions", - "target": "npm:@motify/core", - "type": "static" - }, - { - "source": "npm:@motify/skeleton", - "target": "npm:@motify/components@0.18.0", - "type": "static" - }, - { - "source": "npm:@motify/skeleton", - "target": "npm:@motify/core@0.18.0", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/easing", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/animation", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/generators", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/easing", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/easing", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:@gar/promisify", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:@radix-ui/react-compose-refs", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@radix-ui/react-slot", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@radix-ui/react-slot", - "target": "npm:@radix-ui/react-compose-refs", - "type": "static" - }, - { - "source": "npm:@react-native-async-storage/async-storage", - "target": "npm:merge-options", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-clean", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-clean", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-clean", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:joi", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-debugger-ui", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-config", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-platform-android", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-platform-ios", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:command-exists", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:hermes-profile-transformer", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:node-stream-zip", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:ora@5.4.1", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:yaml@2.3.4", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:@react-native-community/cli-platform-android", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:hermes-profile-transformer", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:fast-xml-parser", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:logkitty", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:fast-xml-parser", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:ora@5.4.1", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:@react-native-community/cli-debugger-ui", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:errorhandler", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:nocache", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:pretty-format@26.6.2", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:appdirsjs", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:open@6.4.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:ora@5.4.1", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:sudo-prompt@9.2.1", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-types", - "target": "npm:joi", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-clean", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-config", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-debugger-ui", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-doctor", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-hermes", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-plugin-metro", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-server-api", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-types", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:commander@9.5.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@react-native/babel-plugin-codegen@0.73.2", - "target": "npm:@react-native/codegen", - "type": "static" - }, - { - "source": "npm:@react-native/babel-plugin-codegen", - "target": "npm:@react-native/codegen", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-numeric-separator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-jsx-self", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-jsx-source", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@react-native/babel-plugin-codegen@0.73.2", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:babel-plugin-transform-flow-enums", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-numeric-separator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-jsx-self", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-jsx-source", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@react-native/babel-plugin-codegen", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:babel-plugin-transform-flow-enums", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:flow-parser", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:jscodeshift", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native-community/cli-server-api", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native/dev-middleware", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native/metro-babel-transformer", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:metro", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:metro-config", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:readline", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:@isaacs/ttlcache", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:@react-native/debugger-frontend", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:chrome-launcher", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:chromium-edge-launcher", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:@isaacs/ttlcache", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:@react-native/debugger-frontend", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:chrome-launcher", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:chromium-edge-launcher", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:@react-native/babel-preset@0.73.19", - "type": "static" - }, - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:hermes-parser@0.15.0", - "type": "static" - }, - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:@react-native/virtualized-lists", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:@react-native/virtualized-lists", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:@react-native/virtualized-lists@0.72.8", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:@react-native/virtualized-lists@0.72.8", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:warn-once", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:warn-once", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:@react-navigation/routers", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:query-string@7.1.3", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:use-latest-callback", - "type": "static" - }, - { - "source": "npm:@react-navigation/native-stack", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/native-stack", - "target": "npm:warn-once", - "type": "static" - }, - { - "source": "npm:@react-navigation/native-stack", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/native-stack", - "target": "npm:warn-once", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:@react-navigation/core", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:@react-navigation/core", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@react-navigation/routers", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@react-navigation/stack", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/stack", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:@react-navigation/stack", - "target": "npm:warn-once", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/server-runtime", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/web-fetch", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/web-file", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/web-stream", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@web3-storage/multipart-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:cookie-signature@1.2.1", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:stream-slice", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:@remix-run/router", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:@web3-storage/multipart-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:cookie@0.4.2", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:set-cookie-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:source-map@0.7.4", - "type": "static" - }, - { - "source": "npm:@remix-run/web-blob", - "target": "npm:@remix-run/web-stream", - "type": "static" - }, - { - "source": "npm:@remix-run/web-blob", - "target": "npm:web-encoding", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-blob", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-file", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-form-data", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-stream", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@web3-storage/multipart-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:data-uri-to-buffer", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "npm:@remix-run/web-file", - "target": "npm:@remix-run/web-blob", - "type": "static" - }, - { - "source": "npm:@remix-run/web-file", - "target": "npm:@remix-run/web-blob", - "type": "static" - }, - { - "source": "npm:@remix-run/web-form-data", - "target": "npm:web-encoding", - "type": "static" - }, - { - "source": "npm:@remix-run/web-stream", - "target": "npm:web-streams-polyfill", - "type": "static" - }, - { - "source": "npm:@remix-run/web-stream", - "target": "npm:web-streams-polyfill", - "type": "static" - }, - { - "source": "npm:@segment/loosely-validate-event", - "target": "npm:component-type", - "type": "static" - }, - { - "source": "npm:@segment/loosely-validate-event", - "target": "npm:join-component", - "type": "static" - }, - { - "source": "npm:@sideway/address", - "target": "npm:@hapi/hoek", - "type": "static" - }, - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - }, - { - "source": "npm:@tanstack/react-query", - "target": "npm:@tanstack/query-core", - "type": "static" - }, - { - "source": "npm:@tanstack/react-query", - "target": "npm:use-sync-external-store", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:@testing-library/react-native", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:@testing-library/react-native", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@testing-library/react-native", - "target": "npm:redent", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:@types/node-forge", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/node", - "target": "npm:undici-types", - "type": "static" - }, - { - "source": "npm:@types/react-native", - "target": "npm:@react-native/virtualized-lists@0.72.8", - "type": "static" - }, - { - "source": "npm:@types/react-native", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react-test-renderer", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/mime@1.3.5", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/ws", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/yargs@15.0.19", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@typescript-eslint/type-utils@5.62.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:natural-compare-lite", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys@5.62.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@6.19.1", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@6.19.1", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys@5.62.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:tsutils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@typescript-eslint/scope-manager@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@typescript-eslint/typescript-estree@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@5.62.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@5.62.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@urql/core", - "target": "npm:@graphql-typed-document-node/core", - "type": "static" - }, - { - "source": "npm:@urql/core", - "target": "npm:wonka", - "type": "static" - }, - { - "source": "npm:@urql/core@4.2.3", - "target": "npm:@0no-co/graphql.web", - "type": "static" - }, - { - "source": "npm:@urql/core@4.2.3", - "target": "npm:wonka@6.3.4", - "type": "static" - }, - { - "source": "npm:@urql/exchange-retry", - "target": "npm:@urql/core@4.2.3", - "type": "static" - }, - { - "source": "npm:@urql/exchange-retry", - "target": "npm:wonka", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@welldone-software/why-did-you-render", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:ajv-formats@2.1.1", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:ajv-keywords@5.1.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.11.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.11.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.11.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.11.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.21.3", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.21.3", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.21.3", - "type": "static" - }, - { - "source": "npm:ansi-escapes@5.0.0", - "target": "npm:type-fest@1.4.0", - "type": "static" - }, - { - "source": "npm:ansi-escapes@6.2.0", - "target": "npm:type-fest@3.13.1", - "type": "static" - }, - { - "source": "npm:ansi-fragments", - "target": "npm:colorette@1.4.0", - "type": "static" - }, - { - "source": "npm:ansi-fragments", - "target": "npm:slice-ansi@2.1.0", - "type": "static" - }, - { - "source": "npm:ansi-fragments", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-union@1.0.2", - "target": "npm:array-uniq", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:is-nan", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:util", - "type": "static" - }, - { - "source": "npm:ast-types", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:asynciterator.prototype", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:find-cache-dir@3.3.2", - "type": "static" - }, - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:make-dir@3.1.0", - "type": "static" - }, - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:schema-utils@2.7.1", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument@5.2.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:find-babel-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:pkg-up", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:reselect", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-transform-flow-enums", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@react-native/babel-preset", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:babel-plugin-react-native-web", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@react-native/babel-preset", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:babel-plugin-react-native-web", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:babel-plugin-syntax-trailing-function-commas", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:better-opn", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:multicast-dns", - "type": "static" - }, - { - "source": "npm:bplist-creator", - "target": "npm:stream-buffers", - "type": "static" - }, - { - "source": "npm:bplist-parser@0.3.1", - "target": "npm:big-integer", - "type": "static" - }, - { - "source": "npm:bplist-parser", - "target": "npm:big-integer", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - }, - { - "source": "npm:buffer-alloc", - "target": "npm:buffer-alloc-unsafe", - "type": "static" - }, - { - "source": "npm:buffer-alloc", - "target": "npm:buffer-fill", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/move-file", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - }, - { - "source": "npm:caller-callsite", - "target": "npm:callsites@2.0.0", - "type": "static" - }, - { - "source": "npm:caller-path", - "target": "npm:caller-callsite", - "type": "static" - }, - { - "source": "npm:camel-case", - "target": "npm:pascal-case", - "type": "static" - }, - { - "source": "npm:camel-case", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:ansi-styles@2.2.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:has-ansi", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:supports-color@2.0.0", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:ansi-styles@2.2.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:has-ansi", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:supports-color@2.0.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:chrome-launcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:chrome-launcher", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chrome-launcher", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:chrome-launcher", - "target": "npm:lighthouse-logger", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:lighthouse-logger", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:clean-css", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:clean-webpack-plugin", - "target": "npm:del", - "type": "static" - }, - { - "source": "npm:cli-cursor@2.1.0", - "target": "npm:restore-cursor@2.0.0", - "type": "static" - }, - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - }, - { - "source": "npm:cli-cursor@4.0.0", - "target": "npm:restore-cursor@4.0.0", - "type": "static" - }, - { - "source": "npm:cli-styles", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:cli-styles", - "target": "npm:figures@1.7.0", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:wrap-ansi@6.2.0", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - }, - { - "source": "npm:color-convert@1.9.3", - "target": "npm:color-name@1.1.3", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - }, - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - }, - { - "source": "npm:compare-urls", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby@12.2.0", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh@2.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:is-directory", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh@2.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:is-directory", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json@4.0.0", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:cross-env", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:cross-fetch", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:css-in-js-utils", - "target": "npm:hyphenate-style-name", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:cssnano", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:domutils@3.1.0", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:lilconfig", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:csso@4.2.0", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:default-gateway", - "target": "npm:execa@1.0.0", - "type": "static" - }, - { - "source": "npm:default-gateway", - "target": "npm:ip-regex", - "type": "static" - }, - { - "source": "npm:default-gateway@6.0.3", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:defaults", - "target": "npm:clone@1.0.4", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:globby@6.1.0", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-in-cwd", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:p-map@2.1.0", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:deprecated-react-native-prop-types", - "target": "npm:@react-native/normalize-colors", - "type": "static" - }, - { - "source": "npm:deprecated-react-native-prop-types", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:deprecated-react-native-prop-types", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:dns-packet", - "target": "npm:@leichtgewicht/ip-codec", - "type": "static" - }, - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:doctrine@3.0.0", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:dom-converter", - "target": "npm:utila", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities@2.2.0", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domhandler@5.0.3", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domhandler@5.0.3", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:domutils@3.1.0", - "target": "npm:dom-serializer@2.0.0", - "type": "static" - }, - { - "source": "npm:domutils@3.1.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils@3.1.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - }, - { - "source": "npm:dot-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:dot-case", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - }, - { - "source": "npm:error-stack-parser", - "target": "npm:stackframe", - "type": "static" - }, - { - "source": "npm:errorhandler", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:errorhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:arraybuffer.prototype.slice", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trim", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:asynciterator.prototype", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:iterator.prototype", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-shim-unscopables", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:@typescript-eslint/parser@5.62.0", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-import", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-node", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-prettier", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-react", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-react-hooks", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-module-utils", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:regexpp", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.findlastindex", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.groupby", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.15.0", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-plugin-es", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:prettier-linter-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react-native", - "target": "npm:eslint-plugin-react-native-globals", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.tosorted", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:es-iterator-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.5", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.tosorted", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:es-iterator-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.5", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse@4.3.0", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse@4.3.0", - "type": "static" - }, - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-utils", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@ungap/structured-clone", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine@3.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope@7.2.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:human-signals@4.3.1", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:npm-run-path@5.2.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:get-stream@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:strip-eof", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:expo-app-loading", - "target": "npm:expo-splash-screen@0.17.5", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:@react-native/assets-registry", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:blueimp-md5", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:expo-constants", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:expo-file-system", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:md5-file", - "type": "static" - }, - { - "source": "npm:expo-constants", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-constants", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-constants", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-crypto", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-dev-launcher", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-dev-menu", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-dev-menu-interface", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-manifests", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-updates-interface", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:ajv@8.11.0", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:expo-dev-menu@4.5.4", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:expo-manifests", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:expo-dev-menu@4.5.4", - "target": "npm:expo-dev-menu-interface", - "type": "static" - }, - { - "source": "npm:expo-dev-menu@4.5.4", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:expo-dev-menu", - "target": "npm:expo-dev-menu-interface", - "type": "static" - }, - { - "source": "npm:expo-dev-menu", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:expo-device", - "target": "npm:ua-parser-js", - "type": "static" - }, - { - "source": "npm:expo-font", - "target": "npm:fontfaceobserver", - "type": "static" - }, - { - "source": "npm:expo-linking", - "target": "npm:expo-constants", - "type": "static" - }, - { - "source": "npm:expo-linking", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:expo-local-authentication", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:expo-localization", - "target": "npm:rtl-detect", - "type": "static" - }, - { - "source": "npm:expo-manifests", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-manifests", - "target": "npm:expo-json-utils", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:expo-modules-core", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:@expo/image-utils", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:@ide/backoff", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:assert", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:badgin", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:expo-application", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:expo-constants", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:expo-pwa", - "target": "npm:@expo/image-utils@0.3.23", - "type": "static" - }, - { - "source": "npm:expo-pwa", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:expo-pwa", - "target": "npm:commander@2.20.0", - "type": "static" - }, - { - "source": "npm:expo-pwa", - "target": "npm:update-check", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@expo/metro-runtime", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@expo/server", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@radix-ui/react-slot", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@react-navigation/bottom-tabs", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@react-navigation/native", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@react-navigation/native-stack", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:expo-splash-screen", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:react-helmet-async", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:expo-splash-screen", - "target": "npm:@expo/prebuild-config", - "type": "static" - }, - { - "source": "npm:expo-splash-screen", - "target": "npm:@expo/prebuild-config", - "type": "static" - }, - { - "source": "npm:expo-splash-screen@0.17.5", - "target": "npm:@expo/configure-splash-screen", - "type": "static" - }, - { - "source": "npm:expo-splash-screen@0.17.5", - "target": "npm:@expo/prebuild-config@5.0.7", - "type": "static" - }, - { - "source": "npm:expo-system-ui", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:expo-system-ui", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:@expo/code-signing-certificates", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:arg@4.1.0", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-eas-client", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-manifests", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-structured-headers", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-updates-interface", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:fbemitter", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:expo-web-browser", - "target": "npm:compare-urls", - "type": "static" - }, - { - "source": "npm:expo-web-browser", - "target": "npm:url", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/cli@0.17.2", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/metro-config", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/vector-icons", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:babel-preset-expo", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-asset", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-file-system", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-font", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-keep-awake", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-modules-autolinking", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-modules-core", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:fbemitter", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:whatwg-url-without-unicode", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-xml-parser", - "target": "npm:strnum", - "type": "static" - }, - { - "source": "npm:fast-xml-parser", - "target": "npm:strnum", - "type": "static" - }, - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - }, - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - }, - { - "source": "npm:fbemitter", - "target": "npm:fbjs", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:cross-fetch", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:fbjs-css-vars", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:promise@7.3.1", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:setimmediate", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:ua-parser-js@1.0.37", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:cross-fetch", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:fbjs-css-vars", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:promise@7.3.1", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:setimmediate", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:ua-parser-js@1.0.37", - "type": "static" - }, - { - "source": "npm:figures@1.7.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:figures@1.7.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:figures@2.0.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished@2.3.0", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:find-babel-config", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:find-babel-config", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:pkg-dir@3.0.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir@3.3.2", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@3.3.2", - "target": "npm:make-dir@3.1.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir@3.3.2", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir@7.0.0", - "type": "static" - }, - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:locate-path@5.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:locate-path@5.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.2.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:find-yarn-workspace-root", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:for-each", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:form-data@3.0.1", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@3.0.1", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@3.0.1", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:framesync", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:popmotion@9.3.1", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:style-value-types", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:@motionone/dom", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:framesync@6.0.1", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:popmotion", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:style-value-types@5.0.0", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:@motionone/dom", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:framesync@6.0.1", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:popmotion", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:style-value-types@5.0.0", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - }, - { - "source": "npm:framesync@6.0.1", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:universalify@1.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-stream@4.1.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass@7.0.4", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:globals", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:array-union@3.0.1", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:slash@4.0.0", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:array-union@1.0.2", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pinkie-promise", - "type": "static" - }, - { - "source": "npm:gopd", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:graphql-tag", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:has-ansi", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - }, - { - "source": "npm:has-property-descriptors", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:has-property-descriptors", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:hermes-parser@0.15.0", - "target": "npm:hermes-estree@0.15.0", - "type": "static" - }, - { - "source": "npm:hermes-parser", - "target": "npm:hermes-estree", - "type": "static" - }, - { - "source": "npm:hermes-profile-transformer", - "target": "npm:source-map@0.7.4", - "type": "static" - }, - { - "source": "npm:hoist-non-react-statics", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:camel-case", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:clean-css", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:commander@8.3.0", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:param-case", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:relateurl", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:html-parse-stringify", - "target": "npm:void-elements", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:@types/html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:pretty-error", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities@2.2.0", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj@3.0.0", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3@4.0.7", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:i18next", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.4.24", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:image-size", - "target": "npm:queue", - "type": "static" - }, - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:caller-path", - "type": "static" - }, - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:resolve-from@3.0.0", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:inline-style-prefixer", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:inline-style-prefixer", - "target": "npm:fast-loops", - "type": "static" - }, - { - "source": "npm:internal-ip", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:internal-ip", - "target": "npm:ipaddr.js", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:invariant", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:is-arguments", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-arguments", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-bigint", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:is-date-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-date-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-finalizationregistry", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-glob@2.0.1", - "target": "npm:is-extglob@1.0.0", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-invalid-path", - "target": "npm:is-glob@2.0.1", - "type": "static" - }, - { - "source": "npm:is-nan", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-nan", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:is-number-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-path-in-cwd", - "target": "npm:is-path-inside@2.1.0", - "type": "static" - }, - { - "source": "npm:is-path-inside@2.1.0", - "target": "npm:path-is-inside", - "type": "static" - }, - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-shared-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:is-valid-path", - "target": "npm:is-invalid-path", - "type": "static" - }, - { - "source": "npm:is-weakref", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-weakset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-weakset", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:reflect.getprototypeof", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:@jest/create-cache-key-function", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:jest-watch-select-projects", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:jest-watch-typeahead", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:react-test-renderer", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:stacktrace-js", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom@4.0.0", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.3.0", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.3.0", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-watch-select-projects", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watch-select-projects", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-watch-select-projects", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:ansi-escapes@6.2.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:string-length@5.0.1", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color@8.1.1", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@hapi/hoek", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@hapi/topo", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@sideway/address", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@sideway/formula", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@sideway/pinpoint", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/preset-flow", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/register", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:babel-core", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:flow-parser@0.227.0", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:node-dir", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:recast", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:temp", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws@8.16.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:dag-map", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:is-valid-path", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:md5@2.2.1", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:memory-cache", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:traverse", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:valid-url", - "type": "static" - }, - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:jsonfile@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - }, - { - "source": "npm:klaw-sync", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:lighthouse-logger", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:lighthouse-logger", - "target": "npm:marky", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-arm64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-x64@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-gnu@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-musl@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-gnu@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-musl@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-win32-x64-msvc@1.19.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander@11.0.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@7.2.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:lilconfig", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:pidtree", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:yaml@2.3.1", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:p-locate@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:path-exists@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@5.0.0", - "target": "npm:p-locate@4.1.0", - "type": "static" - }, - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - }, - { - "source": "npm:locate-path@7.2.0", - "target": "npm:p-locate@6.0.0", - "type": "static" - }, - { - "source": "npm:log-symbols@2.2.0", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:ansi-escapes@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:logkitty", - "target": "npm:ansi-fragments", - "type": "static" - }, - { - "source": "npm:logkitty", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:logkitty", - "target": "npm:yargs@15.4.1", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:lower-case", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:lru-cache@5.1.1", - "target": "npm:yallist@3.1.1", - "type": "static" - }, - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:make-dir@3.1.0", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:make-dir@3.1.0", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - }, - { - "source": "npm:md5-file", - "target": "npm:buffer-alloc", - "type": "static" - }, - { - "source": "npm:md5", - "target": "npm:charenc", - "type": "static" - }, - { - "source": "npm:md5", - "target": "npm:crypt", - "type": "static" - }, - { - "source": "npm:md5", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:md5@2.2.1", - "target": "npm:charenc", - "type": "static" - }, - { - "source": "npm:md5@2.2.1", - "target": "npm:crypt", - "type": "static" - }, - { - "source": "npm:md5@2.2.1", - "target": "npm:is-buffer", - "type": "static" - }, - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - }, - { - "source": "npm:merge-options", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:metro-babel-transformer", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro-babel-transformer", - "target": "npm:hermes-parser", - "type": "static" - }, - { - "source": "npm:metro-babel-transformer", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-cache", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro-cache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-runtime", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-runtime", - "type": "static" - }, - { - "source": "npm:metro-core", - "target": "npm:lodash.throttle", - "type": "static" - }, - { - "source": "npm:metro-core", - "target": "npm:metro-resolver@0.80.5", - "type": "static" - }, - { - "source": "npm:metro-core", - "target": "npm:lodash.throttle", - "type": "static" - }, - { - "source": "npm:metro-core", - "target": "npm:metro-resolver@0.80.5", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:node-abort-controller", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:metro-minify-terser", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:metro-runtime", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:metro-runtime", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:metro-symbolicate", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:ob1", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:vlq", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:metro-symbolicate", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:ob1", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:vlq", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:vlq", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-babel-transformer", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-cache-key", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-minify-terser", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-transform-plugins", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:ci-info@2.0.0", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:denodeify", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:hermes-parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:jsc-safe-url", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:lodash.throttle", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-babel-transformer", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-cache-key", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-config", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-file-map", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-resolver@0.80.5", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-runtime", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-symbolicate", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-transform-plugins", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-transform-worker", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:serialize-error", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:throat", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:ci-info@2.0.0", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:denodeify", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:hermes-parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:jsc-safe-url", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:lodash.throttle", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-babel-transformer", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-cache-key", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-config", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-file-map", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-resolver@0.80.5", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-runtime", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-symbolicate", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-transform-plugins", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-transform-worker", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:serialize-error", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:throat", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-flush", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:miragejs", - "target": "npm:@miragejs/pretender-node-polyfill", - "type": "static" - }, - { - "source": "npm:miragejs", - "target": "npm:inflected", - "type": "static" - }, - { - "source": "npm:miragejs", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:miragejs", - "target": "npm:pretender", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:moti", - "target": "npm:framer-motion", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:ncp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:rimraf@2.4.5", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:any-promise", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:thenify-all", - "type": "static" - }, - { - "source": "npm:no-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:no-case", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:node-dir", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:node-html-parser", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:node-html-parser", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:normalize-url", - "target": "npm:prepend-http", - "type": "static" - }, - { - "source": "npm:normalize-url", - "target": "npm:query-string@5.1.1", - "type": "static" - }, - { - "source": "npm:normalize-url", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:osenv", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:npm-run-path@5.2.0", - "target": "npm:path-key@4.0.0", - "type": "static" - }, - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:on-finished@2.3.0", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:onetime@2.0.1", - "target": "npm:mimic-fn@1.2.0", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:onetime@6.0.0", - "target": "npm:mimic-fn@4.0.0", - "type": "static" - }, - { - "source": "npm:open@6.4.0", - "target": "npm:is-wsl@1.1.0", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:@aashutoshrathi/word-wrap", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor@2.1.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols@2.2.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor@2.1.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols@2.2.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:osenv", - "target": "npm:os-homedir", - "type": "static" - }, - { - "source": "npm:osenv", - "target": "npm:os-tmpdir", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - }, - { - "source": "npm:p-locate@3.0.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:p-locate@4.1.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:p-locate", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - }, - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry", - "type": "static" - }, - { - "source": "npm:param-case", - "target": "npm:dot-case", - "type": "static" - }, - { - "source": "npm:param-case", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:json-parse-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:parse-png", - "target": "npm:pngjs", - "type": "static" - }, - { - "source": "npm:parse5", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:parse5", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:pascal-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:pascal-case", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:pass-stream", - "target": "npm:readable-stream@1.0.2", - "type": "static" - }, - { - "source": "npm:password-prompt", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:password-prompt", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:klaw-sync", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:slash@2.0.0", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:yaml@2.3.4", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.2.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass@7.0.4", - "type": "static" - }, - { - "source": "npm:pinkie-promise", - "target": "npm:pinkie", - "type": "static" - }, - { - "source": "npm:pkg-dir@3.0.0", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:pkg-dir", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:pkg-dir", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:pkg-dir@7.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - }, - { - "source": "npm:pkg-up", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:plist", - "target": "npm:@xmldom/xmldom@0.8.10", - "type": "static" - }, - { - "source": "npm:plist", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:plist", - "target": "npm:xmlbuilder@15.1.1", - "type": "static" - }, - { - "source": "npm:popmotion", - "target": "npm:framesync@6.0.1", - "type": "static" - }, - { - "source": "npm:popmotion", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:popmotion", - "target": "npm:style-value-types@5.0.0", - "type": "static" - }, - { - "source": "npm:popmotion", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:popmotion@9.3.1", - "target": "npm:framesync", - "type": "static" - }, - { - "source": "npm:popmotion@9.3.1", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:popmotion@9.3.1", - "target": "npm:style-value-types", - "type": "static" - }, - { - "source": "npm:popmotion@9.3.1", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:normalize-url@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo@2.8.0", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:pretender", - "target": "npm:fake-xml-http-request", - "type": "static" - }, - { - "source": "npm:pretender", - "target": "npm:route-recognizer", - "type": "static" - }, - { - "source": "npm:prettier-linter-helpers", - "target": "npm:fast-diff", - "type": "static" - }, - { - "source": "npm:pretty-error", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:pretty-error", - "target": "npm:renderkid", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:react-is@17.0.2", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:react-is@17.0.2", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:mri", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:picomatch@3.0.1", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:promise@7.3.1", - "target": "npm:asap", - "type": "static" - }, - { - "source": "npm:promise", - "target": "npm:asap", - "type": "static" - }, - { - "source": "npm:prompt-skeleton", - "target": "npm:ansi-escapes@1.4.0", - "type": "static" - }, - { - "source": "npm:prompt-skeleton", - "target": "npm:pass-stream", - "type": "static" - }, - { - "source": "npm:prompt-sync", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:qs@6.11.2", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:filter-obj", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:split-on-first", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:strict-uri-encode", - "type": "static" - }, - { - "source": "npm:query-string@5.1.1", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string@5.1.1", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:query-string@5.1.1", - "target": "npm:strict-uri-encode@1.1.0", - "type": "static" - }, - { - "source": "npm:query-string@7.1.3", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string@7.1.3", - "target": "npm:filter-obj", - "type": "static" - }, - { - "source": "npm:query-string@7.1.3", - "target": "npm:split-on-first", - "type": "static" - }, - { - "source": "npm:query-string@7.1.3", - "target": "npm:strict-uri-encode", - "type": "static" - }, - { - "source": "npm:queue", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:react-devtools-core", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:react-devtools-core", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:react-fast-compare", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:shallowequal", - "type": "static" - }, - { - "source": "npm:react-i18next", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-i18next", - "target": "npm:html-parse-stringify", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:@egjs/hammerjs", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-native-keyboard-aware-scroll-view", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-native-keyboard-aware-scroll-view", - "target": "npm:react-native-iphone-x-helper", - "type": "static" - }, - { - "source": "npm:react-native-reanimated", - "target": "npm:@babel/plugin-transform-object-assign", - "type": "static" - }, - { - "source": "npm:react-native-reanimated", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:react-native-reanimated", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:react-native-reanimated", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-native-screens", - "target": "npm:react-freeze", - "type": "static" - }, - { - "source": "npm:react-native-screens", - "target": "npm:warn-once", - "type": "static" - }, - { - "source": "npm:react-native-svg", - "target": "npm:css-select@5.1.0", - "type": "static" - }, - { - "source": "npm:react-native-svg", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:fbjs", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:inline-style-prefixer", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:memoize-one@6.0.0", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:styleq", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@jest/create-cache-key-function", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native-community/cli", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native-community/cli-platform-android", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native-community/cli-platform-ios", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/assets-registry", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/codegen", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/community-cli-plugin", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/gradle-plugin", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/js-polyfills", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/normalize-colors", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/virtualized-lists", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:anser", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:deprecated-react-native-prop-types", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:event-target-shim", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:flow-enums-runtime", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:jsc-android", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:memoize-one", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:metro-runtime", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:pretty-format@26.6.2", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:promise", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:react-devtools-core", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:stacktrace-parser", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:whatwg-fetch", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:ws@6.2.2", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:react-shallow-renderer", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-shallow-renderer", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:react", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:reactotron-core-client", - "target": "npm:reactotron-core-contract", - "type": "static" - }, - { - "source": "npm:reactotron-react-native", - "target": "npm:mitt", - "type": "static" - }, - { - "source": "npm:reactotron-react-native", - "target": "npm:query-string", - "type": "static" - }, - { - "source": "npm:reactotron-react-native", - "target": "npm:reactotron-core-client", - "type": "static" - }, - { - "source": "npm:reactotron-react-native", - "target": "npm:react-native-flipper", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readdirp", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:recast", - "target": "npm:ast-types", - "type": "static" - }, - { - "source": "npm:recast", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:recast", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:recast", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:strip-indent", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:which-builtin-type", - "type": "static" - }, - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:registry-url", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:dom-converter", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:requireg", - "target": "npm:nested-error-stacks", - "type": "static" - }, - { - "source": "npm:requireg", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:requireg", - "target": "npm:resolve@1.7.1", - "type": "static" - }, - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.5", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.5", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.5", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve@1.7.1", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:onetime@2.0.1", - "type": "static" - }, - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf@2.4.5", - "target": "npm:glob@6.0.4", - "type": "static" - }, - { - "source": "npm:rimraf@2.6.3", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:chokidar@3.6.0", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - }, - { - "source": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:scheduler", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.1", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.1", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.1", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-formats@2.1.1", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords@5.1.0", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-formats@2.1.1", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords@5.1.0", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:ansi-escapes@1.4.0", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:cli-styles", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:figures@2.0.0", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:prompt-skeleton", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:@types/node-forge", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:shallow-clone", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - }, - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:simple-plist", - "target": "npm:bplist-creator", - "type": "static" - }, - { - "source": "npm:simple-plist", - "target": "npm:bplist-parser@0.3.1", - "type": "static" - }, - { - "source": "npm:simple-plist", - "target": "npm:plist", - "type": "static" - }, - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.2", - "type": "static" - }, - { - "source": "npm:slice-ansi@2.1.0", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@2.1.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@2.1.0", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point@4.0.0", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj@1.1.0", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - }, - { - "source": "npm:split", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:stack-generator", - "target": "npm:stackframe", - "type": "static" - }, - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - }, - { - "source": "npm:stacktrace-gps", - "target": "npm:source-map@0.5.6", - "type": "static" - }, - { - "source": "npm:stacktrace-gps", - "target": "npm:stackframe", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stack-generator", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stacktrace-gps", - "type": "static" - }, - { - "source": "npm:stacktrace-parser", - "target": "npm:type-fest@0.7.1", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-length@5.0.1", - "target": "npm:char-regex@2.0.1", - "type": "static" - }, - { - "source": "npm:string-length@5.0.1", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:string_decoder@1.1.1", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi@3.0.1", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@5.2.0", - "target": "npm:ansi-regex@4.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@5.2.0", - "target": "npm:ansi-regex@4.1.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:strip-indent", - "target": "npm:min-indent", - "type": "static" - }, - { - "source": "npm:style-value-types", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:style-value-types", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:style-value-types@5.0.0", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:style-value-types@5.0.0", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:commander@4.1.1", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:mz", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:ts-interface-checker", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:commander@4.1.1", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:mz", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:ts-interface-checker", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - }, - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:csso@4.2.0", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:temp", - "target": "npm:rimraf@2.6.3", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:temp-dir@1.0.0", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:type-fest@0.3.1", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:unique-string", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:del@6.1.1", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:type-fest@0.16.0", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:unique-string@2.0.0", - "type": "static" - }, - { - "source": "npm:terminal-link", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:terminal-link", - "target": "npm:supports-hyperlinks", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:thenify-all", - "target": "npm:thenify", - "type": "static" - }, - { - "source": "npm:thenify", - "target": "npm:any-promise", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:xtend", - "type": "static" - }, - { - "source": "npm:tmp", - "target": "npm:os-tmpdir", - "type": "static" - }, - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:url-parse", - "type": "static" - }, - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - }, - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - }, - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unique-string", - "target": "npm:crypto-random-string", - "type": "static" - }, - { - "source": "npm:unique-string@2.0.0", - "target": "npm:crypto-random-string@2.0.0", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:update-check", - "target": "npm:registry-auth-token", - "type": "static" - }, - { - "source": "npm:update-check", - "target": "npm:registry-url", - "type": "static" - }, - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:url", - "target": "npm:punycode@1.4.1", - "type": "static" - }, - { - "source": "npm:url", - "target": "npm:qs@6.11.2", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - }, - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - }, - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - }, - { - "source": "npm:web-encoding", - "target": "npm:util", - "type": "static" - }, - { - "source": "npm:web-encoding", - "target": "npm:@zxing/text-encoding", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway@6.0.3", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js@2.1.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws@8.16.0", - "type": "static" - }, - { - "source": "npm:webpack-manifest-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack-manifest-plugin", - "target": "npm:webpack-sources@2.3.1", - "type": "static" - }, - { - "source": "npm:webpack-sources@2.3.1", - "target": "npm:source-list-map", - "type": "static" - }, - { - "source": "npm:webpack-sources@2.3.1", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - }, - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:whatwg-url-without-unicode", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:whatwg-url-without-unicode", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:whatwg-url-without-unicode", - "target": "npm:webidl-conversions@5.0.0", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-async-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-finalizationregistry", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-collection", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-map", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakmap", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakset", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:ws@6.2.2", - "target": "npm:async-limiter", - "type": "static" - }, - { - "source": "npm:xcode", - "target": "npm:simple-plist", - "type": "static" - }, - { - "source": "npm:xcode", - "target": "npm:uuid@7.0.3", - "type": "static" - }, - { - "source": "npm:xcode", - "target": "npm:simple-plist", - "type": "static" - }, - { - "source": "npm:xcode", - "target": "npm:uuid@7.0.3", - "type": "static" - }, - { - "source": "npm:xml-js", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:xml2js@0.4.23", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:xml2js@0.4.23", - "target": "npm:xmlbuilder", - "type": "static" - }, - { - "source": "npm:xml2js", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:xml2js", - "target": "npm:xmlbuilder", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:cliui@6.0.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:y18n@4.0.3", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - } - ] -} diff --git a/.nx/cache/project-graph.json b/.nx/cache/project-graph.json deleted file mode 100644 index 508f4819..00000000 --- a/.nx/cache/project-graph.json +++ /dev/null @@ -1,35728 +0,0 @@ -{ - "nodes": {}, - "externalNodes": { - "npm:@0no-co/graphql.web": { - "type": "npm", - "name": "npm:@0no-co/graphql.web", - "data": { - "version": "1.0.4", - "packageName": "@0no-co/graphql.web", - "hash": "sha512-W3ezhHGfO0MS1PtGloaTpg0PbaT8aZSmmaerL7idtU5F7oCI+uu25k+MsMS31BVFlp4aMkHSrNRxiD72IlK8TA==" - } - }, - "npm:@aashutoshrathi/word-wrap": { - "type": "npm", - "name": "npm:@aashutoshrathi/word-wrap", - "data": { - "version": "1.2.6", - "packageName": "@aashutoshrathi/word-wrap", - "hash": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.2.1", - "packageName": "@ampproject/remapping", - "hash": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==" - } - }, - "npm:@babel/code-frame@7.10.4": { - "type": "npm", - "name": "npm:@babel/code-frame@7.10.4", - "data": { - "version": "7.10.4", - "packageName": "@babel/code-frame", - "hash": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.23.5", - "packageName": "@babel/code-frame", - "hash": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.23.5", - "packageName": "@babel/compat-data", - "hash": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.23.9", - "packageName": "@babel/core", - "hash": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.23.6", - "packageName": "@babel/generator", - "hash": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.23.6", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.23.9", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-B2L9neXTIyPQoXDm+NtovPvG6VOLWnaXu3BIeVDWwdKFgG30oNa6CqVGiJPDWQwIAK49t9gnQI9c6K6RzabiKw==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.5.0", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" - } - }, - "npm:@babel/helper-function-name": { - "type": "npm", - "name": "npm:@babel/helper-function-name", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-function-name", - "hash": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==" - } - }, - "npm:@babel/helper-hoist-variables": { - "type": "npm", - "name": "npm:@babel/helper-hoist-variables", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-hoist-variables", - "hash": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.23.0", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.22.15", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.23.3", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.22.5", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.22.6", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.23.4", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.23.5", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.22.20", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.23.9", - "packageName": "@babel/helpers", - "hash": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.23.4", - "packageName": "@babel/highlight", - "hash": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.23.9", - "packageName": "@babel/parser", - "hash": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "data": { - "version": "7.23.7", - "packageName": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "hash": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==" - } - }, - "npm:@babel/plugin-proposal-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-async-generator-functions", - "data": { - "version": "7.20.7", - "packageName": "@babel/plugin-proposal-async-generator-functions", - "hash": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==" - } - }, - "npm:@babel/plugin-proposal-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-class-properties", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-class-properties", - "hash": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-hJhBCb0+NnTWybvWq2WpbCYDOcflSbx0t+BYP65e5R9GVnukiDTi+on5bFkk4p7QGuv190H6KfNiV9Knf/3cZA==" - } - }, - "npm:@babel/plugin-proposal-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-export-default-from", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-proposal-export-default-from", - "hash": "sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==" - } - }, - "npm:@babel/plugin-proposal-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-nullish-coalescing-operator", - "hash": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==" - } - }, - "npm:@babel/plugin-proposal-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-numeric-separator", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-numeric-separator", - "hash": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==" - } - }, - "npm:@babel/plugin-proposal-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-object-rest-spread", - "data": { - "version": "7.20.7", - "packageName": "@babel/plugin-proposal-object-rest-spread", - "hash": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==" - } - }, - "npm:@babel/plugin-proposal-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-catch-binding", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-proposal-optional-catch-binding", - "hash": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==" - } - }, - "npm:@babel/plugin-proposal-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-optional-chaining", - "data": { - "version": "7.21.0", - "packageName": "@babel/plugin-proposal-optional-chaining", - "hash": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@babel/plugin-syntax-export-default-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-default-from", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-export-default-from", - "hash": "sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:@babel/plugin-syntax-flow": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-flow", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-flow", - "hash": "sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.23.8", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==" - } - }, - "npm:@babel/plugin-transform-flow-strip-types": { - "type": "npm", - "name": "npm:@babel/plugin-transform-flow-strip-types", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-flow-strip-types", - "hash": "sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==" - } - }, - "npm:@babel/plugin-transform-object-assign": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-assign", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-object-assign", - "hash": "sha512-TPJ6O7gVC2rlQH2hvQGRH273G1xdoloCj9Pc07Q7JbIZYDi+Sv5gaE2fu+r5E7qK4zyt6vj0FbZaZTRU5C3OMA==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==" - } - }, - "npm:@babel/plugin-transform-react-display-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-display-name", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-display-name", - "hash": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==" - } - }, - "npm:@babel/plugin-transform-react-jsx-development": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-development", - "data": { - "version": "7.22.5", - "packageName": "@babel/plugin-transform-react-jsx-development", - "hash": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==" - } - }, - "npm:@babel/plugin-transform-react-jsx-self": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-self", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-jsx-self", - "hash": "sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==" - } - }, - "npm:@babel/plugin-transform-react-jsx-source": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx-source", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-jsx-source", - "hash": "sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==" - } - }, - "npm:@babel/plugin-transform-react-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx", - "data": { - "version": "7.23.4", - "packageName": "@babel/plugin-transform-react-jsx", - "hash": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==" - } - }, - "npm:@babel/plugin-transform-react-pure-annotations": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-pure-annotations", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-react-pure-annotations", - "hash": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.23.9", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.23.9", - "packageName": "@babel/preset-env", - "hash": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==" - } - }, - "npm:@babel/preset-flow": { - "type": "npm", - "name": "npm:@babel/preset-flow", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-flow", - "hash": "sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@babel/preset-react": { - "type": "npm", - "name": "npm:@babel/preset-react", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-react", - "hash": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-typescript", - "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" - } - }, - "npm:@babel/register": { - "type": "npm", - "name": "npm:@babel/register", - "data": { - "version": "7.23.7", - "packageName": "@babel/register", - "hash": "sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.23.9", - "packageName": "@babel/runtime", - "hash": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.23.9", - "packageName": "@babel/template", - "hash": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.23.9", - "packageName": "@babel/traverse", - "hash": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.23.9", - "packageName": "@babel/types", - "hash": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==" - } - }, - "npm:@bacons/react-views": { - "type": "npm", - "name": "npm:@bacons/react-views", - "data": { - "version": "1.1.3", - "packageName": "@bacons/react-views", - "hash": "sha512-aLipQAkQKRzG64e28XHBpByyBPfANz0A6POqYHGyryHizG9vLCLNQwLe8gwFANEMBWW2Mx5YdQ7RkNdQMQ+CXQ==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@egjs/hammerjs": { - "type": "npm", - "name": "npm:@egjs/hammerjs", - "data": { - "version": "2.0.17", - "packageName": "@egjs/hammerjs", - "hash": "sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==" - } - }, - "npm:@emotion/is-prop-valid": { - "type": "npm", - "name": "npm:@emotion/is-prop-valid", - "data": { - "version": "0.8.8", - "packageName": "@emotion/is-prop-valid", - "hash": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" - } - }, - "npm:@emotion/memoize": { - "type": "npm", - "name": "npm:@emotion/memoize", - "data": { - "version": "0.7.4", - "packageName": "@emotion/memoize", - "hash": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.10.0", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "2.1.4", - "packageName": "@eslint/eslintrc", - "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "8.56.0", - "packageName": "@eslint/js", - "hash": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==" - } - }, - "npm:@expo/bunyan": { - "type": "npm", - "name": "npm:@expo/bunyan", - "data": { - "version": "4.0.0", - "packageName": "@expo/bunyan", - "hash": "sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==" - } - }, - "npm:@expo/cli@0.17.2": { - "type": "npm", - "name": "npm:@expo/cli@0.17.2", - "data": { - "version": "0.17.2", - "packageName": "@expo/cli", - "hash": "sha512-0uJGuiV8XGjsTGnga95CiCZAtAymtQlo8FxRBp7AjLKpG/oTXG7+s368H7ZIC+XQBsvWx83iv+HyXQfOtPbsxQ==" - } - }, - "npm:@expo/code-signing-certificates": { - "type": "npm", - "name": "npm:@expo/code-signing-certificates", - "data": { - "version": "0.0.5", - "packageName": "@expo/code-signing-certificates", - "hash": "sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==" - } - }, - "npm:@expo/config-plugins": { - "type": "npm", - "name": "npm:@expo/config-plugins", - "data": { - "version": "7.8.4", - "packageName": "@expo/config-plugins", - "hash": "sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==" - } - }, - "npm:@expo/config-plugins@5.0.4": { - "type": "npm", - "name": "npm:@expo/config-plugins@5.0.4", - "data": { - "version": "5.0.4", - "packageName": "@expo/config-plugins", - "hash": "sha512-vzUcVpqOMs3h+hyRdhGwk+eGIOhXa5xYdd92yO17RMNHav3v/+ekMbs7XA2c3lepMO8Yd4/5hqmRw9ZTL6jGzg==" - } - }, - "npm:@expo/config-types@47.0.0": { - "type": "npm", - "name": "npm:@expo/config-types@47.0.0", - "data": { - "version": "47.0.0", - "packageName": "@expo/config-types", - "hash": "sha512-r0pWfuhkv7KIcXMUiNACJmJKKwlTBGMw9VZHNdppS8/0Nve8HZMTkNRFQzTHW1uH3pBj8jEXpyw/2vSWDHex9g==" - } - }, - "npm:@expo/config-types": { - "type": "npm", - "name": "npm:@expo/config-types", - "data": { - "version": "50.0.0", - "packageName": "@expo/config-types", - "hash": "sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==" - } - }, - "npm:@expo/config": { - "type": "npm", - "name": "npm:@expo/config", - "data": { - "version": "8.5.4", - "packageName": "@expo/config", - "hash": "sha512-ggOLJPHGzJSJHVBC1LzwXwR6qUn8Mw7hkc5zEKRIdhFRuIQ6s2FE4eOvP87LrNfDF7eZGa6tJQYsiHSmZKG+8Q==" - } - }, - "npm:@expo/config@7.0.3": { - "type": "npm", - "name": "npm:@expo/config@7.0.3", - "data": { - "version": "7.0.3", - "packageName": "@expo/config", - "hash": "sha512-joVtB5o+NF40Tmsdp65UzryRtbnCuMbXkVO4wJnNJO4aaK0EYLdHCYSewORVqNcDfGN0LphQr8VTG2npbd9CJA==" - } - }, - "npm:@expo/configure-splash-screen": { - "type": "npm", - "name": "npm:@expo/configure-splash-screen", - "data": { - "version": "0.6.0", - "packageName": "@expo/configure-splash-screen", - "hash": "sha512-4DyPoNXJqx9bN4nEwF3HQreo//ECu7gDe1Xor3dnnzFm9P/VDxAKdbEhA0n+R6fgkNfT2onVHWijqvdpTS3Xew==" - } - }, - "npm:@expo/devcert": { - "type": "npm", - "name": "npm:@expo/devcert", - "data": { - "version": "1.1.0", - "packageName": "@expo/devcert", - "hash": "sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==" - } - }, - "npm:@expo/env": { - "type": "npm", - "name": "npm:@expo/env", - "data": { - "version": "0.2.1", - "packageName": "@expo/env", - "hash": "sha512-deZmRS7Dvp18VM8s559dq/ZjPlV1D9vtLoLXwHmCK/JYOvtNptdKsfxcWjI7ewmo6ln2PqgNI9HRI74q6Wk2eA==" - } - }, - "npm:@expo/fingerprint": { - "type": "npm", - "name": "npm:@expo/fingerprint", - "data": { - "version": "0.6.0", - "packageName": "@expo/fingerprint", - "hash": "sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==" - } - }, - "npm:@expo/image-utils@0.3.22": { - "type": "npm", - "name": "npm:@expo/image-utils@0.3.22", - "data": { - "version": "0.3.22", - "packageName": "@expo/image-utils", - "hash": "sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==" - } - }, - "npm:@expo/image-utils@0.3.23": { - "type": "npm", - "name": "npm:@expo/image-utils@0.3.23", - "data": { - "version": "0.3.23", - "packageName": "@expo/image-utils", - "hash": "sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==" - } - }, - "npm:@expo/image-utils": { - "type": "npm", - "name": "npm:@expo/image-utils", - "data": { - "version": "0.4.1", - "packageName": "@expo/image-utils", - "hash": "sha512-EZb+VHSmw+a5s2hS9qksTcWylY0FDaIAVufcxoaRS9tHIXLjW5zcKW7Rhj9dSEbZbRVy9yXXdHKa3GQdUQIOFw==" - } - }, - "npm:@expo/json-file@8.2.36": { - "type": "npm", - "name": "npm:@expo/json-file@8.2.36", - "data": { - "version": "8.2.36", - "packageName": "@expo/json-file", - "hash": "sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==" - } - }, - "npm:@expo/json-file": { - "type": "npm", - "name": "npm:@expo/json-file", - "data": { - "version": "8.3.0", - "packageName": "@expo/json-file", - "hash": "sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==" - } - }, - "npm:@expo/metro-config": { - "type": "npm", - "name": "npm:@expo/metro-config", - "data": { - "version": "0.17.3", - "packageName": "@expo/metro-config", - "hash": "sha512-YW8ixbaz6yL7/Mg1rJJejiAAVQQKjGY1wXvT2Dh487r/r9/j1yE1YRS/oRY1yItYzbnHvO0p0jMnEGfiFYL3Tg==" - } - }, - "npm:@expo/metro-runtime": { - "type": "npm", - "name": "npm:@expo/metro-runtime", - "data": { - "version": "3.1.2", - "packageName": "@expo/metro-runtime", - "hash": "sha512-Wekv2AZ3HY0NG9Im8AMB1KHGyHjmALg6xekVK34724I/DLtcocLKtQEP04oI9GcAZBotAhROHH5E4ADhJAEgYg==" - } - }, - "npm:@expo/osascript": { - "type": "npm", - "name": "npm:@expo/osascript", - "data": { - "version": "2.1.0", - "packageName": "@expo/osascript", - "hash": "sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==" - } - }, - "npm:@expo/package-manager": { - "type": "npm", - "name": "npm:@expo/package-manager", - "data": { - "version": "1.4.2", - "packageName": "@expo/package-manager", - "hash": "sha512-LKdo/6y4W7llZ6ghsg1kdx2CeH/qR/c6QI/JI8oPUvppsZoeIYjSkdflce978fAMfR8IXoi0wt0jA2w0kWpwbg==" - } - }, - "npm:@expo/plist@0.0.18": { - "type": "npm", - "name": "npm:@expo/plist@0.0.18", - "data": { - "version": "0.0.18", - "packageName": "@expo/plist", - "hash": "sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==" - } - }, - "npm:@expo/plist": { - "type": "npm", - "name": "npm:@expo/plist", - "data": { - "version": "0.1.0", - "packageName": "@expo/plist", - "hash": "sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==" - } - }, - "npm:@expo/prebuild-config@5.0.7": { - "type": "npm", - "name": "npm:@expo/prebuild-config@5.0.7", - "data": { - "version": "5.0.7", - "packageName": "@expo/prebuild-config", - "hash": "sha512-D+TBpJUHe4+oTGFPb4o0rrw/h1xxc6wF+abJnbDHUkhnaeiHkE2O3ByS7FdiZ2FT36t0OKqeSKG/xFwWT3m1Ew==" - } - }, - "npm:@expo/prebuild-config": { - "type": "npm", - "name": "npm:@expo/prebuild-config", - "data": { - "version": "6.7.4", - "packageName": "@expo/prebuild-config", - "hash": "sha512-x8EUdCa8DTMZ/dtEXjHAdlP+ljf6oSeSKNzhycXiHhpMSMG9jEhV28ocCwc6cKsjK5GziweEiHwvrj6+vsBlhA==" - } - }, - "npm:@expo/rudder-sdk-node": { - "type": "npm", - "name": "npm:@expo/rudder-sdk-node", - "data": { - "version": "1.1.1", - "packageName": "@expo/rudder-sdk-node", - "hash": "sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==" - } - }, - "npm:@expo/sdk-runtime-versions": { - "type": "npm", - "name": "npm:@expo/sdk-runtime-versions", - "data": { - "version": "1.0.0", - "packageName": "@expo/sdk-runtime-versions", - "hash": "sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==" - } - }, - "npm:@expo/server": { - "type": "npm", - "name": "npm:@expo/server", - "data": { - "version": "0.3.0", - "packageName": "@expo/server", - "hash": "sha512-5oIqedpLVMnf1LGI9Xd5OOGmK3DjgH9VpuqVN4e/6DwLT05RZJMyI7ylfG6QSy1e44yOgjv242tLyg0e/zdZ+A==" - } - }, - "npm:@expo/spawn-async": { - "type": "npm", - "name": "npm:@expo/spawn-async", - "data": { - "version": "1.5.0", - "packageName": "@expo/spawn-async", - "hash": "sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==" - } - }, - "npm:@expo/spawn-async@1.7.2": { - "type": "npm", - "name": "npm:@expo/spawn-async@1.7.2", - "data": { - "version": "1.7.2", - "packageName": "@expo/spawn-async", - "hash": "sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==" - } - }, - "npm:@expo/vector-icons": { - "type": "npm", - "name": "npm:@expo/vector-icons", - "data": { - "version": "14.0.0", - "packageName": "@expo/vector-icons", - "hash": "sha512-5orm59pdnBQlovhU9k4DbjMUZBHNlku7IRgFY56f7pcaaCnXq9yaLJoOQl9sMwNdFzf4gnkTyHmR5uN10mI9rA==" - } - }, - "npm:@expo/webpack-config": { - "type": "npm", - "name": "npm:@expo/webpack-config", - "data": { - "version": "19.0.1", - "packageName": "@expo/webpack-config", - "hash": "sha512-5bSxXTUd/DCF44+1dSyU23YKLOOYCr9pMJ+C5Vw7PAi6v6OEyNp4uOVMk2x5DAEpXtvOsJCxvNZdmtY/IqmO/A==" - } - }, - "npm:@expo/xcpretty": { - "type": "npm", - "name": "npm:@expo/xcpretty", - "data": { - "version": "4.3.1", - "packageName": "@expo/xcpretty", - "hash": "sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==" - } - }, - "npm:@gar/promisify": { - "type": "npm", - "name": "npm:@gar/promisify", - "data": { - "version": "1.1.3", - "packageName": "@gar/promisify", - "hash": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - } - }, - "npm:@gorhom/bottom-sheet": { - "type": "npm", - "name": "npm:@gorhom/bottom-sheet", - "data": { - "version": "4.6.0", - "packageName": "@gorhom/bottom-sheet", - "hash": "sha512-XgNflkhATUqTIiMDGuLaQZAtjUzcrhGOEJGHT+7Tou1ctTMb958YRGGnU9KFo5TkD6YCZcfWfxHPi9F0FF+DjA==" - } - }, - "npm:@gorhom/portal": { - "type": "npm", - "name": "npm:@gorhom/portal", - "data": { - "version": "1.0.14", - "packageName": "@gorhom/portal", - "hash": "sha512-MXyL4xvCjmgaORr/rtryDNFy3kU4qUbKlwtQqqsygd0xX3mhKjOLn6mQK8wfu0RkoE0pBE0nAasRoHua+/QZ7A==" - } - }, - "npm:@graphql-typed-document-node/core": { - "type": "npm", - "name": "npm:@graphql-typed-document-node/core", - "data": { - "version": "3.2.0", - "packageName": "@graphql-typed-document-node/core", - "hash": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==" - } - }, - "npm:@hapi/hoek": { - "type": "npm", - "name": "npm:@hapi/hoek", - "data": { - "version": "9.3.0", - "packageName": "@hapi/hoek", - "hash": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==" - } - }, - "npm:@hapi/topo": { - "type": "npm", - "name": "npm:@hapi/topo", - "data": { - "version": "5.1.0", - "packageName": "@hapi/topo", - "hash": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==" - } - }, - "npm:@humanwhocodes/config-array": { - "type": "npm", - "name": "npm:@humanwhocodes/config-array", - "data": { - "version": "0.11.14", - "packageName": "@humanwhocodes/config-array", - "hash": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/object-schema": { - "type": "npm", - "name": "npm:@humanwhocodes/object-schema", - "data": { - "version": "2.0.2", - "packageName": "@humanwhocodes/object-schema", - "hash": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==" - } - }, - "npm:@ide/backoff": { - "type": "npm", - "name": "npm:@ide/backoff", - "data": { - "version": "1.0.0", - "packageName": "@ide/backoff", - "hash": "sha512-F0YfUDjvT+Mtt/R4xdl2X0EYCHMMiJqNLdxHD++jDT5ydEFIyqbCHh51Qx2E211dgZprPKhV7sHmnXKpLuvc5g==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:@isaacs/ttlcache": { - "type": "npm", - "name": "npm:@isaacs/ttlcache", - "data": { - "version": "1.4.1", - "packageName": "@isaacs/ttlcache", - "hash": "sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.3", - "packageName": "@istanbuljs/schema", - "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:@jest/create-cache-key-function": { - "type": "npm", - "name": "npm:@jest/create-cache-key-function", - "data": { - "version": "29.7.0", - "packageName": "@jest/create-cache-key-function", - "hash": "sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:@jest/types@26.6.2": { - "type": "npm", - "name": "npm:@jest/types@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "@jest/types", - "hash": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.3", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.1", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.1.2", - "packageName": "@jridgewell/set-array", - "hash": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.5", - "packageName": "@jridgewell/source-map", - "hash": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.15", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.22", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==" - } - }, - "npm:@leichtgewicht/ip-codec": { - "type": "npm", - "name": "npm:@leichtgewicht/ip-codec", - "data": { - "version": "2.0.4", - "packageName": "@leichtgewicht/ip-codec", - "hash": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - } - }, - "npm:@miragejs/pretender-node-polyfill": { - "type": "npm", - "name": "npm:@miragejs/pretender-node-polyfill", - "data": { - "version": "0.1.2", - "packageName": "@miragejs/pretender-node-polyfill", - "hash": "sha512-M/BexG/p05C5lFfMunxo/QcgIJnMT2vDVCd00wNqK2ImZONIlEETZwWJu1QtLxtmYlSHlCFl3JNzp0tLe7OJ5g==" - } - }, - "npm:@motify/components": { - "type": "npm", - "name": "npm:@motify/components", - "data": { - "version": "0.17.1", - "packageName": "@motify/components", - "hash": "sha512-nUOEuNDmnjRVFD202goOilPYtjrZGr26/VCIMnPE5Jpfs9ds/4ezIhQ75zBXd3BuCcgfMRsKrnw01/O0rdWYsg==" - } - }, - "npm:@motify/components@0.18.0": { - "type": "npm", - "name": "npm:@motify/components@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "@motify/components", - "hash": "sha512-1StICST4CKXvWwkkoKtt6Pml//gE2fPI99Byxa+TbrFw4KieATeCYBRjSKD0BghmFmoF+2mRM2uf9FRYfJCGtQ==" - } - }, - "npm:@motify/core": { - "type": "npm", - "name": "npm:@motify/core", - "data": { - "version": "0.17.1", - "packageName": "@motify/core", - "hash": "sha512-czFnaE4o0gCNS7F3u0CdSxzx72b6Yzw2LGD/e/J5DPM7KPL70qyzj5cZ8Rq1sKnUZMfgvCfxyGql21FbGdyhew==" - } - }, - "npm:@motify/core@0.18.0": { - "type": "npm", - "name": "npm:@motify/core@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "@motify/core", - "hash": "sha512-8C4xnC5dZ+S/NEx5wIsHAccofffSOzo7M6lKYR8Ty0QA/XtfwNRL9jQBQafj0pon4h2XP7u2NcJ4lc0ANOsx3A==" - } - }, - "npm:@motify/interactions": { - "type": "npm", - "name": "npm:@motify/interactions", - "data": { - "version": "0.17.1", - "packageName": "@motify/interactions", - "hash": "sha512-RrlFdotOJCnSnwPLFibJyr3GxxTPeRwFhyrXKWKfqVg54D0Ez8JRFCszb90gpnGBSKft1T8FCgMnem8GOHTDfw==" - } - }, - "npm:@motify/skeleton": { - "type": "npm", - "name": "npm:@motify/skeleton", - "data": { - "version": "0.18.0", - "packageName": "@motify/skeleton", - "hash": "sha512-RoS1yVQjs0LhlYCZUUprOVfYeTrtynwhlYZN6upHetvl/CXuxCHt9mV0vChfL/mmRkpS5sOPgEkSlzmJj5uEsg==" - } - }, - "npm:@motionone/animation": { - "type": "npm", - "name": "npm:@motionone/animation", - "data": { - "version": "10.17.0", - "packageName": "@motionone/animation", - "hash": "sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==" - } - }, - "npm:@motionone/dom": { - "type": "npm", - "name": "npm:@motionone/dom", - "data": { - "version": "10.12.0", - "packageName": "@motionone/dom", - "hash": "sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==" - } - }, - "npm:@motionone/easing": { - "type": "npm", - "name": "npm:@motionone/easing", - "data": { - "version": "10.17.0", - "packageName": "@motionone/easing", - "hash": "sha512-Bxe2wSuLu/qxqW4rBFS5m9tMLOw+QBh8v5A7Z5k4Ul4sTj5jAOfZG5R0bn5ywmk+Fs92Ij1feZ5pmC4TeXA8Tg==" - } - }, - "npm:@motionone/generators": { - "type": "npm", - "name": "npm:@motionone/generators", - "data": { - "version": "10.17.0", - "packageName": "@motionone/generators", - "hash": "sha512-T6Uo5bDHrZWhIfxG/2Aut7qyWQyJIWehk6OB4qNvr/jwA/SRmixwbd7SOrxZi1z5rH3LIeFFBKK1xHnSbGPZSQ==" - } - }, - "npm:@motionone/types": { - "type": "npm", - "name": "npm:@motionone/types", - "data": { - "version": "10.17.0", - "packageName": "@motionone/types", - "hash": "sha512-EgeeqOZVdRUTEHq95Z3t8Rsirc7chN5xFAPMYFobx8TPubkEfRSm5xihmMUkbaR2ErKJTUw3347QDPTHIW12IA==" - } - }, - "npm:@motionone/utils": { - "type": "npm", - "name": "npm:@motionone/utils", - "data": { - "version": "10.17.0", - "packageName": "@motionone/utils", - "hash": "sha512-bGwrki4896apMWIj9yp5rAS2m0xyhxblg6gTB/leWDPt+pb410W8lYWsxyurX+DH+gO1zsQsfx2su/c1/LtTpg==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "1.1.1", - "packageName": "@npmcli/fs", - "hash": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==" - } - }, - "npm:@npmcli/move-file": { - "type": "npm", - "name": "npm:@npmcli/move-file", - "data": { - "version": "1.1.2", - "packageName": "@npmcli/move-file", - "hash": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@radix-ui/react-compose-refs": { - "type": "npm", - "name": "npm:@radix-ui/react-compose-refs", - "data": { - "version": "1.0.0", - "packageName": "@radix-ui/react-compose-refs", - "hash": "sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==" - } - }, - "npm:@radix-ui/react-slot": { - "type": "npm", - "name": "npm:@radix-ui/react-slot", - "data": { - "version": "1.0.1", - "packageName": "@radix-ui/react-slot", - "hash": "sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==" - } - }, - "npm:@react-native-async-storage/async-storage": { - "type": "npm", - "name": "npm:@react-native-async-storage/async-storage", - "data": { - "version": "1.21.0", - "packageName": "@react-native-async-storage/async-storage", - "hash": "sha512-JL0w36KuFHFCvnbOXRekqVAUplmOyT/OuCQkogo6X98MtpSaJOKEAeZnYO8JB0U/RIEixZaGI5px73YbRm/oag==" - } - }, - "npm:@react-native-community/cli-clean": { - "type": "npm", - "name": "npm:@react-native-community/cli-clean", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-clean", - "hash": "sha512-iAgLCOWYRGh9ukr+eVQnhkV/OqN3V2EGd/in33Ggn/Mj4uO6+oUncXFwB+yjlyaUNz6FfjudhIz09yYGSF+9sg==" - } - }, - "npm:@react-native-community/cli-config": { - "type": "npm", - "name": "npm:@react-native-community/cli-config", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-config", - "hash": "sha512-BrTn5ndFD9uOxO8kxBQ32EpbtOvAsQExGPI7SokdI4Zlve70FziLtTq91LTlTUgMq1InVZn/jJb3VIDk6BTInQ==" - } - }, - "npm:@react-native-community/cli-debugger-ui": { - "type": "npm", - "name": "npm:@react-native-community/cli-debugger-ui", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-debugger-ui", - "hash": "sha512-w3b0iwjQlk47GhZWHaeTG8kKH09NCMUJO729xSdMBXE8rlbm4kHpKbxQY9qKb6NlfWSJN4noGY+FkNZS2rRwnQ==" - } - }, - "npm:@react-native-community/cli-doctor": { - "type": "npm", - "name": "npm:@react-native-community/cli-doctor", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-doctor", - "hash": "sha512-BPCwNNesoQMkKsxB08Ayy6URgGQ8Kndv6mMhIvJSNdST3J1+x3ehBHXzG9B9Vfi+DrTKRb8lmEl/b/7VkDlPkA==" - } - }, - "npm:@react-native-community/cli-hermes": { - "type": "npm", - "name": "npm:@react-native-community/cli-hermes", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-hermes", - "hash": "sha512-G6FxpeZBO4AimKZwtWR3dpXRqTvsmEqlIkkxgwthdzn3LbVjDVIXKpVYU9PkR5cnT+KuAUxO0WwthrJ6Nmrrlg==" - } - }, - "npm:@react-native-community/cli-platform-android": { - "type": "npm", - "name": "npm:@react-native-community/cli-platform-android", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-platform-android", - "hash": "sha512-VU1NZw63+GLU2TnyQ919bEMThpHQ/oMFju9MCfrd3pyPJz4Sn+vc3NfnTDUVA5Z5yfLijFOkHIHr4vo/C9bjnw==" - } - }, - "npm:@react-native-community/cli-platform-ios": { - "type": "npm", - "name": "npm:@react-native-community/cli-platform-ios", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-platform-ios", - "hash": "sha512-H95Sgt3wT7L8V75V0syFJDtv4YgqK5zbu69ko4yrXGv8dv2EBi6qZP0VMmkqXDamoPm9/U7tDTdbcf26ctnLfg==" - } - }, - "npm:@react-native-community/cli-plugin-metro": { - "type": "npm", - "name": "npm:@react-native-community/cli-plugin-metro", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-plugin-metro", - "hash": "sha512-tYNHIYnNmxrBcsqbE2dAnLMzlKI3Cp1p1xUgTrNaOMsGPDN1epzNfa34n6Nps3iwKElSL7Js91CzYNqgTalucA==" - } - }, - "npm:@react-native-community/cli-server-api": { - "type": "npm", - "name": "npm:@react-native-community/cli-server-api", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-server-api", - "hash": "sha512-Rode8NrdyByC+lBKHHn+/W8Zu0c+DajJvLmOWbe2WY/ECvnwcd9MHHbu92hlT2EQaJ9LbLhGrSbQE3cQy9EOCw==" - } - }, - "npm:@react-native-community/cli-tools": { - "type": "npm", - "name": "npm:@react-native-community/cli-tools", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-tools", - "hash": "sha512-2GafnCr8D88VdClwnm9KZfkEb+lzVoFdr/7ybqhdeYM0Vnt/tr2N+fM1EQzwI1DpzXiBzTYemw8GjRq+Utcz2Q==" - } - }, - "npm:@react-native-community/cli-types": { - "type": "npm", - "name": "npm:@react-native-community/cli-types", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli-types", - "hash": "sha512-MgOkmrXH4zsGxhte4YqKL7d+N8ZNEd3w1wo56MZlhu5WabwCJh87wYpU5T8vyfujFLYOFuFK5jjlcbs8F4/WDw==" - } - }, - "npm:@react-native-community/cli": { - "type": "npm", - "name": "npm:@react-native-community/cli", - "data": { - "version": "12.3.0", - "packageName": "@react-native-community/cli", - "hash": "sha512-XeQohi2E+S2+MMSz97QcEZ/bWpi8sfKiQg35XuYeJkc32Til2g0b97jRpn0/+fV0BInHoG1CQYWwHA7opMsrHg==" - } - }, - "npm:@react-native-community/netinfo": { - "type": "npm", - "name": "npm:@react-native-community/netinfo", - "data": { - "version": "11.1.0", - "packageName": "@react-native-community/netinfo", - "hash": "sha512-pIbCuqgrY7SkngAcjUs9fMzNh1h4soQMVw1IeGp1HN5//wox3fUVOuvyIubTscUbdLFKiltJAiuQek7Nhx1bqA==" - } - }, - "npm:@react-native/assets-registry": { - "type": "npm", - "name": "npm:@react-native/assets-registry", - "data": { - "version": "0.73.1", - "packageName": "@react-native/assets-registry", - "hash": "sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==" - } - }, - "npm:@react-native/babel-plugin-codegen@0.73.2": { - "type": "npm", - "name": "npm:@react-native/babel-plugin-codegen@0.73.2", - "data": { - "version": "0.73.2", - "packageName": "@react-native/babel-plugin-codegen", - "hash": "sha512-PadyFZWVaWXIBP7Q5dgEL7eAd7tnsgsLjoHJB1hIRZZuVUg1Zqe3nULwC7RFAqOtr5Qx7KXChkFFcKQ3WnZzGw==" - } - }, - "npm:@react-native/babel-plugin-codegen": { - "type": "npm", - "name": "npm:@react-native/babel-plugin-codegen", - "data": { - "version": "0.73.3", - "packageName": "@react-native/babel-plugin-codegen", - "hash": "sha512-+zQrDDbz6lB48LyzFHxNCgXDCBHH+oTRdXAjikRcBUdeG9St9ABbYFLtb799zSxLOrCqFVyXqhJR2vlgLLEbcg==" - } - }, - "npm:@react-native/babel-preset@0.73.19": { - "type": "npm", - "name": "npm:@react-native/babel-preset@0.73.19", - "data": { - "version": "0.73.19", - "packageName": "@react-native/babel-preset", - "hash": "sha512-ujon01uMOREZecIltQxPDmJ6xlVqAUFGI/JCSpeVYdxyXBoBH5dBb0ihj7h6LKH1q1jsnO9z4MxfddtypKkIbg==" - } - }, - "npm:@react-native/babel-preset": { - "type": "npm", - "name": "npm:@react-native/babel-preset", - "data": { - "version": "0.73.20", - "packageName": "@react-native/babel-preset", - "hash": "sha512-fU9NqkusbfFq71l4BWQfqqD/lLcLC0MZ++UYgieA3j8lIEppJTLVauv2RwtD2yltBkjebgYEC5Rwvt1l0MUBXw==" - } - }, - "npm:@react-native/codegen": { - "type": "npm", - "name": "npm:@react-native/codegen", - "data": { - "version": "0.73.2", - "packageName": "@react-native/codegen", - "hash": "sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==" - } - }, - "npm:@react-native/community-cli-plugin": { - "type": "npm", - "name": "npm:@react-native/community-cli-plugin", - "data": { - "version": "0.73.12", - "packageName": "@react-native/community-cli-plugin", - "hash": "sha512-xWU06OkC1cX++Duh/cD/Wv+oZ0oSY3yqbtxAqQA2H3Q+MQltNNJM6MqIHt1VOZSabRf/LVlR1JL6U9TXJirkaw==" - } - }, - "npm:@react-native/debugger-frontend": { - "type": "npm", - "name": "npm:@react-native/debugger-frontend", - "data": { - "version": "0.73.3", - "packageName": "@react-native/debugger-frontend", - "hash": "sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==" - } - }, - "npm:@react-native/dev-middleware": { - "type": "npm", - "name": "npm:@react-native/dev-middleware", - "data": { - "version": "0.73.7", - "packageName": "@react-native/dev-middleware", - "hash": "sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==" - } - }, - "npm:@react-native/gradle-plugin": { - "type": "npm", - "name": "npm:@react-native/gradle-plugin", - "data": { - "version": "0.73.4", - "packageName": "@react-native/gradle-plugin", - "hash": "sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==" - } - }, - "npm:@react-native/js-polyfills": { - "type": "npm", - "name": "npm:@react-native/js-polyfills", - "data": { - "version": "0.73.1", - "packageName": "@react-native/js-polyfills", - "hash": "sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==" - } - }, - "npm:@react-native/metro-babel-transformer": { - "type": "npm", - "name": "npm:@react-native/metro-babel-transformer", - "data": { - "version": "0.73.13", - "packageName": "@react-native/metro-babel-transformer", - "hash": "sha512-k9AQifogQfgUXPlqQSoMtX2KUhniw4XvJl+nZ4hphCH7qiMDAwuP8OmkJbz5E/N+Ro9OFuLE7ax4GlwxaTsAWg==" - } - }, - "npm:@react-native/normalize-color": { - "type": "npm", - "name": "npm:@react-native/normalize-color", - "data": { - "version": "2.1.0", - "packageName": "@react-native/normalize-color", - "hash": "sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==" - } - }, - "npm:@react-native/normalize-colors": { - "type": "npm", - "name": "npm:@react-native/normalize-colors", - "data": { - "version": "0.73.2", - "packageName": "@react-native/normalize-colors", - "hash": "sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==" - } - }, - "npm:@react-native/virtualized-lists": { - "type": "npm", - "name": "npm:@react-native/virtualized-lists", - "data": { - "version": "0.73.4", - "packageName": "@react-native/virtualized-lists", - "hash": "sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==" - } - }, - "npm:@react-native/virtualized-lists@0.72.8": { - "type": "npm", - "name": "npm:@react-native/virtualized-lists@0.72.8", - "data": { - "version": "0.72.8", - "packageName": "@react-native/virtualized-lists", - "hash": "sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==" - } - }, - "npm:@react-navigation/bottom-tabs": { - "type": "npm", - "name": "npm:@react-navigation/bottom-tabs", - "data": { - "version": "6.5.11", - "packageName": "@react-navigation/bottom-tabs", - "hash": "sha512-CBN/NOdxnMvmjw+AJQI1kltOYaClTZmGec5pQ3ZNTPX86ytbIOylDIITKMfTgHZcIEFQDymx1SHeS++PIL3Szw==" - } - }, - "npm:@react-navigation/core": { - "type": "npm", - "name": "npm:@react-navigation/core", - "data": { - "version": "6.4.10", - "packageName": "@react-navigation/core", - "hash": "sha512-oYhqxETRHNHKsipm/BtGL0LI43Hs2VSFoWMbBdHK9OqgQPjTVUitslgLcPpo4zApCcmBWoOLX2qPxhsBda644A==" - } - }, - "npm:@react-navigation/elements": { - "type": "npm", - "name": "npm:@react-navigation/elements", - "data": { - "version": "1.3.21", - "packageName": "@react-navigation/elements", - "hash": "sha512-eyS2C6McNR8ihUoYfc166O1D8VYVh9KIl0UQPI8/ZJVsStlfSTgeEEh+WXge6+7SFPnZ4ewzEJdSAHH+jzcEfg==" - } - }, - "npm:@react-navigation/native-stack": { - "type": "npm", - "name": "npm:@react-navigation/native-stack", - "data": { - "version": "6.9.17", - "packageName": "@react-navigation/native-stack", - "hash": "sha512-X8p8aS7JptQq7uZZNFEvfEcPf6tlK4PyVwYDdryRbG98B4bh2wFQYMThxvqa+FGEN7USEuHdv2mF0GhFKfX0ew==" - } - }, - "npm:@react-navigation/native": { - "type": "npm", - "name": "npm:@react-navigation/native", - "data": { - "version": "6.1.9", - "packageName": "@react-navigation/native", - "hash": "sha512-AMuJDpwXE7UlfyhIXaUCCynXmv69Kb8NzKgKJO7v0k0L+u6xUTbt6xvshmJ79vsvaFyaEH9Jg5FMzek5/S5qNw==" - } - }, - "npm:@react-navigation/routers": { - "type": "npm", - "name": "npm:@react-navigation/routers", - "data": { - "version": "6.1.9", - "packageName": "@react-navigation/routers", - "hash": "sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==" - } - }, - "npm:@react-navigation/stack": { - "type": "npm", - "name": "npm:@react-navigation/stack", - "data": { - "version": "6.3.20", - "packageName": "@react-navigation/stack", - "hash": "sha512-vE6mgZzOgoa5Uy7ayT97Cj+ZIK7DK+JBYVuKUViILlWZy6IWK7HFDuqoChSbZ1ajTIfAxj/acVGg1jkbAKsToA==" - } - }, - "npm:@remix-run/node": { - "type": "npm", - "name": "npm:@remix-run/node", - "data": { - "version": "1.19.3", - "packageName": "@remix-run/node", - "hash": "sha512-z5qrVL65xLXIUpU4mkR4MKlMeKARLepgHAk4W5YY3IBXOreRqOGUC70POViYmY7x38c2Ia1NwqL80H+0h7jbMw==" - } - }, - "npm:@remix-run/router": { - "type": "npm", - "name": "npm:@remix-run/router", - "data": { - "version": "1.7.2", - "packageName": "@remix-run/router", - "hash": "sha512-7Lcn7IqGMV+vizMPoEl5F0XDshcdDYtMI6uJLQdQz5CfZAwy3vvGKYSUk789qndt5dEC4HfSjviSYlSoHGL2+A==" - } - }, - "npm:@remix-run/server-runtime": { - "type": "npm", - "name": "npm:@remix-run/server-runtime", - "data": { - "version": "1.19.3", - "packageName": "@remix-run/server-runtime", - "hash": "sha512-KzQ+htUsKqpBgKE2tWo7kIIGy3MyHP58Io/itUPvV+weDjApwr9tQr9PZDPA3yAY6rAzLax7BU0NMSYCXWFY5A==" - } - }, - "npm:@remix-run/web-blob": { - "type": "npm", - "name": "npm:@remix-run/web-blob", - "data": { - "version": "3.1.0", - "packageName": "@remix-run/web-blob", - "hash": "sha512-owGzFLbqPH9PlKb8KvpNJ0NO74HWE2euAn61eEiyCXX/oteoVzTVSN8mpLgDjaxBf2btj5/nUllSUgpyd6IH6g==" - } - }, - "npm:@remix-run/web-fetch": { - "type": "npm", - "name": "npm:@remix-run/web-fetch", - "data": { - "version": "4.4.2", - "packageName": "@remix-run/web-fetch", - "hash": "sha512-jgKfzA713/4kAW/oZ4bC3MoLWyjModOVDjFPNseVqcJKSafgIscrYL9G50SurEYLswPuoU3HzSbO0jQCMYWHhA==" - } - }, - "npm:@remix-run/web-file": { - "type": "npm", - "name": "npm:@remix-run/web-file", - "data": { - "version": "3.1.0", - "packageName": "@remix-run/web-file", - "hash": "sha512-dW2MNGwoiEYhlspOAXFBasmLeYshyAyhIdrlXBi06Duex5tDr3ut2LFKVj7tyHLmn8nnNwFf1BjNbkQpygC2aQ==" - } - }, - "npm:@remix-run/web-form-data": { - "type": "npm", - "name": "npm:@remix-run/web-form-data", - "data": { - "version": "3.1.0", - "packageName": "@remix-run/web-form-data", - "hash": "sha512-NdeohLMdrb+pHxMQ/Geuzdp0eqPbea+Ieo8M8Jx2lGC6TBHsgHzYcBvr0LyPdPVycNRDEpWpiDdCOdCryo3f9A==" - } - }, - "npm:@remix-run/web-stream": { - "type": "npm", - "name": "npm:@remix-run/web-stream", - "data": { - "version": "1.1.0", - "packageName": "@remix-run/web-stream", - "hash": "sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==" - } - }, - "npm:@segment/loosely-validate-event": { - "type": "npm", - "name": "npm:@segment/loosely-validate-event", - "data": { - "version": "2.0.0", - "packageName": "@segment/loosely-validate-event", - "hash": "sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==" - } - }, - "npm:@sideway/address": { - "type": "npm", - "name": "npm:@sideway/address", - "data": { - "version": "4.1.4", - "packageName": "@sideway/address", - "hash": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==" - } - }, - "npm:@sideway/formula": { - "type": "npm", - "name": "npm:@sideway/formula", - "data": { - "version": "3.0.1", - "packageName": "@sideway/formula", - "hash": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==" - } - }, - "npm:@sideway/pinpoint": { - "type": "npm", - "name": "npm:@sideway/pinpoint", - "data": { - "version": "2.0.0", - "packageName": "@sideway/pinpoint", - "hash": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.1", - "packageName": "@sinonjs/commons", - "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.3.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" - } - }, - "npm:@tanstack/query-core": { - "type": "npm", - "name": "npm:@tanstack/query-core", - "data": { - "version": "4.36.1", - "packageName": "@tanstack/query-core", - "hash": "sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==" - } - }, - "npm:@tanstack/react-query": { - "type": "npm", - "name": "npm:@tanstack/react-query", - "data": { - "version": "4.36.1", - "packageName": "@tanstack/react-query", - "hash": "sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==" - } - }, - "npm:@testing-library/jest-native": { - "type": "npm", - "name": "npm:@testing-library/jest-native", - "data": { - "version": "5.4.3", - "packageName": "@testing-library/jest-native", - "hash": "sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==" - } - }, - "npm:@testing-library/react-native": { - "type": "npm", - "name": "npm:@testing-library/react-native", - "data": { - "version": "12.4.3", - "packageName": "@testing-library/react-native", - "hash": "sha512-WLE7VbbR5jZJQl3vfNK7Wt+IHnzhOxyu95Mr56EHmzH3XhC8DkrPVAnUq9asq/QWj4aGnymbinFx6zZys/WZmA==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.8", - "packageName": "@types/babel__generator", - "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__traverse", - "hash": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.5", - "packageName": "@types/body-parser", - "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.13", - "packageName": "@types/bonjour", - "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.5.4", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.7", - "packageName": "@types/eslint-scope", - "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "8.56.2", - "packageName": "@types/eslint", - "hash": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.5", - "packageName": "@types/estree", - "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.17.42", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-ckM3jm2bf/MfB3+spLPWYPUH573plBFwpOhqQ2WottxYV85j1HQFlxmnTq57X1yHY9awZPig06hL/cLMgNWHIQ==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.21", - "packageName": "@types/express", - "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" - } - }, - "npm:@types/glob": { - "type": "npm", - "name": "npm:@types/glob", - "data": { - "version": "7.2.0", - "packageName": "@types/glob", - "hash": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.9", - "packageName": "@types/graceful-fs", - "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" - } - }, - "npm:@types/hammerjs": { - "type": "npm", - "name": "npm:@types/hammerjs", - "data": { - "version": "2.0.45", - "packageName": "@types/hammerjs", - "hash": "sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==" - } - }, - "npm:@types/html-minifier-terser": { - "type": "npm", - "name": "npm:@types/html-minifier-terser", - "data": { - "version": "6.1.0", - "packageName": "@types/html-minifier-terser", - "hash": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.4", - "packageName": "@types/http-errors", - "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.14", - "packageName": "@types/http-proxy", - "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.6", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "3.0.3", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.4", - "packageName": "@types/istanbul-reports", - "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.11", - "packageName": "@types/jest", - "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/json5": { - "type": "npm", - "name": "npm:@types/json5", - "data": { - "version": "0.0.29", - "packageName": "@types/json5", - "hash": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "3.0.4", - "packageName": "@types/mime", - "hash": "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==" - } - }, - "npm:@types/mime@1.3.5": { - "type": "npm", - "name": "npm:@types/mime@1.3.5", - "data": { - "version": "1.3.5", - "packageName": "@types/mime", - "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" - } - }, - "npm:@types/minimatch": { - "type": "npm", - "name": "npm:@types/minimatch", - "data": { - "version": "5.1.2", - "packageName": "@types/minimatch", - "hash": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - } - }, - "npm:@types/node-forge": { - "type": "npm", - "name": "npm:@types/node-forge", - "data": { - "version": "1.3.11", - "packageName": "@types/node-forge", - "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "20.11.7", - "packageName": "@types/node", - "hash": "sha512-GPmeN1C3XAyV5uybAf4cMLWT9fDWcmQhZVtMFu7OR32WjrqGG+Wnk2V1d0bmtUyE/Zy1QJ9BxyiTih9z8Oks8A==" - } - }, - "npm:@types/prop-types": { - "type": "npm", - "name": "npm:@types/prop-types", - "data": { - "version": "15.7.11", - "packageName": "@types/prop-types", - "hash": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.11", - "packageName": "@types/qs", - "hash": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/react-native": { - "type": "npm", - "name": "npm:@types/react-native", - "data": { - "version": "0.72.8", - "packageName": "@types/react-native", - "hash": "sha512-St6xA7+EoHN5mEYfdWnfYt0e8u6k2FR0P9s2arYgakQGFgU1f9FlPrIEcj0X24pLCF5c5i3WVuLCUdiCYHmOoA==" - } - }, - "npm:@types/react-test-renderer": { - "type": "npm", - "name": "npm:@types/react-test-renderer", - "data": { - "version": "18.0.7", - "packageName": "@types/react-test-renderer", - "hash": "sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==" - } - }, - "npm:@types/react": { - "type": "npm", - "name": "npm:@types/react", - "data": { - "version": "18.2.48", - "packageName": "@types/react", - "hash": "sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/scheduler": { - "type": "npm", - "name": "npm:@types/scheduler", - "data": { - "version": "0.16.8", - "packageName": "@types/scheduler", - "hash": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" - } - }, - "npm:@types/semver": { - "type": "npm", - "name": "npm:@types/semver", - "data": { - "version": "7.5.6", - "packageName": "@types/semver", - "hash": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "0.17.4", - "packageName": "@types/send", - "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.4", - "packageName": "@types/serve-index", - "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.5", - "packageName": "@types/serve-static", - "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.36", - "packageName": "@types/sockjs", - "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.5", - "packageName": "@types/tough-cookie", - "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.10", - "packageName": "@types/ws", - "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "21.0.3", - "packageName": "@types/yargs-parser", - "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" - } - }, - "npm:@types/yargs@15.0.19": { - "type": "npm", - "name": "npm:@types/yargs@15.0.19", - "data": { - "version": "15.0.19", - "packageName": "@types/yargs", - "hash": "sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.32", - "packageName": "@types/yargs", - "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" - } - }, - "npm:@typescript-eslint/eslint-plugin@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==" - } - }, - "npm:@typescript-eslint/parser@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/parser@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==" - } - }, - "npm:@typescript-eslint/scope-manager@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==" - } - }, - "npm:@typescript-eslint/type-utils@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==" - } - }, - "npm:@typescript-eslint/types@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/types@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==" - } - }, - "npm:@typescript-eslint/typescript-estree@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==" - } - }, - "npm:@typescript-eslint/utils@6.19.1": { - "type": "npm", - "name": "npm:@typescript-eslint/utils@6.19.1", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==" - } - }, - "npm:@typescript-eslint/visitor-keys@5.62.0": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys@5.62.0", - "data": { - "version": "5.62.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "6.19.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==" - } - }, - "npm:@ungap/structured-clone": { - "type": "npm", - "name": "npm:@ungap/structured-clone", - "data": { - "version": "1.2.0", - "packageName": "@ungap/structured-clone", - "hash": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" - } - }, - "npm:@urql/core": { - "type": "npm", - "name": "npm:@urql/core", - "data": { - "version": "2.3.6", - "packageName": "@urql/core", - "hash": "sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==" - } - }, - "npm:@urql/core@4.2.3": { - "type": "npm", - "name": "npm:@urql/core@4.2.3", - "data": { - "version": "4.2.3", - "packageName": "@urql/core", - "hash": "sha512-DJ9q9+lcs5JL8DcU2J3NqsgeXYJva+1+Qt8HU94kzTPqVOIRRA7ouvy4ksUfPY+B5G2PQ+vLh+JJGyZCNXv0cg==" - } - }, - "npm:@urql/exchange-retry": { - "type": "npm", - "name": "npm:@urql/exchange-retry", - "data": { - "version": "0.3.0", - "packageName": "@urql/exchange-retry", - "hash": "sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==" - } - }, - "npm:@web3-storage/multipart-parser": { - "type": "npm", - "name": "npm:@web3-storage/multipart-parser", - "data": { - "version": "1.0.0", - "packageName": "@web3-storage/multipart-parser", - "hash": "sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==" - } - }, - "npm:@welldone-software/why-did-you-render": { - "type": "npm", - "name": "npm:@welldone-software/why-did-you-render", - "data": { - "version": "7.0.1", - "packageName": "@welldone-software/why-did-you-render", - "hash": "sha512-Qe/8Xxa2G+LMdI6VoazescPzjjkHYduCDa8aHOJR50e9Bgs8ihkfMBY+ev7B4oc3N59Zm547Sgjf8h5y0FOyoA==" - } - }, - "npm:@xmldom/xmldom@0.8.10": { - "type": "npm", - "name": "npm:@xmldom/xmldom@0.8.10", - "data": { - "version": "0.8.10", - "packageName": "@xmldom/xmldom", - "hash": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==" - } - }, - "npm:@xmldom/xmldom": { - "type": "npm", - "name": "npm:@xmldom/xmldom", - "data": { - "version": "0.7.13", - "packageName": "@xmldom/xmldom", - "hash": "sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@zxing/text-encoding": { - "type": "npm", - "name": "npm:@zxing/text-encoding", - "data": { - "version": "0.9.0", - "packageName": "@zxing/text-encoding", - "hash": "sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-assertions": { - "type": "npm", - "name": "npm:acorn-import-assertions", - "data": { - "version": "1.9.0", - "packageName": "acorn-import-assertions", - "hash": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.2", - "packageName": "acorn-walk", - "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.11.3", - "packageName": "acorn", - "hash": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:ajv-formats@2.1.1": { - "type": "npm", - "name": "npm:ajv-formats@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ajv-keywords@5.1.0": { - "type": "npm", - "name": "npm:ajv-keywords@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:ajv@8.11.0": { - "type": "npm", - "name": "npm:ajv@8.11.0", - "data": { - "version": "8.11.0", - "packageName": "ajv", - "hash": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:ajv@8.12.0": { - "type": "npm", - "name": "npm:ajv@8.12.0", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:anser": { - "type": "npm", - "name": "npm:anser", - "data": { - "version": "1.4.10", - "packageName": "anser", - "hash": "sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==" - } - }, - "npm:ansi-escapes@1.4.0": { - "type": "npm", - "name": "npm:ansi-escapes@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "ansi-escapes", - "hash": "sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.2", - "packageName": "ansi-escapes", - "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" - } - }, - "npm:ansi-escapes@5.0.0": { - "type": "npm", - "name": "npm:ansi-escapes@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "ansi-escapes", - "hash": "sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==" - } - }, - "npm:ansi-escapes@6.2.0": { - "type": "npm", - "name": "npm:ansi-escapes@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "ansi-escapes", - "hash": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==" - } - }, - "npm:ansi-fragments": { - "type": "npm", - "name": "npm:ansi-fragments", - "data": { - "version": "0.2.1", - "packageName": "ansi-fragments", - "hash": "sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:ansi-regex@2.1.1": { - "type": "npm", - "name": "npm:ansi-regex@2.1.1", - "data": { - "version": "2.1.1", - "packageName": "ansi-regex", - "hash": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - } - }, - "npm:ansi-regex@4.1.1": { - "type": "npm", - "name": "npm:ansi-regex@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "ansi-regex", - "hash": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:ansi-styles@2.2.1": { - "type": "npm", - "name": "npm:ansi-styles@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "ansi-styles", - "hash": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:any-promise": { - "type": "npm", - "name": "npm:any-promise", - "data": { - "version": "1.3.0", - "packageName": "any-promise", - "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:appdirsjs": { - "type": "npm", - "name": "npm:appdirsjs", - "data": { - "version": "1.2.7", - "packageName": "appdirsjs", - "hash": "sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==" - } - }, - "npm:application-config-path": { - "type": "npm", - "name": "npm:application-config-path", - "data": { - "version": "0.1.1", - "packageName": "application-config-path", - "hash": "sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==" - } - }, - "npm:arg@4.1.0": { - "type": "npm", - "name": "npm:arg@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "arg", - "hash": "sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "5.0.2", - "packageName": "arg", - "hash": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.0", - "packageName": "array-buffer-byte-length", - "hash": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - } - }, - "npm:array-includes": { - "type": "npm", - "name": "npm:array-includes", - "data": { - "version": "3.1.7", - "packageName": "array-includes", - "hash": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==" - } - }, - "npm:array-union@1.0.2": { - "type": "npm", - "name": "npm:array-union@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "array-union", - "hash": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:array-union@3.0.1": { - "type": "npm", - "name": "npm:array-union@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "array-union", - "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" - } - }, - "npm:array-uniq": { - "type": "npm", - "name": "npm:array-uniq", - "data": { - "version": "1.0.3", - "packageName": "array-uniq", - "hash": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==" - } - }, - "npm:array.prototype.findlastindex": { - "type": "npm", - "name": "npm:array.prototype.findlastindex", - "data": { - "version": "1.2.3", - "packageName": "array.prototype.findlastindex", - "hash": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flat", - "hash": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.3.2", - "packageName": "array.prototype.flatmap", - "hash": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==" - } - }, - "npm:array.prototype.tosorted": { - "type": "npm", - "name": "npm:array.prototype.tosorted", - "data": { - "version": "1.1.2", - "packageName": "array.prototype.tosorted", - "hash": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.2", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==" - } - }, - "npm:asap": { - "type": "npm", - "name": "npm:asap", - "data": { - "version": "2.0.6", - "packageName": "asap", - "hash": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - } - }, - "npm:assert": { - "type": "npm", - "name": "npm:assert", - "data": { - "version": "2.1.0", - "packageName": "assert", - "hash": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==" - } - }, - "npm:ast-types": { - "type": "npm", - "name": "npm:ast-types", - "data": { - "version": "0.15.2", - "packageName": "ast-types", - "hash": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "1.0.0", - "packageName": "astral-regex", - "hash": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" - } - }, - "npm:async-limiter": { - "type": "npm", - "name": "npm:async-limiter", - "data": { - "version": "1.0.1", - "packageName": "async-limiter", - "hash": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - } - }, - "npm:asynciterator.prototype": { - "type": "npm", - "name": "npm:asynciterator.prototype", - "data": { - "version": "1.0.0", - "packageName": "asynciterator.prototype", - "hash": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.5", - "packageName": "available-typed-arrays", - "hash": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "0.27.2", - "packageName": "axios", - "hash": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==" - } - }, - "npm:babel-core": { - "type": "npm", - "name": "npm:babel-core", - "data": { - "version": "7.0.0-bridge.0", - "packageName": "babel-core", - "hash": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:babel-loader@8.3.0": { - "type": "npm", - "name": "npm:babel-loader@8.3.0", - "data": { - "version": "8.3.0", - "packageName": "babel-loader", - "hash": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "9.1.3", - "packageName": "babel-loader", - "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-plugin-module-resolver": { - "type": "npm", - "name": "npm:babel-plugin-module-resolver", - "data": { - "version": "5.0.0", - "packageName": "babel-plugin-module-resolver", - "hash": "sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.8", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.9.0", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.5.5", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==" - } - }, - "npm:babel-plugin-react-native-web": { - "type": "npm", - "name": "npm:babel-plugin-react-native-web", - "data": { - "version": "0.18.12", - "packageName": "babel-plugin-react-native-web", - "hash": "sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==" - } - }, - "npm:babel-plugin-syntax-trailing-function-commas": { - "type": "npm", - "name": "npm:babel-plugin-syntax-trailing-function-commas", - "data": { - "version": "7.0.0-beta.0", - "packageName": "babel-plugin-syntax-trailing-function-commas", - "hash": "sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==" - } - }, - "npm:babel-plugin-transform-flow-enums": { - "type": "npm", - "name": "npm:babel-plugin-transform-flow-enums", - "data": { - "version": "0.0.2", - "packageName": "babel-plugin-transform-flow-enums", - "hash": "sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:babel-preset-expo": { - "type": "npm", - "name": "npm:babel-preset-expo", - "data": { - "version": "10.0.1", - "packageName": "babel-preset-expo", - "hash": "sha512-uWIGmLfbP3dS5+8nesxaW6mQs41d4iP7X82ZwRdisB/wAhKQmuJM9Y1jQe4006uNYkw6Phf2TT03ykLVro7KuQ==" - } - }, - "npm:babel-preset-fbjs": { - "type": "npm", - "name": "npm:babel-preset-fbjs", - "data": { - "version": "3.4.0", - "packageName": "babel-preset-fbjs", - "hash": "sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:badgin": { - "type": "npm", - "name": "npm:badgin", - "data": { - "version": "1.2.3", - "packageName": "badgin", - "hash": "sha512-NQGA7LcfCpSzIbGRbkgjgdWkjy7HI+Th5VLxTJfW5EeaAf3fnS+xWQaQOCYiny+q6QSvxqoSO04vCx+4u++EJw==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - } - }, - "npm:better-opn": { - "type": "npm", - "name": "npm:better-opn", - "data": { - "version": "3.0.2", - "packageName": "better-opn", - "hash": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==" - } - }, - "npm:big-integer": { - "type": "npm", - "name": "npm:big-integer", - "data": { - "version": "1.6.52", - "packageName": "big-integer", - "hash": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.2.0", - "packageName": "binary-extensions", - "hash": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:blueimp-md5": { - "type": "npm", - "name": "npm:blueimp-md5", - "data": { - "version": "2.19.0", - "packageName": "blueimp-md5", - "hash": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.20.1", - "packageName": "body-parser", - "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" - } - }, - "npm:bonjour-service": { - "type": "npm", - "name": "npm:bonjour-service", - "data": { - "version": "1.2.1", - "packageName": "bonjour-service", - "hash": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:bplist-creator": { - "type": "npm", - "name": "npm:bplist-creator", - "data": { - "version": "0.1.0", - "packageName": "bplist-creator", - "hash": "sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==" - } - }, - "npm:bplist-parser@0.3.1": { - "type": "npm", - "name": "npm:bplist-parser@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "bplist-parser", - "hash": "sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==" - } - }, - "npm:bplist-parser": { - "type": "npm", - "name": "npm:bplist-parser", - "data": { - "version": "0.3.2", - "packageName": "bplist-parser", - "hash": "sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==" - } - }, - "npm:brace-expansion@1.1.11": { - "type": "npm", - "name": "npm:brace-expansion@1.1.11", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.22.2", - "packageName": "browserslist", - "hash": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.1", - "packageName": "bser", - "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" - } - }, - "npm:buffer-alloc-unsafe": { - "type": "npm", - "name": "npm:buffer-alloc-unsafe", - "data": { - "version": "1.1.0", - "packageName": "buffer-alloc-unsafe", - "hash": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" - } - }, - "npm:buffer-alloc": { - "type": "npm", - "name": "npm:buffer-alloc", - "data": { - "version": "1.2.0", - "packageName": "buffer-alloc", - "hash": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==" - } - }, - "npm:buffer-fill": { - "type": "npm", - "name": "npm:buffer-fill", - "data": { - "version": "1.0.0", - "packageName": "buffer-fill", - "hash": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "1.0.3", - "packageName": "builtins", - "hash": "sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "15.3.0", - "packageName": "cacache", - "hash": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.5", - "packageName": "call-bind", - "hash": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==" - } - }, - "npm:caller-callsite": { - "type": "npm", - "name": "npm:caller-callsite", - "data": { - "version": "2.0.0", - "packageName": "caller-callsite", - "hash": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==" - } - }, - "npm:caller-path": { - "type": "npm", - "name": "npm:caller-path", - "data": { - "version": "2.0.0", - "packageName": "caller-path", - "hash": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==" - } - }, - "npm:callsites@2.0.0": { - "type": "npm", - "name": "npm:callsites@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "callsites", - "hash": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camel-case": { - "type": "npm", - "name": "npm:camel-case", - "data": { - "version": "4.1.2", - "packageName": "camel-case", - "hash": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001580", - "packageName": "caniuse-lite", - "hash": "sha512-mtj5ur2FFPZcCEpXFy8ADXbDACuNFXg6mxVDqp7tqooX6l3zwm+d8EPoeOSIFRDvHs8qu7/SLFOGniULkcH2iA==" - } - }, - "npm:chalk@5.3.0": { - "type": "npm", - "name": "npm:chalk@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "chalk", - "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" - } - }, - "npm:chalk@1.1.3": { - "type": "npm", - "name": "npm:chalk@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "chalk", - "hash": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:char-regex@2.0.1": { - "type": "npm", - "name": "npm:char-regex@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "char-regex", - "hash": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" - } - }, - "npm:charenc": { - "type": "npm", - "name": "npm:charenc", - "data": { - "version": "0.0.2", - "packageName": "charenc", - "hash": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==" - } - }, - "npm:chokidar@3.6.0": { - "type": "npm", - "name": "npm:chokidar@3.6.0", - "data": { - "version": "3.6.0", - "packageName": "chokidar", - "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.5.3", - "packageName": "chokidar", - "hash": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:chrome-launcher": { - "type": "npm", - "name": "npm:chrome-launcher", - "data": { - "version": "0.15.2", - "packageName": "chrome-launcher", - "hash": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.3", - "packageName": "chrome-trace-event", - "hash": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" - } - }, - "npm:chromium-edge-launcher": { - "type": "npm", - "name": "npm:chromium-edge-launcher", - "data": { - "version": "1.0.0", - "packageName": "chromium-edge-launcher", - "hash": "sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==" - } - }, - "npm:ci-info@2.0.0": { - "type": "npm", - "name": "npm:ci-info@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ci-info", - "hash": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.3", - "packageName": "cjs-module-lexer", - "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" - } - }, - "npm:clean-css": { - "type": "npm", - "name": "npm:clean-css", - "data": { - "version": "5.3.3", - "packageName": "clean-css", - "hash": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:clean-webpack-plugin": { - "type": "npm", - "name": "npm:clean-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "clean-webpack-plugin", - "hash": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==" - } - }, - "npm:cli-cursor@2.1.0": { - "type": "npm", - "name": "npm:cli-cursor@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "cli-cursor", - "hash": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-cursor@4.0.0": { - "type": "npm", - "name": "npm:cli-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-cursor", - "hash": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.9.2", - "packageName": "cli-spinners", - "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" - } - }, - "npm:cli-styles": { - "type": "npm", - "name": "npm:cli-styles", - "data": { - "version": "0.4.0", - "packageName": "cli-styles", - "hash": "sha512-vftbMiExtwwZn/sEFdD4Niw76lfKCmVSJkWHFyO9kqsNPiE6ngiXfP4sJaO9ak1XC1aNKpY53Fu8uMDy3UjhNA==" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "3.1.0", - "packageName": "cli-truncate", - "hash": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==" - } - }, - "npm:cliui@6.0.0": { - "type": "npm", - "name": "npm:cliui@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "cliui", - "hash": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:clone@1.0.4": { - "type": "npm", - "name": "npm:clone@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "2.1.2", - "packageName": "clone", - "hash": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.2", - "packageName": "collect-v8-coverage", - "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" - } - }, - "npm:color-convert@1.9.3": { - "type": "npm", - "name": "npm:color-convert@1.9.3", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-name@1.1.3": { - "type": "npm", - "name": "npm:color-name@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.9.1", - "packageName": "color-string", - "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" - } - }, - "npm:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "4.2.3", - "packageName": "color", - "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette@1.4.0": { - "type": "npm", - "name": "npm:colorette@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "colorette", - "hash": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:command-exists": { - "type": "npm", - "name": "npm:command-exists", - "data": { - "version": "1.2.9", - "packageName": "command-exists", - "hash": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - } - }, - "npm:commander@11.0.0": { - "type": "npm", - "name": "npm:commander@11.0.0", - "data": { - "version": "11.0.0", - "packageName": "commander", - "hash": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==" - } - }, - "npm:commander@2.20.0": { - "type": "npm", - "name": "npm:commander@2.20.0", - "data": { - "version": "2.20.0", - "packageName": "commander", - "hash": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==" - } - }, - "npm:commander@2.20.3": { - "type": "npm", - "name": "npm:commander@2.20.3", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:commander@4.1.1": { - "type": "npm", - "name": "npm:commander@4.1.1", - "data": { - "version": "4.1.1", - "packageName": "commander", - "hash": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" - } - }, - "npm:commander@5.1.0": { - "type": "npm", - "name": "npm:commander@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "commander", - "hash": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:commander@8.3.0": { - "type": "npm", - "name": "npm:commander@8.3.0", - "data": { - "version": "8.3.0", - "packageName": "commander", - "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" - } - }, - "npm:commander@9.5.0": { - "type": "npm", - "name": "npm:commander@9.5.0", - "data": { - "version": "9.5.0", - "packageName": "commander", - "hash": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - } - }, - "npm:compare-urls": { - "type": "npm", - "name": "npm:compare-urls", - "data": { - "version": "2.0.0", - "packageName": "compare-urls", - "hash": "sha512-eCJcWn2OYFEIqbm70ta7LQowJOOZZqq1a2YbbFCFI1uwSvj+TWMwXVn7vPR1ceFNcAIt5RSTDbwdlX82gYLTkA==" - } - }, - "npm:component-type": { - "type": "npm", - "name": "npm:component-type", - "data": { - "version": "1.2.2", - "packageName": "component-type", - "hash": "sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.18", - "packageName": "compressible", - "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "2.0.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.7.0", - "packageName": "connect", - "hash": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - } - }, - "npm:cookie-signature@1.2.1": { - "type": "npm", - "name": "npm:cookie-signature@1.2.1", - "data": { - "version": "1.2.1", - "packageName": "cookie-signature", - "hash": "sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.5.0", - "packageName": "cookie", - "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - } - }, - "npm:cookie@0.4.2": { - "type": "npm", - "name": "npm:cookie@0.4.2", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "10.2.4", - "packageName": "copy-webpack-plugin", - "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.35.1", - "packageName": "core-js-compat", - "hash": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.3", - "packageName": "core-util-is", - "hash": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "5.2.1", - "packageName": "cosmiconfig", - "hash": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:cross-env": { - "type": "npm", - "name": "npm:cross-env", - "data": { - "version": "7.0.3", - "packageName": "cross-env", - "hash": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==" - } - }, - "npm:cross-fetch": { - "type": "npm", - "name": "npm:cross-fetch", - "data": { - "version": "3.1.8", - "packageName": "cross-fetch", - "hash": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==" - } - }, - "npm:cross-spawn@6.0.5": { - "type": "npm", - "name": "npm:cross-spawn@6.0.5", - "data": { - "version": "6.0.5", - "packageName": "cross-spawn", - "hash": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:crypt": { - "type": "npm", - "name": "npm:crypt", - "data": { - "version": "0.0.2", - "packageName": "crypt", - "hash": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==" - } - }, - "npm:crypto-random-string": { - "type": "npm", - "name": "npm:crypto-random-string", - "data": { - "version": "1.0.0", - "packageName": "crypto-random-string", - "hash": "sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==" - } - }, - "npm:crypto-random-string@2.0.0": { - "type": "npm", - "name": "npm:crypto-random-string@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "crypto-random-string", - "hash": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "6.4.1", - "packageName": "css-declaration-sorter", - "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" - } - }, - "npm:css-in-js-utils": { - "type": "npm", - "name": "npm:css-in-js-utils", - "data": { - "version": "3.1.0", - "packageName": "css-in-js-utils", - "hash": "sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "6.9.1", - "packageName": "css-loader", - "hash": "sha512-OzABOh0+26JKFdMzlK6PY1u5Zx8+Ck7CVRlcGNZoY9qwJjdfu2VWFuprTIpPW+Av5TZTVViYWcFQaEEQURLknQ==" - } - }, - "npm:css-minimizer-webpack-plugin": { - "type": "npm", - "name": "npm:css-minimizer-webpack-plugin", - "data": { - "version": "3.4.1", - "packageName": "css-minimizer-webpack-plugin", - "hash": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "4.3.0", - "packageName": "css-select", - "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" - } - }, - "npm:css-select@5.1.0": { - "type": "npm", - "name": "npm:css-select@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "css-select", - "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "1.1.3", - "packageName": "css-tree", - "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.1.0", - "packageName": "css-what", - "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "5.2.14", - "packageName": "cssnano-preset-default", - "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "3.1.0", - "packageName": "cssnano-utils", - "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" - } - }, - "npm:cssnano": { - "type": "npm", - "name": "npm:cssnano", - "data": { - "version": "5.1.15", - "packageName": "cssnano", - "hash": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==" - } - }, - "npm:csso@4.2.0": { - "type": "npm", - "name": "npm:csso@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "csso", - "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:csstype": { - "type": "npm", - "name": "npm:csstype", - "data": { - "version": "3.1.3", - "packageName": "csstype", - "hash": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - } - }, - "npm:dag-map": { - "type": "npm", - "name": "npm:dag-map", - "data": { - "version": "1.0.2", - "packageName": "dag-map", - "hash": "sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==" - } - }, - "npm:data-uri-to-buffer": { - "type": "npm", - "name": "npm:data-uri-to-buffer", - "data": { - "version": "3.0.1", - "packageName": "data-uri-to-buffer", - "hash": "sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.10", - "packageName": "dayjs", - "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:decamelize": { - "type": "npm", - "name": "npm:decamelize", - "data": { - "version": "1.2.0", - "packageName": "decamelize", - "hash": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:decode-uri-component": { - "type": "npm", - "name": "npm:decode-uri-component", - "data": { - "version": "0.2.2", - "packageName": "decode-uri-component", - "hash": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" - } - }, - "npm:dedent": { - "type": "npm", - "name": "npm:dedent", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.3.1", - "packageName": "deepmerge", - "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "4.2.0", - "packageName": "default-gateway", - "hash": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==" - } - }, - "npm:default-gateway@6.0.3": { - "type": "npm", - "name": "npm:default-gateway@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.1", - "packageName": "define-data-property", - "hash": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.2.1", - "packageName": "define-properties", - "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" - } - }, - "npm:del": { - "type": "npm", - "name": "npm:del", - "data": { - "version": "4.1.1", - "packageName": "del", - "hash": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" - } - }, - "npm:del@6.1.1": { - "type": "npm", - "name": "npm:del@6.1.1", - "data": { - "version": "6.1.1", - "packageName": "del", - "hash": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:denodeify": { - "type": "npm", - "name": "npm:denodeify", - "data": { - "version": "1.2.1", - "packageName": "denodeify", - "hash": "sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:depd@1.1.2": { - "type": "npm", - "name": "npm:depd@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - } - }, - "npm:deprecated-react-native-prop-types": { - "type": "npm", - "name": "npm:deprecated-react-native-prop-types", - "data": { - "version": "5.0.0", - "packageName": "deprecated-react-native-prop-types", - "hash": "sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.2.0", - "packageName": "destroy", - "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - } - }, - "npm:detect-libc": { - "type": "npm", - "name": "npm:detect-libc", - "data": { - "version": "1.0.3", - "packageName": "detect-libc", - "hash": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.1.0", - "packageName": "detect-node", - "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "5.6.1", - "packageName": "dns-packet", - "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "2.1.0", - "packageName": "doctrine", - "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - } - }, - "npm:doctrine@3.0.0": { - "type": "npm", - "name": "npm:doctrine@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:dom-converter": { - "type": "npm", - "name": "npm:dom-converter", - "data": { - "version": "0.2.0", - "packageName": "dom-converter", - "hash": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "1.4.1", - "packageName": "dom-serializer", - "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" - } - }, - "npm:dom-serializer@2.0.0": { - "type": "npm", - "name": "npm:dom-serializer@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "dom-serializer", - "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "4.3.1", - "packageName": "domhandler", - "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" - } - }, - "npm:domhandler@5.0.3": { - "type": "npm", - "name": "npm:domhandler@5.0.3", - "data": { - "version": "5.0.3", - "packageName": "domhandler", - "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "2.8.0", - "packageName": "domutils", - "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" - } - }, - "npm:domutils@3.1.0": { - "type": "npm", - "name": "npm:domutils@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "domutils", - "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" - } - }, - "npm:dot-case": { - "type": "npm", - "name": "npm:dot-case", - "data": { - "version": "3.0.4", - "packageName": "dot-case", - "hash": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "10.0.0", - "packageName": "dotenv-expand", - "hash": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "16.4.1", - "packageName": "dotenv", - "hash": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==" - } - }, - "npm:dotenv@16.0.3": { - "type": "npm", - "name": "npm:dotenv@16.0.3", - "data": { - "version": "16.0.3", - "packageName": "dotenv", - "hash": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.4.647", - "packageName": "electron-to-chromium", - "hash": "sha512-Z/fTNGwc45WrYQhPaEcz5tAJuZZ8G7S/DBnhS6Kgp4BxnS40Z/HqlJ0hHg3Z79IGVzuVartIlTcjw/cQbPLgOw==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.15.0", - "packageName": "enhanced-resolve", - "hash": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==" - } - }, - "npm:entities@2.2.0": { - "type": "npm", - "name": "npm:entities@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "entities", - "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:env-editor": { - "type": "npm", - "name": "npm:env-editor", - "data": { - "version": "0.4.2", - "packageName": "env-editor", - "hash": "sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.11.0", - "packageName": "envinfo", - "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" - } - }, - "npm:eol": { - "type": "npm", - "name": "npm:eol", - "data": { - "version": "0.9.1", - "packageName": "eol", - "hash": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:error-stack-parser": { - "type": "npm", - "name": "npm:error-stack-parser", - "data": { - "version": "2.1.4", - "packageName": "error-stack-parser", - "hash": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==" - } - }, - "npm:errorhandler": { - "type": "npm", - "name": "npm:errorhandler", - "data": { - "version": "1.5.1", - "packageName": "errorhandler", - "hash": "sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.22.3", - "packageName": "es-abstract", - "hash": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==" - } - }, - "npm:es-iterator-helpers": { - "type": "npm", - "name": "npm:es-iterator-helpers", - "data": { - "version": "1.0.15", - "packageName": "es-iterator-helpers", - "hash": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "es-module-lexer", - "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.0.2", - "packageName": "es-set-tostringtag", - "hash": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==" - } - }, - "npm:es-shim-unscopables": { - "type": "npm", - "name": "npm:es-shim-unscopables", - "data": { - "version": "1.0.2", - "packageName": "es-shim-unscopables", - "hash": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.2.1", - "packageName": "es-to-primitive", - "hash": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.1", - "packageName": "escalade", - "hash": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "8.10.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==" - } - }, - "npm:eslint-config-universe": { - "type": "npm", - "name": "npm:eslint-config-universe", - "data": { - "version": "11.3.0", - "packageName": "eslint-config-universe", - "hash": "sha512-CL6v7IxV+OJn0q1vqtFVtX+sNUdY7MiIy3/XD0dy96D7RsDvYBWWqs4S1AIB4AdVgraNnv829q1+asluAePSSw==" - } - }, - "npm:eslint-import-resolver-node": { - "type": "npm", - "name": "npm:eslint-import-resolver-node", - "data": { - "version": "0.3.9", - "packageName": "eslint-import-resolver-node", - "hash": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" - } - }, - "npm:eslint-module-utils": { - "type": "npm", - "name": "npm:eslint-module-utils", - "data": { - "version": "2.8.0", - "packageName": "eslint-module-utils", - "hash": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==" - } - }, - "npm:eslint-plugin-es": { - "type": "npm", - "name": "npm:eslint-plugin-es", - "data": { - "version": "3.0.1", - "packageName": "eslint-plugin-es", - "hash": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==" - } - }, - "npm:eslint-plugin-import": { - "type": "npm", - "name": "npm:eslint-plugin-import", - "data": { - "version": "2.29.1", - "packageName": "eslint-plugin-import", - "hash": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==" - } - }, - "npm:eslint-plugin-node": { - "type": "npm", - "name": "npm:eslint-plugin-node", - "data": { - "version": "11.1.0", - "packageName": "eslint-plugin-node", - "hash": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==" - } - }, - "npm:eslint-plugin-prettier": { - "type": "npm", - "name": "npm:eslint-plugin-prettier", - "data": { - "version": "4.2.1", - "packageName": "eslint-plugin-prettier", - "hash": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==" - } - }, - "npm:eslint-plugin-react-hooks": { - "type": "npm", - "name": "npm:eslint-plugin-react-hooks", - "data": { - "version": "4.6.0", - "packageName": "eslint-plugin-react-hooks", - "hash": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==" - } - }, - "npm:eslint-plugin-react-native-globals": { - "type": "npm", - "name": "npm:eslint-plugin-react-native-globals", - "data": { - "version": "0.1.2", - "packageName": "eslint-plugin-react-native-globals", - "hash": "sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==" - } - }, - "npm:eslint-plugin-react-native": { - "type": "npm", - "name": "npm:eslint-plugin-react-native", - "data": { - "version": "4.1.0", - "packageName": "eslint-plugin-react-native", - "hash": "sha512-QLo7rzTBOl43FvVqDdq5Ql9IoElIuTdjrz9SKAXCvULvBoRZ44JGSkx9z4999ZusCsb4rK3gjS8gOGyeYqZv2Q==" - } - }, - "npm:eslint-plugin-react": { - "type": "npm", - "name": "npm:eslint-plugin-react", - "data": { - "version": "7.33.2", - "packageName": "eslint-plugin-react", - "hash": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-scope@7.2.2": { - "type": "npm", - "name": "npm:eslint-scope@7.2.2", - "data": { - "version": "7.2.2", - "packageName": "eslint-scope", - "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" - } - }, - "npm:eslint-utils": { - "type": "npm", - "name": "npm:eslint-utils", - "data": { - "version": "2.1.0", - "packageName": "eslint-utils", - "hash": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" - } - }, - "npm:eslint-visitor-keys@1.3.0": { - "type": "npm", - "name": "npm:eslint-visitor-keys@1.3.0", - "data": { - "version": "1.3.0", - "packageName": "eslint-visitor-keys", - "hash": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "8.56.0", - "packageName": "eslint", - "hash": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse@4.3.0": { - "type": "npm", - "name": "npm:estraverse@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:eventemitter3@4.0.7": { - "type": "npm", - "name": "npm:eventemitter3@4.0.7", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "5.0.1", - "packageName": "eventemitter3", - "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:exec-async": { - "type": "npm", - "name": "npm:exec-async", - "data": { - "version": "2.2.0", - "packageName": "exec-async", - "hash": "sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==" - } - }, - "npm:execa@7.2.0": { - "type": "npm", - "name": "npm:execa@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "execa", - "hash": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==" - } - }, - "npm:execa@1.0.0": { - "type": "npm", - "name": "npm:execa@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "execa", - "hash": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:expo-app-loading": { - "type": "npm", - "name": "npm:expo-app-loading", - "data": { - "version": "2.1.1", - "packageName": "expo-app-loading", - "hash": "sha512-b3VNkPuFaI9J847HSpjI4uiuyE4+IWyAIPT9uzbkS7QFknL99DMoihtgzeWzKaJKSAmbYc3ph2Vl9skJAkVYUg==" - } - }, - "npm:expo-application": { - "type": "npm", - "name": "npm:expo-application", - "data": { - "version": "5.8.3", - "packageName": "expo-application", - "hash": "sha512-IISxzpPX+Xe4ynnwX8yY52T6dm1g9sME1GCj4lvUlrdc5xeTPM6U35x7Wj82V7lLWBaVGe+/Tg9EeKqfylCEwA==" - } - }, - "npm:expo-asset": { - "type": "npm", - "name": "npm:expo-asset", - "data": { - "version": "9.0.2", - "packageName": "expo-asset", - "hash": "sha512-PzYKME1MgUOoUvwtdzhAyXkjXOXGiSYqGKG/MsXwWr0Ef5wlBaBm2DCO9V6KYbng5tBPFu6hTjoRNil1tBOSow==" - } - }, - "npm:expo-clipboard": { - "type": "npm", - "name": "npm:expo-clipboard", - "data": { - "version": "5.0.1", - "packageName": "expo-clipboard", - "hash": "sha512-JH853QJPr5W3h87If3aDTnMK+ESSIrwzU2TdfZrqZttVDY2pMIf/w37mVHHNYodXM4ATHXadtOkjKbAa0DWwUg==" - } - }, - "npm:expo-constants": { - "type": "npm", - "name": "npm:expo-constants", - "data": { - "version": "15.4.5", - "packageName": "expo-constants", - "hash": "sha512-1pVVjwk733hbbIjtQcvUFCme540v4gFemdNlaxM2UXKbfRCOh2hzgKN5joHMOysoXQe736TTUrRj7UaZI5Yyhg==" - } - }, - "npm:expo-crypto": { - "type": "npm", - "name": "npm:expo-crypto", - "data": { - "version": "12.8.0", - "packageName": "expo-crypto", - "hash": "sha512-67CoxXz+b4VU1zMo/2kUp+9t6TiVs8HvCvHsW8zoLLAZkVNa3YW1l0arLtQ4oR4HQpEr1i9rAZhP0/mvo+fg5A==" - } - }, - "npm:expo-dev-client": { - "type": "npm", - "name": "npm:expo-dev-client", - "data": { - "version": "3.3.7", - "packageName": "expo-dev-client", - "hash": "sha512-dsucMzezNuP7zxSxYi1EbIA16j491tD9joUlGlpvBW1IylxUmbPraOqUqdXsDxRIAJh5HgJx/8X03Xoo1j7YKw==" - } - }, - "npm:expo-dev-launcher": { - "type": "npm", - "name": "npm:expo-dev-launcher", - "data": { - "version": "3.6.4", - "packageName": "expo-dev-launcher", - "hash": "sha512-i5NGm2QeVl7ePk9nyvW1hAEg29FRMltNNEkRiK/AF77ObrD0YG/FhhidQL8C/SIIm/3RcsjAiw4buF5QRoieKg==" - } - }, - "npm:expo-dev-menu-interface": { - "type": "npm", - "name": "npm:expo-dev-menu-interface", - "data": { - "version": "1.7.2", - "packageName": "expo-dev-menu-interface", - "hash": "sha512-V/geSB9rW0IPTR+d7E5CcvkV0uVUCE7SMHZqE/J0/dH06Wo8AahB16fimXeh5/hTL2Qztq8CQ41xpFUBoA9TEw==" - } - }, - "npm:expo-dev-menu@4.5.4": { - "type": "npm", - "name": "npm:expo-dev-menu@4.5.4", - "data": { - "version": "4.5.4", - "packageName": "expo-dev-menu", - "hash": "sha512-TLCfXKI7r5PJpMKUcslKz9J7tChdYdm6DmOEYwFQC3OLcegXzCT/H92WfTdVXU+xz5XYTcyvnIZQa7/d2Ig90g==" - } - }, - "npm:expo-dev-menu": { - "type": "npm", - "name": "npm:expo-dev-menu", - "data": { - "version": "4.5.5", - "packageName": "expo-dev-menu", - "hash": "sha512-PcbI/SqAvueOIEtR1O0s+WvVD7yizQSqXisDSkBrTym3u8XZSN+K730kz2Z64ukY9YIPG4qWR4sd+9rcjsbMWw==" - } - }, - "npm:expo-device": { - "type": "npm", - "name": "npm:expo-device", - "data": { - "version": "5.9.3", - "packageName": "expo-device", - "hash": "sha512-azH5rz8krDZUJb/arqkcA6oZGaX2T5s4aaXIMFsDDzvq8TW0CttZZy2HFp6itmFdiKGdRpFX3/Gj0n6ZmPoJ/w==" - } - }, - "npm:expo-eas-client": { - "type": "npm", - "name": "npm:expo-eas-client", - "data": { - "version": "0.11.2", - "packageName": "expo-eas-client", - "hash": "sha512-SY7rVFxb4ut/OMTgR7A39Jg+8+hXwQNRpZd+RBpB+B5XV2STj/pWXHnGFhBayEF4umI4SxrOvisY90rlPWVO9Q==" - } - }, - "npm:expo-file-system": { - "type": "npm", - "name": "npm:expo-file-system", - "data": { - "version": "16.0.5", - "packageName": "expo-file-system", - "hash": "sha512-JpKMbKfwTaMCbwUwq7MwcSbPR7r+IqZEL3RFam3ClPHDtKLnlEoywREeaDsWjSZb7dS25hG3WqXspfTuugCDvg==" - } - }, - "npm:expo-font": { - "type": "npm", - "name": "npm:expo-font", - "data": { - "version": "11.10.2", - "packageName": "expo-font", - "hash": "sha512-AE0Q0LiWiVosQ/jlKUPoWoob7p3GwYM2xmLoUkuopO9RYh9NL1hZKHiMKcWBZyDG8Gww1GtBQwh7ZREST8+jjQ==" - } - }, - "npm:expo-haptics": { - "type": "npm", - "name": "npm:expo-haptics", - "data": { - "version": "12.8.1", - "packageName": "expo-haptics", - "hash": "sha512-ntLsHkfle8K8w9MW8pZEw92ZN3sguaGUSSIxv30fPKNeQFu7Cq/h47Qv3tONv2MO3wU48N9FbKnant6XlfptpA==" - } - }, - "npm:expo-json-utils": { - "type": "npm", - "name": "npm:expo-json-utils", - "data": { - "version": "0.12.3", - "packageName": "expo-json-utils", - "hash": "sha512-4pypQdinpNc6XY9wsZk56njvzDh+B/9mISr7FPP3CVk1QGB1nSLh883/BCDSgnsephATZkC5HG+cdE60kCAR6A==" - } - }, - "npm:expo-keep-awake": { - "type": "npm", - "name": "npm:expo-keep-awake", - "data": { - "version": "12.8.2", - "packageName": "expo-keep-awake", - "hash": "sha512-uiQdGbSX24Pt8nGbnmBtrKq6xL/Tm3+DuDRGBk/3ZE/HlizzNosGRIufIMJ/4B4FRw4dw8KU81h2RLuTjbay6g==" - } - }, - "npm:expo-linear-gradient": { - "type": "npm", - "name": "npm:expo-linear-gradient", - "data": { - "version": "12.7.1", - "packageName": "expo-linear-gradient", - "hash": "sha512-2obkeC1hyOlljCpTbO3xS4WkEEYA9UtgDO486H+8wYYl1qf6C05d+LgWEVMD7B7CKI3xG/g5chPr9T0BLMSY4w==" - } - }, - "npm:expo-linking": { - "type": "npm", - "name": "npm:expo-linking", - "data": { - "version": "6.2.2", - "packageName": "expo-linking", - "hash": "sha512-FEe6lP4f7xFT/vjoHRG+tt6EPVtkEGaWNK1smpaUevmNdyCJKqW0PDB8o8sfG6y7fly8ULe8qg3HhKh5J7aqUQ==" - } - }, - "npm:expo-local-authentication": { - "type": "npm", - "name": "npm:expo-local-authentication", - "data": { - "version": "13.8.0", - "packageName": "expo-local-authentication", - "hash": "sha512-h0YA7grVdo3834AS70EUCsalaXrrEnoq+yTvIhRTxiPmzWxUv7rNo5ff+XsIEYNElKPmT/wh/xPV1yo3l3fhGg==" - } - }, - "npm:expo-localization": { - "type": "npm", - "name": "npm:expo-localization", - "data": { - "version": "14.8.3", - "packageName": "expo-localization", - "hash": "sha512-leg1e+7ocUgfNWa7Men/g16waXtdSpBMR9tCdv3CG4wztmFU8C+87VAnnVkvHi4CCUkTLzhP3y0FcE6KIWTwdw==" - } - }, - "npm:expo-manifests": { - "type": "npm", - "name": "npm:expo-manifests", - "data": { - "version": "0.13.2", - "packageName": "expo-manifests", - "hash": "sha512-l0Sia1WmLULx8V41K8RzGLsFoTe4qqthPRGpHjItsYn8ZB6lRrdTBM9OYp2McIflgqN1HAimUCQMFIwJyH+UmA==" - } - }, - "npm:expo-modules-autolinking": { - "type": "npm", - "name": "npm:expo-modules-autolinking", - "data": { - "version": "1.10.2", - "packageName": "expo-modules-autolinking", - "hash": "sha512-OEeoz0+zGx5EJwGtDm9pSywCr+gUCaisZV0mNkK7V3fuRl+EVPBSsI+957JwAc4ZxVps95jy28eLcRRtQ33yVg==" - } - }, - "npm:expo-modules-core": { - "type": "npm", - "name": "npm:expo-modules-core", - "data": { - "version": "1.11.8", - "packageName": "expo-modules-core", - "hash": "sha512-rlctE3nCNLCGv3LosGQNaTuwGrr2SyQA+hOgci/0l+VRc0gFNtvl0gskph9C0tnN1jzBeb8rRZQYVj5ih1yxcA==" - } - }, - "npm:expo-network": { - "type": "npm", - "name": "npm:expo-network", - "data": { - "version": "5.8.0", - "packageName": "expo-network", - "hash": "sha512-mTtyqRgLKvXWB+xCoY5WMtRrpVqYmcXWz3YbyN+X0HRGqXg7a+UYOXeKlxrkwBiadsElhmfMeaj1UpmW79Zw/w==" - } - }, - "npm:expo-notifications": { - "type": "npm", - "name": "npm:expo-notifications", - "data": { - "version": "0.27.5", - "packageName": "expo-notifications", - "hash": "sha512-Ym1vl6/w5X4qEmVmO78T2GapsVeRp2/G2d+0NEUJufh57l6S/KTOlhjtXPJakDmefPcftc2Co5vHsF03Wpd2Bw==" - } - }, - "npm:expo-pwa": { - "type": "npm", - "name": "npm:expo-pwa", - "data": { - "version": "0.0.127", - "packageName": "expo-pwa", - "hash": "sha512-8D9wEDkEXG9r6TPvAFpWt27IiP1cLm/4RWVRUHzFZflbWYLi8GkYArj5LHbbfokybRm1GVAanSrrYFEqHoIUiA==" - } - }, - "npm:expo-router": { - "type": "npm", - "name": "npm:expo-router", - "data": { - "version": "3.4.6", - "packageName": "expo-router", - "hash": "sha512-yxl0QE4KAqLmLyH8AxWsGSV3M34jsAE8X75cOB2oaK0+Pu9VHSUf6w3iRi93IiJ0rOUXm8jKrjhfhZOrrNh7EA==" - } - }, - "npm:expo-screen-orientation": { - "type": "npm", - "name": "npm:expo-screen-orientation", - "data": { - "version": "6.4.1", - "packageName": "expo-screen-orientation", - "hash": "sha512-VM0C9ORNL1aT6Dr2OUeryzV519n0FjtXI2m+HlijOMi1QT2bPg4tBkCd7HLgywU4dZ1Esa46ewUudmk+fOqmMQ==" - } - }, - "npm:expo-secure-store": { - "type": "npm", - "name": "npm:expo-secure-store", - "data": { - "version": "12.8.1", - "packageName": "expo-secure-store", - "hash": "sha512-Ju3jmkHby4w7rIzdYAt9kQyQ7HhHJ0qRaiQOInknhOLIltftHjEgF4I1UmzKc7P5RCfGNmVbEH729Pncp/sHXQ==" - } - }, - "npm:expo-splash-screen": { - "type": "npm", - "name": "npm:expo-splash-screen", - "data": { - "version": "0.26.4", - "packageName": "expo-splash-screen", - "hash": "sha512-2DwofTQ0FFQCsvDysm/msENsbyNsJiAJwK3qK/oXeizECAPqD7bK19J4z9kuEbr7ORPX9MLnTQYKl6kmX3keUg==" - } - }, - "npm:expo-splash-screen@0.17.5": { - "type": "npm", - "name": "npm:expo-splash-screen@0.17.5", - "data": { - "version": "0.17.5", - "packageName": "expo-splash-screen", - "hash": "sha512-ejSO78hwHXz8T9u8kh8t4r6CR4h70iBvA65gX8GK+dYxZl6/IANPbIb2VnUpND9vqfW+JnkDw+ZFst+gDnkpcQ==" - } - }, - "npm:expo-status-bar": { - "type": "npm", - "name": "npm:expo-status-bar", - "data": { - "version": "1.11.1", - "packageName": "expo-status-bar", - "hash": "sha512-ddQEtCOgYHTLlFUe/yH67dDBIoct5VIULthyT3LRJbEwdpzAgueKsX2FYK02ldh440V87PWKCamh7R9evk1rrg==" - } - }, - "npm:expo-structured-headers": { - "type": "npm", - "name": "npm:expo-structured-headers", - "data": { - "version": "3.7.2", - "packageName": "expo-structured-headers", - "hash": "sha512-/nGOyeWUXSUy4aIYKJTwQOznRNs0yKqKPAyEE6jtwvOl9qvfDWx9xskNtShioggBhFAssFkV6RBbPn+xZMQtvw==" - } - }, - "npm:expo-system-ui": { - "type": "npm", - "name": "npm:expo-system-ui", - "data": { - "version": "2.9.3", - "packageName": "expo-system-ui", - "hash": "sha512-RNFNBLJ9lhnjOGrHhtfDc15Ry/lF+SA4kwulmHzYGqaTeYvsL9q0K0+m9qmxuDdrbKJkuurvzvjVylDNnKNFVg==" - } - }, - "npm:expo-updates-interface": { - "type": "npm", - "name": "npm:expo-updates-interface", - "data": { - "version": "0.15.3", - "packageName": "expo-updates-interface", - "hash": "sha512-uLvsbaCmUsXgJqeen8rYH/jPr874ZUCXEvWpKHxrCv5/XATPlYEaDuecbNSGQ+cu78i6MdtB4BHOwZmoH2d47A==" - } - }, - "npm:expo-updates": { - "type": "npm", - "name": "npm:expo-updates", - "data": { - "version": "0.24.8", - "packageName": "expo-updates", - "hash": "sha512-jsnMAMG+Ib5At94LwuA94mQMmHSg4vmI5E0RpTjQ5kRxE10cX4QSzQyvmETnKrD6x+KsZPzEUFD7RIudEnx9JA==" - } - }, - "npm:expo-web-browser": { - "type": "npm", - "name": "npm:expo-web-browser", - "data": { - "version": "12.8.2", - "packageName": "expo-web-browser", - "hash": "sha512-Mw8WoFMSADecNjtC4PZVsVj1/lYdxIAH1jOVV+F8v8SEWYxORWofoShfXg7oUxRLu0iUG8JETfO5y4m8+fOgdg==" - } - }, - "npm:expo": { - "type": "npm", - "name": "npm:expo", - "data": { - "version": "50.0.3", - "packageName": "expo", - "hash": "sha512-3Yk42YShkugC90S24Dbo0mhrq/N3Kfn30FscrjCk3o8ldXh9OdE5RhVi/mc5Cqp28nw5a4DfiGSDFs0mA0t2ng==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.18.2", - "packageName": "express", - "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" - } - }, - "npm:fake-xml-http-request": { - "type": "npm", - "name": "npm:fake-xml-http-request", - "data": { - "version": "2.1.2", - "packageName": "fake-xml-http-request", - "hash": "sha512-HaFMBi7r+oEC9iJNpc3bvcW7Z7iLmM26hPDmlb0mFwyANSsOQAtJxbdWsXITKOzZUyMYK0zYCv3h5yDj9TsiXg==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-diff": { - "type": "npm", - "name": "npm:fast-diff", - "data": { - "version": "1.3.0", - "packageName": "fast-diff", - "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-loops": { - "type": "npm", - "name": "npm:fast-loops", - "data": { - "version": "1.1.3", - "packageName": "fast-loops", - "hash": "sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==" - } - }, - "npm:fast-xml-parser": { - "type": "npm", - "name": "npm:fast-xml-parser", - "data": { - "version": "4.3.3", - "packageName": "fast-xml-parser", - "hash": "sha512-coV/D1MhrShMvU6D0I+VAK3umz6hUaxxhL0yp/9RjfiYUfAv14rDhGQL+PLForhMdr0wq3PiV07WtkkNjJjNHg==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.16.0", - "packageName": "fastq", - "hash": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.4", - "packageName": "faye-websocket", - "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fbemitter": { - "type": "npm", - "name": "npm:fbemitter", - "data": { - "version": "3.0.0", - "packageName": "fbemitter", - "hash": "sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==" - } - }, - "npm:fbjs-css-vars": { - "type": "npm", - "name": "npm:fbjs-css-vars", - "data": { - "version": "1.0.2", - "packageName": "fbjs-css-vars", - "hash": "sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==" - } - }, - "npm:fbjs": { - "type": "npm", - "name": "npm:fbjs", - "data": { - "version": "3.0.5", - "packageName": "fbjs", - "hash": "sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==" - } - }, - "npm:fetch-retry": { - "type": "npm", - "name": "npm:fetch-retry", - "data": { - "version": "4.1.1", - "packageName": "fetch-retry", - "hash": "sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==" - } - }, - "npm:figures@1.7.0": { - "type": "npm", - "name": "npm:figures@1.7.0", - "data": { - "version": "1.7.0", - "packageName": "figures", - "hash": "sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==" - } - }, - "npm:figures@2.0.0": { - "type": "npm", - "name": "npm:figures@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "figures", - "hash": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:filter-obj": { - "type": "npm", - "name": "npm:filter-obj", - "data": { - "version": "1.1.0", - "packageName": "filter-obj", - "hash": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.2", - "packageName": "finalhandler", - "hash": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" - } - }, - "npm:finalhandler@1.2.0": { - "type": "npm", - "name": "npm:finalhandler@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "finalhandler", - "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - } - }, - "npm:find-babel-config": { - "type": "npm", - "name": "npm:find-babel-config", - "data": { - "version": "2.0.0", - "packageName": "find-babel-config", - "hash": "sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==" - } - }, - "npm:find-cache-dir@2.1.0": { - "type": "npm", - "name": "npm:find-cache-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "find-cache-dir", - "hash": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" - } - }, - "npm:find-cache-dir@3.3.2": { - "type": "npm", - "name": "npm:find-cache-dir@3.3.2", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "4.0.0", - "packageName": "find-cache-dir", - "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" - } - }, - "npm:find-up@3.0.0": { - "type": "npm", - "name": "npm:find-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "find-up", - "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - } - }, - "npm:find-up@4.1.0": { - "type": "npm", - "name": "npm:find-up@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:find-yarn-workspace-root": { - "type": "npm", - "name": "npm:find-yarn-workspace-root", - "data": { - "version": "2.0.0", - "packageName": "find-yarn-workspace-root", - "hash": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.2.9", - "packageName": "flatted", - "hash": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==" - } - }, - "npm:flow-enums-runtime": { - "type": "npm", - "name": "npm:flow-enums-runtime", - "data": { - "version": "0.0.6", - "packageName": "flow-enums-runtime", - "hash": "sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==" - } - }, - "npm:flow-parser@0.227.0": { - "type": "npm", - "name": "npm:flow-parser@0.227.0", - "data": { - "version": "0.227.0", - "packageName": "flow-parser", - "hash": "sha512-nOygtGKcX/siZK/lFzpfdHEfOkfGcTW7rNroR1Zsz6T/JxSahPALXVt5qVHq/fgvMJuv096BTKbgxN3PzVBaDA==" - } - }, - "npm:flow-parser": { - "type": "npm", - "name": "npm:flow-parser", - "data": { - "version": "0.206.0", - "packageName": "flow-parser", - "hash": "sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.5", - "packageName": "follow-redirects", - "hash": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==" - } - }, - "npm:fontfaceobserver": { - "type": "npm", - "name": "npm:fontfaceobserver", - "data": { - "version": "2.3.0", - "packageName": "fontfaceobserver", - "hash": "sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.3", - "packageName": "for-each", - "hash": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:form-data@3.0.1": { - "type": "npm", - "name": "npm:form-data@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "form-data", - "hash": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:framer-motion@3.10.6": { - "type": "npm", - "name": "npm:framer-motion@3.10.6", - "data": { - "version": "3.10.6", - "packageName": "framer-motion", - "hash": "sha512-OxOtKgQS4km9a8dm0IMBtNNp4f0DiHfQ/IzxKs818+Kg9V/Ve/pRUJ2dtWBb6+W4lIPNLgRSpbOwOACVj15XcQ==" - } - }, - "npm:framer-motion": { - "type": "npm", - "name": "npm:framer-motion", - "data": { - "version": "6.5.1", - "packageName": "framer-motion", - "hash": "sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==" - } - }, - "npm:framesync": { - "type": "npm", - "name": "npm:framesync", - "data": { - "version": "5.2.0", - "packageName": "framesync", - "hash": "sha512-dcl92w5SHc0o6pRK3//VBVNvu6WkYkiXmHG6ZIXrVzmgh0aDYMDAaoA3p3LH71JIdN5qmhDcfONFA4Lmq22tNA==" - } - }, - "npm:framesync@6.0.1": { - "type": "npm", - "name": "npm:framesync@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "framesync", - "hash": "sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==" - } - }, - "npm:freeport-async": { - "type": "npm", - "name": "npm:freeport-async", - "data": { - "version": "2.0.0", - "packageName": "freeport-async", - "hash": "sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - } - }, - "npm:fs-extra@9.0.0": { - "type": "npm", - "name": "npm:fs-extra@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "fs-extra", - "hash": "sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==" - } - }, - "npm:fs-extra@11.2.0": { - "type": "npm", - "name": "npm:fs-extra@11.2.0", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:fs-extra@8.1.0": { - "type": "npm", - "name": "npm:fs-extra@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.5", - "packageName": "fs-monkey", - "hash": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.6", - "packageName": "function.prototype.name", - "hash": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==" - } - }, - "npm:functions-have-names": { - "type": "npm", - "name": "npm:functions-have-names", - "data": { - "version": "1.2.3", - "packageName": "functions-have-names", - "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.2", - "packageName": "get-intrinsic", - "hash": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "3.2.0", - "packageName": "get-port", - "hash": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - } - }, - "npm:get-stream@4.1.0": { - "type": "npm", - "name": "npm:get-stream@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "get-stream", - "hash": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.0.0", - "packageName": "get-symbol-description", - "hash": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" - } - }, - "npm:getenv": { - "type": "npm", - "name": "npm:getenv", - "data": { - "version": "1.0.0", - "packageName": "getenv", - "hash": "sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-parent@6.0.2": { - "type": "npm", - "name": "npm:glob-parent@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:glob@7.1.6": { - "type": "npm", - "name": "npm:glob@7.1.6", - "data": { - "version": "7.1.6", - "packageName": "glob", - "hash": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" - } - }, - "npm:glob@10.3.10": { - "type": "npm", - "name": "npm:glob@10.3.10", - "data": { - "version": "10.3.10", - "packageName": "glob", - "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" - } - }, - "npm:glob@6.0.4": { - "type": "npm", - "name": "npm:glob@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "glob", - "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.3", - "packageName": "glob", - "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" - } - }, - "npm:glob@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:globals@11.12.0": { - "type": "npm", - "name": "npm:globals@11.12.0", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "13.24.0", - "packageName": "globals", - "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.3", - "packageName": "globalthis", - "hash": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:globby@12.2.0": { - "type": "npm", - "name": "npm:globby@12.2.0", - "data": { - "version": "12.2.0", - "packageName": "globby", - "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" - } - }, - "npm:globby@6.1.0": { - "type": "npm", - "name": "npm:globby@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "globby", - "hash": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:graphemer": { - "type": "npm", - "name": "npm:graphemer", - "data": { - "version": "1.4.0", - "packageName": "graphemer", - "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - } - }, - "npm:graphql-tag": { - "type": "npm", - "name": "npm:graphql-tag", - "data": { - "version": "2.12.6", - "packageName": "graphql-tag", - "hash": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==" - } - }, - "npm:graphql": { - "type": "npm", - "name": "npm:graphql", - "data": { - "version": "15.8.0", - "packageName": "graphql", - "hash": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.1", - "packageName": "handle-thing", - "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - } - }, - "npm:has-ansi": { - "type": "npm", - "name": "npm:has-ansi", - "data": { - "version": "2.0.0", - "packageName": "has-ansi", - "hash": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.0.2", - "packageName": "has-bigints", - "hash": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" - } - }, - "npm:has-flag@3.0.0": { - "type": "npm", - "name": "npm:has-flag@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.1", - "packageName": "has-property-descriptors", - "hash": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.1", - "packageName": "has-proto", - "hash": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.3", - "packageName": "has-symbols", - "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.0", - "packageName": "has-tostringtag", - "hash": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.0", - "packageName": "hasown", - "hash": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:hermes-estree@0.15.0": { - "type": "npm", - "name": "npm:hermes-estree@0.15.0", - "data": { - "version": "0.15.0", - "packageName": "hermes-estree", - "hash": "sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==" - } - }, - "npm:hermes-estree": { - "type": "npm", - "name": "npm:hermes-estree", - "data": { - "version": "0.18.2", - "packageName": "hermes-estree", - "hash": "sha512-KoLsoWXJ5o81nit1wSyEZnWUGy9cBna9iYMZBR7skKh7okYAYKqQ9/OczwpMHn/cH0hKDyblulGsJ7FknlfVxQ==" - } - }, - "npm:hermes-parser@0.15.0": { - "type": "npm", - "name": "npm:hermes-parser@0.15.0", - "data": { - "version": "0.15.0", - "packageName": "hermes-parser", - "hash": "sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==" - } - }, - "npm:hermes-parser": { - "type": "npm", - "name": "npm:hermes-parser", - "data": { - "version": "0.18.2", - "packageName": "hermes-parser", - "hash": "sha512-1eQfvib+VPpgBZ2zYKQhpuOjw1tH+Emuib6QmjkJWJMhyjM8xnXMvA+76o9LhF0zOAJDZgPfQhg43cyXEyl5Ew==" - } - }, - "npm:hermes-profile-transformer": { - "type": "npm", - "name": "npm:hermes-profile-transformer", - "data": { - "version": "0.0.6", - "packageName": "hermes-profile-transformer", - "hash": "sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==" - } - }, - "npm:hey-listen": { - "type": "npm", - "name": "npm:hey-listen", - "data": { - "version": "1.0.8", - "packageName": "hey-listen", - "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" - } - }, - "npm:hoist-non-react-statics": { - "type": "npm", - "name": "npm:hoist-non-react-statics", - "data": { - "version": "3.3.2", - "packageName": "hoist-non-react-statics", - "hash": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "3.0.8", - "packageName": "hosted-git-info", - "hash": "sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.4.0", - "packageName": "html-entities", - "hash": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.2", - "packageName": "html-escaper", - "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - } - }, - "npm:html-minifier-terser": { - "type": "npm", - "name": "npm:html-minifier-terser", - "data": { - "version": "6.1.0", - "packageName": "html-minifier-terser", - "hash": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==" - } - }, - "npm:html-parse-stringify": { - "type": "npm", - "name": "npm:html-parse-stringify", - "data": { - "version": "3.0.1", - "packageName": "html-parse-stringify", - "hash": "sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==" - } - }, - "npm:html-webpack-plugin": { - "type": "npm", - "name": "npm:html-webpack-plugin", - "data": { - "version": "5.6.0", - "packageName": "html-webpack-plugin", - "hash": "sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "6.1.0", - "packageName": "htmlparser2", - "hash": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.0", - "packageName": "http-errors", - "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.8", - "packageName": "http-parser-js", - "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:human-signals@4.3.1": { - "type": "npm", - "name": "npm:human-signals@4.3.1", - "data": { - "version": "4.3.1", - "packageName": "human-signals", - "hash": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==" - } - }, - "npm:husky": { - "type": "npm", - "name": "npm:husky", - "data": { - "version": "8.0.3", - "packageName": "husky", - "hash": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==" - } - }, - "npm:hyphenate-style-name": { - "type": "npm", - "name": "npm:hyphenate-style-name", - "data": { - "version": "1.0.4", - "packageName": "hyphenate-style-name", - "hash": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - } - }, - "npm:i18next": { - "type": "npm", - "name": "npm:i18next", - "data": { - "version": "23.7.20", - "packageName": "i18next", - "hash": "sha512-6qykxPpFPuzxC/VlVCXn3JxkHY5VCxf1w+/8Hz+Wxu4ZvfB+m3sbVruJ3C/rDWlE0Z1GCZTR6sBHIx7KGp0yXA==" - } - }, - "npm:iconv-lite@0.4.24": { - "type": "npm", - "name": "npm:iconv-lite@0.4.24", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.0", - "packageName": "ignore", - "hash": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==" - } - }, - "npm:image-size": { - "type": "npm", - "name": "npm:image-size", - "data": { - "version": "1.1.1", - "packageName": "image-size", - "hash": "sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "4.3.5", - "packageName": "immutable", - "hash": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==" - } - }, - "npm:import-fresh@2.0.0": { - "type": "npm", - "name": "npm:import-fresh@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "import-fresh", - "hash": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:infer-owner": { - "type": "npm", - "name": "npm:infer-owner", - "data": { - "version": "1.0.4", - "packageName": "infer-owner", - "hash": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" - } - }, - "npm:inflected": { - "type": "npm", - "name": "npm:inflected", - "data": { - "version": "2.1.0", - "packageName": "inflected", - "hash": "sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:inline-style-prefixer": { - "type": "npm", - "name": "npm:inline-style-prefixer", - "data": { - "version": "6.0.4", - "packageName": "inline-style-prefixer", - "hash": "sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==" - } - }, - "npm:internal-ip": { - "type": "npm", - "name": "npm:internal-ip", - "data": { - "version": "4.3.0", - "packageName": "internal-ip", - "hash": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.0.6", - "packageName": "internal-slot", - "hash": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==" - } - }, - "npm:invariant": { - "type": "npm", - "name": "npm:invariant", - "data": { - "version": "2.2.4", - "packageName": "invariant", - "hash": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==" - } - }, - "npm:ip-regex": { - "type": "npm", - "name": "npm:ip-regex", - "data": { - "version": "2.1.0", - "packageName": "ip-regex", - "hash": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==" - } - }, - "npm:ip": { - "type": "npm", - "name": "npm:ip", - "data": { - "version": "1.1.8", - "packageName": "ip", - "hash": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:ipaddr.js@2.1.0": { - "type": "npm", - "name": "npm:ipaddr.js@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "ipaddr.js", - "hash": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==" - } - }, - "npm:is-arguments": { - "type": "npm", - "name": "npm:is-arguments", - "data": { - "version": "1.1.1", - "packageName": "is-arguments", - "hash": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.2", - "packageName": "is-array-buffer", - "hash": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-arrayish@0.3.2": { - "type": "npm", - "name": "npm:is-arrayish@0.3.2", - "data": { - "version": "0.3.2", - "packageName": "is-arrayish", - "hash": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - }, - "npm:is-async-function": { - "type": "npm", - "name": "npm:is-async-function", - "data": { - "version": "2.0.0", - "packageName": "is-async-function", - "hash": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.0.4", - "packageName": "is-bigint", - "hash": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.1.2", - "packageName": "is-boolean-object", - "hash": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" - } - }, - "npm:is-buffer": { - "type": "npm", - "name": "npm:is-buffer", - "data": { - "version": "1.1.6", - "packageName": "is-buffer", - "hash": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.7", - "packageName": "is-callable", - "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.13.1", - "packageName": "is-core-module", - "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.0.5", - "packageName": "is-date-object", - "hash": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" - } - }, - "npm:is-directory": { - "type": "npm", - "name": "npm:is-directory", - "data": { - "version": "0.3.1", - "packageName": "is-directory", - "hash": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-extglob@1.0.0": { - "type": "npm", - "name": "npm:is-extglob@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "is-extglob", - "hash": "sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-finalizationregistry": { - "type": "npm", - "name": "npm:is-finalizationregistry", - "data": { - "version": "1.0.2", - "packageName": "is-finalizationregistry", - "hash": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==" - } - }, - "npm:is-fullwidth-code-point@2.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:is-fullwidth-code-point@4.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.0.10", - "packageName": "is-generator-function", - "hash": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==" - } - }, - "npm:is-glob@2.0.1": { - "type": "npm", - "name": "npm:is-glob@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "is-glob", - "hash": "sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-invalid-path": { - "type": "npm", - "name": "npm:is-invalid-path", - "data": { - "version": "0.1.0", - "packageName": "is-invalid-path", - "hash": "sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==" - } - }, - "npm:is-map": { - "type": "npm", - "name": "npm:is-map", - "data": { - "version": "2.0.2", - "packageName": "is-map", - "hash": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==" - } - }, - "npm:is-nan": { - "type": "npm", - "name": "npm:is-nan", - "data": { - "version": "1.3.2", - "packageName": "is-nan", - "hash": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.2", - "packageName": "is-negative-zero", - "hash": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.0.7", - "packageName": "is-number-object", - "hash": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-path-cwd": { - "type": "npm", - "name": "npm:is-path-cwd", - "data": { - "version": "2.2.0", - "packageName": "is-path-cwd", - "hash": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - } - }, - "npm:is-path-in-cwd": { - "type": "npm", - "name": "npm:is-path-in-cwd", - "data": { - "version": "2.1.0", - "packageName": "is-path-in-cwd", - "hash": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" - } - }, - "npm:is-path-inside@2.1.0": { - "type": "npm", - "name": "npm:is-path-inside@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "is-path-inside", - "hash": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.3", - "packageName": "is-path-inside", - "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - } - }, - "npm:is-plain-obj@1.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "2.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==" - } - }, - "npm:is-plain-obj@3.0.0": { - "type": "npm", - "name": "npm:is-plain-obj@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.1.4", - "packageName": "is-regex", - "hash": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" - } - }, - "npm:is-set": { - "type": "npm", - "name": "npm:is-set", - "data": { - "version": "2.0.2", - "packageName": "is-set", - "hash": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.2", - "packageName": "is-shared-array-buffer", - "hash": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" - } - }, - "npm:is-stream@1.1.0": { - "type": "npm", - "name": "npm:is-stream@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "2.0.1", - "packageName": "is-stream", - "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - } - }, - "npm:is-stream@3.0.0": { - "type": "npm", - "name": "npm:is-stream@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-stream", - "hash": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.0.7", - "packageName": "is-string", - "hash": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.0.4", - "packageName": "is-symbol", - "hash": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.12", - "packageName": "is-typed-array", - "hash": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-valid-path": { - "type": "npm", - "name": "npm:is-valid-path", - "data": { - "version": "0.1.1", - "packageName": "is-valid-path", - "hash": "sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==" - } - }, - "npm:is-weakmap": { - "type": "npm", - "name": "npm:is-weakmap", - "data": { - "version": "2.0.1", - "packageName": "is-weakmap", - "hash": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.0.2", - "packageName": "is-weakref", - "hash": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" - } - }, - "npm:is-weakset": { - "type": "npm", - "name": "npm:is-weakset", - "data": { - "version": "2.0.2", - "packageName": "is-weakset", - "hash": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:isarray@1.0.0": { - "type": "npm", - "name": "npm:isarray@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.2", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" - } - }, - "npm:istanbul-lib-instrument@5.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "6.0.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.1", - "packageName": "istanbul-lib-report", - "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.6", - "packageName": "istanbul-reports", - "hash": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==" - } - }, - "npm:iterator.prototype": { - "type": "npm", - "name": "npm:iterator.prototype", - "data": { - "version": "1.1.2", - "packageName": "iterator.prototype", - "hash": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.3.6", - "packageName": "jackspeak", - "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-expo": { - "type": "npm", - "name": "npm:jest-expo", - "data": { - "version": "50.0.1", - "packageName": "jest-expo", - "hash": "sha512-osvA63UDLJ/v7MG9UHjU7WJ0oZ0Krq9UhXxm2s6rdOlnt85ARocyMU57RC0T0yzPN47C9Ref45sEeOIxoV4Mzg==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.3", - "packageName": "jest-pnp-resolver", - "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:jest-watch-select-projects": { - "type": "npm", - "name": "npm:jest-watch-select-projects", - "data": { - "version": "2.0.0", - "packageName": "jest-watch-select-projects", - "hash": "sha512-j00nW4dXc2NiCW6znXgFLF9g8PJ0zP25cpQ1xRro/HU2GBfZQFZD0SoXnAlaoKkIY4MlfTMkKGbNXFpvCdjl1w==" - } - }, - "npm:jest-watch-typeahead": { - "type": "npm", - "name": "npm:jest-watch-typeahead", - "data": { - "version": "2.2.1", - "packageName": "jest-watch-typeahead", - "hash": "sha512-jYpYmUnTzysmVnwq49TAxlmtOAwp8QIqvZyoofQFn8fiWhEDZj33ZXzg3JA4nGnzWFm1hbWf3ADpteUokvXgFA==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:jimp-compact": { - "type": "npm", - "name": "npm:jimp-compact", - "data": { - "version": "0.16.1", - "packageName": "jimp-compact", - "hash": "sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==" - } - }, - "npm:joi": { - "type": "npm", - "name": "npm:joi", - "data": { - "version": "17.12.0", - "packageName": "joi", - "hash": "sha512-HSLsmSmXz+PV9PYoi3p7cgIbj06WnEBNT28n+bbBNcPZXZFqCzzvGqpTBPujx/Z0nh1+KNQPDrNgdmQ8dq0qYw==" - } - }, - "npm:join-component": { - "type": "npm", - "name": "npm:join-component", - "data": { - "version": "1.1.0", - "packageName": "join-component", - "hash": "sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==" - } - }, - "npm:jotai": { - "type": "npm", - "name": "npm:jotai", - "data": { - "version": "2.4.3", - "packageName": "jotai", - "hash": "sha512-CSAHX9LqWG5WCrU8OgBoZbBJ+Bo9rQU0mPusEF4e0CZ/SNFgurG26vb3UpgvCSJZgYVcUQNiUBM5q86PA8rstQ==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "3.14.1", - "packageName": "js-yaml", - "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - } - }, - "npm:js-yaml@4.1.0": { - "type": "npm", - "name": "npm:js-yaml@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:jsc-android": { - "type": "npm", - "name": "npm:jsc-android", - "data": { - "version": "250231.0.0", - "packageName": "jsc-android", - "hash": "sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==" - } - }, - "npm:jsc-safe-url": { - "type": "npm", - "name": "npm:jsc-safe-url", - "data": { - "version": "0.2.4", - "packageName": "jsc-safe-url", - "hash": "sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==" - } - }, - "npm:jscodeshift": { - "type": "npm", - "name": "npm:jscodeshift", - "data": { - "version": "0.14.0", - "packageName": "jscodeshift", - "hash": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-parse-better-errors": { - "type": "npm", - "name": "npm:json-parse-better-errors", - "data": { - "version": "1.0.2", - "packageName": "json-parse-better-errors", - "hash": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-schema-deref-sync": { - "type": "npm", - "name": "npm:json-schema-deref-sync", - "data": { - "version": "0.13.0", - "packageName": "json-schema-deref-sync", - "hash": "sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json5@1.0.2": { - "type": "npm", - "name": "npm:json5@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "json5", - "hash": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonfile@4.0.0": { - "type": "npm", - "name": "npm:jsonfile@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsx-ast-utils": { - "type": "npm", - "name": "npm:jsx-ast-utils", - "data": { - "version": "3.3.5", - "packageName": "jsx-ast-utils", - "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:klaw-sync": { - "type": "npm", - "name": "npm:klaw-sync", - "data": { - "version": "6.0.0", - "packageName": "klaw-sync", - "hash": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:launch-editor": { - "type": "npm", - "name": "npm:launch-editor", - "data": { - "version": "2.6.1", - "packageName": "launch-editor", - "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:lighthouse-logger": { - "type": "npm", - "name": "npm:lighthouse-logger", - "data": { - "version": "1.4.2", - "packageName": "lighthouse-logger", - "hash": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==" - } - }, - "npm:lightningcss-darwin-arm64": { - "type": "npm", - "name": "npm:lightningcss-darwin-arm64", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-darwin-arm64", - "hash": "sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==" - } - }, - "npm:lightningcss-darwin-x64@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-darwin-x64@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-darwin-x64", - "hash": "sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==" - } - }, - "npm:lightningcss-linux-arm-gnueabihf@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-arm-gnueabihf", - "hash": "sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==" - } - }, - "npm:lightningcss-linux-arm64-gnu@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-gnu@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-arm64-gnu", - "hash": "sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==" - } - }, - "npm:lightningcss-linux-arm64-musl@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-musl@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-arm64-musl", - "hash": "sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==" - } - }, - "npm:lightningcss-linux-x64-gnu@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-gnu@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-x64-gnu", - "hash": "sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==" - } - }, - "npm:lightningcss-linux-x64-musl@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-musl@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-linux-x64-musl", - "hash": "sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==" - } - }, - "npm:lightningcss-win32-x64-msvc@1.19.0": { - "type": "npm", - "name": "npm:lightningcss-win32-x64-msvc@1.19.0", - "data": { - "version": "1.19.0", - "packageName": "lightningcss-win32-x64-msvc", - "hash": "sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==" - } - }, - "npm:lightningcss": { - "type": "npm", - "name": "npm:lightningcss", - "data": { - "version": "1.19.0", - "packageName": "lightningcss", - "hash": "sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "2.1.0", - "packageName": "lilconfig", - "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lint-staged": { - "type": "npm", - "name": "npm:lint-staged", - "data": { - "version": "13.3.0", - "packageName": "lint-staged", - "hash": "sha512-mPRtrYnipYYv1FEE134ufbWpeggNTo+O/UPzngoaKzbzHAthvR55am+8GfHTnqNRQVRRrYQLGW9ZyUoD7DsBHQ==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "6.6.1", - "packageName": "listr2", - "hash": "sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:locate-path@3.0.0": { - "type": "npm", - "name": "npm:locate-path@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "locate-path", - "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" - } - }, - "npm:locate-path@5.0.0": { - "type": "npm", - "name": "npm:locate-path@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:locate-path@7.2.0": { - "type": "npm", - "name": "npm:locate-path@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "locate-path", - "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.throttle": { - "type": "npm", - "name": "npm:lodash.throttle", - "data": { - "version": "4.1.1", - "packageName": "lodash.throttle", - "hash": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:log-symbols@2.2.0": { - "type": "npm", - "name": "npm:log-symbols@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "log-symbols", - "hash": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "5.0.1", - "packageName": "log-update", - "hash": "sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==" - } - }, - "npm:logkitty": { - "type": "npm", - "name": "npm:logkitty", - "data": { - "version": "0.7.1", - "packageName": "logkitty", - "hash": "sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==" - } - }, - "npm:loose-envify": { - "type": "npm", - "name": "npm:loose-envify", - "data": { - "version": "1.4.0", - "packageName": "loose-envify", - "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - } - }, - "npm:lower-case": { - "type": "npm", - "name": "npm:lower-case", - "data": { - "version": "2.0.2", - "packageName": "lower-case", - "hash": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" - } - }, - "npm:lru-cache@5.1.1": { - "type": "npm", - "name": "npm:lru-cache@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:lru-cache@10.2.0": { - "type": "npm", - "name": "npm:lru-cache@10.2.0", - "data": { - "version": "10.2.0", - "packageName": "lru-cache", - "hash": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-dir@3.1.0": { - "type": "npm", - "name": "npm:make-dir@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:make-dir@4.0.0": { - "type": "npm", - "name": "npm:make-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:marky": { - "type": "npm", - "name": "npm:marky", - "data": { - "version": "1.2.5", - "packageName": "marky", - "hash": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==" - } - }, - "npm:md5-file": { - "type": "npm", - "name": "npm:md5-file", - "data": { - "version": "3.2.3", - "packageName": "md5-file", - "hash": "sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==" - } - }, - "npm:md5": { - "type": "npm", - "name": "npm:md5", - "data": { - "version": "2.3.0", - "packageName": "md5", - "hash": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==" - } - }, - "npm:md5@2.2.1": { - "type": "npm", - "name": "npm:md5@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "md5", - "hash": "sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==" - } - }, - "npm:md5hex": { - "type": "npm", - "name": "npm:md5hex", - "data": { - "version": "1.0.0", - "packageName": "md5hex", - "hash": "sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.14", - "packageName": "mdn-data", - "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.6.0", - "packageName": "memfs", - "hash": "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==" - } - }, - "npm:memoize-one": { - "type": "npm", - "name": "npm:memoize-one", - "data": { - "version": "5.2.1", - "packageName": "memoize-one", - "hash": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" - } - }, - "npm:memoize-one@6.0.0": { - "type": "npm", - "name": "npm:memoize-one@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "memoize-one", - "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - } - }, - "npm:memory-cache": { - "type": "npm", - "name": "npm:memory-cache", - "data": { - "version": "0.2.0", - "packageName": "memory-cache", - "hash": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - } - }, - "npm:merge-options": { - "type": "npm", - "name": "npm:merge-options", - "data": { - "version": "3.0.4", - "packageName": "merge-options", - "hash": "sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - } - }, - "npm:metro-babel-transformer": { - "type": "npm", - "name": "npm:metro-babel-transformer", - "data": { - "version": "0.80.5", - "packageName": "metro-babel-transformer", - "hash": "sha512-sxH6hcWCorhTbk4kaShCWsadzu99WBL4Nvq4m/sDTbp32//iGuxtAnUK+ZV+6IEygr2u9Z0/4XoZ8Sbcl71MpA==" - } - }, - "npm:metro-cache-key": { - "type": "npm", - "name": "npm:metro-cache-key", - "data": { - "version": "0.80.5", - "packageName": "metro-cache-key", - "hash": "sha512-fr3QLZUarsB3tRbVcmr34kCBsTHk0Sh9JXGvBY/w3b2lbre+Lq5gtgLyFElHPecGF7o4z1eK9r3ubxtScHWcbA==" - } - }, - "npm:metro-cache": { - "type": "npm", - "name": "npm:metro-cache", - "data": { - "version": "0.80.5", - "packageName": "metro-cache", - "hash": "sha512-2u+dQ4PZwmC7eZo9uMBNhQQMig9f+w4QWBZwXCdVy/RYOHM0eObgGdMEOwODo73uxie82T9lWzxr3aZOZ+Nqtw==" - } - }, - "npm:metro-config": { - "type": "npm", - "name": "npm:metro-config", - "data": { - "version": "0.80.5", - "packageName": "metro-config", - "hash": "sha512-elqo/lwvF+VjZ1OPyvmW/9hSiGlmcqu+rQvDKw5F5WMX48ZC+ySTD1WcaD7e97pkgAlJHVYqZ98FCjRAYOAFRQ==" - } - }, - "npm:metro-core": { - "type": "npm", - "name": "npm:metro-core", - "data": { - "version": "0.80.5", - "packageName": "metro-core", - "hash": "sha512-vkLuaBhnZxTVpaZO8ZJVEHzjaqSXpOdpAiztSZ+NDaYM6jEFgle3/XIbLW91jTSf2+T8Pj5yB1G7KuOX+BcVwg==" - } - }, - "npm:metro-file-map": { - "type": "npm", - "name": "npm:metro-file-map", - "data": { - "version": "0.80.5", - "packageName": "metro-file-map", - "hash": "sha512-bKCvJ05drjq6QhQxnDUt3I8x7bTcHo3IIKVobEr14BK++nmxFGn/BmFLRzVBlghM6an3gqwpNEYxS5qNc+VKcg==" - } - }, - "npm:metro-minify-terser": { - "type": "npm", - "name": "npm:metro-minify-terser", - "data": { - "version": "0.80.5", - "packageName": "metro-minify-terser", - "hash": "sha512-S7oZLLcab6YXUT6jYFX/ZDMN7Fq6xBGGAG8liMFU1UljX6cTcEC2u+UIafYgCLrdVexp/+ClxrIetVPZ5LtL/g==" - } - }, - "npm:metro-resolver@0.80.5": { - "type": "npm", - "name": "npm:metro-resolver@0.80.5", - "data": { - "version": "0.80.5", - "packageName": "metro-resolver", - "hash": "sha512-haJ/Hveio3zv/Fr4eXVdKzjUeHHDogYok7OpRqPSXGhTXisNXB+sLN7CpcUrCddFRUDLnVaqQOYwhYsFndgUwA==" - } - }, - "npm:metro-runtime": { - "type": "npm", - "name": "npm:metro-runtime", - "data": { - "version": "0.80.5", - "packageName": "metro-runtime", - "hash": "sha512-L0syTWJUdWzfUmKgkScr6fSBVTh6QDr8eKEkRtn40OBd8LPagrJGySBboWSgbyn9eIb4ayW3Y347HxgXBSAjmg==" - } - }, - "npm:metro-source-map": { - "type": "npm", - "name": "npm:metro-source-map", - "data": { - "version": "0.80.5", - "packageName": "metro-source-map", - "hash": "sha512-DwSF4l03mKPNqCtyQ6K23I43qzU1BViAXnuH81eYWdHglP+sDlPpY+/7rUahXEo6qXEHXfAJgVoo1sirbXbmsQ==" - } - }, - "npm:metro-symbolicate": { - "type": "npm", - "name": "npm:metro-symbolicate", - "data": { - "version": "0.80.5", - "packageName": "metro-symbolicate", - "hash": "sha512-IsM4mTYvmo9JvIqwEkCZ5+YeDVPST78Q17ZgljfLdHLSpIivOHp9oVoiwQ/YGbLx0xRHRIS/tKiXueWBnj3UWA==" - } - }, - "npm:metro-transform-plugins": { - "type": "npm", - "name": "npm:metro-transform-plugins", - "data": { - "version": "0.80.5", - "packageName": "metro-transform-plugins", - "hash": "sha512-7IdlTqK/k5+qE3RvIU5QdCJUPk4tHWEqgVuYZu8exeW+s6qOJ66hGIJjXY/P7ccucqF+D4nsbAAW5unkoUdS6g==" - } - }, - "npm:metro-transform-worker": { - "type": "npm", - "name": "npm:metro-transform-worker", - "data": { - "version": "0.80.5", - "packageName": "metro-transform-worker", - "hash": "sha512-Q1oM7hfP+RBgAtzRFBDjPhArELUJF8iRCZ8OidqCpYzQJVGuJZ7InSnIf3hn1JyqiUQwv2f1LXBO78i2rAjzyA==" - } - }, - "npm:metro": { - "type": "npm", - "name": "npm:metro", - "data": { - "version": "0.80.5", - "packageName": "metro", - "hash": "sha512-OE/CGbOgbi8BlTN1QqJgKOBaC27dS0JBQw473JcivrpgVnqIsluROA7AavEaTVUrB9wPUZvoNVDROn5uiM2jfw==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.5", - "packageName": "micromatch", - "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@2.6.0": { - "type": "npm", - "name": "npm:mime@2.6.0", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:mimic-fn@1.2.0": { - "type": "npm", - "name": "npm:mimic-fn@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "mimic-fn", - "hash": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:mimic-fn@4.0.0": { - "type": "npm", - "name": "npm:mimic-fn@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "mimic-fn", - "hash": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==" - } - }, - "npm:min-indent": { - "type": "npm", - "name": "npm:min-indent", - "data": { - "version": "1.0.1", - "packageName": "min-indent", - "hash": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.7.7", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-+0n11YGyRavUR3IlaOzJ0/4Il1avMvJ1VJfhWfCn24ITQXhRr1gghbhhrda6tgtNcpZaWKdSuwKq20Jb7fnlyw==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "npm:minimatch@9.0.3": { - "type": "npm", - "name": "npm:minimatch@9.0.3", - "data": { - "version": "9.0.3", - "packageName": "minimatch", - "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" - } - }, - "npm:minimatch@5.1.6": { - "type": "npm", - "name": "npm:minimatch@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "minimatch", - "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "1.0.2", - "packageName": "minipass-collect", - "hash": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:minipass@7.0.4": { - "type": "npm", - "name": "npm:minipass@7.0.4", - "data": { - "version": "7.0.4", - "packageName": "minipass", - "hash": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:miragejs": { - "type": "npm", - "name": "npm:miragejs", - "data": { - "version": "0.1.48", - "packageName": "miragejs", - "hash": "sha512-MGZAq0Q3OuRYgZKvlB69z4gLN4G3PvgC4A2zhkCXCXrLD5wm2cCnwNB59xOBVA+srZ0zEes6u+VylcPIkB4SqA==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "3.0.1", - "packageName": "mitt", - "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:moti": { - "type": "npm", - "name": "npm:moti", - "data": { - "version": "0.25.4", - "packageName": "moti", - "hash": "sha512-UiH0WcWzUYlUmo8Y1F+iyVW+qVVZ3YkXO3Q/gQUZzOhje6+Q0MdllYfqKW2m5IhFs+Vxt2i+osjvWBxXKK2yOw==" - } - }, - "npm:mri": { - "type": "npm", - "name": "npm:mri", - "data": { - "version": "1.2.0", - "packageName": "mri", - "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "1.0.1", - "packageName": "mrmime", - "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - }, - "npm:ms@2.1.2": { - "type": "npm", - "name": "npm:ms@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "7.2.5", - "packageName": "multicast-dns", - "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" - } - }, - "npm:mv": { - "type": "npm", - "name": "npm:mv", - "data": { - "version": "2.1.1", - "packageName": "mv", - "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" - } - }, - "npm:mz": { - "type": "npm", - "name": "npm:mz", - "data": { - "version": "2.7.0", - "packageName": "mz", - "hash": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.7", - "packageName": "nanoid", - "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" - } - }, - "npm:natural-compare-lite": { - "type": "npm", - "name": "npm:natural-compare-lite", - "data": { - "version": "1.4.0", - "packageName": "natural-compare-lite", - "hash": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:ncp": { - "type": "npm", - "name": "npm:ncp", - "data": { - "version": "2.0.0", - "packageName": "ncp", - "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:nested-error-stacks": { - "type": "npm", - "name": "npm:nested-error-stacks", - "data": { - "version": "2.0.1", - "packageName": "nested-error-stacks", - "hash": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==" - } - }, - "npm:nice-try": { - "type": "npm", - "name": "npm:nice-try", - "data": { - "version": "1.0.5", - "packageName": "nice-try", - "hash": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - } - }, - "npm:no-case": { - "type": "npm", - "name": "npm:no-case", - "data": { - "version": "3.0.4", - "packageName": "no-case", - "hash": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" - } - }, - "npm:nocache": { - "type": "npm", - "name": "npm:nocache", - "data": { - "version": "3.0.4", - "packageName": "nocache", - "hash": "sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==" - } - }, - "npm:node-abort-controller": { - "type": "npm", - "name": "npm:node-abort-controller", - "data": { - "version": "3.1.1", - "packageName": "node-abort-controller", - "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - } - }, - "npm:node-dir": { - "type": "npm", - "name": "npm:node-dir", - "data": { - "version": "0.1.17", - "packageName": "node-dir", - "hash": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.7.0", - "packageName": "node-fetch", - "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:node-html-parser": { - "type": "npm", - "name": "npm:node-html-parser", - "data": { - "version": "5.4.2", - "packageName": "node-html-parser", - "hash": "sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.14", - "packageName": "node-releases", - "hash": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" - } - }, - "npm:node-stream-zip": { - "type": "npm", - "name": "npm:node-stream-zip", - "data": { - "version": "1.15.0", - "packageName": "node-stream-zip", - "hash": "sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "2.0.1", - "packageName": "normalize-url", - "hash": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==" - } - }, - "npm:normalize-url@6.1.0": { - "type": "npm", - "name": "npm:normalize-url@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "7.0.0", - "packageName": "npm-package-arg", - "hash": "sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:npm-run-path@5.2.0": { - "type": "npm", - "name": "npm:npm-run-path@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "npm-run-path", - "hash": "sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:nullthrows": { - "type": "npm", - "name": "npm:nullthrows", - "data": { - "version": "1.1.1", - "packageName": "nullthrows", - "hash": "sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.7", - "packageName": "nwsapi", - "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" - } - }, - "npm:ob1": { - "type": "npm", - "name": "npm:ob1", - "data": { - "version": "0.80.5", - "packageName": "ob1", - "hash": "sha512-zYDMnnNrFi/1Tqh0vo3PE4p97Tpl9/4MP2k2ECvkbLOZzQuAYZJLTUYVLZb7hJhbhjT+JJxAwBGS8iu5hCSd1w==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.1", - "packageName": "object-inspect", - "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" - } - }, - "npm:object-is": { - "type": "npm", - "name": "npm:object-is", - "data": { - "version": "1.1.5", - "packageName": "object-is", - "hash": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.5", - "packageName": "object.assign", - "hash": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==" - } - }, - "npm:object.entries": { - "type": "npm", - "name": "npm:object.entries", - "data": { - "version": "1.1.7", - "packageName": "object.entries", - "hash": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==" - } - }, - "npm:object.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.7", - "packageName": "object.fromentries", - "hash": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==" - } - }, - "npm:object.groupby": { - "type": "npm", - "name": "npm:object.groupby", - "data": { - "version": "1.0.1", - "packageName": "object.groupby", - "hash": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==" - } - }, - "npm:object.hasown": { - "type": "npm", - "name": "npm:object.hasown", - "data": { - "version": "1.1.3", - "packageName": "object.hasown", - "hash": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.1.7", - "packageName": "object.values", - "hash": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:on-finished@2.3.0": { - "type": "npm", - "name": "npm:on-finished@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:onetime@2.0.1": { - "type": "npm", - "name": "npm:onetime@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "onetime", - "hash": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:onetime@6.0.0": { - "type": "npm", - "name": "npm:onetime@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "onetime", - "hash": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==" - } - }, - "npm:open@6.4.0": { - "type": "npm", - "name": "npm:open@6.4.0", - "data": { - "version": "6.4.0", - "packageName": "open", - "hash": "sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==" - } - }, - "npm:open@7.4.2": { - "type": "npm", - "name": "npm:open@7.4.2", - "data": { - "version": "7.4.2", - "packageName": "open", - "hash": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.3", - "packageName": "optionator", - "hash": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "3.4.0", - "packageName": "ora", - "hash": "sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==" - } - }, - "npm:ora@5.4.1": { - "type": "npm", - "name": "npm:ora@5.4.1", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:os-homedir": { - "type": "npm", - "name": "npm:os-homedir", - "data": { - "version": "1.0.2", - "packageName": "os-homedir", - "hash": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:osenv": { - "type": "npm", - "name": "npm:osenv", - "data": { - "version": "0.1.5", - "packageName": "osenv", - "hash": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:p-locate@3.0.0": { - "type": "npm", - "name": "npm:p-locate@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-locate", - "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - } - }, - "npm:p-locate@4.1.0": { - "type": "npm", - "name": "npm:p-locate@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:p-map@2.1.0": { - "type": "npm", - "name": "npm:p-map@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "p-map", - "hash": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:param-case": { - "type": "npm", - "name": "npm:param-case", - "data": { - "version": "3.0.4", - "packageName": "param-case", - "hash": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-json@4.0.0": { - "type": "npm", - "name": "npm:parse-json@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "parse-json", - "hash": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:parse-png": { - "type": "npm", - "name": "npm:parse-png", - "data": { - "version": "2.1.0", - "packageName": "parse-png", - "hash": "sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:pascal-case": { - "type": "npm", - "name": "npm:pascal-case", - "data": { - "version": "3.1.2", - "packageName": "pascal-case", - "hash": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" - } - }, - "npm:pass-stream": { - "type": "npm", - "name": "npm:pass-stream", - "data": { - "version": "0.1.5", - "packageName": "pass-stream", - "hash": "sha512-pGa0s6MkFFPNs9tN3tYbZTaelRX8YIvsb/qmaJ3zjoMd5IJwOvy+sMvdieUDV03MF0O+dklnwG3hJBb2RYbxFA==" - } - }, - "npm:password-prompt": { - "type": "npm", - "name": "npm:password-prompt", - "data": { - "version": "1.1.3", - "packageName": "password-prompt", - "hash": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==" - } - }, - "npm:patch-package": { - "type": "npm", - "name": "npm:patch-package", - "data": { - "version": "7.0.2", - "packageName": "patch-package", - "hash": "sha512-PMYfL8LXxGIRmxXLqlEaBxzKPu7/SdP13ld6GSfAUJUZRmBDPp8chZs0dpzaAFn9TSPnFiMwkC6PJt6pBiAl8Q==" - } - }, - "npm:path-exists@3.0.0": { - "type": "npm", - "name": "npm:path-exists@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - } - }, - "npm:path-is-inside": { - "type": "npm", - "name": "npm:path-is-inside", - "data": { - "version": "1.0.2", - "packageName": "path-is-inside", - "hash": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key@3.1.1": { - "type": "npm", - "name": "npm:path-key@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:path-key@4.0.0": { - "type": "npm", - "name": "npm:path-key@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-key", - "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.10.1", - "packageName": "path-scurry", - "hash": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.0", - "packageName": "picocolors", - "hash": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch@3.0.1": { - "type": "npm", - "name": "npm:picomatch@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "picomatch", - "hash": "sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.6.0", - "packageName": "pidtree", - "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pinkie-promise": { - "type": "npm", - "name": "npm:pinkie-promise", - "data": { - "version": "2.0.1", - "packageName": "pinkie-promise", - "hash": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==" - } - }, - "npm:pinkie": { - "type": "npm", - "name": "npm:pinkie", - "data": { - "version": "2.0.4", - "packageName": "pinkie", - "hash": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "npm:pkg-dir@3.0.0": { - "type": "npm", - "name": "npm:pkg-dir@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pkg-dir", - "hash": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:pkg-dir@7.0.0": { - "type": "npm", - "name": "npm:pkg-dir@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "pkg-dir", - "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" - } - }, - "npm:pkg-up": { - "type": "npm", - "name": "npm:pkg-up", - "data": { - "version": "3.1.0", - "packageName": "pkg-up", - "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" - } - }, - "npm:plist": { - "type": "npm", - "name": "npm:plist", - "data": { - "version": "3.1.0", - "packageName": "plist", - "hash": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==" - } - }, - "npm:pngjs": { - "type": "npm", - "name": "npm:pngjs", - "data": { - "version": "3.4.0", - "packageName": "pngjs", - "hash": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" - } - }, - "npm:pngjs@5.0.0": { - "type": "npm", - "name": "npm:pngjs@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "pngjs", - "hash": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" - } - }, - "npm:popmotion": { - "type": "npm", - "name": "npm:popmotion", - "data": { - "version": "11.0.3", - "packageName": "popmotion", - "hash": "sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==" - } - }, - "npm:popmotion@9.3.1": { - "type": "npm", - "name": "npm:popmotion@9.3.1", - "data": { - "version": "9.3.1", - "packageName": "popmotion", - "hash": "sha512-Qozvg8rz2OGeZwWuIjqlSXqqgWto/+QL24ll8sAAc0n71KY/wvN1W4sAASxTuHv8YWdDnk9u9IdadyPo2DGvDA==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "8.2.4", - "packageName": "postcss-calc", - "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "5.3.1", - "packageName": "postcss-colormin", - "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-convert-values", - "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "5.1.2", - "packageName": "postcss-discard-comments", - "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "5.1.1", - "packageName": "postcss-discard-empty", - "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-overridden", - "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "5.1.7", - "packageName": "postcss-merge-longhand", - "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "5.1.4", - "packageName": "postcss-merge-rules", - "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-minify-font-values", - "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "5.1.1", - "packageName": "postcss-minify-gradients", - "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "5.1.4", - "packageName": "postcss-minify-params", - "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "5.2.1", - "packageName": "postcss-minify-selectors", - "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.0.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.4", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.1.1", - "packageName": "postcss-modules-scope", - "hash": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-charset", - "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-positions", - "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-string", - "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-url", - "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-ordered-values", - "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "5.1.2", - "packageName": "postcss-reduce-initial", - "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "5.1.0", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.15", - "packageName": "postcss-selector-parser", - "hash": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "5.1.0", - "packageName": "postcss-svgo", - "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "5.1.1", - "packageName": "postcss-unique-selectors", - "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.33", - "packageName": "postcss", - "hash": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prepend-http": { - "type": "npm", - "name": "npm:prepend-http", - "data": { - "version": "2.0.0", - "packageName": "prepend-http", - "hash": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==" - } - }, - "npm:pretender": { - "type": "npm", - "name": "npm:pretender", - "data": { - "version": "3.4.7", - "packageName": "pretender", - "hash": "sha512-jkPAvt1BfRi0RKamweJdEcnjkeu7Es8yix3bJ+KgBC5VpG/Ln4JE3hYN6vJym4qprm8Xo5adhWpm3HCoft1dOw==" - } - }, - "npm:prettier-linter-helpers": { - "type": "npm", - "name": "npm:prettier-linter-helpers", - "data": { - "version": "1.0.0", - "packageName": "prettier-linter-helpers", - "hash": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.8.8", - "packageName": "prettier", - "hash": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:pretty-error": { - "type": "npm", - "name": "npm:pretty-error", - "data": { - "version": "4.0.0", - "packageName": "pretty-error", - "hash": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==" - } - }, - "npm:pretty-format@26.6.2": { - "type": "npm", - "name": "npm:pretty-format@26.6.2", - "data": { - "version": "26.6.2", - "packageName": "pretty-format", - "hash": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:pretty-quick": { - "type": "npm", - "name": "npm:pretty-quick", - "data": { - "version": "4.0.0", - "packageName": "pretty-quick", - "hash": "sha512-M+2MmeufXb/M7Xw3Afh1gxcYpj+sK0AxEfnfF958ktFeAyi5MsKY5brymVURQLgPLV1QaF5P4pb2oFJ54H3yzQ==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - } - }, - "npm:promise@7.3.1": { - "type": "npm", - "name": "npm:promise@7.3.1", - "data": { - "version": "7.3.1", - "packageName": "promise", - "hash": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==" - } - }, - "npm:promise": { - "type": "npm", - "name": "npm:promise", - "data": { - "version": "8.3.0", - "packageName": "promise", - "hash": "sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==" - } - }, - "npm:prompt-skeleton": { - "type": "npm", - "name": "npm:prompt-skeleton", - "data": { - "version": "0.1.3", - "packageName": "prompt-skeleton", - "hash": "sha512-sv95G/H7jWjfs5SnNaXeMtiwcUXL3RId8JIvcyej6i3v1UPLVitA2DtLi+LlEzsLlOYudBoSQZL3A8rCqT1kpw==" - } - }, - "npm:prompt-sync": { - "type": "npm", - "name": "npm:prompt-sync", - "data": { - "version": "4.2.0", - "packageName": "prompt-sync", - "hash": "sha512-BuEzzc5zptP5LsgV5MZETjDaKSWfchl5U9Luiu8SKp7iZWD5tZalOxvNcZRwv+d2phNFr8xlbxmFNcRKfJOzJw==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:prop-types": { - "type": "npm", - "name": "npm:prop-types", - "data": { - "version": "15.8.1", - "packageName": "prop-types", - "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.9.0", - "packageName": "psl", - "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:punycode@1.4.1": { - "type": "npm", - "name": "npm:punycode@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "punycode", - "hash": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.4", - "packageName": "pure-rand", - "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" - } - }, - "npm:qrcode-terminal": { - "type": "npm", - "name": "npm:qrcode-terminal", - "data": { - "version": "0.11.0", - "packageName": "qrcode-terminal", - "hash": "sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:qs@6.11.2": { - "type": "npm", - "name": "npm:qs@6.11.2", - "data": { - "version": "6.11.2", - "packageName": "qs", - "hash": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==" - } - }, - "npm:query-string": { - "type": "npm", - "name": "npm:query-string", - "data": { - "version": "6.14.1", - "packageName": "query-string", - "hash": "sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==" - } - }, - "npm:query-string@5.1.1": { - "type": "npm", - "name": "npm:query-string@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "query-string", - "hash": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==" - } - }, - "npm:query-string@7.1.3": { - "type": "npm", - "name": "npm:query-string@7.1.3", - "data": { - "version": "7.1.3", - "packageName": "query-string", - "hash": "sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:queue": { - "type": "npm", - "name": "npm:queue", - "data": { - "version": "6.0.2", - "packageName": "queue", - "hash": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.5.1", - "packageName": "raw-body", - "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:react-devtools-core": { - "type": "npm", - "name": "npm:react-devtools-core", - "data": { - "version": "4.28.5", - "packageName": "react-devtools-core", - "hash": "sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==" - } - }, - "npm:react-dom": { - "type": "npm", - "name": "npm:react-dom", - "data": { - "version": "18.2.0", - "packageName": "react-dom", - "hash": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" - } - }, - "npm:react-error-overlay@6.0.9": { - "type": "npm", - "name": "npm:react-error-overlay@6.0.9", - "data": { - "version": "6.0.9", - "packageName": "react-error-overlay", - "hash": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" - } - }, - "npm:react-fast-compare": { - "type": "npm", - "name": "npm:react-fast-compare", - "data": { - "version": "3.2.2", - "packageName": "react-fast-compare", - "hash": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" - } - }, - "npm:react-freeze": { - "type": "npm", - "name": "npm:react-freeze", - "data": { - "version": "1.0.3", - "packageName": "react-freeze", - "hash": "sha512-ZnXwLQnGzrDpHBHiC56TXFXvmolPeMjTn1UOm610M4EXGzbEDR7oOIyS2ZiItgbs6eZc4oU/a0hpk8PrcKvv5g==" - } - }, - "npm:react-helmet-async": { - "type": "npm", - "name": "npm:react-helmet-async", - "data": { - "version": "1.3.0", - "packageName": "react-helmet-async", - "hash": "sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==" - } - }, - "npm:react-hook-form": { - "type": "npm", - "name": "npm:react-hook-form", - "data": { - "version": "7.49.3", - "packageName": "react-hook-form", - "hash": "sha512-foD6r3juidAT1cOZzpmD/gOKt7fRsDhXXZ0y28+Al1CHgX+AY1qIN9VSIIItXRq1dN68QrRwl1ORFlwjBaAqeQ==" - } - }, - "npm:react-i18next": { - "type": "npm", - "name": "npm:react-i18next", - "data": { - "version": "14.0.1", - "packageName": "react-i18next", - "hash": "sha512-TMV8hFismBmpMdIehoFHin/okfvgjFhp723RYgIqB4XyhDobVMyukyM3Z8wtTRmajyFMZrBl/OaaXF2P6WjUAw==" - } - }, - "npm:react-is@18.2.0": { - "type": "npm", - "name": "npm:react-is@18.2.0", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "16.13.1", - "packageName": "react-is", - "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - }, - "npm:react-is@17.0.2": { - "type": "npm", - "name": "npm:react-is@17.0.2", - "data": { - "version": "17.0.2", - "packageName": "react-is", - "hash": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - } - }, - "npm:react-native-flipper": { - "type": "npm", - "name": "npm:react-native-flipper", - "data": { - "version": "0.164.0", - "packageName": "react-native-flipper", - "hash": "sha512-iJhIe3rqx6okuzBp4AJsTa2b8VRAOGzoLRFx/4HGbaGvu8AurZjz8TTQkhJsRma8dsHN2b6KKZPvGGW3wdWzvA==" - } - }, - "npm:react-native-gesture-handler": { - "type": "npm", - "name": "npm:react-native-gesture-handler", - "data": { - "version": "2.14.1", - "packageName": "react-native-gesture-handler", - "hash": "sha512-YiM1BApV4aKeuwsM6O4C2ufwewYEKk6VMXOt0YqEZFMwABBFWhXLySFZYjBSNRU2USGppJbfHP1q1DfFQpKhdA==" - } - }, - "npm:react-native-iphone-x-helper": { - "type": "npm", - "name": "npm:react-native-iphone-x-helper", - "data": { - "version": "1.3.1", - "packageName": "react-native-iphone-x-helper", - "hash": "sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==" - } - }, - "npm:react-native-keyboard-aware-scroll-view": { - "type": "npm", - "name": "npm:react-native-keyboard-aware-scroll-view", - "data": { - "version": "0.9.5", - "packageName": "react-native-keyboard-aware-scroll-view", - "hash": "sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==" - } - }, - "npm:react-native-notificated": { - "type": "npm", - "name": "npm:react-native-notificated", - "data": { - "version": "0.0.1-beta.2", - "packageName": "react-native-notificated", - "hash": "sha512-nOztCH/ja+Qb3bxtzSTmKv9FzOQS0pnfeS5s88wCjNbYiLFFi7RxMXKThkf8ONDLk0rA/PICdtzQvZkmxd9gXg==" - } - }, - "npm:react-native-pager-view": { - "type": "npm", - "name": "npm:react-native-pager-view", - "data": { - "version": "6.2.3", - "packageName": "react-native-pager-view", - "hash": "sha512-dqVpXWFtPNfD3D2QQQr8BP+ullS5MhjRJuF8Z/qml4QTILcrWaW8F5iAxKkQR3Jl0ikcEryG/+SQlNcwlo0Ggg==" - } - }, - "npm:react-native-reanimated": { - "type": "npm", - "name": "npm:react-native-reanimated", - "data": { - "version": "3.6.2", - "packageName": "react-native-reanimated", - "hash": "sha512-IIMREMOrxhtK35drfpzh2UhxNqAOHnuvGgtMofj7yHcMj16tmWZR2zFvMUf6z2MfmXv+aVgFQ6TRZ6yKYf7LNA==" - } - }, - "npm:react-native-safe-area-context": { - "type": "npm", - "name": "npm:react-native-safe-area-context", - "data": { - "version": "4.8.2", - "packageName": "react-native-safe-area-context", - "hash": "sha512-ffUOv8BJQ6RqO3nLml5gxJ6ab3EestPiyWekxdzO/1MQ7NF8fW1Mzh1C5QE9yq573Xefnc7FuzGXjtesZGv7cQ==" - } - }, - "npm:react-native-screens": { - "type": "npm", - "name": "npm:react-native-screens", - "data": { - "version": "3.29.0", - "packageName": "react-native-screens", - "hash": "sha512-yB1GoAMamFAcYf4ku94uBPn0/ani9QG7NdI98beJ5cet2YFESYYzuEIuU+kt+CNRcO8qqKeugxlfgAa3HyTqlg==" - } - }, - "npm:react-native-svg": { - "type": "npm", - "name": "npm:react-native-svg", - "data": { - "version": "14.1.0", - "packageName": "react-native-svg", - "hash": "sha512-HeseElmEk+AXGwFZl3h56s0LtYD9HyGdrpg8yd9QM26X+d7kjETrRQ9vCjtxuT5dCZEIQ5uggU1dQhzasnsCWA==" - } - }, - "npm:react-native-web": { - "type": "npm", - "name": "npm:react-native-web", - "data": { - "version": "0.19.10", - "packageName": "react-native-web", - "hash": "sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==" - } - }, - "npm:react-native": { - "type": "npm", - "name": "npm:react-native", - "data": { - "version": "0.73.2", - "packageName": "react-native", - "hash": "sha512-7zj9tcUYpJUBdOdXY6cM8RcXYWkyql4kMyGZflW99E5EuFPoC7Ti+ZQSl7LP9ZPzGD0vMfslwyDW0I4tPWUCFw==" - } - }, - "npm:react-refresh": { - "type": "npm", - "name": "npm:react-refresh", - "data": { - "version": "0.14.0", - "packageName": "react-refresh", - "hash": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==" - } - }, - "npm:react-shallow-renderer": { - "type": "npm", - "name": "npm:react-shallow-renderer", - "data": { - "version": "16.15.0", - "packageName": "react-shallow-renderer", - "hash": "sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==" - } - }, - "npm:react-test-renderer": { - "type": "npm", - "name": "npm:react-test-renderer", - "data": { - "version": "18.2.0", - "packageName": "react-test-renderer", - "hash": "sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==" - } - }, - "npm:react": { - "type": "npm", - "name": "npm:react", - "data": { - "version": "18.2.0", - "packageName": "react", - "hash": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" - } - }, - "npm:reactotron-core-client": { - "type": "npm", - "name": "npm:reactotron-core-client", - "data": { - "version": "2.8.13", - "packageName": "reactotron-core-client", - "hash": "sha512-oI4dooNO6wjT42npHLXyBPHfjTUI499BiD4I4/YN86Tzv6WpuGD2kXOTZQl1jU1EhaZxSB/jl2G3p6sz/XvZsQ==" - } - }, - "npm:reactotron-core-contract": { - "type": "npm", - "name": "npm:reactotron-core-contract", - "data": { - "version": "0.2.1", - "packageName": "reactotron-core-contract", - "hash": "sha512-u92hDAuFLj1/OBXkUhyMHJR5TUZQqI4SWZqGlr6Zs5/apwAN11bGi5dbs5r3dUKZLWZvOgvQ/DT6L06JwJQPjw==" - } - }, - "npm:reactotron-react-native": { - "type": "npm", - "name": "npm:reactotron-react-native", - "data": { - "version": "5.0.5", - "packageName": "reactotron-react-native", - "hash": "sha512-/Eai1cKwRRGusOe3poLDM0SMOy6dHTf8iBYd5wSYwqznTz5vUlu0Jkoa8n4O00udoIEA3XSRqre7pAdr035vWQ==" - } - }, - "npm:readable-stream@2.3.8": { - "type": "npm", - "name": "npm:readable-stream@2.3.8", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:readable-stream@1.0.2": { - "type": "npm", - "name": "npm:readable-stream@1.0.2", - "data": { - "version": "1.0.2", - "packageName": "readable-stream", - "hash": "8630138425327017741" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:readline": { - "type": "npm", - "name": "npm:readline", - "data": { - "version": "1.3.0", - "packageName": "readline", - "hash": "sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==" - } - }, - "npm:recast": { - "type": "npm", - "name": "npm:recast", - "data": { - "version": "0.21.5", - "packageName": "recast", - "hash": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==" - } - }, - "npm:redent": { - "type": "npm", - "name": "npm:redent", - "data": { - "version": "3.0.0", - "packageName": "redent", - "hash": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" - } - }, - "npm:reflect.getprototypeof": { - "type": "npm", - "name": "npm:reflect.getprototypeof", - "data": { - "version": "1.0.4", - "packageName": "reflect.getprototypeof", - "hash": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.1", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.13.11", - "packageName": "regenerator-runtime", - "hash": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" - } - }, - "npm:regenerator-runtime@0.14.1": { - "type": "npm", - "name": "npm:regenerator-runtime@0.14.1", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.1", - "packageName": "regexp.prototype.flags", - "hash": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==" - } - }, - "npm:regexpp": { - "type": "npm", - "name": "npm:regexpp", - "data": { - "version": "3.2.0", - "packageName": "regexpp", - "hash": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:registry-auth-token": { - "type": "npm", - "name": "npm:registry-auth-token", - "data": { - "version": "3.3.2", - "packageName": "registry-auth-token", - "hash": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==" - } - }, - "npm:registry-url": { - "type": "npm", - "name": "npm:registry-url", - "data": { - "version": "3.1.0", - "packageName": "registry-url", - "hash": "sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:relateurl": { - "type": "npm", - "name": "npm:relateurl", - "data": { - "version": "0.2.7", - "packageName": "relateurl", - "hash": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" - } - }, - "npm:remove-trailing-slash": { - "type": "npm", - "name": "npm:remove-trailing-slash", - "data": { - "version": "0.1.1", - "packageName": "remove-trailing-slash", - "hash": "sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==" - } - }, - "npm:renderkid": { - "type": "npm", - "name": "npm:renderkid", - "data": { - "version": "3.0.0", - "packageName": "renderkid", - "hash": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:require-main-filename": { - "type": "npm", - "name": "npm:require-main-filename", - "data": { - "version": "2.0.0", - "packageName": "require-main-filename", - "hash": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - } - }, - "npm:requireg": { - "type": "npm", - "name": "npm:requireg", - "data": { - "version": "0.2.2", - "packageName": "requireg", - "hash": "sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:reselect": { - "type": "npm", - "name": "npm:reselect", - "data": { - "version": "4.1.8", - "packageName": "reselect", - "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:resolve-from@3.0.0": { - "type": "npm", - "name": "npm:resolve-from@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "resolve-from", - "hash": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:resolve@2.0.0-next.5": { - "type": "npm", - "name": "npm:resolve@2.0.0-next.5", - "data": { - "version": "2.0.0-next.5", - "packageName": "resolve", - "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" - } - }, - "npm:resolve@1.7.1": { - "type": "npm", - "name": "npm:resolve@1.7.1", - "data": { - "version": "1.7.1", - "packageName": "resolve", - "hash": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==" - } - }, - "npm:restore-cursor@2.0.0": { - "type": "npm", - "name": "npm:restore-cursor@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "restore-cursor", - "hash": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:restore-cursor@4.0.0": { - "type": "npm", - "name": "npm:restore-cursor@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "restore-cursor", - "hash": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.3.1", - "packageName": "rfdc", - "hash": "sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==" - } - }, - "npm:rimraf@2.7.1": { - "type": "npm", - "name": "npm:rimraf@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "rimraf", - "hash": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@2.4.5": { - "type": "npm", - "name": "npm:rimraf@2.4.5", - "data": { - "version": "2.4.5", - "packageName": "rimraf", - "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" - } - }, - "npm:rimraf@2.6.3": { - "type": "npm", - "name": "npm:rimraf@2.6.3", - "data": { - "version": "2.6.3", - "packageName": "rimraf", - "hash": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" - } - }, - "npm:route-recognizer": { - "type": "npm", - "name": "npm:route-recognizer", - "data": { - "version": "0.3.4", - "packageName": "route-recognizer", - "hash": "sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==" - } - }, - "npm:rtl-detect": { - "type": "npm", - "name": "npm:rtl-detect", - "data": { - "version": "1.1.2", - "packageName": "rtl-detect", - "hash": "sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:safe-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.1.0", - "packageName": "safe-array-concat", - "hash": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:safe-json-stringify": { - "type": "npm", - "name": "npm:safe-json-stringify", - "data": { - "version": "1.2.0", - "packageName": "safe-json-stringify", - "hash": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.0.2", - "packageName": "safe-regex-test", - "hash": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.70.0", - "packageName": "sass", - "hash": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:scheduler@0.24.0-canary-efb381bbf-20230505": { - "type": "npm", - "name": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", - "data": { - "version": "0.24.0-canary-efb381bbf-20230505", - "packageName": "scheduler", - "hash": "sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==" - } - }, - "npm:scheduler": { - "type": "npm", - "name": "npm:scheduler", - "data": { - "version": "0.23.0", - "packageName": "scheduler", - "hash": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" - } - }, - "npm:schema-utils@2.7.1": { - "type": "npm", - "name": "npm:schema-utils@2.7.1", - "data": { - "version": "2.7.1", - "packageName": "schema-utils", - "hash": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" - } - }, - "npm:schema-utils@3.3.0": { - "type": "npm", - "name": "npm:schema-utils@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "4.2.0", - "packageName": "schema-utils", - "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - } - }, - "npm:select-prompt": { - "type": "npm", - "name": "npm:select-prompt", - "data": { - "version": "0.3.2", - "packageName": "select-prompt", - "hash": "sha512-UcsoayiSDNyp8z3iaLfu/OxosdcCxrJ/FoV4iYkrYZkRrxN2Iepmdj1Fx6neHEMUWNzsbQjKhykaCaLIUUuRFg==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.4.1", - "packageName": "selfsigned", - "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" - } - }, - "npm:semver@7.3.2": { - "type": "npm", - "name": "npm:semver@7.3.2", - "data": { - "version": "7.3.2", - "packageName": "semver", - "hash": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" - } - }, - "npm:semver@7.5.3": { - "type": "npm", - "name": "npm:semver@7.5.3", - "data": { - "version": "7.5.3", - "packageName": "semver", - "hash": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==" - } - }, - "npm:semver@5.7.2": { - "type": "npm", - "name": "npm:semver@5.7.2", - "data": { - "version": "5.7.2", - "packageName": "semver", - "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" - } - }, - "npm:semver@6.3.1": { - "type": "npm", - "name": "npm:semver@6.3.1", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.18.0", - "packageName": "send", - "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - } - }, - "npm:serialize-error": { - "type": "npm", - "name": "npm:serialize-error", - "data": { - "version": "2.1.0", - "packageName": "serialize-error", - "hash": "sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.2", - "packageName": "serialize-javascript", - "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.15.0", - "packageName": "serve-static", - "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - } - }, - "npm:set-cookie-parser": { - "type": "npm", - "name": "npm:set-cookie-parser", - "data": { - "version": "2.6.0", - "packageName": "set-cookie-parser", - "hash": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.0", - "packageName": "set-function-length", - "hash": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.1", - "packageName": "set-function-name", - "hash": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==" - } - }, - "npm:setimmediate": { - "type": "npm", - "name": "npm:setimmediate", - "data": { - "version": "1.0.5", - "packageName": "setimmediate", - "hash": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shallowequal": { - "type": "npm", - "name": "npm:shallowequal", - "data": { - "version": "1.1.0", - "packageName": "shallowequal", - "hash": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - } - }, - "npm:shebang-command@1.2.0": { - "type": "npm", - "name": "npm:shebang-command@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:shebang-regex@1.0.0": { - "type": "npm", - "name": "npm:shebang-regex@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.4", - "packageName": "side-channel", - "hash": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:signal-exit@4.1.0": { - "type": "npm", - "name": "npm:signal-exit@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:simple-plist": { - "type": "npm", - "name": "npm:simple-plist", - "data": { - "version": "1.3.1", - "packageName": "simple-plist", - "hash": "sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.2", - "packageName": "simple-swizzle", - "hash": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:slash@2.0.0": { - "type": "npm", - "name": "npm:slash@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "slash", - "hash": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:slice-ansi@2.1.0": { - "type": "npm", - "name": "npm:slice-ansi@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "slice-ansi", - "hash": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "5.0.0", - "packageName": "slice-ansi", - "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" - } - }, - "npm:slugify": { - "type": "npm", - "name": "npm:slugify", - "data": { - "version": "1.6.6", - "packageName": "slugify", - "hash": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "2.0.0", - "packageName": "sort-keys", - "hash": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==" - } - }, - "npm:source-list-map": { - "type": "npm", - "name": "npm:source-list-map", - "data": { - "version": "2.0.1", - "packageName": "source-list-map", - "hash": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.0.2", - "packageName": "source-map-js", - "hash": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "3.0.2", - "packageName": "source-map-loader", - "hash": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:source-map@0.5.6": { - "type": "npm", - "name": "npm:source-map@0.5.6", - "data": { - "version": "0.5.6", - "packageName": "source-map", - "hash": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" - } - }, - "npm:source-map@0.5.7": { - "type": "npm", - "name": "npm:source-map@0.5.7", - "data": { - "version": "0.5.7", - "packageName": "source-map", - "hash": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map@0.7.4": { - "type": "npm", - "name": "npm:source-map@0.7.4", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:split-on-first": { - "type": "npm", - "name": "npm:split-on-first", - "data": { - "version": "1.1.0", - "packageName": "split-on-first", - "hash": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" - } - }, - "npm:split": { - "type": "npm", - "name": "npm:split", - "data": { - "version": "1.0.1", - "packageName": "split", - "hash": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "8.0.1", - "packageName": "ssri", - "hash": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==" - } - }, - "npm:stable": { - "type": "npm", - "name": "npm:stable", - "data": { - "version": "0.1.8", - "packageName": "stable", - "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - } - }, - "npm:stack-generator": { - "type": "npm", - "name": "npm:stack-generator", - "data": { - "version": "2.0.10", - "packageName": "stack-generator", - "hash": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:stackframe": { - "type": "npm", - "name": "npm:stackframe", - "data": { - "version": "1.3.4", - "packageName": "stackframe", - "hash": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - } - }, - "npm:stacktrace-gps": { - "type": "npm", - "name": "npm:stacktrace-gps", - "data": { - "version": "3.1.2", - "packageName": "stacktrace-gps", - "hash": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==" - } - }, - "npm:stacktrace-js": { - "type": "npm", - "name": "npm:stacktrace-js", - "data": { - "version": "2.0.2", - "packageName": "stacktrace-js", - "hash": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==" - } - }, - "npm:stacktrace-parser": { - "type": "npm", - "name": "npm:stacktrace-parser", - "data": { - "version": "0.1.10", - "packageName": "stacktrace-parser", - "hash": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - } - }, - "npm:statuses@1.5.0": { - "type": "npm", - "name": "npm:statuses@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - }, - "npm:stream-buffers": { - "type": "npm", - "name": "npm:stream-buffers", - "data": { - "version": "2.2.0", - "packageName": "stream-buffers", - "hash": "sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==" - } - }, - "npm:stream-slice": { - "type": "npm", - "name": "npm:stream-slice", - "data": { - "version": "0.1.2", - "packageName": "stream-slice", - "hash": "sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==" - } - }, - "npm:strict-uri-encode@1.1.0": { - "type": "npm", - "name": "npm:strict-uri-encode@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "strict-uri-encode", - "hash": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" - } - }, - "npm:strict-uri-encode": { - "type": "npm", - "name": "npm:strict-uri-encode", - "data": { - "version": "2.0.0", - "packageName": "strict-uri-encode", - "hash": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==" - } - }, - "npm:string-argv": { - "type": "npm", - "name": "npm:string-argv", - "data": { - "version": "0.3.2", - "packageName": "string-argv", - "hash": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string-length@5.0.1": { - "type": "npm", - "name": "npm:string-length@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "string-length", - "hash": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@^4.2.0", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string.prototype.matchall": { - "type": "npm", - "name": "npm:string.prototype.matchall", - "data": { - "version": "4.0.10", - "packageName": "string.prototype.matchall", - "hash": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.8", - "packageName": "string.prototype.trim", - "hash": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimend", - "hash": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.7", - "packageName": "string.prototype.trimstart", - "hash": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:string_decoder@1.1.1": { - "type": "npm", - "name": "npm:string_decoder@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@^6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi@3.0.1": { - "type": "npm", - "name": "npm:strip-ansi@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "strip-ansi", - "hash": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==" - } - }, - "npm:strip-ansi@5.2.0": { - "type": "npm", - "name": "npm:strip-ansi@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "strip-ansi", - "hash": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" - } - }, - "npm:strip-ansi@7.1.0": { - "type": "npm", - "name": "npm:strip-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "strip-ansi", - "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-bom@4.0.0": { - "type": "npm", - "name": "npm:strip-bom@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:strip-final-newline@3.0.0": { - "type": "npm", - "name": "npm:strip-final-newline@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" - } - }, - "npm:strip-indent": { - "type": "npm", - "name": "npm:strip-indent", - "data": { - "version": "3.0.0", - "packageName": "strip-indent", - "hash": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" - } - }, - "npm:strnum": { - "type": "npm", - "name": "npm:strnum", - "data": { - "version": "1.0.5", - "packageName": "strnum", - "hash": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==" - } - }, - "npm:structured-headers": { - "type": "npm", - "name": "npm:structured-headers", - "data": { - "version": "0.4.1", - "packageName": "structured-headers", - "hash": "sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "3.3.4", - "packageName": "style-loader", - "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" - } - }, - "npm:style-value-types": { - "type": "npm", - "name": "npm:style-value-types", - "data": { - "version": "4.1.1", - "packageName": "style-value-types", - "hash": "sha512-cNLrl6jk+I1T18ZI2KIp/fcqKVuykcNELDrOz7y+TYZR97xmNdN0ewupURvVFnQxVrRJv98TMBq92VMsggq3kw==" - } - }, - "npm:style-value-types@5.0.0": { - "type": "npm", - "name": "npm:style-value-types@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "style-value-types", - "hash": "sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "5.1.1", - "packageName": "stylehacks", - "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" - } - }, - "npm:styleq": { - "type": "npm", - "name": "npm:styleq", - "data": { - "version": "0.1.3", - "packageName": "styleq", - "hash": "sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==" - } - }, - "npm:sucrase": { - "type": "npm", - "name": "npm:sucrase", - "data": { - "version": "3.34.0", - "packageName": "sucrase", - "hash": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==" - } - }, - "npm:sucrase@3.35.0": { - "type": "npm", - "name": "npm:sucrase@3.35.0", - "data": { - "version": "3.35.0", - "packageName": "sucrase", - "hash": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==" - } - }, - "npm:sudo-prompt": { - "type": "npm", - "name": "npm:sudo-prompt", - "data": { - "version": "9.1.1", - "packageName": "sudo-prompt", - "hash": "sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==" - } - }, - "npm:sudo-prompt@8.2.5": { - "type": "npm", - "name": "npm:sudo-prompt@8.2.5", - "data": { - "version": "8.2.5", - "packageName": "sudo-prompt", - "hash": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - } - }, - "npm:sudo-prompt@9.2.1": { - "type": "npm", - "name": "npm:sudo-prompt@9.2.1", - "data": { - "version": "9.2.1", - "packageName": "sudo-prompt", - "hash": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==" - } - }, - "npm:supports-color@2.0.0": { - "type": "npm", - "name": "npm:supports-color@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "supports-color", - "hash": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:supports-color@8.1.1": { - "type": "npm", - "name": "npm:supports-color@8.1.1", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:supports-hyperlinks": { - "type": "npm", - "name": "npm:supports-hyperlinks", - "data": { - "version": "2.3.0", - "packageName": "supports-hyperlinks", - "hash": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svgo@2.8.0": { - "type": "npm", - "name": "npm:svgo@2.8.0", - "data": { - "version": "2.8.0", - "packageName": "svgo", - "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.2.0", - "packageName": "tar", - "hash": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==" - } - }, - "npm:temp-dir@1.0.0": { - "type": "npm", - "name": "npm:temp-dir@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "temp-dir", - "hash": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==" - } - }, - "npm:temp-dir": { - "type": "npm", - "name": "npm:temp-dir", - "data": { - "version": "2.0.0", - "packageName": "temp-dir", - "hash": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" - } - }, - "npm:temp": { - "type": "npm", - "name": "npm:temp", - "data": { - "version": "0.8.4", - "packageName": "temp", - "hash": "sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==" - } - }, - "npm:tempy": { - "type": "npm", - "name": "npm:tempy", - "data": { - "version": "0.3.0", - "packageName": "tempy", - "hash": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==" - } - }, - "npm:tempy@0.7.1": { - "type": "npm", - "name": "npm:tempy@0.7.1", - "data": { - "version": "0.7.1", - "packageName": "tempy", - "hash": "sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==" - } - }, - "npm:terminal-link": { - "type": "npm", - "name": "npm:terminal-link", - "data": { - "version": "2.1.1", - "packageName": "terminal-link", - "hash": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.10", - "packageName": "terser-webpack-plugin", - "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.27.0", - "packageName": "terser", - "hash": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - } - }, - "npm:thenify-all": { - "type": "npm", - "name": "npm:thenify-all", - "data": { - "version": "1.6.0", - "packageName": "thenify-all", - "hash": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==" - } - }, - "npm:thenify": { - "type": "npm", - "name": "npm:thenify", - "data": { - "version": "3.3.1", - "packageName": "thenify", - "hash": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==" - } - }, - "npm:throat": { - "type": "npm", - "name": "npm:throat", - "data": { - "version": "5.0.0", - "packageName": "throat", - "hash": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" - } - }, - "npm:through2": { - "type": "npm", - "name": "npm:through2", - "data": { - "version": "2.0.5", - "packageName": "through2", - "hash": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.1.0", - "packageName": "thunky", - "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.3", - "packageName": "tough-cookie", - "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:traverse": { - "type": "npm", - "name": "npm:traverse", - "data": { - "version": "0.6.8", - "packageName": "traverse", - "hash": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "1.0.3", - "packageName": "ts-api-utils", - "hash": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==" - } - }, - "npm:ts-interface-checker": { - "type": "npm", - "name": "npm:ts-interface-checker", - "data": { - "version": "0.1.13", - "packageName": "ts-interface-checker", - "hash": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" - } - }, - "npm:tsconfig-paths@3.15.0": { - "type": "npm", - "name": "npm:tsconfig-paths@3.15.0", - "data": { - "version": "3.15.0", - "packageName": "tsconfig-paths", - "hash": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" - } - }, - "npm:tslib@1.14.1": { - "type": "npm", - "name": "npm:tslib@1.14.1", - "data": { - "version": "1.14.1", - "packageName": "tslib", - "hash": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.6.2", - "packageName": "tslib", - "hash": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - } - }, - "npm:tsutils": { - "type": "npm", - "name": "npm:tsutils", - "data": { - "version": "3.21.0", - "packageName": "tsutils", - "hash": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:type-fest@0.16.0": { - "type": "npm", - "name": "npm:type-fest@0.16.0", - "data": { - "version": "0.16.0", - "packageName": "type-fest", - "hash": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest@0.21.3": { - "type": "npm", - "name": "npm:type-fest@0.21.3", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:type-fest@0.3.1": { - "type": "npm", - "name": "npm:type-fest@0.3.1", - "data": { - "version": "0.3.1", - "packageName": "type-fest", - "hash": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" - } - }, - "npm:type-fest@0.7.1": { - "type": "npm", - "name": "npm:type-fest@0.7.1", - "data": { - "version": "0.7.1", - "packageName": "type-fest", - "hash": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==" - } - }, - "npm:type-fest@1.4.0": { - "type": "npm", - "name": "npm:type-fest@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "type-fest", - "hash": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==" - } - }, - "npm:type-fest@3.13.1": { - "type": "npm", - "name": "npm:type-fest@3.13.1", - "data": { - "version": "3.13.1", - "packageName": "type-fest", - "hash": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.0", - "packageName": "typed-array-buffer", - "hash": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-length", - "hash": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.0", - "packageName": "typed-array-byte-offset", - "hash": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.4", - "packageName": "typed-array-length", - "hash": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "5.3.3", - "packageName": "typescript", - "hash": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "0.7.37", - "packageName": "ua-parser-js", - "hash": "sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA==" - } - }, - "npm:ua-parser-js@1.0.37": { - "type": "npm", - "name": "npm:ua-parser-js@1.0.37", - "data": { - "version": "1.0.37", - "packageName": "ua-parser-js", - "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.0.2", - "packageName": "unbox-primitive", - "hash": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" - } - }, - "npm:undici-types": { - "type": "npm", - "name": "npm:undici-types", - "data": { - "version": "5.26.5", - "packageName": "undici-types", - "hash": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "1.1.1", - "packageName": "unique-filename", - "hash": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "2.0.2", - "packageName": "unique-slug", - "hash": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" - } - }, - "npm:unique-string": { - "type": "npm", - "name": "npm:unique-string", - "data": { - "version": "1.0.0", - "packageName": "unique-string", - "hash": "sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==" - } - }, - "npm:unique-string@2.0.0": { - "type": "npm", - "name": "npm:unique-string@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "unique-string", - "hash": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==" - } - }, - "npm:universalify@0.1.2": { - "type": "npm", - "name": "npm:universalify@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify@1.0.0": { - "type": "npm", - "name": "npm:universalify@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "universalify", - "hash": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "2.0.1", - "packageName": "universalify", - "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.0.13", - "packageName": "update-browserslist-db", - "hash": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==" - } - }, - "npm:update-check": { - "type": "npm", - "name": "npm:update-check", - "data": { - "version": "1.5.3", - "packageName": "update-check", - "hash": "sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.0", - "packageName": "url-join", - "hash": "sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:url": { - "type": "npm", - "name": "npm:url", - "data": { - "version": "0.11.3", - "packageName": "url", - "hash": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==" - } - }, - "npm:use-debounce": { - "type": "npm", - "name": "npm:use-debounce", - "data": { - "version": "9.0.4", - "packageName": "use-debounce", - "hash": "sha512-6X8H/mikbrt0XE8e+JXRtZ8yYVvKkdYRfmIhWZYsP8rcNs9hk3APV8Ua2mFkKRLcJKVdnX2/Vwrmg2GWKUQEaQ==" - } - }, - "npm:use-latest-callback": { - "type": "npm", - "name": "npm:use-latest-callback", - "data": { - "version": "0.1.9", - "packageName": "use-latest-callback", - "hash": "sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==" - } - }, - "npm:use-sync-external-store": { - "type": "npm", - "name": "npm:use-sync-external-store", - "data": { - "version": "1.2.0", - "packageName": "use-sync-external-store", - "hash": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "npm:util": { - "type": "npm", - "name": "npm:util", - "data": { - "version": "0.12.5", - "packageName": "util", - "hash": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==" - } - }, - "npm:utila": { - "type": "npm", - "name": "npm:utila", - "data": { - "version": "0.4.0", - "packageName": "utila", - "hash": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - } - }, - "npm:uuid@7.0.3": { - "type": "npm", - "name": "npm:uuid@7.0.3", - "data": { - "version": "7.0.3", - "packageName": "uuid", - "hash": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.2.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" - } - }, - "npm:valid-url": { - "type": "npm", - "name": "npm:valid-url", - "data": { - "version": "1.0.9", - "packageName": "valid-url", - "hash": "sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "3.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:vlq": { - "type": "npm", - "name": "npm:vlq", - "data": { - "version": "1.0.1", - "packageName": "vlq", - "hash": "sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==" - } - }, - "npm:void-elements": { - "type": "npm", - "name": "npm:void-elements", - "data": { - "version": "3.1.0", - "packageName": "void-elements", - "hash": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:warn-once": { - "type": "npm", - "name": "npm:warn-once", - "data": { - "version": "0.1.1", - "packageName": "warn-once", - "hash": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.0", - "packageName": "watchpack", - "hash": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "npm:web-encoding": { - "type": "npm", - "name": "npm:web-encoding", - "data": { - "version": "1.1.5", - "packageName": "web-encoding", - "hash": "sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==" - } - }, - "npm:web-streams-polyfill": { - "type": "npm", - "name": "npm:web-streams-polyfill", - "data": { - "version": "3.3.2", - "packageName": "web-streams-polyfill", - "hash": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webidl-conversions@5.0.0": { - "type": "npm", - "name": "npm:webidl-conversions@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "5.3.3", - "packageName": "webpack-dev-middleware", - "hash": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "4.15.1", - "packageName": "webpack-dev-server", - "hash": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==" - } - }, - "npm:webpack-manifest-plugin": { - "type": "npm", - "name": "npm:webpack-manifest-plugin", - "data": { - "version": "4.1.1", - "packageName": "webpack-manifest-plugin", - "hash": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==" - } - }, - "npm:webpack-sources@2.3.1": { - "type": "npm", - "name": "npm:webpack-sources@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "webpack-sources", - "hash": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.90.0", - "packageName": "webpack", - "hash": "sha512-bdmyXRCXeeNIePv6R6tGPyy20aUobw4Zy8r0LUS2EWO+U+Ke/gYDgsCh7bl5rB6jPpr4r0SZa6dPxBxLooDT3w==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-fetch": { - "type": "npm", - "name": "npm:whatwg-fetch", - "data": { - "version": "3.6.20", - "packageName": "whatwg-fetch", - "hash": "sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:whatwg-url-without-unicode": { - "type": "npm", - "name": "npm:whatwg-url-without-unicode", - "data": { - "version": "8.0.0-3", - "packageName": "whatwg-url-without-unicode", - "hash": "sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.0.2", - "packageName": "which-boxed-primitive", - "hash": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" - } - }, - "npm:which-builtin-type": { - "type": "npm", - "name": "npm:which-builtin-type", - "data": { - "version": "1.1.3", - "packageName": "which-builtin-type", - "hash": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==" - } - }, - "npm:which-collection": { - "type": "npm", - "name": "npm:which-collection", - "data": { - "version": "1.0.1", - "packageName": "which-collection", - "hash": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==" - } - }, - "npm:which-module": { - "type": "npm", - "name": "npm:which-module", - "data": { - "version": "2.0.1", - "packageName": "which-module", - "hash": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.13", - "packageName": "which-typed-array", - "hash": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==" - } - }, - "npm:which@1.3.1": { - "type": "npm", - "name": "npm:which@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:wonka": { - "type": "npm", - "name": "npm:wonka", - "data": { - "version": "4.0.15", - "packageName": "wonka", - "hash": "sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==" - } - }, - "npm:wonka@6.3.4": { - "type": "npm", - "name": "npm:wonka@6.3.4", - "data": { - "version": "6.3.4", - "packageName": "wonka", - "hash": "sha512-CjpbqNtBGNAeyNS/9W6q3kSkKE52+FjIj7AkFlLr11s/VWGUu6a2CdYSdGxocIhIVjaW/zchesBQUKPVU69Cqg==" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@^7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi@6.2.0": { - "type": "npm", - "name": "npm:wrap-ansi@6.2.0", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "2.4.3", - "packageName": "write-file-atomic", - "hash": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==" - } - }, - "npm:write-file-atomic@4.0.2": { - "type": "npm", - "name": "npm:write-file-atomic@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:ws@6.2.2": { - "type": "npm", - "name": "npm:ws@6.2.2", - "data": { - "version": "6.2.2", - "packageName": "ws", - "hash": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "7.5.9", - "packageName": "ws", - "hash": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==" - } - }, - "npm:ws@8.16.0": { - "type": "npm", - "name": "npm:ws@8.16.0", - "data": { - "version": "8.16.0", - "packageName": "ws", - "hash": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==" - } - }, - "npm:xcode": { - "type": "npm", - "name": "npm:xcode", - "data": { - "version": "3.0.1", - "packageName": "xcode", - "hash": "sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==" - } - }, - "npm:xml-js": { - "type": "npm", - "name": "npm:xml-js", - "data": { - "version": "1.6.11", - "packageName": "xml-js", - "hash": "sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:xml2js@0.4.23": { - "type": "npm", - "name": "npm:xml2js@0.4.23", - "data": { - "version": "0.4.23", - "packageName": "xml2js", - "hash": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==" - } - }, - "npm:xml2js": { - "type": "npm", - "name": "npm:xml2js", - "data": { - "version": "0.6.0", - "packageName": "xml2js", - "hash": "sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==" - } - }, - "npm:xmlbuilder@14.0.0": { - "type": "npm", - "name": "npm:xmlbuilder@14.0.0", - "data": { - "version": "14.0.0", - "packageName": "xmlbuilder", - "hash": "sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==" - } - }, - "npm:xmlbuilder@15.1.1": { - "type": "npm", - "name": "npm:xmlbuilder@15.1.1", - "data": { - "version": "15.1.1", - "packageName": "xmlbuilder", - "hash": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==" - } - }, - "npm:xmlbuilder": { - "type": "npm", - "name": "npm:xmlbuilder", - "data": { - "version": "11.0.1", - "packageName": "xmlbuilder", - "hash": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:xmlhttprequest": { - "type": "npm", - "name": "npm:xmlhttprequest", - "data": { - "version": "1.8.0", - "packageName": "xmlhttprequest", - "hash": "sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==" - } - }, - "npm:xtend": { - "type": "npm", - "name": "npm:xtend", - "data": { - "version": "4.0.2", - "packageName": "xtend", - "hash": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - } - }, - "npm:y18n@4.0.3": { - "type": "npm", - "name": "npm:y18n@4.0.3", - "data": { - "version": "4.0.3", - "packageName": "y18n", - "hash": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yallist@3.1.1": { - "type": "npm", - "name": "npm:yallist@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yaml@2.3.1": { - "type": "npm", - "name": "npm:yaml@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "yaml", - "hash": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:yaml@2.3.4": { - "type": "npm", - "name": "npm:yaml@2.3.4", - "data": { - "version": "2.3.4", - "packageName": "yaml", - "hash": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==" - } - }, - "npm:yargs-parser@18.1.3": { - "type": "npm", - "name": "npm:yargs-parser@18.1.3", - "data": { - "version": "18.1.3", - "packageName": "yargs-parser", - "hash": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yargs@15.4.1": { - "type": "npm", - "name": "npm:yargs@15.4.1", - "data": { - "version": "15.4.1", - "packageName": "yargs", - "hash": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - } - }, - "dependencies": { - "npm:@ampproject/remapping": [ - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@babel/code-frame@7.10.4": [ - { - "source": "npm:@babel/code-frame@7.10.4", - "target": "npm:@babel/highlight", - "type": "static" - } - ], - "npm:@babel/code-frame": [ - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:chalk@2.4.2", - "type": "static" - } - ], - "npm:@babel/core": [ - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/generator": [ - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/helper-annotate-as-pure": [ - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-compilation-targets": [ - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache@5.1.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-create-class-features-plugin": [ - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-create-regexp-features-plugin": [ - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-define-polyfill-provider": [ - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:@babel/helper-function-name": [ - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-function-name", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-hoist-variables": [ - { - "source": "npm:@babel/helper-hoist-variables", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-member-expression-to-functions": [ - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-imports": [ - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-transforms": [ - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - } - ], - "npm:@babel/helper-optimise-call-expression": [ - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-remap-async-to-generator": [ - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - } - ], - "npm:@babel/helper-replace-supers": [ - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - } - ], - "npm:@babel/helper-simple-access": [ - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-skip-transparent-expression-wrappers": [ - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-split-export-declaration": [ - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-wrap-function": [ - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helpers": [ - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/highlight": [ - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": [ - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-async-generator-functions": [ - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-class-properties": [ - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-decorators": [ - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-export-default-from": [ - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-export-default-from", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-numeric-separator": [ - { - "source": "npm:@babel/plugin-proposal-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-object-rest-spread": [ - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-proposal-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-optional-chaining": [ - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-async-generators": [ - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-bigint": [ - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-properties": [ - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-static-block": [ - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-decorators": [ - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-dynamic-import": [ - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-export-default-from": [ - { - "source": "npm:@babel/plugin-syntax-export-default-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-export-namespace-from": [ - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-flow": [ - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-assertions": [ - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-attributes": [ - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-meta": [ - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-json-strings": [ - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-jsx": [ - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-numeric-separator": [ - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-object-rest-spread": [ - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-chaining": [ - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-private-property-in-object": [ - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-top-level-await": [ - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-typescript": [ - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-arrow-functions": [ - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-generator-functions": [ - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-to-generator": [ - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoped-functions": [ - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoping": [ - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-properties": [ - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-static-block": [ - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - } - ], - "npm:@babel/plugin-transform-classes": [ - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals@11.12.0", - "type": "static" - } - ], - "npm:@babel/plugin-transform-computed-properties": [ - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - } - ], - "npm:@babel/plugin-transform-destructuring": [ - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dotall-regex": [ - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-duplicate-keys": [ - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dynamic-import": [ - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - } - ], - "npm:@babel/plugin-transform-exponentiation-operator": [ - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-export-namespace-from": [ - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - } - ], - "npm:@babel/plugin-transform-flow-strip-types": [ - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - } - ], - "npm:@babel/plugin-transform-for-of": [ - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-function-name": [ - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-json-strings": [ - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - } - ], - "npm:@babel/plugin-transform-literals": [ - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-member-expression-literals": [ - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-amd": [ - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-commonjs": [ - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-systemjs": [ - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-umd": [ - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-named-capturing-groups-regex": [ - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-new-target": [ - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-numeric-separator": [ - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-assign": [ - { - "source": "npm:@babel/plugin-transform-object-assign", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-rest-spread": [ - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-super": [ - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-chaining": [ - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-transform-parameters": [ - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-methods": [ - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-property-in-object": [ - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - } - ], - "npm:@babel/plugin-transform-property-literals": [ - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-display-name": [ - { - "source": "npm:@babel/plugin-transform-react-display-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-jsx-development": [ - { - "source": "npm:@babel/plugin-transform-react-jsx-development", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-jsx-self": [ - { - "source": "npm:@babel/plugin-transform-react-jsx-self", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-jsx-source": [ - { - "source": "npm:@babel/plugin-transform-react-jsx-source", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-jsx": [ - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-pure-annotations": [ - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-pure-annotations", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-regenerator": [ - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - } - ], - "npm:@babel/plugin-transform-reserved-words": [ - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-runtime": [ - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/plugin-transform-shorthand-properties": [ - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-spread": [ - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-sticky-regex": [ - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-template-literals": [ - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typeof-symbol": [ - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typescript": [ - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-escapes": [ - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-property-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/preset-env": [ - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/preset-flow": [ - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-flow", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - } - ], - "npm:@babel/preset-modules": [ - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:@babel/preset-react": [ - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-jsx-development", - "type": "static" - }, - { - "source": "npm:@babel/preset-react", - "target": "npm:@babel/plugin-transform-react-pure-annotations", - "type": "static" - } - ], - "npm:@babel/preset-typescript": [ - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - } - ], - "npm:@babel/register": [ - { - "source": "npm:@babel/register", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:find-cache-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@babel/register", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:@babel/runtime": [ - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime@0.14.1", - "type": "static" - } - ], - "npm:@babel/template": [ - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/traverse": [ - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-function-name", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-hoist-variables", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals@11.12.0", - "type": "static" - } - ], - "npm:@babel/types": [ - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - } - ], - "npm:@egjs/hammerjs": [ - { - "source": "npm:@egjs/hammerjs", - "target": "npm:@types/hammerjs", - "type": "static" - } - ], - "npm:@emotion/is-prop-valid": [ - { - "source": "npm:@emotion/is-prop-valid", - "target": "npm:@emotion/memoize", - "type": "static" - } - ], - "npm:@eslint-community/eslint-utils": [ - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@eslint/eslintrc": [ - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:@expo/bunyan": [ - { - "source": "npm:@expo/bunyan", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@expo/bunyan", - "target": "npm:mv", - "type": "static" - }, - { - "source": "npm:@expo/bunyan", - "target": "npm:safe-json-stringify", - "type": "static" - } - ], - "npm:@expo/cli@0.17.2": [ - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/code-signing-certificates", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/devcert", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/env", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/image-utils", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/metro-config", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/osascript", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/package-manager", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/plist", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/prebuild-config", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/rudder-sdk-node", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@expo/xcpretty", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@react-native/dev-middleware", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@urql/core", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:@urql/exchange-retry", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:better-opn", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:bplist-parser", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:env-editor", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:form-data@3.0.1", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:freeport-async", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:graphql", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:graphql-tag", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:internal-ip", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:json-schema-deref-sync", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:md5hex", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:picomatch@3.0.1", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:qrcode-terminal", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:requireg", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:structured-headers", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:tempy@0.7.1", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:terminal-link", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:url-join", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@expo/cli@0.17.2", - "target": "npm:ws@8.16.0", - "type": "static" - } - ], - "npm:@expo/code-signing-certificates": [ - { - "source": "npm:@expo/code-signing-certificates", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:@expo/code-signing-certificates", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:@expo/config-plugins": [ - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/fingerprint", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/plist", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@expo/sdk-runtime-versions", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins", - "target": "npm:xml2js", - "type": "static" - } - ], - "npm:@expo/config-plugins@5.0.4": [ - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/config-types@47.0.0", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/json-file@8.2.36", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/plist@0.0.18", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@expo/sdk-runtime-versions", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/config-plugins@5.0.4", - "target": "npm:xml2js@0.4.23", - "type": "static" - } - ], - "npm:@expo/config": [ - { - "source": "npm:@expo/config", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config", - "target": "npm:sucrase", - "type": "static" - } - ], - "npm:@expo/config@7.0.3": [ - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@expo/config-plugins@5.0.4", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@expo/config-types@47.0.0", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:@expo/json-file@8.2.36", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:slugify", - "type": "static" - }, - { - "source": "npm:@expo/config@7.0.3", - "target": "npm:sucrase@3.35.0", - "type": "static" - } - ], - "npm:@expo/configure-splash-screen": [ - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:color-string", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:commander@5.1.0", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:pngjs@5.0.0", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:xcode", - "type": "static" - }, - { - "source": "npm:@expo/configure-splash-screen", - "target": "npm:xml-js", - "type": "static" - } - ], - "npm:@expo/devcert": [ - { - "source": "npm:@expo/devcert", - "target": "npm:application-config-path", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:command-exists", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:eol", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:password-prompt", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:sudo-prompt@8.2.5", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@expo/devcert", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@expo/env": [ - { - "source": "npm:@expo/env", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:dotenv@16.0.3", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:@expo/env", - "target": "npm:getenv", - "type": "static" - } - ], - "npm:@expo/fingerprint": [ - { - "source": "npm:@expo/fingerprint", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:@expo/fingerprint", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@expo/image-utils@0.3.22": [ - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:fs-extra@9.0.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:jimp-compact", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:parse-png", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.22", - "target": "npm:tempy", - "type": "static" - } - ], - "npm:@expo/image-utils@0.3.23": [ - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:fs-extra@9.0.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:jimp-compact", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:parse-png", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/image-utils@0.3.23", - "target": "npm:tempy", - "type": "static" - } - ], - "npm:@expo/image-utils": [ - { - "source": "npm:@expo/image-utils", - "target": "npm:@expo/spawn-async", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:fs-extra@9.0.0", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:jimp-compact", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:parse-png", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/image-utils", - "target": "npm:tempy", - "type": "static" - } - ], - "npm:@expo/json-file@8.2.36": [ - { - "source": "npm:@expo/json-file@8.2.36", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/json-file@8.2.36", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:@expo/json-file@8.2.36", - "target": "npm:write-file-atomic", - "type": "static" - } - ], - "npm:@expo/json-file": [ - { - "source": "npm:@expo/json-file", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@expo/json-file", - "target": "npm:write-file-atomic", - "type": "static" - } - ], - "npm:@expo/metro-config": [ - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/env", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:babel-preset-fbjs", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:jsc-safe-url", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:lightningcss", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/metro-config", - "target": "npm:sucrase", - "type": "static" - } - ], - "npm:@expo/osascript": [ - { - "source": "npm:@expo/osascript", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/osascript", - "target": "npm:exec-async", - "type": "static" - } - ], - "npm:@expo/package-manager": [ - { - "source": "npm:@expo/package-manager", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:@expo/spawn-async@1.7.2", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:split", - "type": "static" - }, - { - "source": "npm:@expo/package-manager", - "target": "npm:sudo-prompt", - "type": "static" - } - ], - "npm:@expo/plist@0.0.18": [ - { - "source": "npm:@expo/plist@0.0.18", - "target": "npm:@xmldom/xmldom", - "type": "static" - }, - { - "source": "npm:@expo/plist@0.0.18", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:@expo/plist@0.0.18", - "target": "npm:xmlbuilder@14.0.0", - "type": "static" - } - ], - "npm:@expo/plist": [ - { - "source": "npm:@expo/plist", - "target": "npm:@xmldom/xmldom", - "type": "static" - }, - { - "source": "npm:@expo/plist", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:@expo/plist", - "target": "npm:xmlbuilder@14.0.0", - "type": "static" - } - ], - "npm:@expo/prebuild-config@5.0.7": [ - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/config@7.0.3", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/config-plugins@5.0.4", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/config-types@47.0.0", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/image-utils@0.3.22", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:@expo/json-file@8.2.36", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:semver@7.3.2", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config@5.0.7", - "target": "npm:xml2js@0.4.23", - "type": "static" - } - ], - "npm:@expo/prebuild-config": [ - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/config-types", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/image-utils", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:semver@7.5.3", - "type": "static" - }, - { - "source": "npm:@expo/prebuild-config", - "target": "npm:xml2js", - "type": "static" - } - ], - "npm:@expo/rudder-sdk-node": [ - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:@expo/bunyan", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:@segment/loosely-validate-event", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:fetch-retry", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:md5", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:remove-trailing-slash", - "type": "static" - }, - { - "source": "npm:@expo/rudder-sdk-node", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@expo/server": [ - { - "source": "npm:@expo/server", - "target": "npm:@remix-run/node", - "type": "static" - }, - { - "source": "npm:@expo/server", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:@expo/server", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@expo/server", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:@expo/spawn-async": [ - { - "source": "npm:@expo/spawn-async", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - } - ], - "npm:@expo/spawn-async@1.7.2": [ - { - "source": "npm:@expo/spawn-async@1.7.2", - "target": "npm:cross-spawn", - "type": "static" - } - ], - "npm:@expo/webpack-config": [ - { - "source": "npm:@expo/webpack-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:babel-loader@8.3.0", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:clean-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:copy-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:css-minimizer-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:expo-pwa", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:fs-extra@11.2.0", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:getenv", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:html-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:mini-css-extract-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:node-html-parser", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@expo/webpack-config", - "target": "npm:webpack-manifest-plugin", - "type": "static" - } - ], - "npm:@expo/xcpretty": [ - { - "source": "npm:@expo/xcpretty", - "target": "npm:@babel/code-frame@7.10.4", - "type": "static" - }, - { - "source": "npm:@expo/xcpretty", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@expo/xcpretty", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@expo/xcpretty", - "target": "npm:js-yaml@4.1.0", - "type": "static" - } - ], - "npm:@gorhom/bottom-sheet": [ - { - "source": "npm:@gorhom/bottom-sheet", - "target": "npm:@gorhom/portal", - "type": "static" - }, - { - "source": "npm:@gorhom/bottom-sheet", - "target": "npm:invariant", - "type": "static" - } - ], - "npm:@gorhom/portal": [ - { - "source": "npm:@gorhom/portal", - "target": "npm:nanoid", - "type": "static" - } - ], - "npm:@hapi/topo": [ - { - "source": "npm:@hapi/topo", - "target": "npm:@hapi/hoek", - "type": "static" - } - ], - "npm:@humanwhocodes/config-array": [ - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:@humanwhocodes/object-schema", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:@isaacs/cliui": [ - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "type": "static" - } - ], - "npm:@istanbuljs/load-nyc-config": [ - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@jest/console": [ - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - } - ], - "npm:@jest/core": [ - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:@jest/create-cache-key-function": [ - { - "source": "npm:@jest/create-cache-key-function", - "target": "npm:@jest/types", - "type": "static" - } - ], - "npm:@jest/environment": [ - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/expect-utils": [ - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - } - ], - "npm:@jest/expect": [ - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:@jest/fake-timers": [ - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:@jest/globals": [ - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/reporters": [ - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - } - ], - "npm:@jest/schemas": [ - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - } - ], - "npm:@jest/source-map": [ - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:@jest/test-result": [ - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - } - ], - "npm:@jest/test-sequencer": [ - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - } - ], - "npm:@jest/transform": [ - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic@4.0.2", - "type": "static" - } - ], - "npm:@jest/types@26.6.2": [ - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:@types/yargs@15.0.19", - "type": "static" - }, - { - "source": "npm:@jest/types@26.6.2", - "target": "npm:chalk", - "type": "static" - } - ], - "npm:@jest/types": [ - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk", - "type": "static" - } - ], - "npm:@jridgewell/gen-mapping": [ - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/source-map": [ - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping": [ - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@motify/components": [ - { - "source": "npm:@motify/components", - "target": "npm:@motify/core", - "type": "static" - } - ], - "npm:@motify/components@0.18.0": [ - { - "source": "npm:@motify/components@0.18.0", - "target": "npm:@motify/core@0.18.0", - "type": "static" - } - ], - "npm:@motify/core": [ - { - "source": "npm:@motify/core", - "target": "npm:framer-motion@3.10.6", - "type": "static" - } - ], - "npm:@motify/core@0.18.0": [ - { - "source": "npm:@motify/core@0.18.0", - "target": "npm:framer-motion", - "type": "static" - } - ], - "npm:@motify/interactions": [ - { - "source": "npm:@motify/interactions", - "target": "npm:@motify/components", - "type": "static" - }, - { - "source": "npm:@motify/interactions", - "target": "npm:@motify/core", - "type": "static" - } - ], - "npm:@motify/skeleton": [ - { - "source": "npm:@motify/skeleton", - "target": "npm:@motify/components@0.18.0", - "type": "static" - }, - { - "source": "npm:@motify/skeleton", - "target": "npm:@motify/core@0.18.0", - "type": "static" - } - ], - "npm:@motionone/animation": [ - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/easing", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/dom": [ - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/animation", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/generators", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/easing": [ - { - "source": "npm:@motionone/easing", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/easing", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/generators": [ - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/utils": [ - { - "source": "npm:@motionone/utils", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nodelib/fs.scandir": [ - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - } - ], - "npm:@nodelib/fs.walk": [ - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - } - ], - "npm:@npmcli/fs": [ - { - "source": "npm:@npmcli/fs", - "target": "npm:@gar/promisify", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@npmcli/move-file": [ - { - "source": "npm:@npmcli/move-file", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@npmcli/move-file", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:@radix-ui/react-compose-refs": [ - { - "source": "npm:@radix-ui/react-compose-refs", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:@radix-ui/react-slot": [ - { - "source": "npm:@radix-ui/react-slot", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@radix-ui/react-slot", - "target": "npm:@radix-ui/react-compose-refs", - "type": "static" - } - ], - "npm:@react-native-async-storage/async-storage": [ - { - "source": "npm:@react-native-async-storage/async-storage", - "target": "npm:merge-options", - "type": "static" - } - ], - "npm:@react-native-community/cli-clean": [ - { - "source": "npm:@react-native-community/cli-clean", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-clean", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-clean", - "target": "npm:execa", - "type": "static" - } - ], - "npm:@react-native-community/cli-config": [ - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-config", - "target": "npm:joi", - "type": "static" - } - ], - "npm:@react-native-community/cli-debugger-ui": [ - { - "source": "npm:@react-native-community/cli-debugger-ui", - "target": "npm:serve-static", - "type": "static" - } - ], - "npm:@react-native-community/cli-doctor": [ - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-config", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-platform-android", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-platform-ios", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:command-exists", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:hermes-profile-transformer", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:ip", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:node-stream-zip", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:ora@5.4.1", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-doctor", - "target": "npm:yaml@2.3.4", - "type": "static" - } - ], - "npm:@react-native-community/cli-hermes": [ - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:@react-native-community/cli-platform-android", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:hermes-profile-transformer", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-hermes", - "target": "npm:ip", - "type": "static" - } - ], - "npm:@react-native-community/cli-platform-android": [ - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:fast-xml-parser", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-android", - "target": "npm:logkitty", - "type": "static" - } - ], - "npm:@react-native-community/cli-platform-ios": [ - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:fast-xml-parser", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-platform-ios", - "target": "npm:ora@5.4.1", - "type": "static" - } - ], - "npm:@react-native-community/cli-server-api": [ - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:@react-native-community/cli-debugger-ui", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:errorhandler", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:nocache", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:pretty-format@26.6.2", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-server-api", - "target": "npm:ws", - "type": "static" - } - ], - "npm:@react-native-community/cli-tools": [ - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:appdirsjs", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:open@6.4.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:ora@5.4.1", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli-tools", - "target": "npm:sudo-prompt@9.2.1", - "type": "static" - } - ], - "npm:@react-native-community/cli-types": [ - { - "source": "npm:@react-native-community/cli-types", - "target": "npm:joi", - "type": "static" - } - ], - "npm:@react-native-community/cli": [ - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-clean", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-config", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-debugger-ui", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-doctor", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-hermes", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-plugin-metro", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-server-api", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:@react-native-community/cli-types", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:commander@9.5.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:@react-native-community/cli", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@react-native/babel-plugin-codegen@0.73.2": [ - { - "source": "npm:@react-native/babel-plugin-codegen@0.73.2", - "target": "npm:@react-native/codegen", - "type": "static" - } - ], - "npm:@react-native/babel-plugin-codegen": [ - { - "source": "npm:@react-native/babel-plugin-codegen", - "target": "npm:@react-native/codegen", - "type": "static" - } - ], - "npm:@react-native/babel-preset@0.73.19": [ - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-numeric-separator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-jsx-self", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-react-jsx-source", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:@react-native/babel-plugin-codegen@0.73.2", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:babel-plugin-transform-flow-enums", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset@0.73.19", - "target": "npm:react-refresh", - "type": "static" - } - ], - "npm:@react-native/babel-preset": [ - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-numeric-separator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-export-default-from", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-jsx-self", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-react-jsx-source", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:@react-native/babel-plugin-codegen", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:babel-plugin-transform-flow-enums", - "type": "static" - }, - { - "source": "npm:@react-native/babel-preset", - "target": "npm:react-refresh", - "type": "static" - } - ], - "npm:@react-native/codegen": [ - { - "source": "npm:@react-native/codegen", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:flow-parser", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:jscodeshift", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:@react-native/codegen", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:@react-native/community-cli-plugin": [ - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native-community/cli-server-api", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native-community/cli-tools", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native/dev-middleware", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:@react-native/metro-babel-transformer", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:metro", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:metro-config", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@react-native/community-cli-plugin", - "target": "npm:readline", - "type": "static" - } - ], - "npm:@react-native/dev-middleware": [ - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:@isaacs/ttlcache", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:@react-native/debugger-frontend", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:chrome-launcher", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:chromium-edge-launcher", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:@react-native/dev-middleware", - "target": "npm:temp-dir", - "type": "static" - } - ], - "npm:@react-native/metro-babel-transformer": [ - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:@react-native/babel-preset@0.73.19", - "type": "static" - }, - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:hermes-parser@0.15.0", - "type": "static" - }, - { - "source": "npm:@react-native/metro-babel-transformer", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:@react-native/virtualized-lists": [ - { - "source": "npm:@react-native/virtualized-lists", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:@react-native/virtualized-lists", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:@react-native/virtualized-lists@0.72.8": [ - { - "source": "npm:@react-native/virtualized-lists@0.72.8", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:@react-native/virtualized-lists@0.72.8", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:@react-navigation/bottom-tabs": [ - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:@react-navigation/bottom-tabs", - "target": "npm:warn-once", - "type": "static" - } - ], - "npm:@react-navigation/core": [ - { - "source": "npm:@react-navigation/core", - "target": "npm:@react-navigation/routers", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:query-string@7.1.3", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:@react-navigation/core", - "target": "npm:use-latest-callback", - "type": "static" - } - ], - "npm:@react-navigation/native-stack": [ - { - "source": "npm:@react-navigation/native-stack", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/native-stack", - "target": "npm:warn-once", - "type": "static" - } - ], - "npm:@react-navigation/native": [ - { - "source": "npm:@react-navigation/native", - "target": "npm:@react-navigation/core", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:@react-navigation/native", - "target": "npm:nanoid", - "type": "static" - } - ], - "npm:@react-navigation/routers": [ - { - "source": "npm:@react-navigation/routers", - "target": "npm:nanoid", - "type": "static" - } - ], - "npm:@react-navigation/stack": [ - { - "source": "npm:@react-navigation/stack", - "target": "npm:@react-navigation/elements", - "type": "static" - }, - { - "source": "npm:@react-navigation/stack", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:@react-navigation/stack", - "target": "npm:warn-once", - "type": "static" - } - ], - "npm:@remix-run/node": [ - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/server-runtime", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/web-fetch", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/web-file", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@remix-run/web-stream", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:@web3-storage/multipart-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:cookie-signature@1.2.1", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@remix-run/node", - "target": "npm:stream-slice", - "type": "static" - } - ], - "npm:@remix-run/server-runtime": [ - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:@remix-run/router", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:@web3-storage/multipart-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:cookie@0.4.2", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:set-cookie-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/server-runtime", - "target": "npm:source-map@0.7.4", - "type": "static" - } - ], - "npm:@remix-run/web-blob": [ - { - "source": "npm:@remix-run/web-blob", - "target": "npm:@remix-run/web-stream", - "type": "static" - }, - { - "source": "npm:@remix-run/web-blob", - "target": "npm:web-encoding", - "type": "static" - } - ], - "npm:@remix-run/web-fetch": [ - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-blob", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-file", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-form-data", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@remix-run/web-stream", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:@web3-storage/multipart-parser", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:data-uri-to-buffer", - "type": "static" - }, - { - "source": "npm:@remix-run/web-fetch", - "target": "npm:mrmime", - "type": "static" - } - ], - "npm:@remix-run/web-file": [ - { - "source": "npm:@remix-run/web-file", - "target": "npm:@remix-run/web-blob", - "type": "static" - } - ], - "npm:@remix-run/web-form-data": [ - { - "source": "npm:@remix-run/web-form-data", - "target": "npm:web-encoding", - "type": "static" - } - ], - "npm:@remix-run/web-stream": [ - { - "source": "npm:@remix-run/web-stream", - "target": "npm:web-streams-polyfill", - "type": "static" - } - ], - "npm:@segment/loosely-validate-event": [ - { - "source": "npm:@segment/loosely-validate-event", - "target": "npm:component-type", - "type": "static" - }, - { - "source": "npm:@segment/loosely-validate-event", - "target": "npm:join-component", - "type": "static" - } - ], - "npm:@sideway/address": [ - { - "source": "npm:@sideway/address", - "target": "npm:@hapi/hoek", - "type": "static" - } - ], - "npm:@sinonjs/commons": [ - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:@sinonjs/fake-timers": [ - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - } - ], - "npm:@tanstack/react-query": [ - { - "source": "npm:@tanstack/react-query", - "target": "npm:@tanstack/query-core", - "type": "static" - }, - { - "source": "npm:@tanstack/react-query", - "target": "npm:use-sync-external-store", - "type": "static" - } - ], - "npm:@testing-library/jest-native": [ - { - "source": "npm:@testing-library/jest-native", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@testing-library/jest-native", - "target": "npm:redent", - "type": "static" - } - ], - "npm:@testing-library/react-native": [ - { - "source": "npm:@testing-library/react-native", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:@testing-library/react-native", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@testing-library/react-native", - "target": "npm:redent", - "type": "static" - } - ], - "npm:@types/babel__core": [ - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:@types/babel__generator": [ - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__template": [ - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__traverse": [ - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/body-parser": [ - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/bonjour": [ - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/connect-history-api-fallback": [ - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/connect": [ - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/eslint-scope": [ - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:@types/eslint": [ - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - } - ], - "npm:@types/express-serve-static-core": [ - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - } - ], - "npm:@types/express": [ - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - } - ], - "npm:@types/glob": [ - { - "source": "npm:@types/glob", - "target": "npm:@types/minimatch", - "type": "static" - }, - { - "source": "npm:@types/glob", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/graceful-fs": [ - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/http-proxy": [ - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/istanbul-lib-report": [ - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - } - ], - "npm:@types/istanbul-reports": [ - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - } - ], - "npm:@types/jest": [ - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:@types/jsdom": [ - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5", - "type": "static" - } - ], - "npm:@types/node-forge": [ - { - "source": "npm:@types/node-forge", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/node": [ - { - "source": "npm:@types/node", - "target": "npm:undici-types", - "type": "static" - } - ], - "npm:@types/react-native": [ - { - "source": "npm:@types/react-native", - "target": "npm:@react-native/virtualized-lists@0.72.8", - "type": "static" - }, - { - "source": "npm:@types/react-native", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react-test-renderer": [ - { - "source": "npm:@types/react-test-renderer", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react": [ - { - "source": "npm:@types/react", - "target": "npm:@types/prop-types", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:@types/scheduler", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - } - ], - "npm:@types/send": [ - { - "source": "npm:@types/send", - "target": "npm:@types/mime@1.3.5", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/serve-index": [ - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - } - ], - "npm:@types/serve-static": [ - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/sockjs": [ - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/ws": [ - { - "source": "npm:@types/ws", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/yargs@15.0.19": [ - { - "source": "npm:@types/yargs@15.0.19", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@types/yargs": [ - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@typescript-eslint/eslint-plugin@5.62.0": [ - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@typescript-eslint/type-utils@5.62.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:natural-compare-lite", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "target": "npm:tsutils", - "type": "static" - } - ], - "npm:@typescript-eslint/eslint-plugin": [ - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/parser@5.62.0": [ - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser@5.62.0", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@typescript-eslint/parser": [ - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager": [ - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys@5.62.0", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager@6.19.1": [ - { - "source": "npm:@typescript-eslint/scope-manager@6.19.1", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager@6.19.1", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/type-utils@5.62.0": [ - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils@5.62.0", - "target": "npm:tsutils", - "type": "static" - } - ], - "npm:@typescript-eslint/type-utils": [ - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree": [ - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys@5.62.0", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:tsutils", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree@6.19.1": [ - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree@6.19.1", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/utils": [ - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@typescript-eslint/utils@6.19.1": [ - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@types/semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@typescript-eslint/scope-manager@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:@typescript-eslint/typescript-estree@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils@6.19.1", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys@5.62.0": [ - { - "source": "npm:@typescript-eslint/visitor-keys@5.62.0", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys@5.62.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys": [ - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types@6.19.1", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@urql/core": [ - { - "source": "npm:@urql/core", - "target": "npm:@graphql-typed-document-node/core", - "type": "static" - }, - { - "source": "npm:@urql/core", - "target": "npm:wonka", - "type": "static" - } - ], - "npm:@urql/core@4.2.3": [ - { - "source": "npm:@urql/core@4.2.3", - "target": "npm:@0no-co/graphql.web", - "type": "static" - }, - { - "source": "npm:@urql/core@4.2.3", - "target": "npm:wonka@6.3.4", - "type": "static" - } - ], - "npm:@urql/exchange-retry": [ - { - "source": "npm:@urql/exchange-retry", - "target": "npm:@urql/core@4.2.3", - "type": "static" - }, - { - "source": "npm:@urql/exchange-retry", - "target": "npm:wonka", - "type": "static" - } - ], - "npm:@webassemblyjs/ast": [ - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-numbers": [ - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-wasm-section": [ - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - } - ], - "npm:@webassemblyjs/ieee754": [ - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - } - ], - "npm:@webassemblyjs/leb128": [ - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-edit": [ - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-gen": [ - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-opt": [ - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-parser": [ - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wast-printer": [ - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@welldone-software/why-did-you-render": [ - { - "source": "npm:@welldone-software/why-did-you-render", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:abort-controller": [ - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - } - ], - "npm:accepts": [ - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - } - ], - "npm:acorn-globals": [ - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - } - ], - "npm:agent-base": [ - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - } - ], - "npm:aggregate-error": [ - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - } - ], - "npm:ajv-formats@2.1.1": [ - { - "source": "npm:ajv-formats@2.1.1", - "target": "npm:ajv@8.12.0", - "type": "static" - } - ], - "npm:ajv-keywords@5.1.0": [ - { - "source": "npm:ajv-keywords@5.1.0", - "target": "npm:fast-deep-equal", - "type": "static" - } - ], - "npm:ajv@8.11.0": [ - { - "source": "npm:ajv@8.11.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.11.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.11.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.11.0", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv": [ - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv@8.12.0": [ - { - "source": "npm:ajv@8.12.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.12.0", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ansi-escapes": [ - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest@0.21.3", - "type": "static" - } - ], - "npm:ansi-escapes@5.0.0": [ - { - "source": "npm:ansi-escapes@5.0.0", - "target": "npm:type-fest@1.4.0", - "type": "static" - } - ], - "npm:ansi-escapes@6.2.0": [ - { - "source": "npm:ansi-escapes@6.2.0", - "target": "npm:type-fest@3.13.1", - "type": "static" - } - ], - "npm:ansi-fragments": [ - { - "source": "npm:ansi-fragments", - "target": "npm:colorette@1.4.0", - "type": "static" - }, - { - "source": "npm:ansi-fragments", - "target": "npm:slice-ansi@2.1.0", - "type": "static" - }, - { - "source": "npm:ansi-fragments", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - } - ], - "npm:ansi-styles@3.2.1": [ - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert@1.9.3", - "type": "static" - } - ], - "npm:ansi-styles": [ - { - "source": "npm:ansi-styles", - "target": "npm:color-convert", - "type": "static" - } - ], - "npm:anymatch": [ - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:argparse@1.0.10": [ - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - } - ], - "npm:array-buffer-byte-length": [ - { - "source": "npm:array-buffer-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:is-array-buffer", - "type": "static" - } - ], - "npm:array-includes": [ - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - } - ], - "npm:array-union@1.0.2": [ - { - "source": "npm:array-union@1.0.2", - "target": "npm:array-uniq", - "type": "static" - } - ], - "npm:array.prototype.findlastindex": [ - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.findlastindex", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:array.prototype.flat": [ - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-shim-unscopables", - "type": "static" - } - ], - "npm:array.prototype.flatmap": [ - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-shim-unscopables", - "type": "static" - } - ], - "npm:array.prototype.tosorted": [ - { - "source": "npm:array.prototype.tosorted", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:arraybuffer.prototype.slice": [ - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-shared-array-buffer", - "type": "static" - } - ], - "npm:assert": [ - { - "source": "npm:assert", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:is-nan", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:object-is", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:assert", - "target": "npm:util", - "type": "static" - } - ], - "npm:ast-types": [ - { - "source": "npm:ast-types", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:asynciterator.prototype": [ - { - "source": "npm:asynciterator.prototype", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:axios": [ - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data", - "type": "static" - } - ], - "npm:babel-jest": [ - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - } - ], - "npm:babel-loader@8.3.0": [ - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:find-cache-dir@3.3.2", - "type": "static" - }, - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:make-dir@3.1.0", - "type": "static" - }, - { - "source": "npm:babel-loader@8.3.0", - "target": "npm:schema-utils@2.7.1", - "type": "static" - } - ], - "npm:babel-loader": [ - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:babel-plugin-istanbul": [ - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument@5.2.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - } - ], - "npm:babel-plugin-jest-hoist": [ - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:babel-plugin-module-resolver": [ - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:find-babel-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:pkg-up", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:reselect", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs2": [ - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs3": [ - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-regenerator": [ - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - } - ], - "npm:babel-plugin-transform-flow-enums": [ - { - "source": "npm:babel-plugin-transform-flow-enums", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - } - ], - "npm:babel-preset-current-node-syntax": [ - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - } - ], - "npm:babel-preset-expo": [ - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@babel/preset-react", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:@react-native/babel-preset", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:babel-plugin-react-native-web", - "type": "static" - }, - { - "source": "npm:babel-preset-expo", - "target": "npm:react-refresh", - "type": "static" - } - ], - "npm:babel-preset-fbjs": [ - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-proposal-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-react-display-name", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:babel-preset-fbjs", - "target": "npm:babel-plugin-syntax-trailing-function-commas", - "type": "static" - } - ], - "npm:babel-preset-jest": [ - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - } - ], - "npm:better-opn": [ - { - "source": "npm:better-opn", - "target": "npm:open", - "type": "static" - } - ], - "npm:bl": [ - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:body-parser": [ - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:bonjour-service": [ - { - "source": "npm:bonjour-service", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:multicast-dns", - "type": "static" - } - ], - "npm:bplist-creator": [ - { - "source": "npm:bplist-creator", - "target": "npm:stream-buffers", - "type": "static" - } - ], - "npm:bplist-parser@0.3.1": [ - { - "source": "npm:bplist-parser@0.3.1", - "target": "npm:big-integer", - "type": "static" - } - ], - "npm:bplist-parser": [ - { - "source": "npm:bplist-parser", - "target": "npm:big-integer", - "type": "static" - } - ], - "npm:brace-expansion@1.1.11": [ - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - } - ], - "npm:brace-expansion": [ - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - } - ], - "npm:braces": [ - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - } - ], - "npm:browserslist": [ - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - } - ], - "npm:bser": [ - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - } - ], - "npm:buffer-alloc": [ - { - "source": "npm:buffer-alloc", - "target": "npm:buffer-alloc-unsafe", - "type": "static" - }, - { - "source": "npm:buffer-alloc", - "target": "npm:buffer-fill", - "type": "static" - } - ], - "npm:buffer": [ - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:cacache": [ - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/move-file", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:infer-owner", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - } - ], - "npm:call-bind": [ - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - } - ], - "npm:caller-callsite": [ - { - "source": "npm:caller-callsite", - "target": "npm:callsites@2.0.0", - "type": "static" - } - ], - "npm:caller-path": [ - { - "source": "npm:caller-path", - "target": "npm:caller-callsite", - "type": "static" - } - ], - "npm:camel-case": [ - { - "source": "npm:camel-case", - "target": "npm:pascal-case", - "type": "static" - }, - { - "source": "npm:camel-case", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:caniuse-api": [ - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - } - ], - "npm:chalk@1.1.3": [ - { - "source": "npm:chalk@1.1.3", - "target": "npm:ansi-styles@2.2.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:has-ansi", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:strip-ansi@3.0.1", - "type": "static" - }, - { - "source": "npm:chalk@1.1.3", - "target": "npm:supports-color@2.0.0", - "type": "static" - } - ], - "npm:chalk@2.4.2": [ - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - } - ], - "npm:chalk@3.0.0": [ - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:chalk": [ - { - "source": "npm:chalk", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:chokidar@3.6.0": [ - { - "source": "npm:chokidar@3.6.0", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar@3.6.0", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:chokidar": [ - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:chrome-launcher": [ - { - "source": "npm:chrome-launcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:chrome-launcher", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chrome-launcher", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:chrome-launcher", - "target": "npm:lighthouse-logger", - "type": "static" - } - ], - "npm:chromium-edge-launcher": [ - { - "source": "npm:chromium-edge-launcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:lighthouse-logger", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:chromium-edge-launcher", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:clean-css": [ - { - "source": "npm:clean-css", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:clean-webpack-plugin": [ - { - "source": "npm:clean-webpack-plugin", - "target": "npm:del", - "type": "static" - } - ], - "npm:cli-cursor@2.1.0": [ - { - "source": "npm:cli-cursor@2.1.0", - "target": "npm:restore-cursor@2.0.0", - "type": "static" - } - ], - "npm:cli-cursor": [ - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - } - ], - "npm:cli-cursor@4.0.0": [ - { - "source": "npm:cli-cursor@4.0.0", - "target": "npm:restore-cursor@4.0.0", - "type": "static" - } - ], - "npm:cli-styles": [ - { - "source": "npm:cli-styles", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:cli-styles", - "target": "npm:figures@1.7.0", - "type": "static" - } - ], - "npm:cli-truncate": [ - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width@5.1.2", - "type": "static" - } - ], - "npm:cliui@6.0.0": [ - { - "source": "npm:cliui@6.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui@6.0.0", - "target": "npm:wrap-ansi@6.2.0", - "type": "static" - } - ], - "npm:cliui": [ - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:clone-deep": [ - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - } - ], - "npm:color-convert@1.9.3": [ - { - "source": "npm:color-convert@1.9.3", - "target": "npm:color-name@1.1.3", - "type": "static" - } - ], - "npm:color-convert": [ - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - } - ], - "npm:color-string": [ - { - "source": "npm:color-string", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - } - ], - "npm:color": [ - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - } - ], - "npm:combined-stream": [ - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - } - ], - "npm:compare-urls": [ - { - "source": "npm:compare-urls", - "target": "npm:normalize-url", - "type": "static" - } - ], - "npm:compressible": [ - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:compression": [ - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - } - ], - "npm:connect": [ - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - } - ], - "npm:content-disposition": [ - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:copy-webpack-plugin": [ - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby@12.2.0", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - } - ], - "npm:core-js-compat": [ - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - } - ], - "npm:cosmiconfig": [ - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh@2.0.0", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:is-directory", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json@4.0.0", - "type": "static" - } - ], - "npm:create-jest": [ - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - } - ], - "npm:cross-env": [ - { - "source": "npm:cross-env", - "target": "npm:cross-spawn", - "type": "static" - } - ], - "npm:cross-fetch": [ - { - "source": "npm:cross-fetch", - "target": "npm:node-fetch", - "type": "static" - } - ], - "npm:cross-spawn@6.0.5": [ - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:nice-try", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@6.0.5", - "target": "npm:which@1.3.1", - "type": "static" - } - ], - "npm:cross-spawn": [ - { - "source": "npm:cross-spawn", - "target": "npm:path-key@3.1.1", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - } - ], - "npm:css-in-js-utils": [ - { - "source": "npm:css-in-js-utils", - "target": "npm:hyphenate-style-name", - "type": "static" - } - ], - "npm:css-loader": [ - { - "source": "npm:css-loader", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver", - "type": "static" - } - ], - "npm:css-minimizer-webpack-plugin": [ - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:cssnano", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:css-select": [ - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - } - ], - "npm:css-select@5.1.0": [ - { - "source": "npm:css-select@5.1.0", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:domutils@3.1.0", - "type": "static" - }, - { - "source": "npm:css-select@5.1.0", - "target": "npm:nth-check", - "type": "static" - } - ], - "npm:css-tree": [ - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:cssnano-preset-default": [ - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - } - ], - "npm:cssnano": [ - { - "source": "npm:cssnano", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:lilconfig", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:csso@4.2.0": [ - { - "source": "npm:csso@4.2.0", - "target": "npm:css-tree", - "type": "static" - } - ], - "npm:cssstyle": [ - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - } - ], - "npm:data-urls": [ - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - } - ], - "npm:debug@2.6.9": [ - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - } - ], - "npm:debug": [ - { - "source": "npm:debug", - "target": "npm:ms@2.1.2", - "type": "static" - } - ], - "npm:debug@3.2.7": [ - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - } - ], - "npm:default-gateway": [ - { - "source": "npm:default-gateway", - "target": "npm:execa@1.0.0", - "type": "static" - }, - { - "source": "npm:default-gateway", - "target": "npm:ip-regex", - "type": "static" - } - ], - "npm:default-gateway@6.0.3": [ - { - "source": "npm:default-gateway@6.0.3", - "target": "npm:execa", - "type": "static" - } - ], - "npm:defaults": [ - { - "source": "npm:defaults", - "target": "npm:clone@1.0.4", - "type": "static" - } - ], - "npm:define-data-property": [ - { - "source": "npm:define-data-property", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:define-properties": [ - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:del": [ - { - "source": "npm:del", - "target": "npm:@types/glob", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:globby@6.1.0", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:is-path-in-cwd", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:p-map@2.1.0", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:del", - "target": "npm:rimraf@2.7.1", - "type": "static" - } - ], - "npm:del@6.1.1": [ - { - "source": "npm:del@6.1.1", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:is-path-cwd", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:del@6.1.1", - "target": "npm:slash", - "type": "static" - } - ], - "npm:deprecated-react-native-prop-types": [ - { - "source": "npm:deprecated-react-native-prop-types", - "target": "npm:@react-native/normalize-colors", - "type": "static" - }, - { - "source": "npm:deprecated-react-native-prop-types", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:deprecated-react-native-prop-types", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:dir-glob": [ - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:dns-packet": [ - { - "source": "npm:dns-packet", - "target": "npm:@leichtgewicht/ip-codec", - "type": "static" - } - ], - "npm:doctrine": [ - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:doctrine@3.0.0": [ - { - "source": "npm:doctrine@3.0.0", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:dom-converter": [ - { - "source": "npm:dom-converter", - "target": "npm:utila", - "type": "static" - } - ], - "npm:dom-serializer": [ - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities@2.2.0", - "type": "static" - } - ], - "npm:dom-serializer@2.0.0": [ - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - }, - { - "source": "npm:dom-serializer@2.0.0", - "target": "npm:entities", - "type": "static" - } - ], - "npm:domexception": [ - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:domhandler": [ - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - } - ], - "npm:domhandler@5.0.3": [ - { - "source": "npm:domhandler@5.0.3", - "target": "npm:domelementtype", - "type": "static" - } - ], - "npm:domutils": [ - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - } - ], - "npm:domutils@3.1.0": [ - { - "source": "npm:domutils@3.1.0", - "target": "npm:dom-serializer@2.0.0", - "type": "static" - }, - { - "source": "npm:domutils@3.1.0", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils@3.1.0", - "target": "npm:domhandler@5.0.3", - "type": "static" - } - ], - "npm:dot-case": [ - { - "source": "npm:dot-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:dot-case", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:end-of-stream": [ - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - } - ], - "npm:enhanced-resolve": [ - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:error-ex": [ - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - } - ], - "npm:error-stack-parser": [ - { - "source": "npm:error-stack-parser", - "target": "npm:stackframe", - "type": "static" - } - ], - "npm:errorhandler": [ - { - "source": "npm:errorhandler", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:errorhandler", - "target": "npm:escape-html", - "type": "static" - } - ], - "npm:es-abstract": [ - { - "source": "npm:es-abstract", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:arraybuffer.prototype.slice", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trim", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:es-iterator-helpers": [ - { - "source": "npm:es-iterator-helpers", - "target": "npm:asynciterator.prototype", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:iterator.prototype", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:safe-array-concat", - "type": "static" - } - ], - "npm:es-set-tostringtag": [ - { - "source": "npm:es-set-tostringtag", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:es-shim-unscopables": [ - { - "source": "npm:es-shim-unscopables", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:es-to-primitive": [ - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:escodegen": [ - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:eslint-config-universe": [ - { - "source": "npm:eslint-config-universe", - "target": "npm:@typescript-eslint/eslint-plugin@5.62.0", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:@typescript-eslint/parser@5.62.0", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-import", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-node", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-prettier", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-react", - "type": "static" - }, - { - "source": "npm:eslint-config-universe", - "target": "npm:eslint-plugin-react-hooks", - "type": "static" - } - ], - "npm:eslint-import-resolver-node": [ - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-import-resolver-node", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:eslint-module-utils": [ - { - "source": "npm:eslint-module-utils", - "target": "npm:debug@3.2.7", - "type": "static" - } - ], - "npm:eslint-plugin-es": [ - { - "source": "npm:eslint-plugin-es", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-es", - "target": "npm:regexpp", - "type": "static" - } - ], - "npm:eslint-plugin-import": [ - { - "source": "npm:eslint-plugin-import", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.findlastindex", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-import-resolver-node", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:eslint-module-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.groupby", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-import", - "target": "npm:tsconfig-paths@3.15.0", - "type": "static" - } - ], - "npm:eslint-plugin-node": [ - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-plugin-es", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-node", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:eslint-plugin-prettier": [ - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:prettier-linter-helpers", - "type": "static" - } - ], - "npm:eslint-plugin-react-native": [ - { - "source": "npm:eslint-plugin-react-native", - "target": "npm:eslint-plugin-react-native-globals", - "type": "static" - } - ], - "npm:eslint-plugin-react": [ - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.tosorted", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:es-iterator-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve@2.0.0-next.5", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - } - ], - "npm:eslint-scope": [ - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse@4.3.0", - "type": "static" - } - ], - "npm:eslint-scope@7.2.2": [ - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:eslint-utils": [ - { - "source": "npm:eslint-utils", - "target": "npm:eslint-visitor-keys@1.3.0", - "type": "static" - } - ], - "npm:eslint": [ - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@ungap/structured-clone", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine@3.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope@7.2.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml@4.1.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - } - ], - "npm:espree": [ - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:esquery": [ - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:esrecurse": [ - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:execa@7.2.0": [ - { - "source": "npm:execa@7.2.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:human-signals@4.3.1", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:is-stream@3.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:npm-run-path@5.2.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:onetime@6.0.0", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@7.2.0", - "target": "npm:strip-final-newline@3.0.0", - "type": "static" - } - ], - "npm:execa@1.0.0": [ - { - "source": "npm:execa@1.0.0", - "target": "npm:cross-spawn@6.0.5", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:get-stream@4.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:is-stream@1.1.0", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@1.0.0", - "target": "npm:strip-eof", - "type": "static" - } - ], - "npm:execa": [ - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:expect": [ - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:expo-app-loading": [ - { - "source": "npm:expo-app-loading", - "target": "npm:expo-splash-screen@0.17.5", - "type": "static" - } - ], - "npm:expo-asset": [ - { - "source": "npm:expo-asset", - "target": "npm:@react-native/assets-registry", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:blueimp-md5", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:expo-constants", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:expo-file-system", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:expo-asset", - "target": "npm:md5-file", - "type": "static" - } - ], - "npm:expo-constants": [ - { - "source": "npm:expo-constants", - "target": "npm:@expo/config", - "type": "static" - } - ], - "npm:expo-crypto": [ - { - "source": "npm:expo-crypto", - "target": "npm:base64-js", - "type": "static" - } - ], - "npm:expo-dev-client": [ - { - "source": "npm:expo-dev-client", - "target": "npm:expo-dev-launcher", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-dev-menu", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-dev-menu-interface", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-manifests", - "type": "static" - }, - { - "source": "npm:expo-dev-client", - "target": "npm:expo-updates-interface", - "type": "static" - } - ], - "npm:expo-dev-launcher": [ - { - "source": "npm:expo-dev-launcher", - "target": "npm:ajv@8.11.0", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:expo-dev-menu@4.5.4", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:expo-manifests", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:expo-dev-launcher", - "target": "npm:semver", - "type": "static" - } - ], - "npm:expo-dev-menu@4.5.4": [ - { - "source": "npm:expo-dev-menu@4.5.4", - "target": "npm:expo-dev-menu-interface", - "type": "static" - }, - { - "source": "npm:expo-dev-menu@4.5.4", - "target": "npm:semver", - "type": "static" - } - ], - "npm:expo-dev-menu": [ - { - "source": "npm:expo-dev-menu", - "target": "npm:expo-dev-menu-interface", - "type": "static" - }, - { - "source": "npm:expo-dev-menu", - "target": "npm:semver", - "type": "static" - } - ], - "npm:expo-device": [ - { - "source": "npm:expo-device", - "target": "npm:ua-parser-js", - "type": "static" - } - ], - "npm:expo-font": [ - { - "source": "npm:expo-font", - "target": "npm:fontfaceobserver", - "type": "static" - } - ], - "npm:expo-linking": [ - { - "source": "npm:expo-linking", - "target": "npm:expo-constants", - "type": "static" - }, - { - "source": "npm:expo-linking", - "target": "npm:invariant", - "type": "static" - } - ], - "npm:expo-local-authentication": [ - { - "source": "npm:expo-local-authentication", - "target": "npm:invariant", - "type": "static" - } - ], - "npm:expo-localization": [ - { - "source": "npm:expo-localization", - "target": "npm:rtl-detect", - "type": "static" - } - ], - "npm:expo-manifests": [ - { - "source": "npm:expo-manifests", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-manifests", - "target": "npm:expo-json-utils", - "type": "static" - } - ], - "npm:expo-modules-autolinking": [ - { - "source": "npm:expo-modules-autolinking", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:expo-modules-autolinking", - "target": "npm:fs-extra", - "type": "static" - } - ], - "npm:expo-modules-core": [ - { - "source": "npm:expo-modules-core", - "target": "npm:invariant", - "type": "static" - } - ], - "npm:expo-notifications": [ - { - "source": "npm:expo-notifications", - "target": "npm:@expo/image-utils", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:@ide/backoff", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:assert", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:badgin", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:expo-application", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:expo-constants", - "type": "static" - }, - { - "source": "npm:expo-notifications", - "target": "npm:fs-extra", - "type": "static" - } - ], - "npm:expo-pwa": [ - { - "source": "npm:expo-pwa", - "target": "npm:@expo/image-utils@0.3.23", - "type": "static" - }, - { - "source": "npm:expo-pwa", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:expo-pwa", - "target": "npm:commander@2.20.0", - "type": "static" - }, - { - "source": "npm:expo-pwa", - "target": "npm:update-check", - "type": "static" - } - ], - "npm:expo-router": [ - { - "source": "npm:expo-router", - "target": "npm:@expo/metro-runtime", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@expo/server", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@radix-ui/react-slot", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@react-navigation/bottom-tabs", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@react-navigation/native", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:@react-navigation/native-stack", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:expo-splash-screen", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:react-helmet-async", - "type": "static" - }, - { - "source": "npm:expo-router", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:expo-splash-screen": [ - { - "source": "npm:expo-splash-screen", - "target": "npm:@expo/prebuild-config", - "type": "static" - } - ], - "npm:expo-splash-screen@0.17.5": [ - { - "source": "npm:expo-splash-screen@0.17.5", - "target": "npm:@expo/configure-splash-screen", - "type": "static" - }, - { - "source": "npm:expo-splash-screen@0.17.5", - "target": "npm:@expo/prebuild-config@5.0.7", - "type": "static" - } - ], - "npm:expo-system-ui": [ - { - "source": "npm:expo-system-ui", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:expo-system-ui", - "target": "npm:debug", - "type": "static" - } - ], - "npm:expo-updates": [ - { - "source": "npm:expo-updates", - "target": "npm:@expo/code-signing-certificates", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:arg@4.1.0", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-eas-client", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-manifests", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-structured-headers", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:expo-updates-interface", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:fbemitter", - "type": "static" - }, - { - "source": "npm:expo-updates", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:expo-web-browser": [ - { - "source": "npm:expo-web-browser", - "target": "npm:compare-urls", - "type": "static" - }, - { - "source": "npm:expo-web-browser", - "target": "npm:url", - "type": "static" - } - ], - "npm:expo": [ - { - "source": "npm:expo", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/cli@0.17.2", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/config-plugins", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/metro-config", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:@expo/vector-icons", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:babel-preset-expo", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-asset", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-file-system", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-font", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-keep-awake", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-modules-autolinking", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:expo-modules-core", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:fbemitter", - "type": "static" - }, - { - "source": "npm:expo", - "target": "npm:whatwg-url-without-unicode", - "type": "static" - } - ], - "npm:express": [ - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - } - ], - "npm:fast-glob": [ - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:fast-xml-parser": [ - { - "source": "npm:fast-xml-parser", - "target": "npm:strnum", - "type": "static" - } - ], - "npm:fastq": [ - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - } - ], - "npm:faye-websocket": [ - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:fb-watchman": [ - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - } - ], - "npm:fbemitter": [ - { - "source": "npm:fbemitter", - "target": "npm:fbjs", - "type": "static" - } - ], - "npm:fbjs": [ - { - "source": "npm:fbjs", - "target": "npm:cross-fetch", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:fbjs-css-vars", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:promise@7.3.1", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:setimmediate", - "type": "static" - }, - { - "source": "npm:fbjs", - "target": "npm:ua-parser-js@1.0.37", - "type": "static" - } - ], - "npm:figures@1.7.0": [ - { - "source": "npm:figures@1.7.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:figures@1.7.0", - "target": "npm:object-assign", - "type": "static" - } - ], - "npm:figures@2.0.0": [ - { - "source": "npm:figures@2.0.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - } - ], - "npm:file-entry-cache": [ - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - } - ], - "npm:fill-range": [ - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - } - ], - "npm:finalhandler": [ - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished@2.3.0", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:finalhandler@1.2.0": [ - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:find-babel-config": [ - { - "source": "npm:find-babel-config", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:find-babel-config", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:find-cache-dir@2.1.0": [ - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@2.1.0", - "target": "npm:pkg-dir@3.0.0", - "type": "static" - } - ], - "npm:find-cache-dir@3.3.2": [ - { - "source": "npm:find-cache-dir@3.3.2", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir@3.3.2", - "target": "npm:make-dir@3.1.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir@3.3.2", - "target": "npm:pkg-dir", - "type": "static" - } - ], - "npm:find-cache-dir": [ - { - "source": "npm:find-cache-dir", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir@7.0.0", - "type": "static" - } - ], - "npm:find-up@3.0.0": [ - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - } - ], - "npm:find-up@4.1.0": [ - { - "source": "npm:find-up@4.1.0", - "target": "npm:locate-path@5.0.0", - "type": "static" - }, - { - "source": "npm:find-up@4.1.0", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:find-up": [ - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:find-up@6.3.0": [ - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.2.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - } - ], - "npm:find-yarn-workspace-root": [ - { - "source": "npm:find-yarn-workspace-root", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:flat-cache": [ - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:for-each": [ - { - "source": "npm:for-each", - "target": "npm:is-callable", - "type": "static" - } - ], - "npm:foreground-child": [ - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.1.0", - "type": "static" - } - ], - "npm:form-data@3.0.1": [ - { - "source": "npm:form-data@3.0.1", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@3.0.1", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@3.0.1", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:form-data": [ - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:framer-motion@3.10.6": [ - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:framesync", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:popmotion@9.3.1", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:style-value-types", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:tslib@1.14.1", - "type": "static" - }, - { - "source": "npm:framer-motion@3.10.6", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - } - ], - "npm:framer-motion": [ - { - "source": "npm:framer-motion", - "target": "npm:@motionone/dom", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:framesync@6.0.1", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:popmotion", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:style-value-types@5.0.0", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:framer-motion", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - } - ], - "npm:framesync@6.0.1": [ - { - "source": "npm:framesync@6.0.1", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:fs-extra@9.0.0": [ - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.0.0", - "target": "npm:universalify@1.0.0", - "type": "static" - } - ], - "npm:fs-extra@11.2.0": [ - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@11.2.0", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-extra@8.1.0": [ - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:universalify@0.1.2", - "type": "static" - } - ], - "npm:fs-extra": [ - { - "source": "npm:fs-extra", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-minipass": [ - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:function.prototype.name": [ - { - "source": "npm:function.prototype.name", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:functions-have-names", - "type": "static" - } - ], - "npm:get-intrinsic": [ - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:get-stream@4.1.0": [ - { - "source": "npm:get-stream@4.1.0", - "target": "npm:pump", - "type": "static" - } - ], - "npm:get-symbol-description": [ - { - "source": "npm:get-symbol-description", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:glob-parent": [ - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:glob-parent@6.0.2": [ - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:glob@7.1.6": [ - { - "source": "npm:glob@7.1.6", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@7.1.6", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob@10.3.10": [ - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch@9.0.3", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass@7.0.4", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:glob@6.0.4": [ - { - "source": "npm:glob@6.0.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob": [ - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob@8.1.0": [ - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - } - ], - "npm:globals": [ - { - "source": "npm:globals", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:globalthis": [ - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:globby": [ - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - } - ], - "npm:globby@12.2.0": [ - { - "source": "npm:globby@12.2.0", - "target": "npm:array-union@3.0.1", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:slash@4.0.0", - "type": "static" - } - ], - "npm:globby@6.1.0": [ - { - "source": "npm:globby@6.1.0", - "target": "npm:array-union@1.0.2", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:globby@6.1.0", - "target": "npm:pinkie-promise", - "type": "static" - } - ], - "npm:gopd": [ - { - "source": "npm:gopd", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:graphql-tag": [ - { - "source": "npm:graphql-tag", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:has-ansi": [ - { - "source": "npm:has-ansi", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - } - ], - "npm:has-property-descriptors": [ - { - "source": "npm:has-property-descriptors", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:has-tostringtag": [ - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:hasown": [ - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:hermes-parser@0.15.0": [ - { - "source": "npm:hermes-parser@0.15.0", - "target": "npm:hermes-estree@0.15.0", - "type": "static" - } - ], - "npm:hermes-parser": [ - { - "source": "npm:hermes-parser", - "target": "npm:hermes-estree", - "type": "static" - } - ], - "npm:hermes-profile-transformer": [ - { - "source": "npm:hermes-profile-transformer", - "target": "npm:source-map@0.7.4", - "type": "static" - } - ], - "npm:hoist-non-react-statics": [ - { - "source": "npm:hoist-non-react-statics", - "target": "npm:react-is", - "type": "static" - } - ], - "npm:hosted-git-info": [ - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:hpack.js": [ - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:html-encoding-sniffer": [ - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - } - ], - "npm:html-minifier-terser": [ - { - "source": "npm:html-minifier-terser", - "target": "npm:camel-case", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:clean-css", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:commander@8.3.0", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:param-case", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:relateurl", - "type": "static" - }, - { - "source": "npm:html-minifier-terser", - "target": "npm:terser", - "type": "static" - } - ], - "npm:html-parse-stringify": [ - { - "source": "npm:html-parse-stringify", - "target": "npm:void-elements", - "type": "static" - } - ], - "npm:html-webpack-plugin": [ - { - "source": "npm:html-webpack-plugin", - "target": "npm:@types/html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:html-minifier-terser", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:pretty-error", - "type": "static" - }, - { - "source": "npm:html-webpack-plugin", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:htmlparser2": [ - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities@2.2.0", - "type": "static" - } - ], - "npm:http-errors": [ - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - } - ], - "npm:http-errors@1.6.3": [ - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.5.0", - "type": "static" - } - ], - "npm:http-proxy-agent": [ - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:http-proxy-middleware": [ - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj@3.0.0", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:http-proxy": [ - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3@4.0.7", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:https-proxy-agent": [ - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:i18next": [ - { - "source": "npm:i18next", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:iconv-lite@0.4.24": [ - { - "source": "npm:iconv-lite@0.4.24", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:iconv-lite": [ - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:image-size": [ - { - "source": "npm:image-size", - "target": "npm:queue", - "type": "static" - } - ], - "npm:import-fresh@2.0.0": [ - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:caller-path", - "type": "static" - }, - { - "source": "npm:import-fresh@2.0.0", - "target": "npm:resolve-from@3.0.0", - "type": "static" - } - ], - "npm:import-fresh": [ - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - } - ], - "npm:import-local": [ - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - } - ], - "npm:inflight": [ - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:inline-style-prefixer": [ - { - "source": "npm:inline-style-prefixer", - "target": "npm:css-in-js-utils", - "type": "static" - }, - { - "source": "npm:inline-style-prefixer", - "target": "npm:fast-loops", - "type": "static" - } - ], - "npm:internal-ip": [ - { - "source": "npm:internal-ip", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:internal-ip", - "target": "npm:ipaddr.js", - "type": "static" - } - ], - "npm:internal-slot": [ - { - "source": "npm:internal-slot", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:invariant": [ - { - "source": "npm:invariant", - "target": "npm:loose-envify", - "type": "static" - } - ], - "npm:is-arguments": [ - { - "source": "npm:is-arguments", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-arguments", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-array-buffer": [ - { - "source": "npm:is-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:is-async-function": [ - { - "source": "npm:is-async-function", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-bigint": [ - { - "source": "npm:is-bigint", - "target": "npm:has-bigints", - "type": "static" - } - ], - "npm:is-binary-path": [ - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - } - ], - "npm:is-boolean-object": [ - { - "source": "npm:is-boolean-object", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-core-module": [ - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:is-date-object": [ - { - "source": "npm:is-date-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-finalizationregistry": [ - { - "source": "npm:is-finalizationregistry", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:is-generator-function": [ - { - "source": "npm:is-generator-function", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-glob@2.0.1": [ - { - "source": "npm:is-glob@2.0.1", - "target": "npm:is-extglob@1.0.0", - "type": "static" - } - ], - "npm:is-glob": [ - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - } - ], - "npm:is-invalid-path": [ - { - "source": "npm:is-invalid-path", - "target": "npm:is-glob@2.0.1", - "type": "static" - } - ], - "npm:is-nan": [ - { - "source": "npm:is-nan", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-nan", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:is-number-object": [ - { - "source": "npm:is-number-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-path-in-cwd": [ - { - "source": "npm:is-path-in-cwd", - "target": "npm:is-path-inside@2.1.0", - "type": "static" - } - ], - "npm:is-path-inside@2.1.0": [ - { - "source": "npm:is-path-inside@2.1.0", - "target": "npm:path-is-inside", - "type": "static" - } - ], - "npm:is-plain-object": [ - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:is-regex": [ - { - "source": "npm:is-regex", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-shared-array-buffer": [ - { - "source": "npm:is-shared-array-buffer", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:is-string": [ - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-symbol": [ - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:is-typed-array": [ - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:is-valid-path": [ - { - "source": "npm:is-valid-path", - "target": "npm:is-invalid-path", - "type": "static" - } - ], - "npm:is-weakref": [ - { - "source": "npm:is-weakref", - "target": "npm:call-bind", - "type": "static" - } - ], - "npm:is-weakset": [ - { - "source": "npm:is-weakset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-weakset", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:is-wsl": [ - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - } - ], - "npm:istanbul-lib-instrument@5.2.1": [ - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:istanbul-lib-instrument": [ - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - } - ], - "npm:istanbul-lib-report": [ - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:istanbul-lib-source-maps": [ - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:istanbul-reports": [ - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - } - ], - "npm:iterator.prototype": [ - { - "source": "npm:iterator.prototype", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:reflect.getprototypeof", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:set-function-name", - "type": "static" - } - ], - "npm:jackspeak": [ - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - } - ], - "npm:jest-changed-files": [ - { - "source": "npm:jest-changed-files", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:jest-circus": [ - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:jest-cli": [ - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:jest-config": [ - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:jest-diff": [ - { - "source": "npm:jest-diff", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-docblock": [ - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline", - "type": "static" - } - ], - "npm:jest-each": [ - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-environment-jsdom": [ - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - } - ], - "npm:jest-environment-node": [ - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-expo": [ - { - "source": "npm:jest-expo", - "target": "npm:@expo/config", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:@expo/json-file", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:@jest/create-cache-key-function", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:jest-watch-select-projects", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:jest-watch-typeahead", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:react-test-renderer", - "type": "static" - }, - { - "source": "npm:jest-expo", - "target": "npm:stacktrace-js", - "type": "static" - } - ], - "npm:jest-haste-map": [ - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:jest-leak-detector": [ - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-matcher-utils": [ - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-message-util": [ - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:jest-mock": [ - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-resolve-dependencies": [ - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:jest-resolve": [ - { - "source": "npm:jest-resolve", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - } - ], - "npm:jest-runner": [ - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - } - ], - "npm:jest-runtime": [ - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom@4.0.0", - "type": "static" - } - ], - "npm:jest-snapshot": [ - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver", - "type": "static" - } - ], - "npm:jest-util": [ - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:jest-validate": [ - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.3.0", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-watch-select-projects": [ - { - "source": "npm:jest-watch-select-projects", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watch-select-projects", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:jest-watch-select-projects", - "target": "npm:prompts", - "type": "static" - } - ], - "npm:jest-watch-typeahead": [ - { - "source": "npm:jest-watch-typeahead", - "target": "npm:ansi-escapes@6.2.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:string-length@5.0.1", - "type": "static" - }, - { - "source": "npm:jest-watch-typeahead", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:jest-watcher": [ - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - } - ], - "npm:jest-worker@27.5.1": [ - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color@8.1.1", - "type": "static" - } - ], - "npm:jest-worker": [ - { - "source": "npm:jest-worker", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color@8.1.1", - "type": "static" - } - ], - "npm:jest": [ - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - } - ], - "npm:joi": [ - { - "source": "npm:joi", - "target": "npm:@hapi/hoek", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@hapi/topo", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@sideway/address", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@sideway/formula", - "type": "static" - }, - { - "source": "npm:joi", - "target": "npm:@sideway/pinpoint", - "type": "static" - } - ], - "npm:js-yaml": [ - { - "source": "npm:js-yaml", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:js-yaml@4.1.0": [ - { - "source": "npm:js-yaml@4.1.0", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:jscodeshift": [ - { - "source": "npm:jscodeshift", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-proposal-class-properties", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-proposal-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-proposal-optional-chaining", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/preset-flow", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:@babel/register", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:babel-core", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:flow-parser@0.227.0", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:node-dir", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:recast", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:temp", - "type": "static" - }, - { - "source": "npm:jscodeshift", - "target": "npm:write-file-atomic", - "type": "static" - } - ], - "npm:jsdom": [ - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws@8.16.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:json-schema-deref-sync": [ - { - "source": "npm:json-schema-deref-sync", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:dag-map", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:is-valid-path", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:md5@2.2.1", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:memory-cache", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:traverse", - "type": "static" - }, - { - "source": "npm:json-schema-deref-sync", - "target": "npm:valid-url", - "type": "static" - } - ], - "npm:json5@1.0.2": [ - { - "source": "npm:json5@1.0.2", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:jsonfile@4.0.0": [ - { - "source": "npm:jsonfile@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:jsonfile": [ - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:jsx-ast-utils": [ - { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.values", - "type": "static" - } - ], - "npm:keyv": [ - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - } - ], - "npm:klaw-sync": [ - { - "source": "npm:klaw-sync", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:launch-editor": [ - { - "source": "npm:launch-editor", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:shell-quote", - "type": "static" - } - ], - "npm:levn": [ - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:lighthouse-logger": [ - { - "source": "npm:lighthouse-logger", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:lighthouse-logger", - "target": "npm:marky", - "type": "static" - } - ], - "npm:lightningcss": [ - { - "source": "npm:lightningcss", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-arm64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-x64@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm-gnueabihf@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-gnu@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-musl@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-gnu@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-musl@1.19.0", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-win32-x64-msvc@1.19.0", - "type": "static" - } - ], - "npm:lint-staged": [ - { - "source": "npm:lint-staged", - "target": "npm:chalk@5.3.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:commander@11.0.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:execa@7.2.0", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:lilconfig", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:pidtree", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:string-argv", - "type": "static" - }, - { - "source": "npm:lint-staged", - "target": "npm:yaml@2.3.1", - "type": "static" - } - ], - "npm:listr2": [ - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - } - ], - "npm:loader-utils": [ - { - "source": "npm:loader-utils", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils", - "target": "npm:json5", - "type": "static" - } - ], - "npm:locate-path@3.0.0": [ - { - "source": "npm:locate-path@3.0.0", - "target": "npm:p-locate@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:path-exists@3.0.0", - "type": "static" - } - ], - "npm:locate-path@5.0.0": [ - { - "source": "npm:locate-path@5.0.0", - "target": "npm:p-locate@4.1.0", - "type": "static" - } - ], - "npm:locate-path": [ - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - } - ], - "npm:locate-path@7.2.0": [ - { - "source": "npm:locate-path@7.2.0", - "target": "npm:p-locate@6.0.0", - "type": "static" - } - ], - "npm:log-symbols@2.2.0": [ - { - "source": "npm:log-symbols@2.2.0", - "target": "npm:chalk@2.4.2", - "type": "static" - } - ], - "npm:log-symbols": [ - { - "source": "npm:log-symbols", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - } - ], - "npm:log-update": [ - { - "source": "npm:log-update", - "target": "npm:ansi-escapes@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - } - ], - "npm:logkitty": [ - { - "source": "npm:logkitty", - "target": "npm:ansi-fragments", - "type": "static" - }, - { - "source": "npm:logkitty", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:logkitty", - "target": "npm:yargs@15.4.1", - "type": "static" - } - ], - "npm:loose-envify": [ - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - } - ], - "npm:lower-case": [ - { - "source": "npm:lower-case", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:lru-cache@5.1.1": [ - { - "source": "npm:lru-cache@5.1.1", - "target": "npm:yallist@3.1.1", - "type": "static" - } - ], - "npm:lru-cache": [ - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:make-dir": [ - { - "source": "npm:make-dir", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver@5.7.2", - "type": "static" - } - ], - "npm:make-dir@3.1.0": [ - { - "source": "npm:make-dir@3.1.0", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:make-dir@4.0.0": [ - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:makeerror": [ - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - } - ], - "npm:md5-file": [ - { - "source": "npm:md5-file", - "target": "npm:buffer-alloc", - "type": "static" - } - ], - "npm:md5": [ - { - "source": "npm:md5", - "target": "npm:charenc", - "type": "static" - }, - { - "source": "npm:md5", - "target": "npm:crypt", - "type": "static" - }, - { - "source": "npm:md5", - "target": "npm:is-buffer", - "type": "static" - } - ], - "npm:md5@2.2.1": [ - { - "source": "npm:md5@2.2.1", - "target": "npm:charenc", - "type": "static" - }, - { - "source": "npm:md5@2.2.1", - "target": "npm:crypt", - "type": "static" - }, - { - "source": "npm:md5@2.2.1", - "target": "npm:is-buffer", - "type": "static" - } - ], - "npm:memfs": [ - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - } - ], - "npm:merge-options": [ - { - "source": "npm:merge-options", - "target": "npm:is-plain-obj", - "type": "static" - } - ], - "npm:metro-babel-transformer": [ - { - "source": "npm:metro-babel-transformer", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro-babel-transformer", - "target": "npm:hermes-parser", - "type": "static" - }, - { - "source": "npm:metro-babel-transformer", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:metro-cache": [ - { - "source": "npm:metro-cache", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro-cache", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:metro-config": [ - { - "source": "npm:metro-config", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro-config", - "target": "npm:metro-runtime", - "type": "static" - } - ], - "npm:metro-core": [ - { - "source": "npm:metro-core", - "target": "npm:lodash.throttle", - "type": "static" - }, - { - "source": "npm:metro-core", - "target": "npm:metro-resolver@0.80.5", - "type": "static" - } - ], - "npm:metro-file-map": [ - { - "source": "npm:metro-file-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:node-abort-controller", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:metro-file-map", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:metro-minify-terser": [ - { - "source": "npm:metro-minify-terser", - "target": "npm:terser", - "type": "static" - } - ], - "npm:metro-runtime": [ - { - "source": "npm:metro-runtime", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:metro-source-map": [ - { - "source": "npm:metro-source-map", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:metro-symbolicate", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:ob1", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro-source-map", - "target": "npm:vlq", - "type": "static" - } - ], - "npm:metro-symbolicate": [ - { - "source": "npm:metro-symbolicate", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:through2", - "type": "static" - }, - { - "source": "npm:metro-symbolicate", - "target": "npm:vlq", - "type": "static" - } - ], - "npm:metro-transform-plugins": [ - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro-transform-plugins", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:metro-transform-worker": [ - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-babel-transformer", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-cache-key", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-minify-terser", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:metro-transform-plugins", - "type": "static" - }, - { - "source": "npm:metro-transform-worker", - "target": "npm:nullthrows", - "type": "static" - } - ], - "npm:metro": [ - { - "source": "npm:metro", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:ci-info@2.0.0", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:denodeify", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:hermes-parser", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:jsc-safe-url", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:lodash.throttle", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-babel-transformer", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-cache", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-cache-key", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-config", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-core", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-file-map", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-resolver@0.80.5", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-runtime", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-symbolicate", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-transform-plugins", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:metro-transform-worker", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:serialize-error", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:source-map@0.5.7", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:throat", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:metro", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:micromatch": [ - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:mime-types": [ - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:mini-css-extract-plugin": [ - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:minimatch": [ - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - } - ], - "npm:minimatch@9.0.3": [ - { - "source": "npm:minimatch@9.0.3", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimatch@5.1.6": [ - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minipass-collect": [ - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-flush": [ - { - "source": "npm:minipass-flush", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-pipeline": [ - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass": [ - { - "source": "npm:minipass", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:minizlib": [ - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:miragejs": [ - { - "source": "npm:miragejs", - "target": "npm:@miragejs/pretender-node-polyfill", - "type": "static" - }, - { - "source": "npm:miragejs", - "target": "npm:inflected", - "type": "static" - }, - { - "source": "npm:miragejs", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:miragejs", - "target": "npm:pretender", - "type": "static" - } - ], - "npm:mkdirp": [ - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:moti": [ - { - "source": "npm:moti", - "target": "npm:framer-motion", - "type": "static" - } - ], - "npm:multicast-dns": [ - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - } - ], - "npm:mv": [ - { - "source": "npm:mv", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:ncp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:rimraf@2.4.5", - "type": "static" - } - ], - "npm:mz": [ - { - "source": "npm:mz", - "target": "npm:any-promise", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:mz", - "target": "npm:thenify-all", - "type": "static" - } - ], - "npm:no-case": [ - { - "source": "npm:no-case", - "target": "npm:lower-case", - "type": "static" - }, - { - "source": "npm:no-case", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:node-dir": [ - { - "source": "npm:node-dir", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:node-fetch": [ - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - } - ], - "npm:node-html-parser": [ - { - "source": "npm:node-html-parser", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:node-html-parser", - "target": "npm:he", - "type": "static" - } - ], - "npm:normalize-url": [ - { - "source": "npm:normalize-url", - "target": "npm:prepend-http", - "type": "static" - }, - { - "source": "npm:normalize-url", - "target": "npm:query-string@5.1.1", - "type": "static" - }, - { - "source": "npm:normalize-url", - "target": "npm:sort-keys", - "type": "static" - } - ], - "npm:npm-package-arg": [ - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:osenv", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:npm-run-path@2.0.2": [ - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key", - "type": "static" - } - ], - "npm:npm-run-path": [ - { - "source": "npm:npm-run-path", - "target": "npm:path-key@3.1.1", - "type": "static" - } - ], - "npm:npm-run-path@5.2.0": [ - { - "source": "npm:npm-run-path@5.2.0", - "target": "npm:path-key@4.0.0", - "type": "static" - } - ], - "npm:nth-check": [ - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - } - ], - "npm:object-is": [ - { - "source": "npm:object-is", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object-is", - "target": "npm:define-properties", - "type": "static" - } - ], - "npm:object.assign": [ - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:object.entries": [ - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.fromentries": [ - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.groupby": [ - { - "source": "npm:object.groupby", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.groupby", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:object.hasown": [ - { - "source": "npm:object.hasown", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.hasown", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:object.values": [ - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:on-finished": [ - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:on-finished@2.3.0": [ - { - "source": "npm:on-finished@2.3.0", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:once": [ - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:onetime@2.0.1": [ - { - "source": "npm:onetime@2.0.1", - "target": "npm:mimic-fn@1.2.0", - "type": "static" - } - ], - "npm:onetime": [ - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - } - ], - "npm:onetime@6.0.0": [ - { - "source": "npm:onetime@6.0.0", - "target": "npm:mimic-fn@4.0.0", - "type": "static" - } - ], - "npm:open@6.4.0": [ - { - "source": "npm:open@6.4.0", - "target": "npm:is-wsl@1.1.0", - "type": "static" - } - ], - "npm:open@7.4.2": [ - { - "source": "npm:open@7.4.2", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open@7.4.2", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:open": [ - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:optionator": [ - { - "source": "npm:optionator", - "target": "npm:@aashutoshrathi/word-wrap", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:ora": [ - { - "source": "npm:ora", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor@2.1.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols@2.2.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:ora@5.4.1": [ - { - "source": "npm:ora@5.4.1", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.4.1", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:osenv": [ - { - "source": "npm:osenv", - "target": "npm:os-homedir", - "type": "static" - }, - { - "source": "npm:osenv", - "target": "npm:os-tmpdir", - "type": "static" - } - ], - "npm:p-limit@2.3.0": [ - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - } - ], - "npm:p-limit": [ - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - } - ], - "npm:p-limit@4.0.0": [ - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - } - ], - "npm:p-locate@3.0.0": [ - { - "source": "npm:p-locate@3.0.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - } - ], - "npm:p-locate@4.1.0": [ - { - "source": "npm:p-locate@4.1.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - } - ], - "npm:p-locate": [ - { - "source": "npm:p-locate", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:p-locate@6.0.0": [ - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - } - ], - "npm:p-map": [ - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - } - ], - "npm:p-retry": [ - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry", - "type": "static" - } - ], - "npm:param-case": [ - { - "source": "npm:param-case", - "target": "npm:dot-case", - "type": "static" - }, - { - "source": "npm:param-case", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:parent-module": [ - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - } - ], - "npm:parse-json@4.0.0": [ - { - "source": "npm:parse-json@4.0.0", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json@4.0.0", - "target": "npm:json-parse-better-errors", - "type": "static" - } - ], - "npm:parse-json": [ - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns", - "type": "static" - } - ], - "npm:parse-png": [ - { - "source": "npm:parse-png", - "target": "npm:pngjs", - "type": "static" - } - ], - "npm:parse5": [ - { - "source": "npm:parse5", - "target": "npm:entities", - "type": "static" - } - ], - "npm:pascal-case": [ - { - "source": "npm:pascal-case", - "target": "npm:no-case", - "type": "static" - }, - { - "source": "npm:pascal-case", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:pass-stream": [ - { - "source": "npm:pass-stream", - "target": "npm:readable-stream@1.0.2", - "type": "static" - } - ], - "npm:password-prompt": [ - { - "source": "npm:password-prompt", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:password-prompt", - "target": "npm:cross-spawn", - "type": "static" - } - ], - "npm:patch-package": [ - { - "source": "npm:patch-package", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:find-yarn-workspace-root", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:klaw-sync", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:open@7.4.2", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:rimraf@2.7.1", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:slash@2.0.0", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:patch-package", - "target": "npm:yaml@2.3.4", - "type": "static" - } - ], - "npm:path-scurry": [ - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.2.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass@7.0.4", - "type": "static" - } - ], - "npm:pinkie-promise": [ - { - "source": "npm:pinkie-promise", - "target": "npm:pinkie", - "type": "static" - } - ], - "npm:pkg-dir@3.0.0": [ - { - "source": "npm:pkg-dir@3.0.0", - "target": "npm:find-up@3.0.0", - "type": "static" - } - ], - "npm:pkg-dir": [ - { - "source": "npm:pkg-dir", - "target": "npm:find-up@4.1.0", - "type": "static" - } - ], - "npm:pkg-dir@7.0.0": [ - { - "source": "npm:pkg-dir@7.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - } - ], - "npm:pkg-up": [ - { - "source": "npm:pkg-up", - "target": "npm:find-up@3.0.0", - "type": "static" - } - ], - "npm:plist": [ - { - "source": "npm:plist", - "target": "npm:@xmldom/xmldom@0.8.10", - "type": "static" - }, - { - "source": "npm:plist", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:plist", - "target": "npm:xmlbuilder@15.1.1", - "type": "static" - } - ], - "npm:popmotion": [ - { - "source": "npm:popmotion", - "target": "npm:framesync@6.0.1", - "type": "static" - }, - { - "source": "npm:popmotion", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:popmotion", - "target": "npm:style-value-types@5.0.0", - "type": "static" - }, - { - "source": "npm:popmotion", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:popmotion@9.3.1": [ - { - "source": "npm:popmotion@9.3.1", - "target": "npm:framesync", - "type": "static" - }, - { - "source": "npm:popmotion@9.3.1", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:popmotion@9.3.1", - "target": "npm:style-value-types", - "type": "static" - }, - { - "source": "npm:popmotion@9.3.1", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:postcss-calc": [ - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-colormin": [ - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-convert-values": [ - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-merge-longhand": [ - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - } - ], - "npm:postcss-merge-rules": [ - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-minify-font-values": [ - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-gradients": [ - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-params": [ - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-selectors": [ - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-local-by-default": [ - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-modules-scope": [ - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-values": [ - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils", - "type": "static" - } - ], - "npm:postcss-normalize-display-values": [ - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-positions": [ - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-repeat-style": [ - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-string": [ - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-timing-functions": [ - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-unicode": [ - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-url": [ - { - "source": "npm:postcss-normalize-url", - "target": "npm:normalize-url@6.1.0", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-whitespace": [ - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-ordered-values": [ - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-reduce-initial": [ - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - } - ], - "npm:postcss-reduce-transforms": [ - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-selector-parser": [ - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:postcss-svgo": [ - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo@2.8.0", - "type": "static" - } - ], - "npm:postcss-unique-selectors": [ - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss": [ - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:pretender": [ - { - "source": "npm:pretender", - "target": "npm:fake-xml-http-request", - "type": "static" - }, - { - "source": "npm:pretender", - "target": "npm:route-recognizer", - "type": "static" - } - ], - "npm:prettier-linter-helpers": [ - { - "source": "npm:prettier-linter-helpers", - "target": "npm:fast-diff", - "type": "static" - } - ], - "npm:pretty-error": [ - { - "source": "npm:pretty-error", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:pretty-error", - "target": "npm:renderkid", - "type": "static" - } - ], - "npm:pretty-format@26.6.2": [ - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:@jest/types@26.6.2", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:pretty-format@26.6.2", - "target": "npm:react-is@17.0.2", - "type": "static" - } - ], - "npm:pretty-format": [ - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.2.0", - "type": "static" - } - ], - "npm:pretty-quick": [ - { - "source": "npm:pretty-quick", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:mri", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:picomatch@3.0.1", - "type": "static" - }, - { - "source": "npm:pretty-quick", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:promise@7.3.1": [ - { - "source": "npm:promise@7.3.1", - "target": "npm:asap", - "type": "static" - } - ], - "npm:promise": [ - { - "source": "npm:promise", - "target": "npm:asap", - "type": "static" - } - ], - "npm:prompt-skeleton": [ - { - "source": "npm:prompt-skeleton", - "target": "npm:ansi-escapes@1.4.0", - "type": "static" - }, - { - "source": "npm:prompt-skeleton", - "target": "npm:pass-stream", - "type": "static" - } - ], - "npm:prompt-sync": [ - { - "source": "npm:prompt-sync", - "target": "npm:strip-ansi@5.2.0", - "type": "static" - } - ], - "npm:prompts": [ - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - } - ], - "npm:prop-types": [ - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is", - "type": "static" - } - ], - "npm:proxy-addr": [ - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - } - ], - "npm:pump": [ - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - } - ], - "npm:qs": [ - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:qs@6.11.2": [ - { - "source": "npm:qs@6.11.2", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:query-string": [ - { - "source": "npm:query-string", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:filter-obj", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:split-on-first", - "type": "static" - }, - { - "source": "npm:query-string", - "target": "npm:strict-uri-encode", - "type": "static" - } - ], - "npm:query-string@5.1.1": [ - { - "source": "npm:query-string@5.1.1", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string@5.1.1", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:query-string@5.1.1", - "target": "npm:strict-uri-encode@1.1.0", - "type": "static" - } - ], - "npm:query-string@7.1.3": [ - { - "source": "npm:query-string@7.1.3", - "target": "npm:decode-uri-component", - "type": "static" - }, - { - "source": "npm:query-string@7.1.3", - "target": "npm:filter-obj", - "type": "static" - }, - { - "source": "npm:query-string@7.1.3", - "target": "npm:split-on-first", - "type": "static" - }, - { - "source": "npm:query-string@7.1.3", - "target": "npm:strict-uri-encode", - "type": "static" - } - ], - "npm:queue": [ - { - "source": "npm:queue", - "target": "npm:inherits", - "type": "static" - } - ], - "npm:randombytes": [ - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:raw-body": [ - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite@0.4.24", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:rc": [ - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - } - ], - "npm:react-devtools-core": [ - { - "source": "npm:react-devtools-core", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:react-devtools-core", - "target": "npm:ws", - "type": "static" - } - ], - "npm:react-dom": [ - { - "source": "npm:react-dom", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:scheduler", - "type": "static" - } - ], - "npm:react-helmet-async": [ - { - "source": "npm:react-helmet-async", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:react-fast-compare", - "type": "static" - }, - { - "source": "npm:react-helmet-async", - "target": "npm:shallowequal", - "type": "static" - } - ], - "npm:react-i18next": [ - { - "source": "npm:react-i18next", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-i18next", - "target": "npm:html-parse-stringify", - "type": "static" - } - ], - "npm:react-native-gesture-handler": [ - { - "source": "npm:react-native-gesture-handler", - "target": "npm:@egjs/hammerjs", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:hoist-non-react-statics", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:react-native-gesture-handler", - "target": "npm:prop-types", - "type": "static" - } - ], - "npm:react-native-keyboard-aware-scroll-view": [ - { - "source": "npm:react-native-keyboard-aware-scroll-view", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:react-native-keyboard-aware-scroll-view", - "target": "npm:react-native-iphone-x-helper", - "type": "static" - } - ], - "npm:react-native-reanimated": [ - { - "source": "npm:react-native-reanimated", - "target": "npm:@babel/plugin-transform-object-assign", - "type": "static" - }, - { - "source": "npm:react-native-reanimated", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:react-native-reanimated", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:react-native-reanimated", - "target": "npm:invariant", - "type": "static" - } - ], - "npm:react-native-screens": [ - { - "source": "npm:react-native-screens", - "target": "npm:react-freeze", - "type": "static" - }, - { - "source": "npm:react-native-screens", - "target": "npm:warn-once", - "type": "static" - } - ], - "npm:react-native-svg": [ - { - "source": "npm:react-native-svg", - "target": "npm:css-select@5.1.0", - "type": "static" - }, - { - "source": "npm:react-native-svg", - "target": "npm:css-tree", - "type": "static" - } - ], - "npm:react-native-web": [ - { - "source": "npm:react-native-web", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:@react-native/normalize-color", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:fbjs", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:inline-style-prefixer", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:memoize-one@6.0.0", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:react-native-web", - "target": "npm:styleq", - "type": "static" - } - ], - "npm:react-native": [ - { - "source": "npm:react-native", - "target": "npm:@jest/create-cache-key-function", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native-community/cli", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native-community/cli-platform-android", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native-community/cli-platform-ios", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/assets-registry", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/codegen", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/community-cli-plugin", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/gradle-plugin", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/js-polyfills", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/normalize-colors", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:@react-native/virtualized-lists", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:anser", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:deprecated-react-native-prop-types", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:event-target-shim", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:flow-enums-runtime", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:invariant", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:jsc-android", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:memoize-one", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:metro-runtime", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:metro-source-map", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:nullthrows", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:pretty-format@26.6.2", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:promise", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:react-devtools-core", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:react-refresh", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:stacktrace-parser", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:whatwg-fetch", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:ws@6.2.2", - "type": "static" - }, - { - "source": "npm:react-native", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:react-shallow-renderer": [ - { - "source": "npm:react-shallow-renderer", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:react-shallow-renderer", - "target": "npm:react-is@18.2.0", - "type": "static" - } - ], - "npm:react-test-renderer": [ - { - "source": "npm:react-test-renderer", - "target": "npm:react-is@18.2.0", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:react-shallow-renderer", - "type": "static" - }, - { - "source": "npm:react-test-renderer", - "target": "npm:scheduler", - "type": "static" - } - ], - "npm:react": [ - { - "source": "npm:react", - "target": "npm:loose-envify", - "type": "static" - } - ], - "npm:reactotron-core-client": [ - { - "source": "npm:reactotron-core-client", - "target": "npm:reactotron-core-contract", - "type": "static" - } - ], - "npm:reactotron-react-native": [ - { - "source": "npm:reactotron-react-native", - "target": "npm:mitt", - "type": "static" - }, - { - "source": "npm:reactotron-react-native", - "target": "npm:query-string", - "type": "static" - }, - { - "source": "npm:reactotron-react-native", - "target": "npm:reactotron-core-client", - "type": "static" - }, - { - "source": "npm:reactotron-react-native", - "target": "npm:react-native-flipper", - "type": "static" - } - ], - "npm:readable-stream@2.3.8": [ - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray@1.0.0", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:readable-stream": [ - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:readdirp": [ - { - "source": "npm:readdirp", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:recast": [ - { - "source": "npm:recast", - "target": "npm:ast-types", - "type": "static" - }, - { - "source": "npm:recast", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:recast", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:recast", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:redent": [ - { - "source": "npm:redent", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:redent", - "target": "npm:strip-indent", - "type": "static" - } - ], - "npm:reflect.getprototypeof": [ - { - "source": "npm:reflect.getprototypeof", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:which-builtin-type", - "type": "static" - } - ], - "npm:regenerate-unicode-properties": [ - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - } - ], - "npm:regenerator-transform": [ - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:regexp.prototype.flags": [ - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - } - ], - "npm:regexpu-core": [ - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - } - ], - "npm:registry-auth-token": [ - { - "source": "npm:registry-auth-token", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:registry-auth-token", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:registry-url": [ - { - "source": "npm:registry-url", - "target": "npm:rc", - "type": "static" - } - ], - "npm:regjsparser": [ - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - } - ], - "npm:renderkid": [ - { - "source": "npm:renderkid", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:dom-converter", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:renderkid", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:requireg": [ - { - "source": "npm:requireg", - "target": "npm:nested-error-stacks", - "type": "static" - }, - { - "source": "npm:requireg", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:requireg", - "target": "npm:resolve@1.7.1", - "type": "static" - } - ], - "npm:resolve-cwd": [ - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:resolve": [ - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - } - ], - "npm:resolve@2.0.0-next.5": [ - { - "source": "npm:resolve@2.0.0-next.5", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.5", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve@2.0.0-next.5", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - } - ], - "npm:resolve@1.7.1": [ - { - "source": "npm:resolve@1.7.1", - "target": "npm:path-parse", - "type": "static" - } - ], - "npm:restore-cursor@2.0.0": [ - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:onetime@2.0.1", - "type": "static" - }, - { - "source": "npm:restore-cursor@2.0.0", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:restore-cursor": [ - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:restore-cursor@4.0.0": [ - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor@4.0.0", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:rimraf@2.7.1": [ - { - "source": "npm:rimraf@2.7.1", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rimraf": [ - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rimraf@2.4.5": [ - { - "source": "npm:rimraf@2.4.5", - "target": "npm:glob@6.0.4", - "type": "static" - } - ], - "npm:rimraf@2.6.3": [ - { - "source": "npm:rimraf@2.6.3", - "target": "npm:glob", - "type": "static" - } - ], - "npm:run-parallel": [ - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - } - ], - "npm:safe-array-concat": [ - { - "source": "npm:safe-array-concat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:isarray", - "type": "static" - } - ], - "npm:safe-regex-test": [ - { - "source": "npm:safe-regex-test", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "type": "static" - } - ], - "npm:sass": [ - { - "source": "npm:sass", - "target": "npm:chokidar@3.6.0", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:saxes": [ - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - } - ], - "npm:scheduler@0.24.0-canary-efb381bbf-20230505": [ - { - "source": "npm:scheduler@0.24.0-canary-efb381bbf-20230505", - "target": "npm:loose-envify", - "type": "static" - } - ], - "npm:scheduler": [ - { - "source": "npm:scheduler", - "target": "npm:loose-envify", - "type": "static" - } - ], - "npm:schema-utils@2.7.1": [ - { - "source": "npm:schema-utils@2.7.1", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.1", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils@2.7.1", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:schema-utils@3.3.0": [ - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:schema-utils": [ - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv@8.12.0", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-formats@2.1.1", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords@5.1.0", - "type": "static" - } - ], - "npm:select-prompt": [ - { - "source": "npm:select-prompt", - "target": "npm:ansi-escapes@1.4.0", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:chalk@1.1.3", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:cli-styles", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:figures@2.0.0", - "type": "static" - }, - { - "source": "npm:select-prompt", - "target": "npm:prompt-skeleton", - "type": "static" - } - ], - "npm:selfsigned": [ - { - "source": "npm:selfsigned", - "target": "npm:@types/node-forge", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - } - ], - "npm:semver@7.5.3": [ - { - "source": "npm:semver@7.5.3", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:semver": [ - { - "source": "npm:semver", - "target": "npm:lru-cache", - "type": "static" - } - ], - "npm:send": [ - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses", - "type": "static" - } - ], - "npm:serialize-javascript": [ - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:serve-index": [ - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - } - ], - "npm:serve-static": [ - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - } - ], - "npm:set-function-length": [ - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:set-function-name": [ - { - "source": "npm:set-function-name", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:shallow-clone": [ - { - "source": "npm:shallow-clone", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:shebang-command@1.2.0": [ - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - } - ], - "npm:shebang-command": [ - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - } - ], - "npm:side-channel": [ - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - } - ], - "npm:simple-plist": [ - { - "source": "npm:simple-plist", - "target": "npm:bplist-creator", - "type": "static" - }, - { - "source": "npm:simple-plist", - "target": "npm:bplist-parser@0.3.1", - "type": "static" - }, - { - "source": "npm:simple-plist", - "target": "npm:plist", - "type": "static" - } - ], - "npm:simple-swizzle": [ - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.2", - "type": "static" - } - ], - "npm:slice-ansi@2.1.0": [ - { - "source": "npm:slice-ansi@2.1.0", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@2.1.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@2.1.0", - "target": "npm:is-fullwidth-code-point@2.0.0", - "type": "static" - } - ], - "npm:slice-ansi": [ - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point@4.0.0", - "type": "static" - } - ], - "npm:sockjs": [ - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:sort-keys": [ - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj@1.1.0", - "type": "static" - } - ], - "npm:source-map-loader": [ - { - "source": "npm:source-map-loader", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:source-map-support@0.5.13": [ - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:source-map-support": [ - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:spdy-transport": [ - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:spdy": [ - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - } - ], - "npm:split": [ - { - "source": "npm:split", - "target": "npm:through", - "type": "static" - } - ], - "npm:ssri": [ - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:stack-generator": [ - { - "source": "npm:stack-generator", - "target": "npm:stackframe", - "type": "static" - } - ], - "npm:stack-utils": [ - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - } - ], - "npm:stacktrace-gps": [ - { - "source": "npm:stacktrace-gps", - "target": "npm:source-map@0.5.6", - "type": "static" - }, - { - "source": "npm:stacktrace-gps", - "target": "npm:stackframe", - "type": "static" - } - ], - "npm:stacktrace-js": [ - { - "source": "npm:stacktrace-js", - "target": "npm:error-stack-parser", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stack-generator", - "type": "static" - }, - { - "source": "npm:stacktrace-js", - "target": "npm:stacktrace-gps", - "type": "static" - } - ], - "npm:stacktrace-parser": [ - { - "source": "npm:stacktrace-parser", - "target": "npm:type-fest@0.7.1", - "type": "static" - } - ], - "npm:string-length": [ - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string-length@5.0.1": [ - { - "source": "npm:string-length@5.0.1", - "target": "npm:char-regex@2.0.1", - "type": "static" - }, - { - "source": "npm:string-length@5.0.1", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:string-width-cjs": [ - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string-width": [ - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string-width@5.1.2": [ - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:string.prototype.matchall": [ - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:string.prototype.trim": [ - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:string.prototype.trimend": [ - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:string.prototype.trimstart": [ - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:string_decoder": [ - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:string_decoder@1.1.1": [ - { - "source": "npm:string_decoder@1.1.1", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:strip-ansi-cjs": [ - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi": [ - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi@3.0.1": [ - { - "source": "npm:strip-ansi@3.0.1", - "target": "npm:ansi-regex@2.1.1", - "type": "static" - } - ], - "npm:strip-ansi@5.2.0": [ - { - "source": "npm:strip-ansi@5.2.0", - "target": "npm:ansi-regex@4.1.1", - "type": "static" - } - ], - "npm:strip-ansi@7.1.0": [ - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - } - ], - "npm:strip-indent": [ - { - "source": "npm:strip-indent", - "target": "npm:min-indent", - "type": "static" - } - ], - "npm:style-value-types": [ - { - "source": "npm:style-value-types", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:style-value-types", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:style-value-types@5.0.0": [ - { - "source": "npm:style-value-types@5.0.0", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:style-value-types@5.0.0", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:stylehacks": [ - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:sucrase": [ - { - "source": "npm:sucrase", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:commander@4.1.1", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:glob@7.1.6", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:mz", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:sucrase", - "target": "npm:ts-interface-checker", - "type": "static" - } - ], - "npm:sucrase@3.35.0": [ - { - "source": "npm:sucrase@3.35.0", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:commander@4.1.1", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:mz", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:sucrase@3.35.0", - "target": "npm:ts-interface-checker", - "type": "static" - } - ], - "npm:supports-color@5.5.0": [ - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - } - ], - "npm:supports-color": [ - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:supports-color@8.1.1": [ - { - "source": "npm:supports-color@8.1.1", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:supports-hyperlinks": [ - { - "source": "npm:supports-hyperlinks", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:supports-hyperlinks", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:svgo@2.8.0": [ - { - "source": "npm:svgo@2.8.0", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:csso@4.2.0", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:svgo@2.8.0", - "target": "npm:stable", - "type": "static" - } - ], - "npm:tar": [ - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:temp": [ - { - "source": "npm:temp", - "target": "npm:rimraf@2.6.3", - "type": "static" - } - ], - "npm:tempy": [ - { - "source": "npm:tempy", - "target": "npm:temp-dir@1.0.0", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:type-fest@0.3.1", - "type": "static" - }, - { - "source": "npm:tempy", - "target": "npm:unique-string", - "type": "static" - } - ], - "npm:tempy@0.7.1": [ - { - "source": "npm:tempy@0.7.1", - "target": "npm:del@6.1.1", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:temp-dir", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:type-fest@0.16.0", - "type": "static" - }, - { - "source": "npm:tempy@0.7.1", - "target": "npm:unique-string@2.0.0", - "type": "static" - } - ], - "npm:terminal-link": [ - { - "source": "npm:terminal-link", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:terminal-link", - "target": "npm:supports-hyperlinks", - "type": "static" - } - ], - "npm:terser-webpack-plugin": [ - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - } - ], - "npm:terser": [ - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:test-exclude": [ - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:thenify-all": [ - { - "source": "npm:thenify-all", - "target": "npm:thenify", - "type": "static" - } - ], - "npm:thenify": [ - { - "source": "npm:thenify", - "target": "npm:any-promise", - "type": "static" - } - ], - "npm:through2": [ - { - "source": "npm:through2", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:through2", - "target": "npm:xtend", - "type": "static" - } - ], - "npm:tmp": [ - { - "source": "npm:tmp", - "target": "npm:os-tmpdir", - "type": "static" - } - ], - "npm:to-regex-range": [ - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - } - ], - "npm:tough-cookie": [ - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:url-parse", - "type": "static" - } - ], - "npm:tr46": [ - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:tsconfig-paths@3.15.0": [ - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:@types/json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:json5@1.0.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths@3.15.0", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:tsutils": [ - { - "source": "npm:tsutils", - "target": "npm:tslib@1.14.1", - "type": "static" - } - ], - "npm:type-check": [ - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - } - ], - "npm:type-is": [ - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:typed-array-buffer": [ - { - "source": "npm:typed-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-byte-length": [ - { - "source": "npm:typed-array-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-byte-offset": [ - { - "source": "npm:typed-array-byte-offset", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-length": [ - { - "source": "npm:typed-array-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:unbox-primitive": [ - { - "source": "npm:unbox-primitive", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - } - ], - "npm:unicode-match-property-ecmascript": [ - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - } - ], - "npm:unique-filename": [ - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - } - ], - "npm:unique-slug": [ - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:unique-string": [ - { - "source": "npm:unique-string", - "target": "npm:crypto-random-string", - "type": "static" - } - ], - "npm:unique-string@2.0.0": [ - { - "source": "npm:unique-string@2.0.0", - "target": "npm:crypto-random-string@2.0.0", - "type": "static" - } - ], - "npm:update-browserslist-db": [ - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:update-check": [ - { - "source": "npm:update-check", - "target": "npm:registry-auth-token", - "type": "static" - }, - { - "source": "npm:update-check", - "target": "npm:registry-url", - "type": "static" - } - ], - "npm:uri-js": [ - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:url-parse": [ - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:url": [ - { - "source": "npm:url", - "target": "npm:punycode@1.4.1", - "type": "static" - }, - { - "source": "npm:url", - "target": "npm:qs@6.11.2", - "type": "static" - } - ], - "npm:util": [ - { - "source": "npm:util", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-arguments", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:util", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:v8-to-istanbul": [ - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map", - "type": "static" - } - ], - "npm:validate-npm-package-name": [ - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - } - ], - "npm:w3c-xmlserializer": [ - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:walker": [ - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - } - ], - "npm:watchpack": [ - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:wbuf": [ - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - } - ], - "npm:wcwidth": [ - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - } - ], - "npm:web-encoding": [ - { - "source": "npm:web-encoding", - "target": "npm:util", - "type": "static" - }, - { - "source": "npm:web-encoding", - "target": "npm:@zxing/text-encoding", - "type": "static" - } - ], - "npm:webpack-dev-middleware": [ - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:webpack-dev-server": [ - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway@6.0.3", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js@2.1.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws@8.16.0", - "type": "static" - } - ], - "npm:webpack-manifest-plugin": [ - { - "source": "npm:webpack-manifest-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack-manifest-plugin", - "target": "npm:webpack-sources@2.3.1", - "type": "static" - } - ], - "npm:webpack-sources@2.3.1": [ - { - "source": "npm:webpack-sources@2.3.1", - "target": "npm:source-list-map", - "type": "static" - }, - { - "source": "npm:webpack-sources@2.3.1", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:webpack": [ - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-assertions", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:websocket-driver": [ - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - } - ], - "npm:whatwg-encoding": [ - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite", - "type": "static" - } - ], - "npm:whatwg-url-without-unicode": [ - { - "source": "npm:whatwg-url-without-unicode", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:whatwg-url-without-unicode", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:whatwg-url-without-unicode", - "target": "npm:webidl-conversions@5.0.0", - "type": "static" - } - ], - "npm:whatwg-url": [ - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:whatwg-url@5.0.0": [ - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - } - ], - "npm:which-boxed-primitive": [ - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:which-builtin-type": [ - { - "source": "npm:which-builtin-type", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-async-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-finalizationregistry", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-collection", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:which-collection": [ - { - "source": "npm:which-collection", - "target": "npm:is-map", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakmap", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakset", - "type": "static" - } - ], - "npm:which-typed-array": [ - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:which@1.3.1": [ - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:which": [ - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:wrap-ansi-cjs": [ - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:wrap-ansi": [ - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:wrap-ansi@6.2.0": [ - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@6.2.0", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:wrap-ansi@8.1.0": [ - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:write-file-atomic": [ - { - "source": "npm:write-file-atomic", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:write-file-atomic@4.0.2": [ - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic@4.0.2", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:ws@6.2.2": [ - { - "source": "npm:ws@6.2.2", - "target": "npm:async-limiter", - "type": "static" - } - ], - "npm:xcode": [ - { - "source": "npm:xcode", - "target": "npm:simple-plist", - "type": "static" - }, - { - "source": "npm:xcode", - "target": "npm:uuid@7.0.3", - "type": "static" - } - ], - "npm:xml-js": [ - { - "source": "npm:xml-js", - "target": "npm:sax", - "type": "static" - } - ], - "npm:xml2js@0.4.23": [ - { - "source": "npm:xml2js@0.4.23", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:xml2js@0.4.23", - "target": "npm:xmlbuilder", - "type": "static" - } - ], - "npm:xml2js": [ - { - "source": "npm:xml2js", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:xml2js", - "target": "npm:xmlbuilder", - "type": "static" - } - ], - "npm:yargs-parser@18.1.3": [ - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:yargs-parser@18.1.3", - "target": "npm:decamelize", - "type": "static" - } - ], - "npm:yargs@15.4.1": [ - { - "source": "npm:yargs@15.4.1", - "target": "npm:cliui@6.0.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:decamelize", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:find-up@4.1.0", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:require-main-filename", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:which-module", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:y18n@4.0.3", - "type": "static" - }, - { - "source": "npm:yargs@15.4.1", - "target": "npm:yargs-parser@18.1.3", - "type": "static" - } - ], - "npm:yargs": [ - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - } - ] - }, - "version": "6.0" -}