create-tauri-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -0
- package/dist/index.mjs +53 -0
- package/index.js +3 -0
- package/package.json +62 -0
- package/templates/next/.env +1 -0
- package/templates/next/.github/workflows/release.yml +108 -0
- package/templates/next/.vscode/extensions.json +3 -0
- package/templates/next/LICENSE +21 -0
- package/templates/next/README.md +82 -0
- package/templates/next/app-icon.png +0 -0
- package/templates/next/next-env.d.ts +5 -0
- package/templates/next/next.config.js +17 -0
- package/templates/next/package.json +82 -0
- package/templates/next/pnpm-lock.yaml +4318 -0
- package/templates/next/postcss.config.js +6 -0
- package/templates/next/prettier.config.js +35 -0
- package/templates/next/public/avatars/01.png +0 -0
- package/templates/next/public/avatars/02.png +0 -0
- package/templates/next/public/avatars/03.png +0 -0
- package/templates/next/public/avatars/04.png +0 -0
- package/templates/next/public/avatars/05.png +0 -0
- package/templates/next/src/app/examples/authentication/components/user-auth-form.tsx +71 -0
- package/templates/next/src/app/examples/authentication/page.tsx +80 -0
- package/templates/next/src/app/examples/cards/components/cookie-settings.tsx +60 -0
- package/templates/next/src/app/examples/cards/components/create-account.tsx +60 -0
- package/templates/next/src/app/examples/cards/components/date-picker.tsx +18 -0
- package/templates/next/src/app/examples/cards/components/github-card.tsx +81 -0
- package/templates/next/src/app/examples/cards/components/notifications.tsx +51 -0
- package/templates/next/src/app/examples/cards/components/payment-method.tsx +117 -0
- package/templates/next/src/app/examples/cards/components/report-an-issue.tsx +82 -0
- package/templates/next/src/app/examples/cards/components/share-document.tsx +116 -0
- package/templates/next/src/app/examples/cards/components/team-members.tsx +147 -0
- package/templates/next/src/app/examples/cards/page.tsx +75 -0
- package/templates/next/src/app/examples/cards/styles.css +63 -0
- package/templates/next/src/app/examples/dashboard/components/date-range-picker.tsx +66 -0
- package/templates/next/src/app/examples/dashboard/components/main-nav.tsx +38 -0
- package/templates/next/src/app/examples/dashboard/components/overview.tsx +78 -0
- package/templates/next/src/app/examples/dashboard/components/recent-sales.tsx +67 -0
- package/templates/next/src/app/examples/dashboard/components/search.tsx +13 -0
- package/templates/next/src/app/examples/dashboard/components/team-switcher.tsx +205 -0
- package/templates/next/src/app/examples/dashboard/components/user-nav.tsx +67 -0
- package/templates/next/src/app/examples/dashboard/page.tsx +147 -0
- package/templates/next/src/app/examples/forms/account/account-form.tsx +219 -0
- package/templates/next/src/app/examples/forms/account/page.tsx +18 -0
- package/templates/next/src/app/examples/forms/appearance/appearance-form.tsx +164 -0
- package/templates/next/src/app/examples/forms/appearance/page.tsx +18 -0
- package/templates/next/src/app/examples/forms/components/sidebar-nav.tsx +43 -0
- package/templates/next/src/app/examples/forms/display/display-form.tsx +132 -0
- package/templates/next/src/app/examples/forms/display/page.tsx +17 -0
- package/templates/next/src/app/examples/forms/layout.tsx +57 -0
- package/templates/next/src/app/examples/forms/notifications/notifications-form.tsx +221 -0
- package/templates/next/src/app/examples/forms/notifications/page.tsx +18 -0
- package/templates/next/src/app/examples/forms/page.tsx +17 -0
- package/templates/next/src/app/examples/forms/profile-form.tsx +190 -0
- package/templates/next/src/app/examples/layout.tsx +7 -0
- package/templates/next/src/app/examples/music/components/album-artwork.tsx +84 -0
- package/templates/next/src/app/examples/music/components/menu.tsx +178 -0
- package/templates/next/src/app/examples/music/components/podcast-empty-placeholder.tsx +53 -0
- package/templates/next/src/app/examples/music/components/sidebar.tsx +100 -0
- package/templates/next/src/app/examples/music/data/albums.ts +71 -0
- package/templates/next/src/app/examples/music/data/playlists.ts +16 -0
- package/templates/next/src/app/examples/music/page.tsx +134 -0
- package/templates/next/src/app/examples/music/styles.css +65 -0
- package/templates/next/src/app/examples/playground/components/code-viewer.tsx +89 -0
- package/templates/next/src/app/examples/playground/components/icons.tsx +153 -0
- package/templates/next/src/app/examples/playground/components/maxlength-selector.tsx +55 -0
- package/templates/next/src/app/examples/playground/components/model-selector.tsx +163 -0
- package/templates/next/src/app/examples/playground/components/preset-actions.tsx +124 -0
- package/templates/next/src/app/examples/playground/components/preset-save.tsx +44 -0
- package/templates/next/src/app/examples/playground/components/preset-selector.tsx +82 -0
- package/templates/next/src/app/examples/playground/components/preset-share.tsx +46 -0
- package/templates/next/src/app/examples/playground/components/temperature-selector.tsx +57 -0
- package/templates/next/src/app/examples/playground/components/top-p-selector.tsx +54 -0
- package/templates/next/src/app/examples/playground/data/models.ts +62 -0
- package/templates/next/src/app/examples/playground/data/presets.ts +47 -0
- package/templates/next/src/app/examples/playground/page.tsx +160 -0
- package/templates/next/src/app/examples/playground/styles.css +65 -0
- package/templates/next/src/app/examples/tasks/components/columns.tsx +120 -0
- package/templates/next/src/app/examples/tasks/components/data-table-column-header.tsx +66 -0
- package/templates/next/src/app/examples/tasks/components/data-table-faceted-filter.tsx +147 -0
- package/templates/next/src/app/examples/tasks/components/data-table-pagination.tsx +97 -0
- package/templates/next/src/app/examples/tasks/components/data-table-row-actions.tsx +82 -0
- package/templates/next/src/app/examples/tasks/components/data-table-toolbar.tsx +63 -0
- package/templates/next/src/app/examples/tasks/components/data-table-view-options.tsx +59 -0
- package/templates/next/src/app/examples/tasks/components/data-table.tsx +126 -0
- package/templates/next/src/app/examples/tasks/components/user-nav.tsx +67 -0
- package/templates/next/src/app/examples/tasks/data/data.tsx +71 -0
- package/templates/next/src/app/examples/tasks/data/schema.ts +13 -0
- package/templates/next/src/app/examples/tasks/data/seed.ts +20 -0
- package/templates/next/src/app/examples/tasks/data/tasks.json +702 -0
- package/templates/next/src/app/examples/tasks/page.tsx +47 -0
- package/templates/next/src/app/layout.tsx +43 -0
- package/templates/next/src/app/page.tsx +5 -0
- package/templates/next/src/assets/Inter.var.woff2 +0 -0
- package/templates/next/src/assets/logo.png +0 -0
- package/templates/next/src/components/examples/.eslintrc.json +6 -0
- package/templates/next/src/components/examples/accordion/demo.tsx +32 -0
- package/templates/next/src/components/examples/alert/demo.tsx +15 -0
- package/templates/next/src/components/examples/alert/destructive.tsx +15 -0
- package/templates/next/src/components/examples/alert-dialog/demo.tsx +35 -0
- package/templates/next/src/components/examples/aspect-ratio/demo.tsx +16 -0
- package/templates/next/src/components/examples/avatar/demo.tsx +10 -0
- package/templates/next/src/components/examples/badge/demo.tsx +5 -0
- package/templates/next/src/components/examples/badge/destructive.tsx +5 -0
- package/templates/next/src/components/examples/badge/outline.tsx +5 -0
- package/templates/next/src/components/examples/badge/secondary.tsx +5 -0
- package/templates/next/src/components/examples/button/as-child.tsx +10 -0
- package/templates/next/src/components/examples/button/demo.tsx +5 -0
- package/templates/next/src/components/examples/button/destructive.tsx +5 -0
- package/templates/next/src/components/examples/button/ghost.tsx +5 -0
- package/templates/next/src/components/examples/button/link.tsx +5 -0
- package/templates/next/src/components/examples/button/loading.tsx +12 -0
- package/templates/next/src/components/examples/button/outline.tsx +5 -0
- package/templates/next/src/components/examples/button/secondary.tsx +5 -0
- package/templates/next/src/components/examples/button/with-icon.tsx +11 -0
- package/templates/next/src/components/examples/calendar/date-picker.tsx +43 -0
- package/templates/next/src/components/examples/calendar/date-range-picker.tsx +65 -0
- package/templates/next/src/components/examples/calendar/demo.tsx +18 -0
- package/templates/next/src/components/examples/calendar/react-hook-form.tsx +101 -0
- package/templates/next/src/components/examples/calendar/with-presets.tsx +62 -0
- package/templates/next/src/components/examples/card/demo.tsx +79 -0
- package/templates/next/src/components/examples/card/with-form.tsx +59 -0
- package/templates/next/src/components/examples/checkbox/demo.tsx +17 -0
- package/templates/next/src/components/examples/checkbox/disabled.tsx +15 -0
- package/templates/next/src/components/examples/checkbox/react-hook-form-multiple.tsx +127 -0
- package/templates/next/src/components/examples/checkbox/react-hook-form-single.tsx +72 -0
- package/templates/next/src/components/examples/checkbox/with-text.tsx +22 -0
- package/templates/next/src/components/examples/collapsible/demo.tsx +46 -0
- package/templates/next/src/components/examples/combobox/demo.tsx +90 -0
- package/templates/next/src/components/examples/combobox/dropdown-menu.tsx +110 -0
- package/templates/next/src/components/examples/combobox/popover.tsx +124 -0
- package/templates/next/src/components/examples/combobox/react-hook-form.tsx +135 -0
- package/templates/next/src/components/examples/command/combobox.tsx +90 -0
- package/templates/next/src/components/examples/command/demo.tsx +62 -0
- package/templates/next/src/components/examples/command/dialog.tsx +86 -0
- package/templates/next/src/components/examples/command/dropdown-menu.tsx +110 -0
- package/templates/next/src/components/examples/command/popover.tsx +124 -0
- package/templates/next/src/components/examples/context-menu/demo.tsx +67 -0
- package/templates/next/src/components/examples/data-table/columns.tsx +110 -0
- package/templates/next/src/components/examples/data-table/data-table.tsx +185 -0
- package/templates/next/src/components/examples/data-table/demo.tsx +41 -0
- package/templates/next/src/components/examples/date-picker/demo.tsx +43 -0
- package/templates/next/src/components/examples/date-picker/react-hook-form.tsx +101 -0
- package/templates/next/src/components/examples/date-picker/with-presets.tsx +62 -0
- package/templates/next/src/components/examples/date-picker/with-range.tsx +65 -0
- package/templates/next/src/components/examples/dialog/demo.tsx +47 -0
- package/templates/next/src/components/examples/dropdown-menu/checkboxes.tsx +53 -0
- package/templates/next/src/components/examples/dropdown-menu/demo.tsx +122 -0
- package/templates/next/src/components/examples/dropdown-menu/radio-group.tsx +37 -0
- package/templates/next/src/components/examples/hover-card/demo.tsx +39 -0
- package/templates/next/src/components/examples/index.tsx +213 -0
- package/templates/next/src/components/examples/input/demo.tsx +5 -0
- package/templates/next/src/components/examples/input/disabled.tsx +5 -0
- package/templates/next/src/components/examples/input/file.tsx +11 -0
- package/templates/next/src/components/examples/input/react-hook-form.tsx +65 -0
- package/templates/next/src/components/examples/input/with-button.tsx +11 -0
- package/templates/next/src/components/examples/input/with-label.tsx +11 -0
- package/templates/next/src/components/examples/input/with-text.tsx +12 -0
- package/templates/next/src/components/examples/label/demo.tsx +13 -0
- package/templates/next/src/components/examples/menubar/demo.tsx +107 -0
- package/templates/next/src/components/examples/navigation-menu/demo.tsx +144 -0
- package/templates/next/src/components/examples/popover/demo.tsx +67 -0
- package/templates/next/src/components/examples/progress/demo.tsx +16 -0
- package/templates/next/src/components/examples/radio-group/demo.tsx +21 -0
- package/templates/next/src/components/examples/radio-group/react-hook-form.tsx +88 -0
- package/templates/next/src/components/examples/scroll-area/demo.tsx +26 -0
- package/templates/next/src/components/examples/select/demo.tsx +31 -0
- package/templates/next/src/components/examples/select/react-hook-form.tsx +83 -0
- package/templates/next/src/components/examples/separator/demo.tsx +22 -0
- package/templates/next/src/components/examples/sheet/demo.tsx +47 -0
- package/templates/next/src/components/examples/sheet/position.tsx +75 -0
- package/templates/next/src/components/examples/sheet/size.tsx +75 -0
- package/templates/next/src/components/examples/skeleton/demo.tsx +13 -0
- package/templates/next/src/components/examples/slider/demo.tsx +16 -0
- package/templates/next/src/components/examples/switch/demo.tsx +11 -0
- package/templates/next/src/components/examples/switch/react-hook-form.tsx +101 -0
- package/templates/next/src/components/examples/table/demo.tsx +80 -0
- package/templates/next/src/components/examples/tabs/demo.tsx +69 -0
- package/templates/next/src/components/examples/textarea/demo.tsx +5 -0
- package/templates/next/src/components/examples/textarea/disabled.tsx +5 -0
- package/templates/next/src/components/examples/textarea/react-hook-form.tsx +77 -0
- package/templates/next/src/components/examples/textarea/with-button.tsx +11 -0
- package/templates/next/src/components/examples/textarea/with-label.tsx +11 -0
- package/templates/next/src/components/examples/textarea/with-text.tsx +14 -0
- package/templates/next/src/components/examples/toast/demo.tsx +26 -0
- package/templates/next/src/components/examples/toast/destructive.tsx +25 -0
- package/templates/next/src/components/examples/toast/simple.tsx +21 -0
- package/templates/next/src/components/examples/toast/with-action.tsx +24 -0
- package/templates/next/src/components/examples/toast/with-title.tsx +22 -0
- package/templates/next/src/components/examples/toggle/demo.tsx +11 -0
- package/templates/next/src/components/examples/toggle/disabled.tsx +11 -0
- package/templates/next/src/components/examples/toggle/lg.tsx +11 -0
- package/templates/next/src/components/examples/toggle/outline.tsx +11 -0
- package/templates/next/src/components/examples/toggle/sm.tsx +11 -0
- package/templates/next/src/components/examples/toggle/with-text.tsx +12 -0
- package/templates/next/src/components/examples/tooltip/demo.tsx +27 -0
- package/templates/next/src/components/examples/typography/blockquote.tsx +8 -0
- package/templates/next/src/components/examples/typography/demo.tsx +119 -0
- package/templates/next/src/components/examples/typography/h1.tsx +7 -0
- package/templates/next/src/components/examples/typography/h2.tsx +7 -0
- package/templates/next/src/components/examples/typography/h3.tsx +7 -0
- package/templates/next/src/components/examples/typography/h4.tsx +7 -0
- package/templates/next/src/components/examples/typography/inline-code.tsx +7 -0
- package/templates/next/src/components/examples/typography/large.tsx +5 -0
- package/templates/next/src/components/examples/typography/lead.tsx +8 -0
- package/templates/next/src/components/examples/typography/list.tsx +9 -0
- package/templates/next/src/components/examples/typography/muted.tsx +5 -0
- package/templates/next/src/components/examples/typography/p.tsx +8 -0
- package/templates/next/src/components/examples/typography/small.tsx +5 -0
- package/templates/next/src/components/examples/typography/table.tsx +44 -0
- package/templates/next/src/components/examples-nav.tsx +70 -0
- package/templates/next/src/components/greeting.tsx +21 -0
- package/templates/next/src/components/icons.tsx +154 -0
- package/templates/next/src/components/menu-mode-toggle.tsx +46 -0
- package/templates/next/src/components/menu.tsx +268 -0
- package/templates/next/src/components/mode-toggle.tsx +43 -0
- package/templates/next/src/components/page-header.tsx +50 -0
- package/templates/next/src/components/react-hook-form/form.tsx +176 -0
- package/templates/next/src/components/style-switcher.tsx +19 -0
- package/templates/next/src/components/tailwind-indicator.tsx +18 -0
- package/templates/next/src/components/theme-provider.tsx +9 -0
- package/templates/next/src/components/ui/accordion.tsx +60 -0
- package/templates/next/src/components/ui/alert-dialog.tsx +150 -0
- package/templates/next/src/components/ui/alert.tsx +61 -0
- package/templates/next/src/components/ui/aspect-ratio.tsx +7 -0
- package/templates/next/src/components/ui/avatar.tsx +50 -0
- package/templates/next/src/components/ui/badge.tsx +36 -0
- package/templates/next/src/components/ui/button.tsx +51 -0
- package/templates/next/src/components/ui/calendar.tsx +64 -0
- package/templates/next/src/components/ui/card.tsx +81 -0
- package/templates/next/src/components/ui/checkbox.tsx +30 -0
- package/templates/next/src/components/ui/collapsible.tsx +11 -0
- package/templates/next/src/components/ui/command.tsx +155 -0
- package/templates/next/src/components/ui/context-menu.tsx +200 -0
- package/templates/next/src/components/ui/dialog.tsx +128 -0
- package/templates/next/src/components/ui/dropdown-menu.tsx +200 -0
- package/templates/next/src/components/ui/hover-card.tsx +29 -0
- package/templates/next/src/components/ui/input.tsx +27 -0
- package/templates/next/src/components/ui/label.tsx +26 -0
- package/templates/next/src/components/ui/menubar.tsx +236 -0
- package/templates/next/src/components/ui/navigation-menu.tsx +130 -0
- package/templates/next/src/components/ui/popover.tsx +31 -0
- package/templates/next/src/components/ui/progress.tsx +28 -0
- package/templates/next/src/components/ui/radio-group.tsx +44 -0
- package/templates/next/src/components/ui/scroll-area.tsx +48 -0
- package/templates/next/src/components/ui/select.tsx +120 -0
- package/templates/next/src/components/ui/separator.tsx +31 -0
- package/templates/next/src/components/ui/sheet.tsx +230 -0
- package/templates/next/src/components/ui/skeleton.tsx +17 -0
- package/templates/next/src/components/ui/slider.tsx +28 -0
- package/templates/next/src/components/ui/switch.tsx +29 -0
- package/templates/next/src/components/ui/table.tsx +114 -0
- package/templates/next/src/components/ui/tabs.tsx +55 -0
- package/templates/next/src/components/ui/textarea.tsx +26 -0
- package/templates/next/src/components/ui/toast.tsx +129 -0
- package/templates/next/src/components/ui/toaster.tsx +35 -0
- package/templates/next/src/components/ui/toggle.tsx +45 -0
- package/templates/next/src/components/ui/tooltip.tsx +30 -0
- package/templates/next/src/components/ui/use-toast.ts +191 -0
- package/templates/next/src/data/albums.ts +71 -0
- package/templates/next/src/data/playlists.ts +16 -0
- package/templates/next/src/hooks/use-lock-body.ts +12 -0
- package/templates/next/src/hooks/use-mounted.ts +11 -0
- package/templates/next/src/hooks/use-mutation-observer.ts +20 -0
- package/templates/next/src/lib/fonts.ts +11 -0
- package/templates/next/src/lib/utils.ts +19 -0
- package/templates/next/src/styles/globals.css +124 -0
- package/templates/next/src-tauri/Cargo.lock +3636 -0
- package/templates/next/src-tauri/Cargo.toml +36 -0
- package/templates/next/src-tauri/build.rs +3 -0
- package/templates/next/src-tauri/icons/128x128.png +0 -0
- package/templates/next/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/next/src-tauri/icons/32x32.png +0 -0
- package/templates/next/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/next/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/next/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/next/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/next/src-tauri/icons/icon.icns +0 -0
- package/templates/next/src-tauri/icons/icon.ico +0 -0
- package/templates/next/src-tauri/icons/icon.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/next/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/next/src-tauri/src/main.rs +19 -0
- package/templates/next/src-tauri/tauri.conf.json +63 -0
- package/templates/next/tailwind.config.js +80 -0
- package/templates/next/tsconfig.json +35 -0
- package/templates/vite/.github/workflows/release.yml +108 -0
- package/templates/vite/.vscode/extensions.json +3 -0
- package/templates/vite/README.md +7 -0
- package/templates/vite/app-icon.png +0 -0
- package/templates/vite/index.html +16 -0
- package/templates/vite/package.json +75 -0
- package/templates/vite/pnpm-lock.yaml +4569 -0
- package/templates/vite/postcss.config.js +6 -0
- package/templates/vite/prettier.config.cjs +35 -0
- package/templates/vite/src/App.tsx +39 -0
- package/templates/vite/src/aa +34 -0
- package/templates/vite/src/assets/Inter.var.woff2 +0 -0
- package/templates/vite/src/components/icons.tsx +154 -0
- package/templates/vite/src/components/menu-mode-toggle.tsx +46 -0
- package/templates/vite/src/components/menu.tsx +232 -0
- package/templates/vite/src/components/tailwind-indicator.tsx +18 -0
- package/templates/vite/src/components/theme-provider.tsx +9 -0
- package/templates/vite/src/components/ui/accordion.tsx +60 -0
- package/templates/vite/src/components/ui/alert-dialog.tsx +150 -0
- package/templates/vite/src/components/ui/alert.tsx +61 -0
- package/templates/vite/src/components/ui/aspect-ratio.tsx +7 -0
- package/templates/vite/src/components/ui/avatar.tsx +50 -0
- package/templates/vite/src/components/ui/badge.tsx +36 -0
- package/templates/vite/src/components/ui/button.tsx +51 -0
- package/templates/vite/src/components/ui/calendar.tsx +64 -0
- package/templates/vite/src/components/ui/card.tsx +81 -0
- package/templates/vite/src/components/ui/checkbox.tsx +30 -0
- package/templates/vite/src/components/ui/collapsible.tsx +11 -0
- package/templates/vite/src/components/ui/command.tsx +155 -0
- package/templates/vite/src/components/ui/context-menu.tsx +200 -0
- package/templates/vite/src/components/ui/dialog.tsx +128 -0
- package/templates/vite/src/components/ui/dropdown-menu.tsx +200 -0
- package/templates/vite/src/components/ui/hover-card.tsx +29 -0
- package/templates/vite/src/components/ui/input.tsx +27 -0
- package/templates/vite/src/components/ui/label.tsx +26 -0
- package/templates/vite/src/components/ui/menubar.tsx +236 -0
- package/templates/vite/src/components/ui/navigation-menu.tsx +130 -0
- package/templates/vite/src/components/ui/popover.tsx +31 -0
- package/templates/vite/src/components/ui/progress.tsx +28 -0
- package/templates/vite/src/components/ui/radio-group.tsx +44 -0
- package/templates/vite/src/components/ui/scroll-area.tsx +48 -0
- package/templates/vite/src/components/ui/select.tsx +120 -0
- package/templates/vite/src/components/ui/separator.tsx +31 -0
- package/templates/vite/src/components/ui/sheet.tsx +230 -0
- package/templates/vite/src/components/ui/skeleton.tsx +17 -0
- package/templates/vite/src/components/ui/slider.tsx +28 -0
- package/templates/vite/src/components/ui/switch.tsx +29 -0
- package/templates/vite/src/components/ui/table.tsx +114 -0
- package/templates/vite/src/components/ui/tabs.tsx +55 -0
- package/templates/vite/src/components/ui/textarea.tsx +26 -0
- package/templates/vite/src/components/ui/toast.tsx +129 -0
- package/templates/vite/src/components/ui/toaster.tsx +35 -0
- package/templates/vite/src/components/ui/toggle.tsx +45 -0
- package/templates/vite/src/components/ui/tooltip.tsx +30 -0
- package/templates/vite/src/components/ui/use-toast.ts +191 -0
- package/templates/vite/src/dashboard/components/date-range-picker.tsx +66 -0
- package/templates/vite/src/dashboard/components/main-nav.tsx +38 -0
- package/templates/vite/src/dashboard/components/overview.tsx +78 -0
- package/templates/vite/src/dashboard/components/recent-sales.tsx +67 -0
- package/templates/vite/src/dashboard/components/search.tsx +13 -0
- package/templates/vite/src/dashboard/components/team-switcher.tsx +205 -0
- package/templates/vite/src/dashboard/components/user-nav.tsx +67 -0
- package/templates/vite/src/dashboard/page.tsx +140 -0
- package/templates/vite/src/lib/utils.ts +19 -0
- package/templates/vite/src/main.tsx +10 -0
- package/templates/vite/src/styles/globals.css +124 -0
- package/templates/vite/src/vite-env.d.ts +1 -0
- package/templates/vite/src-tauri/Cargo.lock +3636 -0
- package/templates/vite/src-tauri/Cargo.toml +33 -0
- package/templates/vite/src-tauri/build.rs +3 -0
- package/templates/vite/src-tauri/icons/128x128.png +0 -0
- package/templates/vite/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/vite/src-tauri/icons/32x32.png +0 -0
- package/templates/vite/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/vite/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/vite/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/vite/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/vite/src-tauri/icons/icon.icns +0 -0
- package/templates/vite/src-tauri/icons/icon.ico +0 -0
- package/templates/vite/src-tauri/icons/icon.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/vite/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/vite/src-tauri/src/main.rs +16 -0
- package/templates/vite/src-tauri/tauri.conf.json +63 -0
- package/templates/vite/tailwind.config.js +78 -0
- package/templates/vite/tsconfig.json +26 -0
- package/templates/vite/tsconfig.node.json +9 -0
- package/templates/vite/vite.config.ts +33 -0
|
@@ -0,0 +1,4318 @@
|
|
|
1
|
+
lockfileVersion: '6.0'
|
|
2
|
+
|
|
3
|
+
dependencies:
|
|
4
|
+
'@faker-js/faker':
|
|
5
|
+
specifier: ^8.0.1
|
|
6
|
+
version: 8.0.1
|
|
7
|
+
'@hookform/resolvers':
|
|
8
|
+
specifier: ^3.1.0
|
|
9
|
+
version: 3.1.0(react-hook-form@7.43.9)
|
|
10
|
+
'@radix-ui/react-accessible-icon':
|
|
11
|
+
specifier: ^1.0.2
|
|
12
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
13
|
+
'@radix-ui/react-accordion':
|
|
14
|
+
specifier: ^1.1.1
|
|
15
|
+
version: 1.1.1(react-dom@18.2.0)(react@18.2.0)
|
|
16
|
+
'@radix-ui/react-alert-dialog':
|
|
17
|
+
specifier: ^1.0.3
|
|
18
|
+
version: 1.0.3(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
19
|
+
'@radix-ui/react-aspect-ratio':
|
|
20
|
+
specifier: ^1.0.2
|
|
21
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
22
|
+
'@radix-ui/react-avatar':
|
|
23
|
+
specifier: ^1.0.2
|
|
24
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
25
|
+
'@radix-ui/react-checkbox':
|
|
26
|
+
specifier: ^1.0.3
|
|
27
|
+
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
28
|
+
'@radix-ui/react-collapsible':
|
|
29
|
+
specifier: ^1.0.2
|
|
30
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
31
|
+
'@radix-ui/react-context-menu':
|
|
32
|
+
specifier: ^2.1.3
|
|
33
|
+
version: 2.1.3(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
34
|
+
'@radix-ui/react-dialog':
|
|
35
|
+
specifier: ^1.0.3
|
|
36
|
+
version: 1.0.3(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
37
|
+
'@radix-ui/react-dropdown-menu':
|
|
38
|
+
specifier: ^2.0.4
|
|
39
|
+
version: 2.0.4(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
40
|
+
'@radix-ui/react-hover-card':
|
|
41
|
+
specifier: ^1.0.5
|
|
42
|
+
version: 1.0.5(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
43
|
+
'@radix-ui/react-label':
|
|
44
|
+
specifier: ^2.0.1
|
|
45
|
+
version: 2.0.1(react-dom@18.2.0)(react@18.2.0)
|
|
46
|
+
'@radix-ui/react-menubar':
|
|
47
|
+
specifier: ^1.0.2
|
|
48
|
+
version: 1.0.2(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
49
|
+
'@radix-ui/react-navigation-menu':
|
|
50
|
+
specifier: ^1.1.2
|
|
51
|
+
version: 1.1.2(react-dom@18.2.0)(react@18.2.0)
|
|
52
|
+
'@radix-ui/react-popover':
|
|
53
|
+
specifier: ^1.0.5
|
|
54
|
+
version: 1.0.5(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
55
|
+
'@radix-ui/react-progress':
|
|
56
|
+
specifier: ^1.0.2
|
|
57
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
58
|
+
'@radix-ui/react-radio-group':
|
|
59
|
+
specifier: ^1.1.2
|
|
60
|
+
version: 1.1.2(react-dom@18.2.0)(react@18.2.0)
|
|
61
|
+
'@radix-ui/react-scroll-area':
|
|
62
|
+
specifier: ^1.0.3
|
|
63
|
+
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
64
|
+
'@radix-ui/react-select':
|
|
65
|
+
specifier: ^1.2.1
|
|
66
|
+
version: 1.2.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
67
|
+
'@radix-ui/react-separator':
|
|
68
|
+
specifier: ^1.0.2
|
|
69
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
70
|
+
'@radix-ui/react-slider':
|
|
71
|
+
specifier: ^1.1.1
|
|
72
|
+
version: 1.1.1(react-dom@18.2.0)(react@18.2.0)
|
|
73
|
+
'@radix-ui/react-slot':
|
|
74
|
+
specifier: ^1.0.1
|
|
75
|
+
version: 1.0.1(react@18.2.0)
|
|
76
|
+
'@radix-ui/react-switch':
|
|
77
|
+
specifier: ^1.0.2
|
|
78
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
79
|
+
'@radix-ui/react-tabs':
|
|
80
|
+
specifier: ^1.0.3
|
|
81
|
+
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
82
|
+
'@radix-ui/react-toast':
|
|
83
|
+
specifier: ^1.1.3
|
|
84
|
+
version: 1.1.3(react-dom@18.2.0)(react@18.2.0)
|
|
85
|
+
'@radix-ui/react-toggle':
|
|
86
|
+
specifier: ^1.0.2
|
|
87
|
+
version: 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
88
|
+
'@radix-ui/react-toggle-group':
|
|
89
|
+
specifier: ^1.0.3
|
|
90
|
+
version: 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
91
|
+
'@radix-ui/react-tooltip':
|
|
92
|
+
specifier: ^1.0.5
|
|
93
|
+
version: 1.0.5(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
94
|
+
'@tailwindcss/line-clamp':
|
|
95
|
+
specifier: ^0.4.4
|
|
96
|
+
version: 0.4.4(tailwindcss@3.3.2)
|
|
97
|
+
'@tanstack/react-table':
|
|
98
|
+
specifier: ^8.9.1
|
|
99
|
+
version: 8.9.1(react-dom@18.2.0)(react@18.2.0)
|
|
100
|
+
'@tauri-apps/api':
|
|
101
|
+
specifier: 2.0.0-alpha.4
|
|
102
|
+
version: 2.0.0-alpha.4
|
|
103
|
+
'@tauri-apps/plugin-window':
|
|
104
|
+
specifier: github:tauri-apps/tauri-plugin-window#v2
|
|
105
|
+
version: github.com/tauri-apps/tauri-plugin-window/884fa34d3a43791129a715a877f37d958bcfd511
|
|
106
|
+
class-variance-authority:
|
|
107
|
+
specifier: ^0.6.0
|
|
108
|
+
version: 0.6.0(typescript@5.0.4)
|
|
109
|
+
clsx:
|
|
110
|
+
specifier: ^1.2.1
|
|
111
|
+
version: 1.2.1
|
|
112
|
+
cmdk:
|
|
113
|
+
specifier: ^0.2.0
|
|
114
|
+
version: 0.2.0(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
115
|
+
date-fns:
|
|
116
|
+
specifier: ^2.30.0
|
|
117
|
+
version: 2.30.0
|
|
118
|
+
lucide-react:
|
|
119
|
+
specifier: ^0.220.0
|
|
120
|
+
version: 0.220.0(react@18.2.0)
|
|
121
|
+
nanoid:
|
|
122
|
+
specifier: ^4.0.2
|
|
123
|
+
version: 4.0.2
|
|
124
|
+
next:
|
|
125
|
+
specifier: ^13.4.4-canary.1
|
|
126
|
+
version: 13.4.4-canary.1(@babel/core@7.21.4)(react-dom@18.2.0)(react@18.2.0)
|
|
127
|
+
next-themes:
|
|
128
|
+
specifier: ^0.2.1
|
|
129
|
+
version: 0.2.1(next@13.4.4-canary.1)(react-dom@18.2.0)(react@18.2.0)
|
|
130
|
+
react:
|
|
131
|
+
specifier: ^18.2.0
|
|
132
|
+
version: 18.2.0
|
|
133
|
+
react-day-picker:
|
|
134
|
+
specifier: ^8.7.1
|
|
135
|
+
version: 8.7.1(date-fns@2.30.0)(react@18.2.0)
|
|
136
|
+
react-dom:
|
|
137
|
+
specifier: ^18.2.0
|
|
138
|
+
version: 18.2.0(react@18.2.0)
|
|
139
|
+
react-hook-form:
|
|
140
|
+
specifier: ^7.43.9
|
|
141
|
+
version: 7.43.9(react@18.2.0)
|
|
142
|
+
react-wrap-balancer:
|
|
143
|
+
specifier: ^0.5.0
|
|
144
|
+
version: 0.5.0(react@18.2.0)
|
|
145
|
+
recharts:
|
|
146
|
+
specifier: ^2.6.2
|
|
147
|
+
version: 2.6.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
|
|
148
|
+
tailwind-merge:
|
|
149
|
+
specifier: ^1.12.0
|
|
150
|
+
version: 1.12.0
|
|
151
|
+
tailwindcss-animate:
|
|
152
|
+
specifier: ^1.0.5
|
|
153
|
+
version: 1.0.5(tailwindcss@3.3.2)
|
|
154
|
+
zod:
|
|
155
|
+
specifier: ^3.21.4
|
|
156
|
+
version: 3.21.4
|
|
157
|
+
|
|
158
|
+
devDependencies:
|
|
159
|
+
'@ianvs/prettier-plugin-sort-imports':
|
|
160
|
+
specifier: ^3.7.2
|
|
161
|
+
version: 3.7.2(prettier@2.8.8)
|
|
162
|
+
'@tauri-apps/cli':
|
|
163
|
+
specifier: 2.0.0-alpha.9
|
|
164
|
+
version: 2.0.0-alpha.9
|
|
165
|
+
'@types/node':
|
|
166
|
+
specifier: ^20.2.3
|
|
167
|
+
version: 20.2.3
|
|
168
|
+
'@types/react':
|
|
169
|
+
specifier: ^18.2.6
|
|
170
|
+
version: 18.2.6
|
|
171
|
+
'@types/react-dom':
|
|
172
|
+
specifier: ^18.2.4
|
|
173
|
+
version: 18.2.4
|
|
174
|
+
autoprefixer:
|
|
175
|
+
specifier: ^10.4.14
|
|
176
|
+
version: 10.4.14(postcss@8.4.23)
|
|
177
|
+
postcss:
|
|
178
|
+
specifier: ^8.4.23
|
|
179
|
+
version: 8.4.23
|
|
180
|
+
prettier:
|
|
181
|
+
specifier: ^2.8.8
|
|
182
|
+
version: 2.8.8
|
|
183
|
+
prettier-plugin-tailwindcss:
|
|
184
|
+
specifier: ^0.3.0
|
|
185
|
+
version: 0.3.0(@ianvs/prettier-plugin-sort-imports@3.7.2)(prettier@2.8.8)
|
|
186
|
+
tailwind-scrollbar:
|
|
187
|
+
specifier: ^3.0.4
|
|
188
|
+
version: 3.0.4(tailwindcss@3.3.2)
|
|
189
|
+
tailwindcss:
|
|
190
|
+
specifier: ^3.3.2
|
|
191
|
+
version: 3.3.2
|
|
192
|
+
taze:
|
|
193
|
+
specifier: ^0.10.1
|
|
194
|
+
version: 0.10.1
|
|
195
|
+
typescript:
|
|
196
|
+
specifier: ^5.0.4
|
|
197
|
+
version: 5.0.4
|
|
198
|
+
|
|
199
|
+
packages:
|
|
200
|
+
|
|
201
|
+
/@alloc/quick-lru@5.2.0:
|
|
202
|
+
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
203
|
+
engines: {node: '>=10'}
|
|
204
|
+
|
|
205
|
+
/@ampproject/remapping@2.2.1:
|
|
206
|
+
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
|
|
207
|
+
engines: {node: '>=6.0.0'}
|
|
208
|
+
dependencies:
|
|
209
|
+
'@jridgewell/gen-mapping': 0.3.3
|
|
210
|
+
'@jridgewell/trace-mapping': 0.3.18
|
|
211
|
+
|
|
212
|
+
/@antfu/ni@0.21.3:
|
|
213
|
+
resolution: {integrity: sha512-iDtQMeMW1kKV4nzQ+tjYOIPUm6nmh7pJe4sM0kx1jdAChKSCBLStqlgIoo5Tce++p+o8cBiWIzC3jg6oHyjzMA==}
|
|
214
|
+
hasBin: true
|
|
215
|
+
dev: true
|
|
216
|
+
|
|
217
|
+
/@antfu/utils@0.5.2:
|
|
218
|
+
resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==}
|
|
219
|
+
dev: true
|
|
220
|
+
|
|
221
|
+
/@babel/code-frame@7.21.4:
|
|
222
|
+
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
|
|
223
|
+
engines: {node: '>=6.9.0'}
|
|
224
|
+
dependencies:
|
|
225
|
+
'@babel/highlight': 7.18.6
|
|
226
|
+
|
|
227
|
+
/@babel/compat-data@7.21.4:
|
|
228
|
+
resolution: {integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==}
|
|
229
|
+
engines: {node: '>=6.9.0'}
|
|
230
|
+
|
|
231
|
+
/@babel/core@7.21.4:
|
|
232
|
+
resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==}
|
|
233
|
+
engines: {node: '>=6.9.0'}
|
|
234
|
+
dependencies:
|
|
235
|
+
'@ampproject/remapping': 2.2.1
|
|
236
|
+
'@babel/code-frame': 7.21.4
|
|
237
|
+
'@babel/generator': 7.21.4
|
|
238
|
+
'@babel/helper-compilation-targets': 7.21.4(@babel/core@7.21.4)
|
|
239
|
+
'@babel/helper-module-transforms': 7.21.2
|
|
240
|
+
'@babel/helpers': 7.21.0
|
|
241
|
+
'@babel/parser': 7.21.4
|
|
242
|
+
'@babel/template': 7.20.7
|
|
243
|
+
'@babel/traverse': 7.21.4
|
|
244
|
+
'@babel/types': 7.21.4
|
|
245
|
+
convert-source-map: 1.9.0
|
|
246
|
+
debug: 4.3.4
|
|
247
|
+
gensync: 1.0.0-beta.2
|
|
248
|
+
json5: 2.2.3
|
|
249
|
+
semver: 6.3.0
|
|
250
|
+
transitivePeerDependencies:
|
|
251
|
+
- supports-color
|
|
252
|
+
|
|
253
|
+
/@babel/generator@7.21.4:
|
|
254
|
+
resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==}
|
|
255
|
+
engines: {node: '>=6.9.0'}
|
|
256
|
+
dependencies:
|
|
257
|
+
'@babel/types': 7.21.4
|
|
258
|
+
'@jridgewell/gen-mapping': 0.3.3
|
|
259
|
+
'@jridgewell/trace-mapping': 0.3.18
|
|
260
|
+
jsesc: 2.5.2
|
|
261
|
+
|
|
262
|
+
/@babel/helper-compilation-targets@7.21.4(@babel/core@7.21.4):
|
|
263
|
+
resolution: {integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==}
|
|
264
|
+
engines: {node: '>=6.9.0'}
|
|
265
|
+
peerDependencies:
|
|
266
|
+
'@babel/core': ^7.0.0
|
|
267
|
+
dependencies:
|
|
268
|
+
'@babel/compat-data': 7.21.4
|
|
269
|
+
'@babel/core': 7.21.4
|
|
270
|
+
'@babel/helper-validator-option': 7.21.0
|
|
271
|
+
browserslist: 4.21.5
|
|
272
|
+
lru-cache: 5.1.1
|
|
273
|
+
semver: 6.3.0
|
|
274
|
+
|
|
275
|
+
/@babel/helper-environment-visitor@7.18.9:
|
|
276
|
+
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
|
|
277
|
+
engines: {node: '>=6.9.0'}
|
|
278
|
+
|
|
279
|
+
/@babel/helper-function-name@7.21.0:
|
|
280
|
+
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
|
|
281
|
+
engines: {node: '>=6.9.0'}
|
|
282
|
+
dependencies:
|
|
283
|
+
'@babel/template': 7.20.7
|
|
284
|
+
'@babel/types': 7.21.4
|
|
285
|
+
|
|
286
|
+
/@babel/helper-hoist-variables@7.18.6:
|
|
287
|
+
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
|
|
288
|
+
engines: {node: '>=6.9.0'}
|
|
289
|
+
dependencies:
|
|
290
|
+
'@babel/types': 7.21.4
|
|
291
|
+
|
|
292
|
+
/@babel/helper-module-imports@7.21.4:
|
|
293
|
+
resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==}
|
|
294
|
+
engines: {node: '>=6.9.0'}
|
|
295
|
+
dependencies:
|
|
296
|
+
'@babel/types': 7.21.4
|
|
297
|
+
|
|
298
|
+
/@babel/helper-module-transforms@7.21.2:
|
|
299
|
+
resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
|
|
300
|
+
engines: {node: '>=6.9.0'}
|
|
301
|
+
dependencies:
|
|
302
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
303
|
+
'@babel/helper-module-imports': 7.21.4
|
|
304
|
+
'@babel/helper-simple-access': 7.20.2
|
|
305
|
+
'@babel/helper-split-export-declaration': 7.18.6
|
|
306
|
+
'@babel/helper-validator-identifier': 7.19.1
|
|
307
|
+
'@babel/template': 7.20.7
|
|
308
|
+
'@babel/traverse': 7.21.4
|
|
309
|
+
'@babel/types': 7.21.4
|
|
310
|
+
transitivePeerDependencies:
|
|
311
|
+
- supports-color
|
|
312
|
+
|
|
313
|
+
/@babel/helper-simple-access@7.20.2:
|
|
314
|
+
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
|
|
315
|
+
engines: {node: '>=6.9.0'}
|
|
316
|
+
dependencies:
|
|
317
|
+
'@babel/types': 7.21.4
|
|
318
|
+
|
|
319
|
+
/@babel/helper-split-export-declaration@7.18.6:
|
|
320
|
+
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
|
|
321
|
+
engines: {node: '>=6.9.0'}
|
|
322
|
+
dependencies:
|
|
323
|
+
'@babel/types': 7.21.4
|
|
324
|
+
|
|
325
|
+
/@babel/helper-string-parser@7.19.4:
|
|
326
|
+
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
|
|
327
|
+
engines: {node: '>=6.9.0'}
|
|
328
|
+
|
|
329
|
+
/@babel/helper-validator-identifier@7.19.1:
|
|
330
|
+
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
|
|
331
|
+
engines: {node: '>=6.9.0'}
|
|
332
|
+
|
|
333
|
+
/@babel/helper-validator-option@7.21.0:
|
|
334
|
+
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
|
|
335
|
+
engines: {node: '>=6.9.0'}
|
|
336
|
+
|
|
337
|
+
/@babel/helpers@7.21.0:
|
|
338
|
+
resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
|
|
339
|
+
engines: {node: '>=6.9.0'}
|
|
340
|
+
dependencies:
|
|
341
|
+
'@babel/template': 7.20.7
|
|
342
|
+
'@babel/traverse': 7.21.4
|
|
343
|
+
'@babel/types': 7.21.4
|
|
344
|
+
transitivePeerDependencies:
|
|
345
|
+
- supports-color
|
|
346
|
+
|
|
347
|
+
/@babel/highlight@7.18.6:
|
|
348
|
+
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
|
|
349
|
+
engines: {node: '>=6.9.0'}
|
|
350
|
+
dependencies:
|
|
351
|
+
'@babel/helper-validator-identifier': 7.19.1
|
|
352
|
+
chalk: 2.4.2
|
|
353
|
+
js-tokens: 4.0.0
|
|
354
|
+
|
|
355
|
+
/@babel/parser@7.21.4:
|
|
356
|
+
resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==}
|
|
357
|
+
engines: {node: '>=6.0.0'}
|
|
358
|
+
hasBin: true
|
|
359
|
+
dependencies:
|
|
360
|
+
'@babel/types': 7.21.4
|
|
361
|
+
|
|
362
|
+
/@babel/runtime@7.21.0:
|
|
363
|
+
resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
|
|
364
|
+
engines: {node: '>=6.9.0'}
|
|
365
|
+
dependencies:
|
|
366
|
+
regenerator-runtime: 0.13.11
|
|
367
|
+
dev: false
|
|
368
|
+
|
|
369
|
+
/@babel/template@7.20.7:
|
|
370
|
+
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
|
|
371
|
+
engines: {node: '>=6.9.0'}
|
|
372
|
+
dependencies:
|
|
373
|
+
'@babel/code-frame': 7.21.4
|
|
374
|
+
'@babel/parser': 7.21.4
|
|
375
|
+
'@babel/types': 7.21.4
|
|
376
|
+
|
|
377
|
+
/@babel/traverse@7.21.4:
|
|
378
|
+
resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==}
|
|
379
|
+
engines: {node: '>=6.9.0'}
|
|
380
|
+
dependencies:
|
|
381
|
+
'@babel/code-frame': 7.21.4
|
|
382
|
+
'@babel/generator': 7.21.4
|
|
383
|
+
'@babel/helper-environment-visitor': 7.18.9
|
|
384
|
+
'@babel/helper-function-name': 7.21.0
|
|
385
|
+
'@babel/helper-hoist-variables': 7.18.6
|
|
386
|
+
'@babel/helper-split-export-declaration': 7.18.6
|
|
387
|
+
'@babel/parser': 7.21.4
|
|
388
|
+
'@babel/types': 7.21.4
|
|
389
|
+
debug: 4.3.4
|
|
390
|
+
globals: 11.12.0
|
|
391
|
+
transitivePeerDependencies:
|
|
392
|
+
- supports-color
|
|
393
|
+
|
|
394
|
+
/@babel/types@7.21.4:
|
|
395
|
+
resolution: {integrity: sha512-rU2oY501qDxE8Pyo7i/Orqma4ziCOrby0/9mvbDUGEfvZjb279Nk9k19e2fiCxHbRRpY2ZyrgW1eq22mvmOIzA==}
|
|
396
|
+
engines: {node: '>=6.9.0'}
|
|
397
|
+
dependencies:
|
|
398
|
+
'@babel/helper-string-parser': 7.19.4
|
|
399
|
+
'@babel/helper-validator-identifier': 7.19.1
|
|
400
|
+
to-fast-properties: 2.0.0
|
|
401
|
+
|
|
402
|
+
/@faker-js/faker@8.0.1:
|
|
403
|
+
resolution: {integrity: sha512-kbh5MenpTN9U0B4QcOI1NoTPlZHniSYQ3BHbhAnPjJGAmmFqxoxTE4sGdpy7ZOO9038DPGCuhXyMkjOr05uVwA==}
|
|
404
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'}
|
|
405
|
+
dev: false
|
|
406
|
+
|
|
407
|
+
/@floating-ui/core@0.7.3:
|
|
408
|
+
resolution: {integrity: sha512-buc8BXHmG9l82+OQXOFU3Kr2XQx9ys01U/Q9HMIrZ300iLc8HLMgh7dcCqgYzAzf4BkoQvDcXf5Y+CuEZ5JBYg==}
|
|
409
|
+
dev: false
|
|
410
|
+
|
|
411
|
+
/@floating-ui/dom@0.5.4:
|
|
412
|
+
resolution: {integrity: sha512-419BMceRLq0RrmTSDxn8hf9R3VCJv2K9PUfugh5JyEFmdjzDo+e8U5EdR8nzKq8Yj1htzLm3b6eQEEam3/rrtg==}
|
|
413
|
+
dependencies:
|
|
414
|
+
'@floating-ui/core': 0.7.3
|
|
415
|
+
dev: false
|
|
416
|
+
|
|
417
|
+
/@floating-ui/react-dom@0.7.2(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
418
|
+
resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==}
|
|
419
|
+
peerDependencies:
|
|
420
|
+
react: '>=16.8.0'
|
|
421
|
+
react-dom: '>=16.8.0'
|
|
422
|
+
dependencies:
|
|
423
|
+
'@floating-ui/dom': 0.5.4
|
|
424
|
+
react: 18.2.0
|
|
425
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
426
|
+
use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.6)(react@18.2.0)
|
|
427
|
+
transitivePeerDependencies:
|
|
428
|
+
- '@types/react'
|
|
429
|
+
dev: false
|
|
430
|
+
|
|
431
|
+
/@gar/promisify@1.1.3:
|
|
432
|
+
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
|
433
|
+
dev: true
|
|
434
|
+
|
|
435
|
+
/@hookform/resolvers@3.1.0(react-hook-form@7.43.9):
|
|
436
|
+
resolution: {integrity: sha512-z0A8K+Nxq+f83Whm/ajlwE6VtQlp/yPHZnXw7XWVPIGm1Vx0QV8KThU3BpbBRfAZ7/dYqCKKBNnQh85BkmBKkA==}
|
|
437
|
+
peerDependencies:
|
|
438
|
+
react-hook-form: ^7.0.0
|
|
439
|
+
dependencies:
|
|
440
|
+
react-hook-form: 7.43.9(react@18.2.0)
|
|
441
|
+
dev: false
|
|
442
|
+
|
|
443
|
+
/@ianvs/prettier-plugin-sort-imports@3.7.2(prettier@2.8.8):
|
|
444
|
+
resolution: {integrity: sha512-bVckKToJM8XV2wTOG1VpeXrSmfAG49esVrikbxeFbY51RJdNke9AdMANJtGuACB59uo+pGlz0wBdWFrRzWyO1A==}
|
|
445
|
+
peerDependencies:
|
|
446
|
+
'@vue/compiler-sfc': '>=3.0.0'
|
|
447
|
+
prettier: 2.x
|
|
448
|
+
peerDependenciesMeta:
|
|
449
|
+
'@vue/compiler-sfc':
|
|
450
|
+
optional: true
|
|
451
|
+
dependencies:
|
|
452
|
+
'@babel/core': 7.21.4
|
|
453
|
+
'@babel/generator': 7.21.4
|
|
454
|
+
'@babel/parser': 7.21.4
|
|
455
|
+
'@babel/traverse': 7.21.4
|
|
456
|
+
'@babel/types': 7.21.4
|
|
457
|
+
javascript-natural-sort: 0.7.1
|
|
458
|
+
lodash.clone: 4.5.0
|
|
459
|
+
lodash.isequal: 4.5.0
|
|
460
|
+
prettier: 2.8.8
|
|
461
|
+
transitivePeerDependencies:
|
|
462
|
+
- supports-color
|
|
463
|
+
dev: true
|
|
464
|
+
|
|
465
|
+
/@isaacs/cliui@8.0.2:
|
|
466
|
+
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
|
467
|
+
engines: {node: '>=12'}
|
|
468
|
+
dependencies:
|
|
469
|
+
string-width: 5.1.2
|
|
470
|
+
string-width-cjs: /string-width@4.2.3
|
|
471
|
+
strip-ansi: 7.0.1
|
|
472
|
+
strip-ansi-cjs: /strip-ansi@6.0.1
|
|
473
|
+
wrap-ansi: 8.1.0
|
|
474
|
+
wrap-ansi-cjs: /wrap-ansi@7.0.0
|
|
475
|
+
dev: true
|
|
476
|
+
|
|
477
|
+
/@jridgewell/gen-mapping@0.3.3:
|
|
478
|
+
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
|
|
479
|
+
engines: {node: '>=6.0.0'}
|
|
480
|
+
dependencies:
|
|
481
|
+
'@jridgewell/set-array': 1.1.2
|
|
482
|
+
'@jridgewell/sourcemap-codec': 1.4.15
|
|
483
|
+
'@jridgewell/trace-mapping': 0.3.18
|
|
484
|
+
|
|
485
|
+
/@jridgewell/resolve-uri@3.1.0:
|
|
486
|
+
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
|
|
487
|
+
engines: {node: '>=6.0.0'}
|
|
488
|
+
|
|
489
|
+
/@jridgewell/set-array@1.1.2:
|
|
490
|
+
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
|
|
491
|
+
engines: {node: '>=6.0.0'}
|
|
492
|
+
|
|
493
|
+
/@jridgewell/sourcemap-codec@1.4.14:
|
|
494
|
+
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
|
495
|
+
|
|
496
|
+
/@jridgewell/sourcemap-codec@1.4.15:
|
|
497
|
+
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
|
|
498
|
+
|
|
499
|
+
/@jridgewell/trace-mapping@0.3.18:
|
|
500
|
+
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
|
|
501
|
+
dependencies:
|
|
502
|
+
'@jridgewell/resolve-uri': 3.1.0
|
|
503
|
+
'@jridgewell/sourcemap-codec': 1.4.14
|
|
504
|
+
|
|
505
|
+
/@next/env@13.4.4-canary.1:
|
|
506
|
+
resolution: {integrity: sha512-tq9Buwcup7OWScmIpdnlzTO+oJNGfsmMTtV8fdn0CcS+8CmPCpVFGPkHo3kJ3SHtOzYmPtvpbUVlnIwSyIUEag==}
|
|
507
|
+
dev: false
|
|
508
|
+
|
|
509
|
+
/@next/swc-darwin-arm64@13.4.4-canary.1:
|
|
510
|
+
resolution: {integrity: sha512-Jr1XyamhX+qop67V95yTJGfO/QWZ2EruteB1rkGDluB1mDSdSthbL28kiioMYwP+lcidrqAiyNQmKzJOUYt40w==}
|
|
511
|
+
engines: {node: '>= 10'}
|
|
512
|
+
cpu: [arm64]
|
|
513
|
+
os: [darwin]
|
|
514
|
+
requiresBuild: true
|
|
515
|
+
dev: false
|
|
516
|
+
optional: true
|
|
517
|
+
|
|
518
|
+
/@next/swc-darwin-x64@13.4.4-canary.1:
|
|
519
|
+
resolution: {integrity: sha512-R5I/SP1NsH4Svk5C4VHU4MmoXzDyia0KYIfF/EGGZJU0/gzvXYkr5l5KGcqp4bdyTdTAx0yralxximwd3KiYdA==}
|
|
520
|
+
engines: {node: '>= 10'}
|
|
521
|
+
cpu: [x64]
|
|
522
|
+
os: [darwin]
|
|
523
|
+
requiresBuild: true
|
|
524
|
+
dev: false
|
|
525
|
+
optional: true
|
|
526
|
+
|
|
527
|
+
/@next/swc-linux-arm64-gnu@13.4.4-canary.1:
|
|
528
|
+
resolution: {integrity: sha512-974PuKFOXacViP3xB0ZzDqkKdOfUwGjzRPRA998Oqna0HVZO0yxRifsmmLn88bWl21zt+2kwylQKc8tTRMM4mg==}
|
|
529
|
+
engines: {node: '>= 10'}
|
|
530
|
+
cpu: [arm64]
|
|
531
|
+
os: [linux]
|
|
532
|
+
requiresBuild: true
|
|
533
|
+
dev: false
|
|
534
|
+
optional: true
|
|
535
|
+
|
|
536
|
+
/@next/swc-linux-arm64-musl@13.4.4-canary.1:
|
|
537
|
+
resolution: {integrity: sha512-EWasyk3ukj0Fndm9fWRiHmBY4P1xRVDsj8mh1RXd06tEkZPYTilfNh2uOW8/cxLzMp3dHou4yJGyuLEPEFcjAA==}
|
|
538
|
+
engines: {node: '>= 10'}
|
|
539
|
+
cpu: [arm64]
|
|
540
|
+
os: [linux]
|
|
541
|
+
requiresBuild: true
|
|
542
|
+
dev: false
|
|
543
|
+
optional: true
|
|
544
|
+
|
|
545
|
+
/@next/swc-linux-x64-gnu@13.4.4-canary.1:
|
|
546
|
+
resolution: {integrity: sha512-wxUuda8j4XXRRESU8yjvnjH4t3Kl9D4f84URfBH/1aAD2O81bdXv3FKIyQdgnfSnUMlvJGFRfgBEne8TwtNF7A==}
|
|
547
|
+
engines: {node: '>= 10'}
|
|
548
|
+
cpu: [x64]
|
|
549
|
+
os: [linux]
|
|
550
|
+
requiresBuild: true
|
|
551
|
+
dev: false
|
|
552
|
+
optional: true
|
|
553
|
+
|
|
554
|
+
/@next/swc-linux-x64-musl@13.4.4-canary.1:
|
|
555
|
+
resolution: {integrity: sha512-BgYipu+SGV12XjOKQq3l/1fksV5ZB6hpjVPfwMQUfG2pSE2FNhNanuwg/9eTzY/pWGK1bemsXBj+FGy5zBR/fw==}
|
|
556
|
+
engines: {node: '>= 10'}
|
|
557
|
+
cpu: [x64]
|
|
558
|
+
os: [linux]
|
|
559
|
+
requiresBuild: true
|
|
560
|
+
dev: false
|
|
561
|
+
optional: true
|
|
562
|
+
|
|
563
|
+
/@next/swc-win32-arm64-msvc@13.4.4-canary.1:
|
|
564
|
+
resolution: {integrity: sha512-QgeZh1xRwqcsiiKK9IV6srsPAytRGc9rwQYgwRLWztYnUfOJOV+sXxobkn6eIDfYfP/Tl1y2aL+ZG142qkN7vQ==}
|
|
565
|
+
engines: {node: '>= 10'}
|
|
566
|
+
cpu: [arm64]
|
|
567
|
+
os: [win32]
|
|
568
|
+
requiresBuild: true
|
|
569
|
+
dev: false
|
|
570
|
+
optional: true
|
|
571
|
+
|
|
572
|
+
/@next/swc-win32-ia32-msvc@13.4.4-canary.1:
|
|
573
|
+
resolution: {integrity: sha512-rOEHFpuHJGiEa/Z2SLMSaypMbPkQMgBFinlnGzXPakziCujH6++d5SLdfXQ/pQW0nOKZdQ9pqsW/1CinUI4XaQ==}
|
|
574
|
+
engines: {node: '>= 10'}
|
|
575
|
+
cpu: [ia32]
|
|
576
|
+
os: [win32]
|
|
577
|
+
requiresBuild: true
|
|
578
|
+
dev: false
|
|
579
|
+
optional: true
|
|
580
|
+
|
|
581
|
+
/@next/swc-win32-x64-msvc@13.4.4-canary.1:
|
|
582
|
+
resolution: {integrity: sha512-cL3HXnpXZkSXVNjdMrlkWOKQnzutRMGC4P+H1Vy4YP+hDIFAHSgfL6zs9HQNmDiDbLFO/zk+gwsYsSkHsLdZCQ==}
|
|
583
|
+
engines: {node: '>= 10'}
|
|
584
|
+
cpu: [x64]
|
|
585
|
+
os: [win32]
|
|
586
|
+
requiresBuild: true
|
|
587
|
+
dev: false
|
|
588
|
+
optional: true
|
|
589
|
+
|
|
590
|
+
/@nodelib/fs.scandir@2.1.5:
|
|
591
|
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
592
|
+
engines: {node: '>= 8'}
|
|
593
|
+
dependencies:
|
|
594
|
+
'@nodelib/fs.stat': 2.0.5
|
|
595
|
+
run-parallel: 1.2.0
|
|
596
|
+
|
|
597
|
+
/@nodelib/fs.stat@2.0.5:
|
|
598
|
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
|
599
|
+
engines: {node: '>= 8'}
|
|
600
|
+
|
|
601
|
+
/@nodelib/fs.walk@1.2.8:
|
|
602
|
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
603
|
+
engines: {node: '>= 8'}
|
|
604
|
+
dependencies:
|
|
605
|
+
'@nodelib/fs.scandir': 2.1.5
|
|
606
|
+
fastq: 1.15.0
|
|
607
|
+
|
|
608
|
+
/@npmcli/config@6.1.6:
|
|
609
|
+
resolution: {integrity: sha512-TM5dwgaz3Un2T5rdHQ6lX+Jj3TQxK6aV1U5OLByZiUS5qnA0NgC6U0aSESQVy80emToz8dtX3aniXD24wRnBaw==}
|
|
610
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
611
|
+
dependencies:
|
|
612
|
+
'@npmcli/map-workspaces': 3.0.3
|
|
613
|
+
ini: 4.1.0
|
|
614
|
+
nopt: 7.1.0
|
|
615
|
+
proc-log: 3.0.0
|
|
616
|
+
read-package-json-fast: 3.0.2
|
|
617
|
+
semver: 7.5.0
|
|
618
|
+
walk-up-path: 3.0.1
|
|
619
|
+
dev: true
|
|
620
|
+
|
|
621
|
+
/@npmcli/fs@2.1.2:
|
|
622
|
+
resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
|
|
623
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
624
|
+
dependencies:
|
|
625
|
+
'@gar/promisify': 1.1.3
|
|
626
|
+
semver: 7.5.0
|
|
627
|
+
dev: true
|
|
628
|
+
|
|
629
|
+
/@npmcli/fs@3.1.0:
|
|
630
|
+
resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==}
|
|
631
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
632
|
+
dependencies:
|
|
633
|
+
semver: 7.5.0
|
|
634
|
+
dev: true
|
|
635
|
+
|
|
636
|
+
/@npmcli/git@4.0.4:
|
|
637
|
+
resolution: {integrity: sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg==}
|
|
638
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
639
|
+
dependencies:
|
|
640
|
+
'@npmcli/promise-spawn': 6.0.2
|
|
641
|
+
lru-cache: 7.18.3
|
|
642
|
+
npm-pick-manifest: 8.0.1
|
|
643
|
+
proc-log: 3.0.0
|
|
644
|
+
promise-inflight: 1.0.1
|
|
645
|
+
promise-retry: 2.0.1
|
|
646
|
+
semver: 7.5.0
|
|
647
|
+
which: 3.0.1
|
|
648
|
+
transitivePeerDependencies:
|
|
649
|
+
- bluebird
|
|
650
|
+
dev: true
|
|
651
|
+
|
|
652
|
+
/@npmcli/installed-package-contents@2.0.2:
|
|
653
|
+
resolution: {integrity: sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==}
|
|
654
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
655
|
+
hasBin: true
|
|
656
|
+
dependencies:
|
|
657
|
+
npm-bundled: 3.0.0
|
|
658
|
+
npm-normalize-package-bin: 3.0.0
|
|
659
|
+
dev: true
|
|
660
|
+
|
|
661
|
+
/@npmcli/map-workspaces@3.0.3:
|
|
662
|
+
resolution: {integrity: sha512-HlCvFuTzw4UNoKyZdqiNrln+qMF71QJkxy2dsusV8QQdoa89e2TF4dATCzBxbl4zzRzdDoWWyP5ADVrNAH9cRQ==}
|
|
663
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
664
|
+
dependencies:
|
|
665
|
+
'@npmcli/name-from-folder': 2.0.0
|
|
666
|
+
glob: 9.3.5
|
|
667
|
+
minimatch: 7.4.6
|
|
668
|
+
read-package-json-fast: 3.0.2
|
|
669
|
+
dev: true
|
|
670
|
+
|
|
671
|
+
/@npmcli/move-file@2.0.1:
|
|
672
|
+
resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==}
|
|
673
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
674
|
+
deprecated: This functionality has been moved to @npmcli/fs
|
|
675
|
+
dependencies:
|
|
676
|
+
mkdirp: 1.0.4
|
|
677
|
+
rimraf: 3.0.2
|
|
678
|
+
dev: true
|
|
679
|
+
|
|
680
|
+
/@npmcli/name-from-folder@2.0.0:
|
|
681
|
+
resolution: {integrity: sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==}
|
|
682
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
683
|
+
dev: true
|
|
684
|
+
|
|
685
|
+
/@npmcli/node-gyp@3.0.0:
|
|
686
|
+
resolution: {integrity: sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==}
|
|
687
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
688
|
+
dev: true
|
|
689
|
+
|
|
690
|
+
/@npmcli/promise-spawn@6.0.2:
|
|
691
|
+
resolution: {integrity: sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==}
|
|
692
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
693
|
+
dependencies:
|
|
694
|
+
which: 3.0.1
|
|
695
|
+
dev: true
|
|
696
|
+
|
|
697
|
+
/@npmcli/run-script@6.0.1:
|
|
698
|
+
resolution: {integrity: sha512-Yi04ZSold8jcbBJD/ahKMJSQCQifH8DAbMwkBvoLaTpGFxzHC3B/5ZyoVR69q/4xedz84tvi9DJOJjNe17h+LA==}
|
|
699
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
700
|
+
dependencies:
|
|
701
|
+
'@npmcli/node-gyp': 3.0.0
|
|
702
|
+
'@npmcli/promise-spawn': 6.0.2
|
|
703
|
+
node-gyp: 9.3.1
|
|
704
|
+
read-package-json-fast: 3.0.2
|
|
705
|
+
which: 3.0.1
|
|
706
|
+
transitivePeerDependencies:
|
|
707
|
+
- bluebird
|
|
708
|
+
- supports-color
|
|
709
|
+
dev: true
|
|
710
|
+
|
|
711
|
+
/@pkgjs/parseargs@0.11.0:
|
|
712
|
+
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
|
713
|
+
engines: {node: '>=14'}
|
|
714
|
+
requiresBuild: true
|
|
715
|
+
dev: true
|
|
716
|
+
optional: true
|
|
717
|
+
|
|
718
|
+
/@radix-ui/number@1.0.0:
|
|
719
|
+
resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==}
|
|
720
|
+
dependencies:
|
|
721
|
+
'@babel/runtime': 7.21.0
|
|
722
|
+
dev: false
|
|
723
|
+
|
|
724
|
+
/@radix-ui/primitive@1.0.0:
|
|
725
|
+
resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==}
|
|
726
|
+
dependencies:
|
|
727
|
+
'@babel/runtime': 7.21.0
|
|
728
|
+
dev: false
|
|
729
|
+
|
|
730
|
+
/@radix-ui/react-accessible-icon@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
731
|
+
resolution: {integrity: sha512-YcZBOOB1xdbVVBK0sQzrpU4kABloQGfjKdp60mmFFq7oIKcWuH7d+auYS63vZMZH1rAijU6TFLawt2hLoPZWfA==}
|
|
732
|
+
peerDependencies:
|
|
733
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
734
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
735
|
+
dependencies:
|
|
736
|
+
'@babel/runtime': 7.21.0
|
|
737
|
+
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
738
|
+
react: 18.2.0
|
|
739
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
740
|
+
dev: false
|
|
741
|
+
|
|
742
|
+
/@radix-ui/react-accordion@1.1.1(react-dom@18.2.0)(react@18.2.0):
|
|
743
|
+
resolution: {integrity: sha512-TQtyyRubYe8DD6DYCovNLTjd2D+TFrNCpr99T5M3cYUbR7BsRxWsxfInjbQ1nHsdy2uPTcnJS5npyXPVfP0piw==}
|
|
744
|
+
peerDependencies:
|
|
745
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
746
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
747
|
+
dependencies:
|
|
748
|
+
'@babel/runtime': 7.21.0
|
|
749
|
+
'@radix-ui/primitive': 1.0.0
|
|
750
|
+
'@radix-ui/react-collapsible': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
751
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
752
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
753
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
754
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
755
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
756
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
757
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
758
|
+
react: 18.2.0
|
|
759
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
760
|
+
dev: false
|
|
761
|
+
|
|
762
|
+
/@radix-ui/react-alert-dialog@1.0.3(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
763
|
+
resolution: {integrity: sha512-QXFy7+bhGi0u+paF2QbJeSCHZs4gLMJIPm6sajUamyW0fro6g1CaSGc5zmc4QmK2NlSGUrq8m+UsUqJYtzvXow==}
|
|
764
|
+
peerDependencies:
|
|
765
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
766
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
767
|
+
dependencies:
|
|
768
|
+
'@babel/runtime': 7.21.0
|
|
769
|
+
'@radix-ui/primitive': 1.0.0
|
|
770
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
771
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
772
|
+
'@radix-ui/react-dialog': 1.0.3(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
773
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
774
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
775
|
+
react: 18.2.0
|
|
776
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
777
|
+
transitivePeerDependencies:
|
|
778
|
+
- '@types/react'
|
|
779
|
+
dev: false
|
|
780
|
+
|
|
781
|
+
/@radix-ui/react-arrow@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
782
|
+
resolution: {integrity: sha512-fqYwhhI9IarZ0ll2cUSfKuXHlJK0qE4AfnRrPBbRwEH/4mGQn04/QFGomLi8TXWIdv9WJk//KgGm+aDxVIr1wA==}
|
|
783
|
+
peerDependencies:
|
|
784
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
785
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
786
|
+
dependencies:
|
|
787
|
+
'@babel/runtime': 7.21.0
|
|
788
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
789
|
+
react: 18.2.0
|
|
790
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
791
|
+
dev: false
|
|
792
|
+
|
|
793
|
+
/@radix-ui/react-aspect-ratio@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
794
|
+
resolution: {integrity: sha512-YCujQYnwcVcakbdhE8eTjhh4QR8CsngEcRlSzIPWw1vp3KPC9orETo8CxuVM65j5HAp0oFoOlIy6v7SuF+9P+Q==}
|
|
795
|
+
peerDependencies:
|
|
796
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
797
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
798
|
+
dependencies:
|
|
799
|
+
'@babel/runtime': 7.21.0
|
|
800
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
801
|
+
react: 18.2.0
|
|
802
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
803
|
+
dev: false
|
|
804
|
+
|
|
805
|
+
/@radix-ui/react-avatar@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
806
|
+
resolution: {integrity: sha512-XRL8z2l9V7hRLCPjHWg/34RBPZUGpmOjmsRSNvIh2DI28GyIWDChbcsDUVc63MzOItk6Q83Ob2KK8k2FUlXlGA==}
|
|
807
|
+
peerDependencies:
|
|
808
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
809
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
810
|
+
dependencies:
|
|
811
|
+
'@babel/runtime': 7.21.0
|
|
812
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
813
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
814
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
815
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
816
|
+
react: 18.2.0
|
|
817
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
818
|
+
dev: false
|
|
819
|
+
|
|
820
|
+
/@radix-ui/react-checkbox@1.0.3(react-dom@18.2.0)(react@18.2.0):
|
|
821
|
+
resolution: {integrity: sha512-55B8/vKzTuzxllH5sGJO4zaBf9gYpJuJRRzaOKm+0oAefRnMvbf+Kgww7IOANVN0w3z7agFJgtnXaZl8Uj95AA==}
|
|
822
|
+
peerDependencies:
|
|
823
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
824
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
825
|
+
dependencies:
|
|
826
|
+
'@babel/runtime': 7.21.0
|
|
827
|
+
'@radix-ui/primitive': 1.0.0
|
|
828
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
829
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
830
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
831
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
832
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
833
|
+
'@radix-ui/react-use-previous': 1.0.0(react@18.2.0)
|
|
834
|
+
'@radix-ui/react-use-size': 1.0.0(react@18.2.0)
|
|
835
|
+
react: 18.2.0
|
|
836
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
837
|
+
dev: false
|
|
838
|
+
|
|
839
|
+
/@radix-ui/react-collapsible@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
840
|
+
resolution: {integrity: sha512-QNiDT6Au8jUU0K1WV+HEd4loH7C5CKQjeXxskwqyiyAkyCmW7qlQM5vSSJCIoQC+OVPyhgafSmGudRP8Qm1/gA==}
|
|
841
|
+
peerDependencies:
|
|
842
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
843
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
844
|
+
dependencies:
|
|
845
|
+
'@babel/runtime': 7.21.0
|
|
846
|
+
'@radix-ui/primitive': 1.0.0
|
|
847
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
848
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
849
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
850
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
851
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
852
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
853
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
854
|
+
react: 18.2.0
|
|
855
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
856
|
+
dev: false
|
|
857
|
+
|
|
858
|
+
/@radix-ui/react-collection@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
859
|
+
resolution: {integrity: sha512-s8WdQQ6wNXpaxdZ308KSr8fEWGrg4un8i4r/w7fhiS4ElRNjk5rRcl0/C6TANG2LvLOGIxtzo/jAg6Qf73TEBw==}
|
|
860
|
+
peerDependencies:
|
|
861
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
862
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
863
|
+
dependencies:
|
|
864
|
+
'@babel/runtime': 7.21.0
|
|
865
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
866
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
867
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
868
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
869
|
+
react: 18.2.0
|
|
870
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
871
|
+
dev: false
|
|
872
|
+
|
|
873
|
+
/@radix-ui/react-compose-refs@1.0.0(react@18.2.0):
|
|
874
|
+
resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
|
|
875
|
+
peerDependencies:
|
|
876
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
877
|
+
dependencies:
|
|
878
|
+
'@babel/runtime': 7.21.0
|
|
879
|
+
react: 18.2.0
|
|
880
|
+
dev: false
|
|
881
|
+
|
|
882
|
+
/@radix-ui/react-context-menu@2.1.3(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
883
|
+
resolution: {integrity: sha512-T+Jpbl/L9eJmlNGdgrl39NUqYTrtHJz4FmjdSc2WDUiZXWMmokK+1K8t/xEcx9q2PvVYfL5UDy9dkzU9UouyGw==}
|
|
884
|
+
peerDependencies:
|
|
885
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
886
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
887
|
+
dependencies:
|
|
888
|
+
'@babel/runtime': 7.21.0
|
|
889
|
+
'@radix-ui/primitive': 1.0.0
|
|
890
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
891
|
+
'@radix-ui/react-menu': 2.0.4(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
892
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
893
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
894
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
895
|
+
react: 18.2.0
|
|
896
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
897
|
+
transitivePeerDependencies:
|
|
898
|
+
- '@types/react'
|
|
899
|
+
dev: false
|
|
900
|
+
|
|
901
|
+
/@radix-ui/react-context@1.0.0(react@18.2.0):
|
|
902
|
+
resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
|
|
903
|
+
peerDependencies:
|
|
904
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
905
|
+
dependencies:
|
|
906
|
+
'@babel/runtime': 7.21.0
|
|
907
|
+
react: 18.2.0
|
|
908
|
+
dev: false
|
|
909
|
+
|
|
910
|
+
/@radix-ui/react-dialog@1.0.0(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
911
|
+
resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
|
|
912
|
+
peerDependencies:
|
|
913
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
914
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
915
|
+
dependencies:
|
|
916
|
+
'@babel/runtime': 7.21.0
|
|
917
|
+
'@radix-ui/primitive': 1.0.0
|
|
918
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
919
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
920
|
+
'@radix-ui/react-dismissable-layer': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
921
|
+
'@radix-ui/react-focus-guards': 1.0.0(react@18.2.0)
|
|
922
|
+
'@radix-ui/react-focus-scope': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
923
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
924
|
+
'@radix-ui/react-portal': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
925
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
926
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
927
|
+
'@radix-ui/react-slot': 1.0.0(react@18.2.0)
|
|
928
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
929
|
+
aria-hidden: 1.2.3
|
|
930
|
+
react: 18.2.0
|
|
931
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
932
|
+
react-remove-scroll: 2.5.4(@types/react@18.2.6)(react@18.2.0)
|
|
933
|
+
transitivePeerDependencies:
|
|
934
|
+
- '@types/react'
|
|
935
|
+
dev: false
|
|
936
|
+
|
|
937
|
+
/@radix-ui/react-dialog@1.0.3(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
938
|
+
resolution: {integrity: sha512-owNhq36kNPqC2/a+zJRioPg6HHnTn5B/sh/NjTY8r4W9g1L5VJlrzZIVcBr7R9Mg8iLjVmh6MGgMlfoVf/WO/A==}
|
|
939
|
+
peerDependencies:
|
|
940
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
941
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
942
|
+
dependencies:
|
|
943
|
+
'@babel/runtime': 7.21.0
|
|
944
|
+
'@radix-ui/primitive': 1.0.0
|
|
945
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
946
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
947
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
948
|
+
'@radix-ui/react-focus-guards': 1.0.0(react@18.2.0)
|
|
949
|
+
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
950
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
951
|
+
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
952
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
953
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
954
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
955
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
956
|
+
aria-hidden: 1.2.3
|
|
957
|
+
react: 18.2.0
|
|
958
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
959
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.6)(react@18.2.0)
|
|
960
|
+
transitivePeerDependencies:
|
|
961
|
+
- '@types/react'
|
|
962
|
+
dev: false
|
|
963
|
+
|
|
964
|
+
/@radix-ui/react-direction@1.0.0(react@18.2.0):
|
|
965
|
+
resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==}
|
|
966
|
+
peerDependencies:
|
|
967
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
968
|
+
dependencies:
|
|
969
|
+
'@babel/runtime': 7.21.0
|
|
970
|
+
react: 18.2.0
|
|
971
|
+
dev: false
|
|
972
|
+
|
|
973
|
+
/@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
974
|
+
resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==}
|
|
975
|
+
peerDependencies:
|
|
976
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
977
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
978
|
+
dependencies:
|
|
979
|
+
'@babel/runtime': 7.21.0
|
|
980
|
+
'@radix-ui/primitive': 1.0.0
|
|
981
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
982
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
983
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
984
|
+
'@radix-ui/react-use-escape-keydown': 1.0.0(react@18.2.0)
|
|
985
|
+
react: 18.2.0
|
|
986
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
987
|
+
dev: false
|
|
988
|
+
|
|
989
|
+
/@radix-ui/react-dismissable-layer@1.0.3(react-dom@18.2.0)(react@18.2.0):
|
|
990
|
+
resolution: {integrity: sha512-nXZOvFjOuHS1ovumntGV7NNoLaEp9JEvTht3MBjP44NSW5hUKj/8OnfN3+8WmB+CEhN44XaGhpHoSsUIEl5P7Q==}
|
|
991
|
+
peerDependencies:
|
|
992
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
993
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
994
|
+
dependencies:
|
|
995
|
+
'@babel/runtime': 7.21.0
|
|
996
|
+
'@radix-ui/primitive': 1.0.0
|
|
997
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
998
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
999
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1000
|
+
'@radix-ui/react-use-escape-keydown': 1.0.2(react@18.2.0)
|
|
1001
|
+
react: 18.2.0
|
|
1002
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1003
|
+
dev: false
|
|
1004
|
+
|
|
1005
|
+
/@radix-ui/react-dropdown-menu@2.0.4(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1006
|
+
resolution: {integrity: sha512-y6AT9+MydyXcByivdK1+QpjWoKaC7MLjkS/cH1Q3keEyMvDkiY85m8o2Bi6+Z1PPUlCsMULopxagQOSfN0wahg==}
|
|
1007
|
+
peerDependencies:
|
|
1008
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1009
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1010
|
+
dependencies:
|
|
1011
|
+
'@babel/runtime': 7.21.0
|
|
1012
|
+
'@radix-ui/primitive': 1.0.0
|
|
1013
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1014
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1015
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1016
|
+
'@radix-ui/react-menu': 2.0.4(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1017
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1018
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1019
|
+
react: 18.2.0
|
|
1020
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1021
|
+
transitivePeerDependencies:
|
|
1022
|
+
- '@types/react'
|
|
1023
|
+
dev: false
|
|
1024
|
+
|
|
1025
|
+
/@radix-ui/react-focus-guards@1.0.0(react@18.2.0):
|
|
1026
|
+
resolution: {integrity: sha512-UagjDk4ijOAnGu4WMUPj9ahi7/zJJqNZ9ZAiGPp7waUWJO0O1aWXi/udPphI0IUjvrhBsZJGSN66dR2dsueLWQ==}
|
|
1027
|
+
peerDependencies:
|
|
1028
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1029
|
+
dependencies:
|
|
1030
|
+
'@babel/runtime': 7.21.0
|
|
1031
|
+
react: 18.2.0
|
|
1032
|
+
dev: false
|
|
1033
|
+
|
|
1034
|
+
/@radix-ui/react-focus-scope@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
1035
|
+
resolution: {integrity: sha512-C4SWtsULLGf/2L4oGeIHlvWQx7Rf+7cX/vKOAD2dXW0A1b5QXwi3wWeaEgW+wn+SEVrraMUk05vLU9fZZz5HbQ==}
|
|
1036
|
+
peerDependencies:
|
|
1037
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1038
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1039
|
+
dependencies:
|
|
1040
|
+
'@babel/runtime': 7.21.0
|
|
1041
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1042
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1043
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1044
|
+
react: 18.2.0
|
|
1045
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1046
|
+
dev: false
|
|
1047
|
+
|
|
1048
|
+
/@radix-ui/react-focus-scope@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1049
|
+
resolution: {integrity: sha512-spwXlNTfeIprt+kaEWE/qYuYT3ZAqJiAGjN/JgdvgVDTu8yc+HuX+WOWXrKliKnLnwck0F6JDkqIERncnih+4A==}
|
|
1050
|
+
peerDependencies:
|
|
1051
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1052
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1053
|
+
dependencies:
|
|
1054
|
+
'@babel/runtime': 7.21.0
|
|
1055
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1056
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1057
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1058
|
+
react: 18.2.0
|
|
1059
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1060
|
+
dev: false
|
|
1061
|
+
|
|
1062
|
+
/@radix-ui/react-hover-card@1.0.5(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1063
|
+
resolution: {integrity: sha512-jXRuZEkxSWdHZbVyL0J46cm7pQjmOMpwJEFKY+VqAJnV+FxS+zIZExI1OCeIiDwCBzUy6If1FfouOsfqBxr86g==}
|
|
1064
|
+
peerDependencies:
|
|
1065
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1066
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1067
|
+
dependencies:
|
|
1068
|
+
'@babel/runtime': 7.21.0
|
|
1069
|
+
'@radix-ui/primitive': 1.0.0
|
|
1070
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1071
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1072
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1073
|
+
'@radix-ui/react-popper': 1.1.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1074
|
+
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1075
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1076
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1077
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1078
|
+
react: 18.2.0
|
|
1079
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1080
|
+
transitivePeerDependencies:
|
|
1081
|
+
- '@types/react'
|
|
1082
|
+
dev: false
|
|
1083
|
+
|
|
1084
|
+
/@radix-ui/react-id@1.0.0(react@18.2.0):
|
|
1085
|
+
resolution: {integrity: sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw==}
|
|
1086
|
+
peerDependencies:
|
|
1087
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1088
|
+
dependencies:
|
|
1089
|
+
'@babel/runtime': 7.21.0
|
|
1090
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1091
|
+
react: 18.2.0
|
|
1092
|
+
dev: false
|
|
1093
|
+
|
|
1094
|
+
/@radix-ui/react-label@2.0.1(react-dom@18.2.0)(react@18.2.0):
|
|
1095
|
+
resolution: {integrity: sha512-qcfbS3B8hTYmEO44RNcXB6pegkxRsJIbdxTMu0PEX0Luv5O2DvTIwwVYxQfUwLpM88EL84QRPLOLgwUSApMsLQ==}
|
|
1096
|
+
peerDependencies:
|
|
1097
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1098
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1099
|
+
dependencies:
|
|
1100
|
+
'@babel/runtime': 7.21.0
|
|
1101
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1102
|
+
react: 18.2.0
|
|
1103
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1104
|
+
dev: false
|
|
1105
|
+
|
|
1106
|
+
/@radix-ui/react-menu@2.0.4(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1107
|
+
resolution: {integrity: sha512-mzKR47tZ1t193trEqlQoJvzY4u9vYfVH16ryBrVrCAGZzkgyWnMQYEZdUkM7y8ak9mrkKtJiqB47TlEnubeOFQ==}
|
|
1108
|
+
peerDependencies:
|
|
1109
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1110
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1111
|
+
dependencies:
|
|
1112
|
+
'@babel/runtime': 7.21.0
|
|
1113
|
+
'@radix-ui/primitive': 1.0.0
|
|
1114
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1115
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1116
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1117
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1118
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1119
|
+
'@radix-ui/react-focus-guards': 1.0.0(react@18.2.0)
|
|
1120
|
+
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1121
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1122
|
+
'@radix-ui/react-popper': 1.1.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1123
|
+
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1124
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1125
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1126
|
+
'@radix-ui/react-roving-focus': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1127
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
1128
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1129
|
+
aria-hidden: 1.2.3
|
|
1130
|
+
react: 18.2.0
|
|
1131
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1132
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.6)(react@18.2.0)
|
|
1133
|
+
transitivePeerDependencies:
|
|
1134
|
+
- '@types/react'
|
|
1135
|
+
dev: false
|
|
1136
|
+
|
|
1137
|
+
/@radix-ui/react-menubar@1.0.2(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1138
|
+
resolution: {integrity: sha512-woEg2ZODGoJHonr6ZwC01ZCpDifS6BapI5ythRfvWPBeL/80CX3u4sQKaF/58bbAZQsDnVwO5M9b0XVBN3jLhA==}
|
|
1139
|
+
peerDependencies:
|
|
1140
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1141
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1142
|
+
dependencies:
|
|
1143
|
+
'@babel/runtime': 7.21.0
|
|
1144
|
+
'@radix-ui/primitive': 1.0.0
|
|
1145
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1146
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1147
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1148
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1149
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1150
|
+
'@radix-ui/react-menu': 2.0.4(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1151
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1152
|
+
'@radix-ui/react-roving-focus': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1153
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1154
|
+
react: 18.2.0
|
|
1155
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1156
|
+
transitivePeerDependencies:
|
|
1157
|
+
- '@types/react'
|
|
1158
|
+
dev: false
|
|
1159
|
+
|
|
1160
|
+
/@radix-ui/react-navigation-menu@1.1.2(react-dom@18.2.0)(react@18.2.0):
|
|
1161
|
+
resolution: {integrity: sha512-1fSjOAGTThYSgJ5pENG2V8we7+6KDbfbiyt66HmLTeo0W3PAmmciclm0o97VlcVZW7q5Vg2hN7Cbj4XKo5u2sw==}
|
|
1162
|
+
peerDependencies:
|
|
1163
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1164
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1165
|
+
dependencies:
|
|
1166
|
+
'@babel/runtime': 7.21.0
|
|
1167
|
+
'@radix-ui/primitive': 1.0.0
|
|
1168
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1169
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1170
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1171
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1172
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1173
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1174
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1175
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1176
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1177
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1178
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1179
|
+
'@radix-ui/react-use-previous': 1.0.0(react@18.2.0)
|
|
1180
|
+
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1181
|
+
react: 18.2.0
|
|
1182
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1183
|
+
dev: false
|
|
1184
|
+
|
|
1185
|
+
/@radix-ui/react-popover@1.0.5(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1186
|
+
resolution: {integrity: sha512-GRHZ8yD12MrN2NLobHPE8Rb5uHTxd9x372DE9PPNnBjpczAQHcZ5ne0KXG4xpf+RDdXSzdLv9ym6mYJCDTaUZg==}
|
|
1187
|
+
peerDependencies:
|
|
1188
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1189
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1190
|
+
dependencies:
|
|
1191
|
+
'@babel/runtime': 7.21.0
|
|
1192
|
+
'@radix-ui/primitive': 1.0.0
|
|
1193
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1194
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1195
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1196
|
+
'@radix-ui/react-focus-guards': 1.0.0(react@18.2.0)
|
|
1197
|
+
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1198
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1199
|
+
'@radix-ui/react-popper': 1.1.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1200
|
+
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1201
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1202
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1203
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
1204
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1205
|
+
aria-hidden: 1.2.3
|
|
1206
|
+
react: 18.2.0
|
|
1207
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1208
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.6)(react@18.2.0)
|
|
1209
|
+
transitivePeerDependencies:
|
|
1210
|
+
- '@types/react'
|
|
1211
|
+
dev: false
|
|
1212
|
+
|
|
1213
|
+
/@radix-ui/react-popper@1.1.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1214
|
+
resolution: {integrity: sha512-keYDcdMPNMjSC8zTsZ8wezUMiWM9Yj14wtF3s0PTIs9srnEPC9Kt2Gny1T3T81mmSeyDjZxsD9N5WCwNNb712w==}
|
|
1215
|
+
peerDependencies:
|
|
1216
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1217
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1218
|
+
dependencies:
|
|
1219
|
+
'@babel/runtime': 7.21.0
|
|
1220
|
+
'@floating-ui/react-dom': 0.7.2(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1221
|
+
'@radix-ui/react-arrow': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1222
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1223
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1224
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1225
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1226
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1227
|
+
'@radix-ui/react-use-rect': 1.0.0(react@18.2.0)
|
|
1228
|
+
'@radix-ui/react-use-size': 1.0.0(react@18.2.0)
|
|
1229
|
+
'@radix-ui/rect': 1.0.0
|
|
1230
|
+
react: 18.2.0
|
|
1231
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1232
|
+
transitivePeerDependencies:
|
|
1233
|
+
- '@types/react'
|
|
1234
|
+
dev: false
|
|
1235
|
+
|
|
1236
|
+
/@radix-ui/react-portal@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
1237
|
+
resolution: {integrity: sha512-a8qyFO/Xb99d8wQdu4o7qnigNjTPG123uADNecz0eX4usnQEj7o+cG4ZX4zkqq98NYekT7UoEQIjxBNWIFuqTA==}
|
|
1238
|
+
peerDependencies:
|
|
1239
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1240
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1241
|
+
dependencies:
|
|
1242
|
+
'@babel/runtime': 7.21.0
|
|
1243
|
+
'@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1244
|
+
react: 18.2.0
|
|
1245
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1246
|
+
dev: false
|
|
1247
|
+
|
|
1248
|
+
/@radix-ui/react-portal@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1249
|
+
resolution: {integrity: sha512-swu32idoCW7KA2VEiUZGBSu9nB6qwGdV6k6HYhUoOo3M1FFpD+VgLzUqtt3mwL1ssz7r2x8MggpLSQach2Xy/Q==}
|
|
1250
|
+
peerDependencies:
|
|
1251
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1252
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1253
|
+
dependencies:
|
|
1254
|
+
'@babel/runtime': 7.21.0
|
|
1255
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1256
|
+
react: 18.2.0
|
|
1257
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1258
|
+
dev: false
|
|
1259
|
+
|
|
1260
|
+
/@radix-ui/react-presence@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
1261
|
+
resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==}
|
|
1262
|
+
peerDependencies:
|
|
1263
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1264
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1265
|
+
dependencies:
|
|
1266
|
+
'@babel/runtime': 7.21.0
|
|
1267
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1268
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1269
|
+
react: 18.2.0
|
|
1270
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1271
|
+
dev: false
|
|
1272
|
+
|
|
1273
|
+
/@radix-ui/react-primitive@1.0.0(react-dom@18.2.0)(react@18.2.0):
|
|
1274
|
+
resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==}
|
|
1275
|
+
peerDependencies:
|
|
1276
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1277
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1278
|
+
dependencies:
|
|
1279
|
+
'@babel/runtime': 7.21.0
|
|
1280
|
+
'@radix-ui/react-slot': 1.0.0(react@18.2.0)
|
|
1281
|
+
react: 18.2.0
|
|
1282
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1283
|
+
dev: false
|
|
1284
|
+
|
|
1285
|
+
/@radix-ui/react-primitive@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1286
|
+
resolution: {integrity: sha512-zY6G5Qq4R8diFPNwtyoLRZBxzu1Z+SXMlfYpChN7Dv8gvmx9X3qhDqiLWvKseKVJMuedFeU/Sa0Sy/Ia+t06Dw==}
|
|
1287
|
+
peerDependencies:
|
|
1288
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1289
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1290
|
+
dependencies:
|
|
1291
|
+
'@babel/runtime': 7.21.0
|
|
1292
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
1293
|
+
react: 18.2.0
|
|
1294
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1295
|
+
dev: false
|
|
1296
|
+
|
|
1297
|
+
/@radix-ui/react-progress@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1298
|
+
resolution: {integrity: sha512-c16RVM43ct2koRcMmPw4b47JWFNs89qe5p4Um9dwoPs0yi+d7It1MJ35EpsX+93o31Mqdwe4vQyu0SrHrygdCg==}
|
|
1299
|
+
peerDependencies:
|
|
1300
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1301
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1302
|
+
dependencies:
|
|
1303
|
+
'@babel/runtime': 7.21.0
|
|
1304
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1305
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1306
|
+
react: 18.2.0
|
|
1307
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1308
|
+
dev: false
|
|
1309
|
+
|
|
1310
|
+
/@radix-ui/react-radio-group@1.1.2(react-dom@18.2.0)(react@18.2.0):
|
|
1311
|
+
resolution: {integrity: sha512-S7K8upMjOkx1fTUzEugbfCYPwI9Yw4m2h2ZfJP+ZWP/Mzc/LE2T6QgiAMaSaC3vZSxU5Kk5Eb377zMklWeaaCQ==}
|
|
1312
|
+
peerDependencies:
|
|
1313
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1314
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1315
|
+
dependencies:
|
|
1316
|
+
'@babel/runtime': 7.21.0
|
|
1317
|
+
'@radix-ui/primitive': 1.0.0
|
|
1318
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1319
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1320
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1321
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1322
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1323
|
+
'@radix-ui/react-roving-focus': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1324
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1325
|
+
'@radix-ui/react-use-previous': 1.0.0(react@18.2.0)
|
|
1326
|
+
'@radix-ui/react-use-size': 1.0.0(react@18.2.0)
|
|
1327
|
+
react: 18.2.0
|
|
1328
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1329
|
+
dev: false
|
|
1330
|
+
|
|
1331
|
+
/@radix-ui/react-roving-focus@1.0.3(react-dom@18.2.0)(react@18.2.0):
|
|
1332
|
+
resolution: {integrity: sha512-stjCkIoMe6h+1fWtXlA6cRfikdBzCLp3SnVk7c48cv/uy3DTGoXhN76YaOYUJuy3aEDvDIKwKR5KSmvrtPvQPQ==}
|
|
1333
|
+
peerDependencies:
|
|
1334
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1335
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1336
|
+
dependencies:
|
|
1337
|
+
'@babel/runtime': 7.21.0
|
|
1338
|
+
'@radix-ui/primitive': 1.0.0
|
|
1339
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1340
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1341
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1342
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1343
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1344
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1345
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1346
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1347
|
+
react: 18.2.0
|
|
1348
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1349
|
+
dev: false
|
|
1350
|
+
|
|
1351
|
+
/@radix-ui/react-scroll-area@1.0.3(react-dom@18.2.0)(react@18.2.0):
|
|
1352
|
+
resolution: {integrity: sha512-sBX9j8Q+0/jReNObEAveKIGXJtk3xUoSIx4cMKygGtO128QJyVDn01XNOFsyvihKDCTcu7SINzQ2jPAZEhIQtw==}
|
|
1353
|
+
peerDependencies:
|
|
1354
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1355
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1356
|
+
dependencies:
|
|
1357
|
+
'@babel/runtime': 7.21.0
|
|
1358
|
+
'@radix-ui/number': 1.0.0
|
|
1359
|
+
'@radix-ui/primitive': 1.0.0
|
|
1360
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1361
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1362
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1363
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1364
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1365
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1366
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1367
|
+
react: 18.2.0
|
|
1368
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1369
|
+
dev: false
|
|
1370
|
+
|
|
1371
|
+
/@radix-ui/react-select@1.2.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1372
|
+
resolution: {integrity: sha512-GULRMITaOHNj79BZvQs3iZO0+f2IgI8g5HDhMi7Bnc13t7IlG86NFtOCfTLme4PNZdEtU+no+oGgcl6IFiphpQ==}
|
|
1373
|
+
peerDependencies:
|
|
1374
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1375
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1376
|
+
dependencies:
|
|
1377
|
+
'@babel/runtime': 7.21.0
|
|
1378
|
+
'@radix-ui/number': 1.0.0
|
|
1379
|
+
'@radix-ui/primitive': 1.0.0
|
|
1380
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1381
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1382
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1383
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1384
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1385
|
+
'@radix-ui/react-focus-guards': 1.0.0(react@18.2.0)
|
|
1386
|
+
'@radix-ui/react-focus-scope': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1387
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1388
|
+
'@radix-ui/react-popper': 1.1.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1389
|
+
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1390
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1391
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
1392
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1393
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1394
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1395
|
+
'@radix-ui/react-use-previous': 1.0.0(react@18.2.0)
|
|
1396
|
+
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1397
|
+
aria-hidden: 1.2.3
|
|
1398
|
+
react: 18.2.0
|
|
1399
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1400
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.6)(react@18.2.0)
|
|
1401
|
+
transitivePeerDependencies:
|
|
1402
|
+
- '@types/react'
|
|
1403
|
+
dev: false
|
|
1404
|
+
|
|
1405
|
+
/@radix-ui/react-separator@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1406
|
+
resolution: {integrity: sha512-lZoAG/rS2jzb/OSvyBrpN3dmikw20ewmWx1GkM1VldbDyD0DACCbH9LIXSrqyS/2mE1VYKOHmyq5W90Dx4ryqA==}
|
|
1407
|
+
peerDependencies:
|
|
1408
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1409
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1410
|
+
dependencies:
|
|
1411
|
+
'@babel/runtime': 7.21.0
|
|
1412
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1413
|
+
react: 18.2.0
|
|
1414
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1415
|
+
dev: false
|
|
1416
|
+
|
|
1417
|
+
/@radix-ui/react-slider@1.1.1(react-dom@18.2.0)(react@18.2.0):
|
|
1418
|
+
resolution: {integrity: sha512-0aswLpUKZIraPEOcXfwW25N1KPfLA6Mvm1TxogUChGsbLbys2ihd7uk9XAKsol9ZQPucxh2/mybwdRtAKrs/MQ==}
|
|
1419
|
+
peerDependencies:
|
|
1420
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1421
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1422
|
+
dependencies:
|
|
1423
|
+
'@babel/runtime': 7.21.0
|
|
1424
|
+
'@radix-ui/number': 1.0.0
|
|
1425
|
+
'@radix-ui/primitive': 1.0.0
|
|
1426
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1427
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1428
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1429
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1430
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1431
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1432
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1433
|
+
'@radix-ui/react-use-previous': 1.0.0(react@18.2.0)
|
|
1434
|
+
'@radix-ui/react-use-size': 1.0.0(react@18.2.0)
|
|
1435
|
+
react: 18.2.0
|
|
1436
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1437
|
+
dev: false
|
|
1438
|
+
|
|
1439
|
+
/@radix-ui/react-slot@1.0.0(react@18.2.0):
|
|
1440
|
+
resolution: {integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==}
|
|
1441
|
+
peerDependencies:
|
|
1442
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1443
|
+
dependencies:
|
|
1444
|
+
'@babel/runtime': 7.21.0
|
|
1445
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1446
|
+
react: 18.2.0
|
|
1447
|
+
dev: false
|
|
1448
|
+
|
|
1449
|
+
/@radix-ui/react-slot@1.0.1(react@18.2.0):
|
|
1450
|
+
resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==}
|
|
1451
|
+
peerDependencies:
|
|
1452
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1453
|
+
dependencies:
|
|
1454
|
+
'@babel/runtime': 7.21.0
|
|
1455
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1456
|
+
react: 18.2.0
|
|
1457
|
+
dev: false
|
|
1458
|
+
|
|
1459
|
+
/@radix-ui/react-switch@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1460
|
+
resolution: {integrity: sha512-BcG/LKehxt36NXG0wPnoCitIfSMtU9Xo7BmythYA1PAMLtsMvW7kALfBzmduQoHTWcKr0AVcFyh0gChBUp9TiQ==}
|
|
1461
|
+
peerDependencies:
|
|
1462
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1463
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1464
|
+
dependencies:
|
|
1465
|
+
'@babel/runtime': 7.21.0
|
|
1466
|
+
'@radix-ui/primitive': 1.0.0
|
|
1467
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1468
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1469
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1470
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1471
|
+
'@radix-ui/react-use-previous': 1.0.0(react@18.2.0)
|
|
1472
|
+
'@radix-ui/react-use-size': 1.0.0(react@18.2.0)
|
|
1473
|
+
react: 18.2.0
|
|
1474
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1475
|
+
dev: false
|
|
1476
|
+
|
|
1477
|
+
/@radix-ui/react-tabs@1.0.3(react-dom@18.2.0)(react@18.2.0):
|
|
1478
|
+
resolution: {integrity: sha512-4CkF/Rx1GcrusI/JZ1Rvyx4okGUs6wEenWA0RG/N+CwkRhTy7t54y7BLsWUXrAz/GRbBfHQg/Odfs/RoW0CiRA==}
|
|
1479
|
+
peerDependencies:
|
|
1480
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1481
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1482
|
+
dependencies:
|
|
1483
|
+
'@babel/runtime': 7.21.0
|
|
1484
|
+
'@radix-ui/primitive': 1.0.0
|
|
1485
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1486
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1487
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1488
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1489
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1490
|
+
'@radix-ui/react-roving-focus': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1491
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1492
|
+
react: 18.2.0
|
|
1493
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1494
|
+
dev: false
|
|
1495
|
+
|
|
1496
|
+
/@radix-ui/react-toast@1.1.3(react-dom@18.2.0)(react@18.2.0):
|
|
1497
|
+
resolution: {integrity: sha512-yHFgpxi9wjbfPvpSPdYAzivCqw48eA1ofT8m/WqYOVTxKPdmQMuVKRYPlMmj4C1d6tJdFj/LBa1J4iY3fL4OwQ==}
|
|
1498
|
+
peerDependencies:
|
|
1499
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1500
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1501
|
+
dependencies:
|
|
1502
|
+
'@babel/runtime': 7.21.0
|
|
1503
|
+
'@radix-ui/primitive': 1.0.0
|
|
1504
|
+
'@radix-ui/react-collection': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1505
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1506
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1507
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1508
|
+
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1509
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1510
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1511
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1512
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1513
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1514
|
+
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1515
|
+
react: 18.2.0
|
|
1516
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1517
|
+
dev: false
|
|
1518
|
+
|
|
1519
|
+
/@radix-ui/react-toggle-group@1.0.3(react-dom@18.2.0)(react@18.2.0):
|
|
1520
|
+
resolution: {integrity: sha512-fl7yQ3Ty9+jeWb+TwzMkidXhTgFc5HKFxaEDn9nShjLPS1ya/bA5t2JK8wkUaUH6mo6yU+M3vcmUkxnchlXYtw==}
|
|
1521
|
+
peerDependencies:
|
|
1522
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1523
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1524
|
+
dependencies:
|
|
1525
|
+
'@babel/runtime': 7.21.0
|
|
1526
|
+
'@radix-ui/primitive': 1.0.0
|
|
1527
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1528
|
+
'@radix-ui/react-direction': 1.0.0(react@18.2.0)
|
|
1529
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1530
|
+
'@radix-ui/react-roving-focus': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1531
|
+
'@radix-ui/react-toggle': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1532
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1533
|
+
react: 18.2.0
|
|
1534
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1535
|
+
dev: false
|
|
1536
|
+
|
|
1537
|
+
/@radix-ui/react-toggle@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1538
|
+
resolution: {integrity: sha512-1MhVrHjgdmYDBgBpmOB0sjK096gFrVqUocsHNapkOTkZIxOwjpGxnW9e24CjQQX9D/c57dI6E8zAAdeAeIdY8g==}
|
|
1539
|
+
peerDependencies:
|
|
1540
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1541
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1542
|
+
dependencies:
|
|
1543
|
+
'@babel/runtime': 7.21.0
|
|
1544
|
+
'@radix-ui/primitive': 1.0.0
|
|
1545
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1546
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1547
|
+
react: 18.2.0
|
|
1548
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1549
|
+
dev: false
|
|
1550
|
+
|
|
1551
|
+
/@radix-ui/react-tooltip@1.0.5(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
1552
|
+
resolution: {integrity: sha512-cDKVcfzyO6PpckZekODJZDe5ZxZ2fCZlzKzTmPhe4mX9qTHRfLcKgqb0OKf22xLwDequ2tVleim+ZYx3rabD5w==}
|
|
1553
|
+
peerDependencies:
|
|
1554
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1555
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1556
|
+
dependencies:
|
|
1557
|
+
'@babel/runtime': 7.21.0
|
|
1558
|
+
'@radix-ui/primitive': 1.0.0
|
|
1559
|
+
'@radix-ui/react-compose-refs': 1.0.0(react@18.2.0)
|
|
1560
|
+
'@radix-ui/react-context': 1.0.0(react@18.2.0)
|
|
1561
|
+
'@radix-ui/react-dismissable-layer': 1.0.3(react-dom@18.2.0)(react@18.2.0)
|
|
1562
|
+
'@radix-ui/react-id': 1.0.0(react@18.2.0)
|
|
1563
|
+
'@radix-ui/react-popper': 1.1.1(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
1564
|
+
'@radix-ui/react-portal': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1565
|
+
'@radix-ui/react-presence': 1.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1566
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1567
|
+
'@radix-ui/react-slot': 1.0.1(react@18.2.0)
|
|
1568
|
+
'@radix-ui/react-use-controllable-state': 1.0.0(react@18.2.0)
|
|
1569
|
+
'@radix-ui/react-visually-hidden': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1570
|
+
react: 18.2.0
|
|
1571
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1572
|
+
transitivePeerDependencies:
|
|
1573
|
+
- '@types/react'
|
|
1574
|
+
dev: false
|
|
1575
|
+
|
|
1576
|
+
/@radix-ui/react-use-callback-ref@1.0.0(react@18.2.0):
|
|
1577
|
+
resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==}
|
|
1578
|
+
peerDependencies:
|
|
1579
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1580
|
+
dependencies:
|
|
1581
|
+
'@babel/runtime': 7.21.0
|
|
1582
|
+
react: 18.2.0
|
|
1583
|
+
dev: false
|
|
1584
|
+
|
|
1585
|
+
/@radix-ui/react-use-controllable-state@1.0.0(react@18.2.0):
|
|
1586
|
+
resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
|
|
1587
|
+
peerDependencies:
|
|
1588
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1589
|
+
dependencies:
|
|
1590
|
+
'@babel/runtime': 7.21.0
|
|
1591
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1592
|
+
react: 18.2.0
|
|
1593
|
+
dev: false
|
|
1594
|
+
|
|
1595
|
+
/@radix-ui/react-use-escape-keydown@1.0.0(react@18.2.0):
|
|
1596
|
+
resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
|
|
1597
|
+
peerDependencies:
|
|
1598
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1599
|
+
dependencies:
|
|
1600
|
+
'@babel/runtime': 7.21.0
|
|
1601
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1602
|
+
react: 18.2.0
|
|
1603
|
+
dev: false
|
|
1604
|
+
|
|
1605
|
+
/@radix-ui/react-use-escape-keydown@1.0.2(react@18.2.0):
|
|
1606
|
+
resolution: {integrity: sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA==}
|
|
1607
|
+
peerDependencies:
|
|
1608
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1609
|
+
dependencies:
|
|
1610
|
+
'@babel/runtime': 7.21.0
|
|
1611
|
+
'@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0)
|
|
1612
|
+
react: 18.2.0
|
|
1613
|
+
dev: false
|
|
1614
|
+
|
|
1615
|
+
/@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0):
|
|
1616
|
+
resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==}
|
|
1617
|
+
peerDependencies:
|
|
1618
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1619
|
+
dependencies:
|
|
1620
|
+
'@babel/runtime': 7.21.0
|
|
1621
|
+
react: 18.2.0
|
|
1622
|
+
dev: false
|
|
1623
|
+
|
|
1624
|
+
/@radix-ui/react-use-previous@1.0.0(react@18.2.0):
|
|
1625
|
+
resolution: {integrity: sha512-RG2K8z/K7InnOKpq6YLDmT49HGjNmrK+fr82UCVKT2sW0GYfVnYp4wZWBooT/EYfQ5faA9uIjvsuMMhH61rheg==}
|
|
1626
|
+
peerDependencies:
|
|
1627
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1628
|
+
dependencies:
|
|
1629
|
+
'@babel/runtime': 7.21.0
|
|
1630
|
+
react: 18.2.0
|
|
1631
|
+
dev: false
|
|
1632
|
+
|
|
1633
|
+
/@radix-ui/react-use-rect@1.0.0(react@18.2.0):
|
|
1634
|
+
resolution: {integrity: sha512-TB7pID8NRMEHxb/qQJpvSt3hQU4sqNPM1VCTjTRjEOa7cEop/QMuq8S6fb/5Tsz64kqSvB9WnwsDHtjnrM9qew==}
|
|
1635
|
+
peerDependencies:
|
|
1636
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1637
|
+
dependencies:
|
|
1638
|
+
'@babel/runtime': 7.21.0
|
|
1639
|
+
'@radix-ui/rect': 1.0.0
|
|
1640
|
+
react: 18.2.0
|
|
1641
|
+
dev: false
|
|
1642
|
+
|
|
1643
|
+
/@radix-ui/react-use-size@1.0.0(react@18.2.0):
|
|
1644
|
+
resolution: {integrity: sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==}
|
|
1645
|
+
peerDependencies:
|
|
1646
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1647
|
+
dependencies:
|
|
1648
|
+
'@babel/runtime': 7.21.0
|
|
1649
|
+
'@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0)
|
|
1650
|
+
react: 18.2.0
|
|
1651
|
+
dev: false
|
|
1652
|
+
|
|
1653
|
+
/@radix-ui/react-visually-hidden@1.0.2(react-dom@18.2.0)(react@18.2.0):
|
|
1654
|
+
resolution: {integrity: sha512-qirnJxtYn73HEk1rXL12/mXnu2rwsNHDID10th2JGtdK25T9wX+mxRmGt7iPSahw512GbZOc0syZX1nLQGoEOg==}
|
|
1655
|
+
peerDependencies:
|
|
1656
|
+
react: ^16.8 || ^17.0 || ^18.0
|
|
1657
|
+
react-dom: ^16.8 || ^17.0 || ^18.0
|
|
1658
|
+
dependencies:
|
|
1659
|
+
'@babel/runtime': 7.21.0
|
|
1660
|
+
'@radix-ui/react-primitive': 1.0.2(react-dom@18.2.0)(react@18.2.0)
|
|
1661
|
+
react: 18.2.0
|
|
1662
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1663
|
+
dev: false
|
|
1664
|
+
|
|
1665
|
+
/@radix-ui/rect@1.0.0:
|
|
1666
|
+
resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==}
|
|
1667
|
+
dependencies:
|
|
1668
|
+
'@babel/runtime': 7.21.0
|
|
1669
|
+
dev: false
|
|
1670
|
+
|
|
1671
|
+
/@sigstore/protobuf-specs@0.1.0:
|
|
1672
|
+
resolution: {integrity: sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ==}
|
|
1673
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
1674
|
+
dev: true
|
|
1675
|
+
|
|
1676
|
+
/@swc/helpers@0.5.1:
|
|
1677
|
+
resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
|
|
1678
|
+
dependencies:
|
|
1679
|
+
tslib: 2.5.0
|
|
1680
|
+
dev: false
|
|
1681
|
+
|
|
1682
|
+
/@tailwindcss/line-clamp@0.4.4(tailwindcss@3.3.2):
|
|
1683
|
+
resolution: {integrity: sha512-5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g==}
|
|
1684
|
+
peerDependencies:
|
|
1685
|
+
tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1'
|
|
1686
|
+
dependencies:
|
|
1687
|
+
tailwindcss: 3.3.2
|
|
1688
|
+
dev: false
|
|
1689
|
+
|
|
1690
|
+
/@tanstack/react-table@8.9.1(react-dom@18.2.0)(react@18.2.0):
|
|
1691
|
+
resolution: {integrity: sha512-yHs2m6lk5J5RNcu2dNtsDGux66wNXZjEgzxos6MRCX8gL+nqxeW3ZglqP6eANN0bGElPnjvqiUHGQvdACOr3Cw==}
|
|
1692
|
+
engines: {node: '>=12'}
|
|
1693
|
+
peerDependencies:
|
|
1694
|
+
react: '>=16'
|
|
1695
|
+
react-dom: '>=16'
|
|
1696
|
+
dependencies:
|
|
1697
|
+
'@tanstack/table-core': 8.9.1
|
|
1698
|
+
react: 18.2.0
|
|
1699
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
1700
|
+
dev: false
|
|
1701
|
+
|
|
1702
|
+
/@tanstack/table-core@8.9.1:
|
|
1703
|
+
resolution: {integrity: sha512-2+R83n8vMZND0q3W1lSiF7co9nFbeWbjAErFf27xwbeA9E0wtUu5ZDfgj+TZ6JzdAEQAgfxkk/QNFAKiS8E4MA==}
|
|
1704
|
+
engines: {node: '>=12'}
|
|
1705
|
+
dev: false
|
|
1706
|
+
|
|
1707
|
+
/@tauri-apps/api@2.0.0-alpha.4:
|
|
1708
|
+
resolution: {integrity: sha512-gWe5fFHbwFM+dmdDPtlDvVDVtoMneGRM+S8mECevWhKpXYxId0yxznE56YGAvPSJXC3vgsXw16mOmkTnEVKnaw==}
|
|
1709
|
+
engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'}
|
|
1710
|
+
dev: false
|
|
1711
|
+
|
|
1712
|
+
/@tauri-apps/cli-darwin-arm64@2.0.0-alpha.9:
|
|
1713
|
+
resolution: {integrity: sha512-h7AQY4MbHyy7CLANfoegJyaypKQ3fYPlBA3mnhtF+zntrMxVTv+HO9sgn98jGnwlOak8y0NPPKJ6gZFu5GYiNg==}
|
|
1714
|
+
engines: {node: '>= 10'}
|
|
1715
|
+
cpu: [arm64]
|
|
1716
|
+
os: [darwin]
|
|
1717
|
+
requiresBuild: true
|
|
1718
|
+
dev: true
|
|
1719
|
+
optional: true
|
|
1720
|
+
|
|
1721
|
+
/@tauri-apps/cli-darwin-x64@2.0.0-alpha.9:
|
|
1722
|
+
resolution: {integrity: sha512-8RtvzZ4/1gZU8SvMaCygtjc9Q0bMnA0NuQKOMrehRfpvvy2gw/q8MMdw3WEawYGQHqEbr6YtNJmaR5wlsVk+IQ==}
|
|
1723
|
+
engines: {node: '>= 10'}
|
|
1724
|
+
cpu: [x64]
|
|
1725
|
+
os: [darwin]
|
|
1726
|
+
requiresBuild: true
|
|
1727
|
+
dev: true
|
|
1728
|
+
optional: true
|
|
1729
|
+
|
|
1730
|
+
/@tauri-apps/cli-linux-arm-gnueabihf@2.0.0-alpha.9:
|
|
1731
|
+
resolution: {integrity: sha512-nHAgFEJ2DXXEx96FLPnqZ9vfFGw7Hr2ZaY+xy28llXWljCOguWi8wdHv4OMnq0hbOkegVGplYPc4RSQ5uUia2Q==}
|
|
1732
|
+
engines: {node: '>= 10'}
|
|
1733
|
+
cpu: [arm]
|
|
1734
|
+
os: [linux]
|
|
1735
|
+
requiresBuild: true
|
|
1736
|
+
dev: true
|
|
1737
|
+
optional: true
|
|
1738
|
+
|
|
1739
|
+
/@tauri-apps/cli-linux-arm64-gnu@2.0.0-alpha.9:
|
|
1740
|
+
resolution: {integrity: sha512-ETmUoTp+UgHypPpsq3OYwbcmX8MqjCGIUAzDHoVFpYuj2oqHw0ZaCx2lQPTnqW5G5L9X9VXhMAcRB8OBZG5KFw==}
|
|
1741
|
+
engines: {node: '>= 10'}
|
|
1742
|
+
cpu: [arm64]
|
|
1743
|
+
os: [linux]
|
|
1744
|
+
requiresBuild: true
|
|
1745
|
+
dev: true
|
|
1746
|
+
optional: true
|
|
1747
|
+
|
|
1748
|
+
/@tauri-apps/cli-linux-arm64-musl@2.0.0-alpha.9:
|
|
1749
|
+
resolution: {integrity: sha512-S55E2u4LsQajoxkpYqd2skPEVG5hp+Mkhhnixfi+87q87n9iIvIqcH+4ejDXAPUrWNMsRKIWVURV2ZzivqK5Kw==}
|
|
1750
|
+
engines: {node: '>= 10'}
|
|
1751
|
+
cpu: [arm64]
|
|
1752
|
+
os: [linux]
|
|
1753
|
+
requiresBuild: true
|
|
1754
|
+
dev: true
|
|
1755
|
+
optional: true
|
|
1756
|
+
|
|
1757
|
+
/@tauri-apps/cli-linux-x64-gnu@2.0.0-alpha.9:
|
|
1758
|
+
resolution: {integrity: sha512-/0J5sJDu+cSrj67L4Q4FVANe1ffpsz3LZMQRkbWmT2ggd2Mxg8LZBtg7y5ysMfJg8xjKvymi+1mS2yU1B7/k9Q==}
|
|
1759
|
+
engines: {node: '>= 10'}
|
|
1760
|
+
cpu: [x64]
|
|
1761
|
+
os: [linux]
|
|
1762
|
+
requiresBuild: true
|
|
1763
|
+
dev: true
|
|
1764
|
+
optional: true
|
|
1765
|
+
|
|
1766
|
+
/@tauri-apps/cli-linux-x64-musl@2.0.0-alpha.9:
|
|
1767
|
+
resolution: {integrity: sha512-zjtf5H3c4amlBjIdDiQ3pmiMV/cmcPxaiH4KgyRD6NZXY9+gDk5dkzj3WAWegiD1ycz3bv5INO/tDxjk5ZSYlw==}
|
|
1768
|
+
engines: {node: '>= 10'}
|
|
1769
|
+
cpu: [x64]
|
|
1770
|
+
os: [linux]
|
|
1771
|
+
requiresBuild: true
|
|
1772
|
+
dev: true
|
|
1773
|
+
optional: true
|
|
1774
|
+
|
|
1775
|
+
/@tauri-apps/cli-win32-ia32-msvc@2.0.0-alpha.9:
|
|
1776
|
+
resolution: {integrity: sha512-Hn0xDaEEMeXRzWCtew2MIYDky8hF+BOos0PP4qyCX14LfChpgSIT0aMYC8xbSfj9N9pwznhNBxgOtCADaTPWcg==}
|
|
1777
|
+
engines: {node: '>= 10'}
|
|
1778
|
+
cpu: [ia32]
|
|
1779
|
+
os: [win32]
|
|
1780
|
+
requiresBuild: true
|
|
1781
|
+
dev: true
|
|
1782
|
+
optional: true
|
|
1783
|
+
|
|
1784
|
+
/@tauri-apps/cli-win32-x64-msvc@2.0.0-alpha.9:
|
|
1785
|
+
resolution: {integrity: sha512-541nR7UoasX/fnEWhC14H4Ppj17Aa1fbCyFb9+zmWjupVkEGf/yQFvdWRHdmCkgOdGuxPahR5hbOPh+jvaklFw==}
|
|
1786
|
+
engines: {node: '>= 10'}
|
|
1787
|
+
cpu: [x64]
|
|
1788
|
+
os: [win32]
|
|
1789
|
+
requiresBuild: true
|
|
1790
|
+
dev: true
|
|
1791
|
+
optional: true
|
|
1792
|
+
|
|
1793
|
+
/@tauri-apps/cli@2.0.0-alpha.9:
|
|
1794
|
+
resolution: {integrity: sha512-roQNpFC3Ijni/c7TCkCpUg3gWKfxs1ftWSQJyCthqIPRM5J7I2vOfhcUXIZw9glrxDp5npyRW0xYyI7W/424uQ==}
|
|
1795
|
+
engines: {node: '>= 10'}
|
|
1796
|
+
hasBin: true
|
|
1797
|
+
optionalDependencies:
|
|
1798
|
+
'@tauri-apps/cli-darwin-arm64': 2.0.0-alpha.9
|
|
1799
|
+
'@tauri-apps/cli-darwin-x64': 2.0.0-alpha.9
|
|
1800
|
+
'@tauri-apps/cli-linux-arm-gnueabihf': 2.0.0-alpha.9
|
|
1801
|
+
'@tauri-apps/cli-linux-arm64-gnu': 2.0.0-alpha.9
|
|
1802
|
+
'@tauri-apps/cli-linux-arm64-musl': 2.0.0-alpha.9
|
|
1803
|
+
'@tauri-apps/cli-linux-x64-gnu': 2.0.0-alpha.9
|
|
1804
|
+
'@tauri-apps/cli-linux-x64-musl': 2.0.0-alpha.9
|
|
1805
|
+
'@tauri-apps/cli-win32-ia32-msvc': 2.0.0-alpha.9
|
|
1806
|
+
'@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.9
|
|
1807
|
+
dev: true
|
|
1808
|
+
|
|
1809
|
+
/@tootallnate/once@2.0.0:
|
|
1810
|
+
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
|
|
1811
|
+
engines: {node: '>= 10'}
|
|
1812
|
+
dev: true
|
|
1813
|
+
|
|
1814
|
+
/@tufjs/canonical-json@1.0.0:
|
|
1815
|
+
resolution: {integrity: sha512-QTnf++uxunWvG2z3UFNzAoQPHxnSXOwtaI3iJ+AohhV+5vONuArPjJE7aPXPVXfXJsqrVbZBu9b81AJoSd09IQ==}
|
|
1816
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
1817
|
+
dev: true
|
|
1818
|
+
|
|
1819
|
+
/@tufjs/models@1.0.4:
|
|
1820
|
+
resolution: {integrity: sha512-qaGV9ltJP0EO25YfFUPhxRVK0evXFIAGicsVXuRim4Ed9cjPxYhNnNJ49SFmbeLgtxpslIkX317IgpfcHPVj/A==}
|
|
1821
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
1822
|
+
dependencies:
|
|
1823
|
+
'@tufjs/canonical-json': 1.0.0
|
|
1824
|
+
minimatch: 9.0.0
|
|
1825
|
+
dev: true
|
|
1826
|
+
|
|
1827
|
+
/@types/d3-array@3.0.4:
|
|
1828
|
+
resolution: {integrity: sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==}
|
|
1829
|
+
dev: false
|
|
1830
|
+
|
|
1831
|
+
/@types/d3-color@3.1.0:
|
|
1832
|
+
resolution: {integrity: sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==}
|
|
1833
|
+
dev: false
|
|
1834
|
+
|
|
1835
|
+
/@types/d3-ease@3.0.0:
|
|
1836
|
+
resolution: {integrity: sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==}
|
|
1837
|
+
dev: false
|
|
1838
|
+
|
|
1839
|
+
/@types/d3-interpolate@3.0.1:
|
|
1840
|
+
resolution: {integrity: sha512-jx5leotSeac3jr0RePOH1KdR9rISG91QIE4Q2PYTu4OymLTZfA3SrnURSLzKH48HmXVUru50b8nje4E79oQSQw==}
|
|
1841
|
+
dependencies:
|
|
1842
|
+
'@types/d3-color': 3.1.0
|
|
1843
|
+
dev: false
|
|
1844
|
+
|
|
1845
|
+
/@types/d3-path@3.0.0:
|
|
1846
|
+
resolution: {integrity: sha512-0g/A+mZXgFkQxN3HniRDbXMN79K3CdTpLsevj+PXiTcb2hVyvkZUBg37StmgCQkaD84cUJ4uaDAWq7UJOQy2Tg==}
|
|
1847
|
+
dev: false
|
|
1848
|
+
|
|
1849
|
+
/@types/d3-scale@4.0.3:
|
|
1850
|
+
resolution: {integrity: sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==}
|
|
1851
|
+
dependencies:
|
|
1852
|
+
'@types/d3-time': 3.0.0
|
|
1853
|
+
dev: false
|
|
1854
|
+
|
|
1855
|
+
/@types/d3-shape@3.1.1:
|
|
1856
|
+
resolution: {integrity: sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==}
|
|
1857
|
+
dependencies:
|
|
1858
|
+
'@types/d3-path': 3.0.0
|
|
1859
|
+
dev: false
|
|
1860
|
+
|
|
1861
|
+
/@types/d3-time@3.0.0:
|
|
1862
|
+
resolution: {integrity: sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==}
|
|
1863
|
+
dev: false
|
|
1864
|
+
|
|
1865
|
+
/@types/d3-timer@3.0.0:
|
|
1866
|
+
resolution: {integrity: sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==}
|
|
1867
|
+
dev: false
|
|
1868
|
+
|
|
1869
|
+
/@types/node@20.2.3:
|
|
1870
|
+
resolution: {integrity: sha512-pg9d0yC4rVNWQzX8U7xb4olIOFuuVL9za3bzMT2pu2SU0SNEi66i2qrvhE2qt0HvkhuCaWJu7pLNOt/Pj8BIrw==}
|
|
1871
|
+
dev: true
|
|
1872
|
+
|
|
1873
|
+
/@types/prop-types@15.7.5:
|
|
1874
|
+
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
|
|
1875
|
+
|
|
1876
|
+
/@types/react-dom@18.2.4:
|
|
1877
|
+
resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==}
|
|
1878
|
+
dependencies:
|
|
1879
|
+
'@types/react': 18.2.6
|
|
1880
|
+
dev: true
|
|
1881
|
+
|
|
1882
|
+
/@types/react@18.2.6:
|
|
1883
|
+
resolution: {integrity: sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==}
|
|
1884
|
+
dependencies:
|
|
1885
|
+
'@types/prop-types': 15.7.5
|
|
1886
|
+
'@types/scheduler': 0.16.3
|
|
1887
|
+
csstype: 3.1.2
|
|
1888
|
+
|
|
1889
|
+
/@types/scheduler@0.16.3:
|
|
1890
|
+
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
|
|
1891
|
+
|
|
1892
|
+
/abbrev@1.1.1:
|
|
1893
|
+
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
|
|
1894
|
+
dev: true
|
|
1895
|
+
|
|
1896
|
+
/abbrev@2.0.0:
|
|
1897
|
+
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
|
|
1898
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
1899
|
+
dev: true
|
|
1900
|
+
|
|
1901
|
+
/agent-base@6.0.2:
|
|
1902
|
+
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
|
|
1903
|
+
engines: {node: '>= 6.0.0'}
|
|
1904
|
+
dependencies:
|
|
1905
|
+
debug: 4.3.4
|
|
1906
|
+
transitivePeerDependencies:
|
|
1907
|
+
- supports-color
|
|
1908
|
+
dev: true
|
|
1909
|
+
|
|
1910
|
+
/agentkeepalive@4.3.0:
|
|
1911
|
+
resolution: {integrity: sha512-7Epl1Blf4Sy37j4v9f9FjICCh4+KAQOyXgHEwlyBiAQLbhKdq/i2QQU3amQalS/wPhdPzDXPL5DMR5bkn+YeWg==}
|
|
1912
|
+
engines: {node: '>= 8.0.0'}
|
|
1913
|
+
dependencies:
|
|
1914
|
+
debug: 4.3.4
|
|
1915
|
+
depd: 2.0.0
|
|
1916
|
+
humanize-ms: 1.2.1
|
|
1917
|
+
transitivePeerDependencies:
|
|
1918
|
+
- supports-color
|
|
1919
|
+
dev: true
|
|
1920
|
+
|
|
1921
|
+
/aggregate-error@3.1.0:
|
|
1922
|
+
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
|
|
1923
|
+
engines: {node: '>=8'}
|
|
1924
|
+
dependencies:
|
|
1925
|
+
clean-stack: 2.2.0
|
|
1926
|
+
indent-string: 4.0.0
|
|
1927
|
+
dev: true
|
|
1928
|
+
|
|
1929
|
+
/ansi-regex@5.0.1:
|
|
1930
|
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
1931
|
+
engines: {node: '>=8'}
|
|
1932
|
+
dev: true
|
|
1933
|
+
|
|
1934
|
+
/ansi-regex@6.0.1:
|
|
1935
|
+
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
|
|
1936
|
+
engines: {node: '>=12'}
|
|
1937
|
+
dev: true
|
|
1938
|
+
|
|
1939
|
+
/ansi-styles@3.2.1:
|
|
1940
|
+
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
|
|
1941
|
+
engines: {node: '>=4'}
|
|
1942
|
+
dependencies:
|
|
1943
|
+
color-convert: 1.9.3
|
|
1944
|
+
|
|
1945
|
+
/ansi-styles@4.3.0:
|
|
1946
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
1947
|
+
engines: {node: '>=8'}
|
|
1948
|
+
dependencies:
|
|
1949
|
+
color-convert: 2.0.1
|
|
1950
|
+
dev: true
|
|
1951
|
+
|
|
1952
|
+
/ansi-styles@6.2.1:
|
|
1953
|
+
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
|
|
1954
|
+
engines: {node: '>=12'}
|
|
1955
|
+
dev: true
|
|
1956
|
+
|
|
1957
|
+
/any-promise@1.3.0:
|
|
1958
|
+
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
|
1959
|
+
|
|
1960
|
+
/anymatch@3.1.3:
|
|
1961
|
+
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
|
1962
|
+
engines: {node: '>= 8'}
|
|
1963
|
+
dependencies:
|
|
1964
|
+
normalize-path: 3.0.0
|
|
1965
|
+
picomatch: 2.3.1
|
|
1966
|
+
|
|
1967
|
+
/aproba@2.0.0:
|
|
1968
|
+
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
|
|
1969
|
+
dev: true
|
|
1970
|
+
|
|
1971
|
+
/are-we-there-yet@3.0.1:
|
|
1972
|
+
resolution: {integrity: sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==}
|
|
1973
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
1974
|
+
dependencies:
|
|
1975
|
+
delegates: 1.0.0
|
|
1976
|
+
readable-stream: 3.6.2
|
|
1977
|
+
dev: true
|
|
1978
|
+
|
|
1979
|
+
/arg@5.0.2:
|
|
1980
|
+
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
|
1981
|
+
|
|
1982
|
+
/aria-hidden@1.2.3:
|
|
1983
|
+
resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
|
|
1984
|
+
engines: {node: '>=10'}
|
|
1985
|
+
dependencies:
|
|
1986
|
+
tslib: 2.5.0
|
|
1987
|
+
dev: false
|
|
1988
|
+
|
|
1989
|
+
/autoprefixer@10.4.14(postcss@8.4.23):
|
|
1990
|
+
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
|
|
1991
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1992
|
+
hasBin: true
|
|
1993
|
+
peerDependencies:
|
|
1994
|
+
postcss: ^8.1.0
|
|
1995
|
+
dependencies:
|
|
1996
|
+
browserslist: 4.21.5
|
|
1997
|
+
caniuse-lite: 1.0.30001480
|
|
1998
|
+
fraction.js: 4.2.0
|
|
1999
|
+
normalize-range: 0.1.2
|
|
2000
|
+
picocolors: 1.0.0
|
|
2001
|
+
postcss: 8.4.23
|
|
2002
|
+
postcss-value-parser: 4.2.0
|
|
2003
|
+
dev: true
|
|
2004
|
+
|
|
2005
|
+
/balanced-match@1.0.2:
|
|
2006
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
2007
|
+
|
|
2008
|
+
/binary-extensions@2.2.0:
|
|
2009
|
+
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
|
|
2010
|
+
engines: {node: '>=8'}
|
|
2011
|
+
|
|
2012
|
+
/brace-expansion@1.1.11:
|
|
2013
|
+
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
|
2014
|
+
dependencies:
|
|
2015
|
+
balanced-match: 1.0.2
|
|
2016
|
+
concat-map: 0.0.1
|
|
2017
|
+
|
|
2018
|
+
/brace-expansion@2.0.1:
|
|
2019
|
+
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
|
2020
|
+
dependencies:
|
|
2021
|
+
balanced-match: 1.0.2
|
|
2022
|
+
dev: true
|
|
2023
|
+
|
|
2024
|
+
/braces@3.0.2:
|
|
2025
|
+
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
|
|
2026
|
+
engines: {node: '>=8'}
|
|
2027
|
+
dependencies:
|
|
2028
|
+
fill-range: 7.0.1
|
|
2029
|
+
|
|
2030
|
+
/browserslist@4.21.5:
|
|
2031
|
+
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
|
|
2032
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
2033
|
+
hasBin: true
|
|
2034
|
+
dependencies:
|
|
2035
|
+
caniuse-lite: 1.0.30001480
|
|
2036
|
+
electron-to-chromium: 1.4.368
|
|
2037
|
+
node-releases: 2.0.10
|
|
2038
|
+
update-browserslist-db: 1.0.11(browserslist@4.21.5)
|
|
2039
|
+
|
|
2040
|
+
/builtins@5.0.1:
|
|
2041
|
+
resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==}
|
|
2042
|
+
dependencies:
|
|
2043
|
+
semver: 7.5.0
|
|
2044
|
+
dev: true
|
|
2045
|
+
|
|
2046
|
+
/busboy@1.6.0:
|
|
2047
|
+
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
|
|
2048
|
+
engines: {node: '>=10.16.0'}
|
|
2049
|
+
dependencies:
|
|
2050
|
+
streamsearch: 1.1.0
|
|
2051
|
+
dev: false
|
|
2052
|
+
|
|
2053
|
+
/cacache@16.1.3:
|
|
2054
|
+
resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==}
|
|
2055
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
2056
|
+
dependencies:
|
|
2057
|
+
'@npmcli/fs': 2.1.2
|
|
2058
|
+
'@npmcli/move-file': 2.0.1
|
|
2059
|
+
chownr: 2.0.0
|
|
2060
|
+
fs-minipass: 2.1.0
|
|
2061
|
+
glob: 8.1.0
|
|
2062
|
+
infer-owner: 1.0.4
|
|
2063
|
+
lru-cache: 7.18.3
|
|
2064
|
+
minipass: 3.3.6
|
|
2065
|
+
minipass-collect: 1.0.2
|
|
2066
|
+
minipass-flush: 1.0.5
|
|
2067
|
+
minipass-pipeline: 1.2.4
|
|
2068
|
+
mkdirp: 1.0.4
|
|
2069
|
+
p-map: 4.0.0
|
|
2070
|
+
promise-inflight: 1.0.1
|
|
2071
|
+
rimraf: 3.0.2
|
|
2072
|
+
ssri: 9.0.1
|
|
2073
|
+
tar: 6.1.13
|
|
2074
|
+
unique-filename: 2.0.1
|
|
2075
|
+
transitivePeerDependencies:
|
|
2076
|
+
- bluebird
|
|
2077
|
+
dev: true
|
|
2078
|
+
|
|
2079
|
+
/cacache@17.1.0:
|
|
2080
|
+
resolution: {integrity: sha512-hXpFU+Z3AfVmNuiLve1qxWHMq0RSIt5gjCKAHi/M6DktwFwDdAXAtunl1i4WSKaaVcU9IsRvXFg42jTHigcC6Q==}
|
|
2081
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2082
|
+
dependencies:
|
|
2083
|
+
'@npmcli/fs': 3.1.0
|
|
2084
|
+
fs-minipass: 3.0.2
|
|
2085
|
+
glob: 10.2.2
|
|
2086
|
+
lru-cache: 7.18.3
|
|
2087
|
+
minipass: 5.0.0
|
|
2088
|
+
minipass-collect: 1.0.2
|
|
2089
|
+
minipass-flush: 1.0.5
|
|
2090
|
+
minipass-pipeline: 1.2.4
|
|
2091
|
+
p-map: 4.0.0
|
|
2092
|
+
ssri: 10.0.4
|
|
2093
|
+
tar: 6.1.13
|
|
2094
|
+
unique-filename: 3.0.0
|
|
2095
|
+
dev: true
|
|
2096
|
+
|
|
2097
|
+
/camelcase-css@2.0.1:
|
|
2098
|
+
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
|
2099
|
+
engines: {node: '>= 6'}
|
|
2100
|
+
|
|
2101
|
+
/caniuse-lite@1.0.30001480:
|
|
2102
|
+
resolution: {integrity: sha512-q7cpoPPvZYgtyC4VaBSN0Bt+PJ4c4EYRf0DrduInOz2SkFpHD5p3LnvEpqBp7UnJn+8x1Ogl1s38saUxe+ihQQ==}
|
|
2103
|
+
|
|
2104
|
+
/chalk@2.4.2:
|
|
2105
|
+
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
|
|
2106
|
+
engines: {node: '>=4'}
|
|
2107
|
+
dependencies:
|
|
2108
|
+
ansi-styles: 3.2.1
|
|
2109
|
+
escape-string-regexp: 1.0.5
|
|
2110
|
+
supports-color: 5.5.0
|
|
2111
|
+
|
|
2112
|
+
/chokidar@3.5.3:
|
|
2113
|
+
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
|
|
2114
|
+
engines: {node: '>= 8.10.0'}
|
|
2115
|
+
dependencies:
|
|
2116
|
+
anymatch: 3.1.3
|
|
2117
|
+
braces: 3.0.2
|
|
2118
|
+
glob-parent: 5.1.2
|
|
2119
|
+
is-binary-path: 2.1.0
|
|
2120
|
+
is-glob: 4.0.3
|
|
2121
|
+
normalize-path: 3.0.0
|
|
2122
|
+
readdirp: 3.6.0
|
|
2123
|
+
optionalDependencies:
|
|
2124
|
+
fsevents: 2.3.2
|
|
2125
|
+
|
|
2126
|
+
/chownr@2.0.0:
|
|
2127
|
+
resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
|
|
2128
|
+
engines: {node: '>=10'}
|
|
2129
|
+
dev: true
|
|
2130
|
+
|
|
2131
|
+
/class-variance-authority@0.6.0(typescript@5.0.4):
|
|
2132
|
+
resolution: {integrity: sha512-qdRDgfjx3GRb9fpwpSvn+YaidnT7IUJNe4wt5/SWwM+PmUwJUhQRk/8zAyNro0PmVfmen2635UboTjIBXXxy5A==}
|
|
2133
|
+
peerDependencies:
|
|
2134
|
+
typescript: '>= 4.5.5 < 6'
|
|
2135
|
+
peerDependenciesMeta:
|
|
2136
|
+
typescript:
|
|
2137
|
+
optional: true
|
|
2138
|
+
dependencies:
|
|
2139
|
+
clsx: 1.2.1
|
|
2140
|
+
typescript: 5.0.4
|
|
2141
|
+
dev: false
|
|
2142
|
+
|
|
2143
|
+
/classnames@2.3.2:
|
|
2144
|
+
resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
|
|
2145
|
+
dev: false
|
|
2146
|
+
|
|
2147
|
+
/clean-stack@2.2.0:
|
|
2148
|
+
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
|
|
2149
|
+
engines: {node: '>=6'}
|
|
2150
|
+
dev: true
|
|
2151
|
+
|
|
2152
|
+
/client-only@0.0.1:
|
|
2153
|
+
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
|
|
2154
|
+
dev: false
|
|
2155
|
+
|
|
2156
|
+
/cliui@8.0.1:
|
|
2157
|
+
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
|
|
2158
|
+
engines: {node: '>=12'}
|
|
2159
|
+
dependencies:
|
|
2160
|
+
string-width: 4.2.3
|
|
2161
|
+
strip-ansi: 6.0.1
|
|
2162
|
+
wrap-ansi: 7.0.0
|
|
2163
|
+
dev: true
|
|
2164
|
+
|
|
2165
|
+
/clsx@1.2.1:
|
|
2166
|
+
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
|
|
2167
|
+
engines: {node: '>=6'}
|
|
2168
|
+
dev: false
|
|
2169
|
+
|
|
2170
|
+
/cmdk@0.2.0(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0):
|
|
2171
|
+
resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==}
|
|
2172
|
+
peerDependencies:
|
|
2173
|
+
react: ^18.0.0
|
|
2174
|
+
react-dom: ^18.0.0
|
|
2175
|
+
dependencies:
|
|
2176
|
+
'@radix-ui/react-dialog': 1.0.0(@types/react@18.2.6)(react-dom@18.2.0)(react@18.2.0)
|
|
2177
|
+
command-score: 0.1.2
|
|
2178
|
+
react: 18.2.0
|
|
2179
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
2180
|
+
transitivePeerDependencies:
|
|
2181
|
+
- '@types/react'
|
|
2182
|
+
dev: false
|
|
2183
|
+
|
|
2184
|
+
/color-convert@1.9.3:
|
|
2185
|
+
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
|
|
2186
|
+
dependencies:
|
|
2187
|
+
color-name: 1.1.3
|
|
2188
|
+
|
|
2189
|
+
/color-convert@2.0.1:
|
|
2190
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
2191
|
+
engines: {node: '>=7.0.0'}
|
|
2192
|
+
dependencies:
|
|
2193
|
+
color-name: 1.1.4
|
|
2194
|
+
dev: true
|
|
2195
|
+
|
|
2196
|
+
/color-name@1.1.3:
|
|
2197
|
+
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
|
|
2198
|
+
|
|
2199
|
+
/color-name@1.1.4:
|
|
2200
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
2201
|
+
dev: true
|
|
2202
|
+
|
|
2203
|
+
/color-support@1.1.3:
|
|
2204
|
+
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
|
|
2205
|
+
hasBin: true
|
|
2206
|
+
dev: true
|
|
2207
|
+
|
|
2208
|
+
/command-score@0.1.2:
|
|
2209
|
+
resolution: {integrity: sha512-VtDvQpIJBvBatnONUsPzXYFVKQQAhuf3XTNOAsdBxCNO/QCtUUd8LSgjn0GVarBkCad6aJCZfXgrjYbl/KRr7w==}
|
|
2210
|
+
dev: false
|
|
2211
|
+
|
|
2212
|
+
/commander@4.1.1:
|
|
2213
|
+
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
|
2214
|
+
engines: {node: '>= 6'}
|
|
2215
|
+
|
|
2216
|
+
/concat-map@0.0.1:
|
|
2217
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
2218
|
+
|
|
2219
|
+
/console-control-strings@1.1.0:
|
|
2220
|
+
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
|
|
2221
|
+
dev: true
|
|
2222
|
+
|
|
2223
|
+
/convert-source-map@1.9.0:
|
|
2224
|
+
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
|
|
2225
|
+
|
|
2226
|
+
/cross-spawn@7.0.3:
|
|
2227
|
+
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
|
2228
|
+
engines: {node: '>= 8'}
|
|
2229
|
+
dependencies:
|
|
2230
|
+
path-key: 3.1.1
|
|
2231
|
+
shebang-command: 2.0.0
|
|
2232
|
+
which: 2.0.2
|
|
2233
|
+
dev: true
|
|
2234
|
+
|
|
2235
|
+
/css-unit-converter@1.1.2:
|
|
2236
|
+
resolution: {integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==}
|
|
2237
|
+
dev: false
|
|
2238
|
+
|
|
2239
|
+
/cssesc@3.0.0:
|
|
2240
|
+
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
2241
|
+
engines: {node: '>=4'}
|
|
2242
|
+
hasBin: true
|
|
2243
|
+
|
|
2244
|
+
/csstype@3.1.2:
|
|
2245
|
+
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
|
|
2246
|
+
|
|
2247
|
+
/d3-array@3.2.3:
|
|
2248
|
+
resolution: {integrity: sha512-JRHwbQQ84XuAESWhvIPaUV4/1UYTBOLiOPGWqgFDHZS1D5QN9c57FbH3QpEnQMYiOXNzKUQyGTZf+EVO7RT5TQ==}
|
|
2249
|
+
engines: {node: '>=12'}
|
|
2250
|
+
dependencies:
|
|
2251
|
+
internmap: 2.0.3
|
|
2252
|
+
dev: false
|
|
2253
|
+
|
|
2254
|
+
/d3-color@3.1.0:
|
|
2255
|
+
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
|
|
2256
|
+
engines: {node: '>=12'}
|
|
2257
|
+
dev: false
|
|
2258
|
+
|
|
2259
|
+
/d3-ease@3.0.1:
|
|
2260
|
+
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
|
|
2261
|
+
engines: {node: '>=12'}
|
|
2262
|
+
dev: false
|
|
2263
|
+
|
|
2264
|
+
/d3-format@3.1.0:
|
|
2265
|
+
resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
|
|
2266
|
+
engines: {node: '>=12'}
|
|
2267
|
+
dev: false
|
|
2268
|
+
|
|
2269
|
+
/d3-interpolate@3.0.1:
|
|
2270
|
+
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
|
|
2271
|
+
engines: {node: '>=12'}
|
|
2272
|
+
dependencies:
|
|
2273
|
+
d3-color: 3.1.0
|
|
2274
|
+
dev: false
|
|
2275
|
+
|
|
2276
|
+
/d3-path@3.1.0:
|
|
2277
|
+
resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
|
|
2278
|
+
engines: {node: '>=12'}
|
|
2279
|
+
dev: false
|
|
2280
|
+
|
|
2281
|
+
/d3-scale@4.0.2:
|
|
2282
|
+
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
|
|
2283
|
+
engines: {node: '>=12'}
|
|
2284
|
+
dependencies:
|
|
2285
|
+
d3-array: 3.2.3
|
|
2286
|
+
d3-format: 3.1.0
|
|
2287
|
+
d3-interpolate: 3.0.1
|
|
2288
|
+
d3-time: 3.1.0
|
|
2289
|
+
d3-time-format: 4.1.0
|
|
2290
|
+
dev: false
|
|
2291
|
+
|
|
2292
|
+
/d3-shape@3.2.0:
|
|
2293
|
+
resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
|
|
2294
|
+
engines: {node: '>=12'}
|
|
2295
|
+
dependencies:
|
|
2296
|
+
d3-path: 3.1.0
|
|
2297
|
+
dev: false
|
|
2298
|
+
|
|
2299
|
+
/d3-time-format@4.1.0:
|
|
2300
|
+
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
|
|
2301
|
+
engines: {node: '>=12'}
|
|
2302
|
+
dependencies:
|
|
2303
|
+
d3-time: 3.1.0
|
|
2304
|
+
dev: false
|
|
2305
|
+
|
|
2306
|
+
/d3-time@3.1.0:
|
|
2307
|
+
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
|
|
2308
|
+
engines: {node: '>=12'}
|
|
2309
|
+
dependencies:
|
|
2310
|
+
d3-array: 3.2.3
|
|
2311
|
+
dev: false
|
|
2312
|
+
|
|
2313
|
+
/d3-timer@3.0.1:
|
|
2314
|
+
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
|
2315
|
+
engines: {node: '>=12'}
|
|
2316
|
+
dev: false
|
|
2317
|
+
|
|
2318
|
+
/date-fns@2.30.0:
|
|
2319
|
+
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
|
|
2320
|
+
engines: {node: '>=0.11'}
|
|
2321
|
+
dependencies:
|
|
2322
|
+
'@babel/runtime': 7.21.0
|
|
2323
|
+
dev: false
|
|
2324
|
+
|
|
2325
|
+
/debug@4.3.4:
|
|
2326
|
+
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
|
|
2327
|
+
engines: {node: '>=6.0'}
|
|
2328
|
+
peerDependencies:
|
|
2329
|
+
supports-color: '*'
|
|
2330
|
+
peerDependenciesMeta:
|
|
2331
|
+
supports-color:
|
|
2332
|
+
optional: true
|
|
2333
|
+
dependencies:
|
|
2334
|
+
ms: 2.1.2
|
|
2335
|
+
|
|
2336
|
+
/decimal.js-light@2.5.1:
|
|
2337
|
+
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
|
|
2338
|
+
dev: false
|
|
2339
|
+
|
|
2340
|
+
/defu@6.1.2:
|
|
2341
|
+
resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==}
|
|
2342
|
+
dev: true
|
|
2343
|
+
|
|
2344
|
+
/delegates@1.0.0:
|
|
2345
|
+
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
|
|
2346
|
+
dev: true
|
|
2347
|
+
|
|
2348
|
+
/depd@2.0.0:
|
|
2349
|
+
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
2350
|
+
engines: {node: '>= 0.8'}
|
|
2351
|
+
dev: true
|
|
2352
|
+
|
|
2353
|
+
/detect-indent@7.0.1:
|
|
2354
|
+
resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
|
|
2355
|
+
engines: {node: '>=12.20'}
|
|
2356
|
+
dev: true
|
|
2357
|
+
|
|
2358
|
+
/detect-node-es@1.1.0:
|
|
2359
|
+
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
|
|
2360
|
+
dev: false
|
|
2361
|
+
|
|
2362
|
+
/didyoumean@1.2.2:
|
|
2363
|
+
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
|
2364
|
+
|
|
2365
|
+
/dlv@1.1.3:
|
|
2366
|
+
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
|
2367
|
+
|
|
2368
|
+
/dom-helpers@3.4.0:
|
|
2369
|
+
resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
|
|
2370
|
+
dependencies:
|
|
2371
|
+
'@babel/runtime': 7.21.0
|
|
2372
|
+
dev: false
|
|
2373
|
+
|
|
2374
|
+
/eastasianwidth@0.2.0:
|
|
2375
|
+
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
|
2376
|
+
dev: true
|
|
2377
|
+
|
|
2378
|
+
/electron-to-chromium@1.4.368:
|
|
2379
|
+
resolution: {integrity: sha512-e2aeCAixCj9M7nJxdB/wDjO6mbYX+lJJxSJCXDzlr5YPGYVofuJwGN9nKg2o6wWInjX6XmxRinn3AeJMK81ltw==}
|
|
2380
|
+
|
|
2381
|
+
/emoji-regex@8.0.0:
|
|
2382
|
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
2383
|
+
dev: true
|
|
2384
|
+
|
|
2385
|
+
/emoji-regex@9.2.2:
|
|
2386
|
+
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
|
2387
|
+
dev: true
|
|
2388
|
+
|
|
2389
|
+
/encoding@0.1.13:
|
|
2390
|
+
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
|
|
2391
|
+
requiresBuild: true
|
|
2392
|
+
dependencies:
|
|
2393
|
+
iconv-lite: 0.6.3
|
|
2394
|
+
dev: true
|
|
2395
|
+
optional: true
|
|
2396
|
+
|
|
2397
|
+
/env-paths@2.2.1:
|
|
2398
|
+
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
|
|
2399
|
+
engines: {node: '>=6'}
|
|
2400
|
+
dev: true
|
|
2401
|
+
|
|
2402
|
+
/err-code@2.0.3:
|
|
2403
|
+
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
|
|
2404
|
+
dev: true
|
|
2405
|
+
|
|
2406
|
+
/escalade@3.1.1:
|
|
2407
|
+
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
|
|
2408
|
+
engines: {node: '>=6'}
|
|
2409
|
+
|
|
2410
|
+
/escape-string-regexp@1.0.5:
|
|
2411
|
+
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
|
|
2412
|
+
engines: {node: '>=0.8.0'}
|
|
2413
|
+
|
|
2414
|
+
/eventemitter3@4.0.7:
|
|
2415
|
+
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
|
2416
|
+
dev: false
|
|
2417
|
+
|
|
2418
|
+
/fast-equals@4.0.3:
|
|
2419
|
+
resolution: {integrity: sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg==}
|
|
2420
|
+
dev: false
|
|
2421
|
+
|
|
2422
|
+
/fast-glob@3.2.12:
|
|
2423
|
+
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
|
|
2424
|
+
engines: {node: '>=8.6.0'}
|
|
2425
|
+
dependencies:
|
|
2426
|
+
'@nodelib/fs.stat': 2.0.5
|
|
2427
|
+
'@nodelib/fs.walk': 1.2.8
|
|
2428
|
+
glob-parent: 5.1.2
|
|
2429
|
+
merge2: 1.4.1
|
|
2430
|
+
micromatch: 4.0.5
|
|
2431
|
+
|
|
2432
|
+
/fastq@1.15.0:
|
|
2433
|
+
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
|
|
2434
|
+
dependencies:
|
|
2435
|
+
reusify: 1.0.4
|
|
2436
|
+
|
|
2437
|
+
/fill-range@7.0.1:
|
|
2438
|
+
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
|
|
2439
|
+
engines: {node: '>=8'}
|
|
2440
|
+
dependencies:
|
|
2441
|
+
to-regex-range: 5.0.1
|
|
2442
|
+
|
|
2443
|
+
/foreground-child@3.1.1:
|
|
2444
|
+
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
|
|
2445
|
+
engines: {node: '>=14'}
|
|
2446
|
+
dependencies:
|
|
2447
|
+
cross-spawn: 7.0.3
|
|
2448
|
+
signal-exit: 4.0.1
|
|
2449
|
+
dev: true
|
|
2450
|
+
|
|
2451
|
+
/fraction.js@4.2.0:
|
|
2452
|
+
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
|
|
2453
|
+
dev: true
|
|
2454
|
+
|
|
2455
|
+
/fs-minipass@2.1.0:
|
|
2456
|
+
resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
|
|
2457
|
+
engines: {node: '>= 8'}
|
|
2458
|
+
dependencies:
|
|
2459
|
+
minipass: 3.3.6
|
|
2460
|
+
dev: true
|
|
2461
|
+
|
|
2462
|
+
/fs-minipass@3.0.2:
|
|
2463
|
+
resolution: {integrity: sha512-2GAfyfoaCDRrM6jaOS3UsBts8yJ55VioXdWcOL7dK9zdAuKT71+WBA4ifnNYqVjYv+4SsPxjK0JT4yIIn4cA/g==}
|
|
2464
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2465
|
+
dependencies:
|
|
2466
|
+
minipass: 5.0.0
|
|
2467
|
+
dev: true
|
|
2468
|
+
|
|
2469
|
+
/fs.realpath@1.0.0:
|
|
2470
|
+
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
|
2471
|
+
|
|
2472
|
+
/fsevents@2.3.2:
|
|
2473
|
+
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
|
2474
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
2475
|
+
os: [darwin]
|
|
2476
|
+
requiresBuild: true
|
|
2477
|
+
optional: true
|
|
2478
|
+
|
|
2479
|
+
/function-bind@1.1.1:
|
|
2480
|
+
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
|
|
2481
|
+
|
|
2482
|
+
/gauge@4.0.4:
|
|
2483
|
+
resolution: {integrity: sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==}
|
|
2484
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
2485
|
+
dependencies:
|
|
2486
|
+
aproba: 2.0.0
|
|
2487
|
+
color-support: 1.1.3
|
|
2488
|
+
console-control-strings: 1.1.0
|
|
2489
|
+
has-unicode: 2.0.1
|
|
2490
|
+
signal-exit: 3.0.7
|
|
2491
|
+
string-width: 4.2.3
|
|
2492
|
+
strip-ansi: 6.0.1
|
|
2493
|
+
wide-align: 1.1.5
|
|
2494
|
+
dev: true
|
|
2495
|
+
|
|
2496
|
+
/gensync@1.0.0-beta.2:
|
|
2497
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
2498
|
+
engines: {node: '>=6.9.0'}
|
|
2499
|
+
|
|
2500
|
+
/get-caller-file@2.0.5:
|
|
2501
|
+
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
2502
|
+
engines: {node: 6.* || 8.* || >= 10.*}
|
|
2503
|
+
dev: true
|
|
2504
|
+
|
|
2505
|
+
/get-nonce@1.0.1:
|
|
2506
|
+
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
|
|
2507
|
+
engines: {node: '>=6'}
|
|
2508
|
+
dev: false
|
|
2509
|
+
|
|
2510
|
+
/glob-parent@5.1.2:
|
|
2511
|
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
2512
|
+
engines: {node: '>= 6'}
|
|
2513
|
+
dependencies:
|
|
2514
|
+
is-glob: 4.0.3
|
|
2515
|
+
|
|
2516
|
+
/glob-parent@6.0.2:
|
|
2517
|
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
2518
|
+
engines: {node: '>=10.13.0'}
|
|
2519
|
+
dependencies:
|
|
2520
|
+
is-glob: 4.0.3
|
|
2521
|
+
|
|
2522
|
+
/glob@10.2.2:
|
|
2523
|
+
resolution: {integrity: sha512-Xsa0BcxIC6th9UwNjZkhrMtNo/MnyRL8jGCP+uEwhA5oFOCY1f2s1/oNKY47xQ0Bg5nkjsfAEIej1VeH62bDDQ==}
|
|
2524
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
2525
|
+
hasBin: true
|
|
2526
|
+
dependencies:
|
|
2527
|
+
foreground-child: 3.1.1
|
|
2528
|
+
jackspeak: 2.2.0
|
|
2529
|
+
minimatch: 9.0.0
|
|
2530
|
+
minipass: 5.0.0
|
|
2531
|
+
path-scurry: 1.7.0
|
|
2532
|
+
dev: true
|
|
2533
|
+
|
|
2534
|
+
/glob@7.1.6:
|
|
2535
|
+
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
|
|
2536
|
+
dependencies:
|
|
2537
|
+
fs.realpath: 1.0.0
|
|
2538
|
+
inflight: 1.0.6
|
|
2539
|
+
inherits: 2.0.4
|
|
2540
|
+
minimatch: 3.1.2
|
|
2541
|
+
once: 1.4.0
|
|
2542
|
+
path-is-absolute: 1.0.1
|
|
2543
|
+
|
|
2544
|
+
/glob@7.2.3:
|
|
2545
|
+
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
|
2546
|
+
dependencies:
|
|
2547
|
+
fs.realpath: 1.0.0
|
|
2548
|
+
inflight: 1.0.6
|
|
2549
|
+
inherits: 2.0.4
|
|
2550
|
+
minimatch: 3.1.2
|
|
2551
|
+
once: 1.4.0
|
|
2552
|
+
path-is-absolute: 1.0.1
|
|
2553
|
+
dev: true
|
|
2554
|
+
|
|
2555
|
+
/glob@8.1.0:
|
|
2556
|
+
resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
|
|
2557
|
+
engines: {node: '>=12'}
|
|
2558
|
+
dependencies:
|
|
2559
|
+
fs.realpath: 1.0.0
|
|
2560
|
+
inflight: 1.0.6
|
|
2561
|
+
inherits: 2.0.4
|
|
2562
|
+
minimatch: 5.1.6
|
|
2563
|
+
once: 1.4.0
|
|
2564
|
+
dev: true
|
|
2565
|
+
|
|
2566
|
+
/glob@9.3.5:
|
|
2567
|
+
resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
|
|
2568
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
2569
|
+
dependencies:
|
|
2570
|
+
fs.realpath: 1.0.0
|
|
2571
|
+
minimatch: 8.0.4
|
|
2572
|
+
minipass: 4.2.8
|
|
2573
|
+
path-scurry: 1.7.0
|
|
2574
|
+
dev: true
|
|
2575
|
+
|
|
2576
|
+
/globals@11.12.0:
|
|
2577
|
+
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
|
2578
|
+
engines: {node: '>=4'}
|
|
2579
|
+
|
|
2580
|
+
/graceful-fs@4.2.11:
|
|
2581
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
2582
|
+
dev: true
|
|
2583
|
+
|
|
2584
|
+
/has-flag@3.0.0:
|
|
2585
|
+
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
|
|
2586
|
+
engines: {node: '>=4'}
|
|
2587
|
+
|
|
2588
|
+
/has-unicode@2.0.1:
|
|
2589
|
+
resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
|
|
2590
|
+
dev: true
|
|
2591
|
+
|
|
2592
|
+
/has@1.0.3:
|
|
2593
|
+
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
|
|
2594
|
+
engines: {node: '>= 0.4.0'}
|
|
2595
|
+
dependencies:
|
|
2596
|
+
function-bind: 1.1.1
|
|
2597
|
+
|
|
2598
|
+
/hosted-git-info@6.1.1:
|
|
2599
|
+
resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==}
|
|
2600
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2601
|
+
dependencies:
|
|
2602
|
+
lru-cache: 7.18.3
|
|
2603
|
+
dev: true
|
|
2604
|
+
|
|
2605
|
+
/http-cache-semantics@4.1.1:
|
|
2606
|
+
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
|
|
2607
|
+
dev: true
|
|
2608
|
+
|
|
2609
|
+
/http-proxy-agent@5.0.0:
|
|
2610
|
+
resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
|
|
2611
|
+
engines: {node: '>= 6'}
|
|
2612
|
+
dependencies:
|
|
2613
|
+
'@tootallnate/once': 2.0.0
|
|
2614
|
+
agent-base: 6.0.2
|
|
2615
|
+
debug: 4.3.4
|
|
2616
|
+
transitivePeerDependencies:
|
|
2617
|
+
- supports-color
|
|
2618
|
+
dev: true
|
|
2619
|
+
|
|
2620
|
+
/https-proxy-agent@5.0.1:
|
|
2621
|
+
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
|
|
2622
|
+
engines: {node: '>= 6'}
|
|
2623
|
+
dependencies:
|
|
2624
|
+
agent-base: 6.0.2
|
|
2625
|
+
debug: 4.3.4
|
|
2626
|
+
transitivePeerDependencies:
|
|
2627
|
+
- supports-color
|
|
2628
|
+
dev: true
|
|
2629
|
+
|
|
2630
|
+
/humanize-ms@1.2.1:
|
|
2631
|
+
resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
|
|
2632
|
+
dependencies:
|
|
2633
|
+
ms: 2.1.3
|
|
2634
|
+
dev: true
|
|
2635
|
+
|
|
2636
|
+
/iconv-lite@0.6.3:
|
|
2637
|
+
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
|
|
2638
|
+
engines: {node: '>=0.10.0'}
|
|
2639
|
+
dependencies:
|
|
2640
|
+
safer-buffer: 2.1.2
|
|
2641
|
+
dev: true
|
|
2642
|
+
optional: true
|
|
2643
|
+
|
|
2644
|
+
/ignore-walk@6.0.3:
|
|
2645
|
+
resolution: {integrity: sha512-C7FfFoTA+bI10qfeydT8aZbvr91vAEU+2W5BZUlzPec47oNb07SsOfwYrtxuvOYdUApPP/Qlh4DtAO51Ekk2QA==}
|
|
2646
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2647
|
+
dependencies:
|
|
2648
|
+
minimatch: 9.0.0
|
|
2649
|
+
dev: true
|
|
2650
|
+
|
|
2651
|
+
/imurmurhash@0.1.4:
|
|
2652
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
2653
|
+
engines: {node: '>=0.8.19'}
|
|
2654
|
+
dev: true
|
|
2655
|
+
|
|
2656
|
+
/indent-string@4.0.0:
|
|
2657
|
+
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
|
|
2658
|
+
engines: {node: '>=8'}
|
|
2659
|
+
dev: true
|
|
2660
|
+
|
|
2661
|
+
/infer-owner@1.0.4:
|
|
2662
|
+
resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
|
|
2663
|
+
dev: true
|
|
2664
|
+
|
|
2665
|
+
/inflight@1.0.6:
|
|
2666
|
+
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
|
|
2667
|
+
dependencies:
|
|
2668
|
+
once: 1.4.0
|
|
2669
|
+
wrappy: 1.0.2
|
|
2670
|
+
|
|
2671
|
+
/inherits@2.0.4:
|
|
2672
|
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
|
2673
|
+
|
|
2674
|
+
/ini@4.1.0:
|
|
2675
|
+
resolution: {integrity: sha512-HLR38RSF2iulAzc3I/sma4CoYxQP844rPYCNfzGDOHqa/YqVlwuuZgBx6M50/X8dKgzk0cm1qRg3+47mK2N+cQ==}
|
|
2676
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2677
|
+
dev: true
|
|
2678
|
+
|
|
2679
|
+
/internmap@2.0.3:
|
|
2680
|
+
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
|
|
2681
|
+
engines: {node: '>=12'}
|
|
2682
|
+
dev: false
|
|
2683
|
+
|
|
2684
|
+
/invariant@2.2.4:
|
|
2685
|
+
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
|
|
2686
|
+
dependencies:
|
|
2687
|
+
loose-envify: 1.4.0
|
|
2688
|
+
dev: false
|
|
2689
|
+
|
|
2690
|
+
/ip@2.0.0:
|
|
2691
|
+
resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
|
|
2692
|
+
dev: true
|
|
2693
|
+
|
|
2694
|
+
/is-binary-path@2.1.0:
|
|
2695
|
+
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
2696
|
+
engines: {node: '>=8'}
|
|
2697
|
+
dependencies:
|
|
2698
|
+
binary-extensions: 2.2.0
|
|
2699
|
+
|
|
2700
|
+
/is-core-module@2.12.0:
|
|
2701
|
+
resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
|
|
2702
|
+
dependencies:
|
|
2703
|
+
has: 1.0.3
|
|
2704
|
+
|
|
2705
|
+
/is-extglob@2.1.1:
|
|
2706
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
2707
|
+
engines: {node: '>=0.10.0'}
|
|
2708
|
+
|
|
2709
|
+
/is-fullwidth-code-point@3.0.0:
|
|
2710
|
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
2711
|
+
engines: {node: '>=8'}
|
|
2712
|
+
dev: true
|
|
2713
|
+
|
|
2714
|
+
/is-glob@4.0.3:
|
|
2715
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
2716
|
+
engines: {node: '>=0.10.0'}
|
|
2717
|
+
dependencies:
|
|
2718
|
+
is-extglob: 2.1.1
|
|
2719
|
+
|
|
2720
|
+
/is-lambda@1.0.1:
|
|
2721
|
+
resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
|
|
2722
|
+
dev: true
|
|
2723
|
+
|
|
2724
|
+
/is-number@7.0.0:
|
|
2725
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
2726
|
+
engines: {node: '>=0.12.0'}
|
|
2727
|
+
|
|
2728
|
+
/isexe@2.0.0:
|
|
2729
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
2730
|
+
dev: true
|
|
2731
|
+
|
|
2732
|
+
/jackspeak@2.2.0:
|
|
2733
|
+
resolution: {integrity: sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==}
|
|
2734
|
+
engines: {node: '>=14'}
|
|
2735
|
+
dependencies:
|
|
2736
|
+
'@isaacs/cliui': 8.0.2
|
|
2737
|
+
optionalDependencies:
|
|
2738
|
+
'@pkgjs/parseargs': 0.11.0
|
|
2739
|
+
dev: true
|
|
2740
|
+
|
|
2741
|
+
/javascript-natural-sort@0.7.1:
|
|
2742
|
+
resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
|
|
2743
|
+
dev: true
|
|
2744
|
+
|
|
2745
|
+
/jiti@1.18.2:
|
|
2746
|
+
resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
|
|
2747
|
+
hasBin: true
|
|
2748
|
+
|
|
2749
|
+
/js-tokens@4.0.0:
|
|
2750
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
2751
|
+
|
|
2752
|
+
/jsesc@2.5.2:
|
|
2753
|
+
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
|
|
2754
|
+
engines: {node: '>=4'}
|
|
2755
|
+
hasBin: true
|
|
2756
|
+
|
|
2757
|
+
/json-parse-even-better-errors@3.0.0:
|
|
2758
|
+
resolution: {integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==}
|
|
2759
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2760
|
+
dev: true
|
|
2761
|
+
|
|
2762
|
+
/json5@2.2.3:
|
|
2763
|
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
2764
|
+
engines: {node: '>=6'}
|
|
2765
|
+
hasBin: true
|
|
2766
|
+
|
|
2767
|
+
/jsonparse@1.3.1:
|
|
2768
|
+
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
|
|
2769
|
+
engines: {'0': node >= 0.2.0}
|
|
2770
|
+
dev: true
|
|
2771
|
+
|
|
2772
|
+
/kleur@3.0.3:
|
|
2773
|
+
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
|
|
2774
|
+
engines: {node: '>=6'}
|
|
2775
|
+
dev: true
|
|
2776
|
+
|
|
2777
|
+
/lilconfig@2.1.0:
|
|
2778
|
+
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
|
|
2779
|
+
engines: {node: '>=10'}
|
|
2780
|
+
|
|
2781
|
+
/lines-and-columns@1.2.4:
|
|
2782
|
+
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
2783
|
+
|
|
2784
|
+
/lodash.clone@4.5.0:
|
|
2785
|
+
resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==}
|
|
2786
|
+
dev: true
|
|
2787
|
+
|
|
2788
|
+
/lodash.isequal@4.5.0:
|
|
2789
|
+
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
|
|
2790
|
+
dev: true
|
|
2791
|
+
|
|
2792
|
+
/lodash@4.17.21:
|
|
2793
|
+
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
|
2794
|
+
dev: false
|
|
2795
|
+
|
|
2796
|
+
/loose-envify@1.4.0:
|
|
2797
|
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
2798
|
+
hasBin: true
|
|
2799
|
+
dependencies:
|
|
2800
|
+
js-tokens: 4.0.0
|
|
2801
|
+
dev: false
|
|
2802
|
+
|
|
2803
|
+
/lru-cache@5.1.1:
|
|
2804
|
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
2805
|
+
dependencies:
|
|
2806
|
+
yallist: 3.1.1
|
|
2807
|
+
|
|
2808
|
+
/lru-cache@6.0.0:
|
|
2809
|
+
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
|
|
2810
|
+
engines: {node: '>=10'}
|
|
2811
|
+
dependencies:
|
|
2812
|
+
yallist: 4.0.0
|
|
2813
|
+
dev: true
|
|
2814
|
+
|
|
2815
|
+
/lru-cache@7.18.3:
|
|
2816
|
+
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
|
|
2817
|
+
engines: {node: '>=12'}
|
|
2818
|
+
dev: true
|
|
2819
|
+
|
|
2820
|
+
/lru-cache@9.1.0:
|
|
2821
|
+
resolution: {integrity: sha512-qFXQEwchrZcMVen2uIDceR8Tii6kCJak5rzDStfEM0qA3YLMswaxIEZO0DhIbJ3aqaJiDjt+3crlplOb0tDtKQ==}
|
|
2822
|
+
engines: {node: 14 || >=16.14}
|
|
2823
|
+
dev: true
|
|
2824
|
+
|
|
2825
|
+
/lucide-react@0.220.0(react@18.2.0):
|
|
2826
|
+
resolution: {integrity: sha512-bYtGUsLAWBvZu+BzAU/ziP1gzE4LwMEXLnlgSr1yUKEPPalLG77JLd5GdYebOVkpm+GtqRqnp6tEKDX7Bm8ZlQ==}
|
|
2827
|
+
peerDependencies:
|
|
2828
|
+
react: ^16.5.1 || ^17.0.0 || ^18.0.0
|
|
2829
|
+
dependencies:
|
|
2830
|
+
react: 18.2.0
|
|
2831
|
+
dev: false
|
|
2832
|
+
|
|
2833
|
+
/make-fetch-happen@10.2.1:
|
|
2834
|
+
resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
|
|
2835
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
2836
|
+
dependencies:
|
|
2837
|
+
agentkeepalive: 4.3.0
|
|
2838
|
+
cacache: 16.1.3
|
|
2839
|
+
http-cache-semantics: 4.1.1
|
|
2840
|
+
http-proxy-agent: 5.0.0
|
|
2841
|
+
https-proxy-agent: 5.0.1
|
|
2842
|
+
is-lambda: 1.0.1
|
|
2843
|
+
lru-cache: 7.18.3
|
|
2844
|
+
minipass: 3.3.6
|
|
2845
|
+
minipass-collect: 1.0.2
|
|
2846
|
+
minipass-fetch: 2.1.2
|
|
2847
|
+
minipass-flush: 1.0.5
|
|
2848
|
+
minipass-pipeline: 1.2.4
|
|
2849
|
+
negotiator: 0.6.3
|
|
2850
|
+
promise-retry: 2.0.1
|
|
2851
|
+
socks-proxy-agent: 7.0.0
|
|
2852
|
+
ssri: 9.0.1
|
|
2853
|
+
transitivePeerDependencies:
|
|
2854
|
+
- bluebird
|
|
2855
|
+
- supports-color
|
|
2856
|
+
dev: true
|
|
2857
|
+
|
|
2858
|
+
/make-fetch-happen@11.1.1:
|
|
2859
|
+
resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==}
|
|
2860
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2861
|
+
dependencies:
|
|
2862
|
+
agentkeepalive: 4.3.0
|
|
2863
|
+
cacache: 17.1.0
|
|
2864
|
+
http-cache-semantics: 4.1.1
|
|
2865
|
+
http-proxy-agent: 5.0.0
|
|
2866
|
+
https-proxy-agent: 5.0.1
|
|
2867
|
+
is-lambda: 1.0.1
|
|
2868
|
+
lru-cache: 7.18.3
|
|
2869
|
+
minipass: 5.0.0
|
|
2870
|
+
minipass-fetch: 3.0.3
|
|
2871
|
+
minipass-flush: 1.0.5
|
|
2872
|
+
minipass-pipeline: 1.2.4
|
|
2873
|
+
negotiator: 0.6.3
|
|
2874
|
+
promise-retry: 2.0.1
|
|
2875
|
+
socks-proxy-agent: 7.0.0
|
|
2876
|
+
ssri: 10.0.4
|
|
2877
|
+
transitivePeerDependencies:
|
|
2878
|
+
- supports-color
|
|
2879
|
+
dev: true
|
|
2880
|
+
|
|
2881
|
+
/merge2@1.4.1:
|
|
2882
|
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
2883
|
+
engines: {node: '>= 8'}
|
|
2884
|
+
|
|
2885
|
+
/micromatch@4.0.5:
|
|
2886
|
+
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
|
|
2887
|
+
engines: {node: '>=8.6'}
|
|
2888
|
+
dependencies:
|
|
2889
|
+
braces: 3.0.2
|
|
2890
|
+
picomatch: 2.3.1
|
|
2891
|
+
|
|
2892
|
+
/minimatch@3.1.2:
|
|
2893
|
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
2894
|
+
dependencies:
|
|
2895
|
+
brace-expansion: 1.1.11
|
|
2896
|
+
|
|
2897
|
+
/minimatch@5.1.6:
|
|
2898
|
+
resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
|
|
2899
|
+
engines: {node: '>=10'}
|
|
2900
|
+
dependencies:
|
|
2901
|
+
brace-expansion: 2.0.1
|
|
2902
|
+
dev: true
|
|
2903
|
+
|
|
2904
|
+
/minimatch@7.4.6:
|
|
2905
|
+
resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
|
|
2906
|
+
engines: {node: '>=10'}
|
|
2907
|
+
dependencies:
|
|
2908
|
+
brace-expansion: 2.0.1
|
|
2909
|
+
dev: true
|
|
2910
|
+
|
|
2911
|
+
/minimatch@8.0.4:
|
|
2912
|
+
resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
|
|
2913
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
2914
|
+
dependencies:
|
|
2915
|
+
brace-expansion: 2.0.1
|
|
2916
|
+
dev: true
|
|
2917
|
+
|
|
2918
|
+
/minimatch@9.0.0:
|
|
2919
|
+
resolution: {integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==}
|
|
2920
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
2921
|
+
dependencies:
|
|
2922
|
+
brace-expansion: 2.0.1
|
|
2923
|
+
dev: true
|
|
2924
|
+
|
|
2925
|
+
/minipass-collect@1.0.2:
|
|
2926
|
+
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
|
|
2927
|
+
engines: {node: '>= 8'}
|
|
2928
|
+
dependencies:
|
|
2929
|
+
minipass: 3.3.6
|
|
2930
|
+
dev: true
|
|
2931
|
+
|
|
2932
|
+
/minipass-fetch@2.1.2:
|
|
2933
|
+
resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
|
|
2934
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
2935
|
+
dependencies:
|
|
2936
|
+
minipass: 3.3.6
|
|
2937
|
+
minipass-sized: 1.0.3
|
|
2938
|
+
minizlib: 2.1.2
|
|
2939
|
+
optionalDependencies:
|
|
2940
|
+
encoding: 0.1.13
|
|
2941
|
+
dev: true
|
|
2942
|
+
|
|
2943
|
+
/minipass-fetch@3.0.3:
|
|
2944
|
+
resolution: {integrity: sha512-n5ITsTkDqYkYJZjcRWzZt9qnZKCT7nKCosJhHoj7S7zD+BP4jVbWs+odsniw5TA3E0sLomhTKOKjF86wf11PuQ==}
|
|
2945
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
2946
|
+
dependencies:
|
|
2947
|
+
minipass: 5.0.0
|
|
2948
|
+
minipass-sized: 1.0.3
|
|
2949
|
+
minizlib: 2.1.2
|
|
2950
|
+
optionalDependencies:
|
|
2951
|
+
encoding: 0.1.13
|
|
2952
|
+
dev: true
|
|
2953
|
+
|
|
2954
|
+
/minipass-flush@1.0.5:
|
|
2955
|
+
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
|
|
2956
|
+
engines: {node: '>= 8'}
|
|
2957
|
+
dependencies:
|
|
2958
|
+
minipass: 3.3.6
|
|
2959
|
+
dev: true
|
|
2960
|
+
|
|
2961
|
+
/minipass-json-stream@1.0.1:
|
|
2962
|
+
resolution: {integrity: sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==}
|
|
2963
|
+
dependencies:
|
|
2964
|
+
jsonparse: 1.3.1
|
|
2965
|
+
minipass: 3.3.6
|
|
2966
|
+
dev: true
|
|
2967
|
+
|
|
2968
|
+
/minipass-pipeline@1.2.4:
|
|
2969
|
+
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
|
|
2970
|
+
engines: {node: '>=8'}
|
|
2971
|
+
dependencies:
|
|
2972
|
+
minipass: 3.3.6
|
|
2973
|
+
dev: true
|
|
2974
|
+
|
|
2975
|
+
/minipass-sized@1.0.3:
|
|
2976
|
+
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
|
|
2977
|
+
engines: {node: '>=8'}
|
|
2978
|
+
dependencies:
|
|
2979
|
+
minipass: 3.3.6
|
|
2980
|
+
dev: true
|
|
2981
|
+
|
|
2982
|
+
/minipass@3.3.6:
|
|
2983
|
+
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
|
|
2984
|
+
engines: {node: '>=8'}
|
|
2985
|
+
dependencies:
|
|
2986
|
+
yallist: 4.0.0
|
|
2987
|
+
dev: true
|
|
2988
|
+
|
|
2989
|
+
/minipass@4.2.8:
|
|
2990
|
+
resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
|
|
2991
|
+
engines: {node: '>=8'}
|
|
2992
|
+
dev: true
|
|
2993
|
+
|
|
2994
|
+
/minipass@5.0.0:
|
|
2995
|
+
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
|
|
2996
|
+
engines: {node: '>=8'}
|
|
2997
|
+
dev: true
|
|
2998
|
+
|
|
2999
|
+
/minizlib@2.1.2:
|
|
3000
|
+
resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
|
|
3001
|
+
engines: {node: '>= 8'}
|
|
3002
|
+
dependencies:
|
|
3003
|
+
minipass: 3.3.6
|
|
3004
|
+
yallist: 4.0.0
|
|
3005
|
+
dev: true
|
|
3006
|
+
|
|
3007
|
+
/mkdirp@1.0.4:
|
|
3008
|
+
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
|
|
3009
|
+
engines: {node: '>=10'}
|
|
3010
|
+
hasBin: true
|
|
3011
|
+
dev: true
|
|
3012
|
+
|
|
3013
|
+
/ms@2.1.2:
|
|
3014
|
+
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
|
|
3015
|
+
|
|
3016
|
+
/ms@2.1.3:
|
|
3017
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
3018
|
+
dev: true
|
|
3019
|
+
|
|
3020
|
+
/mz@2.7.0:
|
|
3021
|
+
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
|
3022
|
+
dependencies:
|
|
3023
|
+
any-promise: 1.3.0
|
|
3024
|
+
object-assign: 4.1.1
|
|
3025
|
+
thenify-all: 1.6.0
|
|
3026
|
+
|
|
3027
|
+
/nanoid@3.3.6:
|
|
3028
|
+
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
|
|
3029
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
3030
|
+
hasBin: true
|
|
3031
|
+
|
|
3032
|
+
/nanoid@4.0.2:
|
|
3033
|
+
resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
|
|
3034
|
+
engines: {node: ^14 || ^16 || >=18}
|
|
3035
|
+
hasBin: true
|
|
3036
|
+
dev: false
|
|
3037
|
+
|
|
3038
|
+
/negotiator@0.6.3:
|
|
3039
|
+
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
|
|
3040
|
+
engines: {node: '>= 0.6'}
|
|
3041
|
+
dev: true
|
|
3042
|
+
|
|
3043
|
+
/next-themes@0.2.1(next@13.4.4-canary.1)(react-dom@18.2.0)(react@18.2.0):
|
|
3044
|
+
resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
|
|
3045
|
+
peerDependencies:
|
|
3046
|
+
next: '*'
|
|
3047
|
+
react: '*'
|
|
3048
|
+
react-dom: '*'
|
|
3049
|
+
dependencies:
|
|
3050
|
+
next: 13.4.4-canary.1(@babel/core@7.21.4)(react-dom@18.2.0)(react@18.2.0)
|
|
3051
|
+
react: 18.2.0
|
|
3052
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
3053
|
+
dev: false
|
|
3054
|
+
|
|
3055
|
+
/next@13.4.4-canary.1(@babel/core@7.21.4)(react-dom@18.2.0)(react@18.2.0):
|
|
3056
|
+
resolution: {integrity: sha512-LrnslBZSWs79WTmvQWNiD+umaw7llfK6/GqQTeyArSCJoOFuagn9Wb5wxTpSpx+ZrwreoDxI9sCcW4PCc4FI1w==}
|
|
3057
|
+
engines: {node: '>=16.8.0'}
|
|
3058
|
+
hasBin: true
|
|
3059
|
+
peerDependencies:
|
|
3060
|
+
'@opentelemetry/api': ^1.1.0
|
|
3061
|
+
fibers: '>= 3.1.0'
|
|
3062
|
+
react: ^18.2.0
|
|
3063
|
+
react-dom: ^18.2.0
|
|
3064
|
+
sass: ^1.3.0
|
|
3065
|
+
peerDependenciesMeta:
|
|
3066
|
+
'@opentelemetry/api':
|
|
3067
|
+
optional: true
|
|
3068
|
+
fibers:
|
|
3069
|
+
optional: true
|
|
3070
|
+
sass:
|
|
3071
|
+
optional: true
|
|
3072
|
+
dependencies:
|
|
3073
|
+
'@next/env': 13.4.4-canary.1
|
|
3074
|
+
'@swc/helpers': 0.5.1
|
|
3075
|
+
busboy: 1.6.0
|
|
3076
|
+
caniuse-lite: 1.0.30001480
|
|
3077
|
+
postcss: 8.4.14
|
|
3078
|
+
react: 18.2.0
|
|
3079
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
3080
|
+
styled-jsx: 5.1.1(@babel/core@7.21.4)(react@18.2.0)
|
|
3081
|
+
zod: 3.21.4
|
|
3082
|
+
optionalDependencies:
|
|
3083
|
+
'@next/swc-darwin-arm64': 13.4.4-canary.1
|
|
3084
|
+
'@next/swc-darwin-x64': 13.4.4-canary.1
|
|
3085
|
+
'@next/swc-linux-arm64-gnu': 13.4.4-canary.1
|
|
3086
|
+
'@next/swc-linux-arm64-musl': 13.4.4-canary.1
|
|
3087
|
+
'@next/swc-linux-x64-gnu': 13.4.4-canary.1
|
|
3088
|
+
'@next/swc-linux-x64-musl': 13.4.4-canary.1
|
|
3089
|
+
'@next/swc-win32-arm64-msvc': 13.4.4-canary.1
|
|
3090
|
+
'@next/swc-win32-ia32-msvc': 13.4.4-canary.1
|
|
3091
|
+
'@next/swc-win32-x64-msvc': 13.4.4-canary.1
|
|
3092
|
+
transitivePeerDependencies:
|
|
3093
|
+
- '@babel/core'
|
|
3094
|
+
- babel-plugin-macros
|
|
3095
|
+
dev: false
|
|
3096
|
+
|
|
3097
|
+
/node-gyp@9.3.1:
|
|
3098
|
+
resolution: {integrity: sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg==}
|
|
3099
|
+
engines: {node: ^12.13 || ^14.13 || >=16}
|
|
3100
|
+
hasBin: true
|
|
3101
|
+
dependencies:
|
|
3102
|
+
env-paths: 2.2.1
|
|
3103
|
+
glob: 7.2.3
|
|
3104
|
+
graceful-fs: 4.2.11
|
|
3105
|
+
make-fetch-happen: 10.2.1
|
|
3106
|
+
nopt: 6.0.0
|
|
3107
|
+
npmlog: 6.0.2
|
|
3108
|
+
rimraf: 3.0.2
|
|
3109
|
+
semver: 7.5.0
|
|
3110
|
+
tar: 6.1.13
|
|
3111
|
+
which: 2.0.2
|
|
3112
|
+
transitivePeerDependencies:
|
|
3113
|
+
- bluebird
|
|
3114
|
+
- supports-color
|
|
3115
|
+
dev: true
|
|
3116
|
+
|
|
3117
|
+
/node-releases@2.0.10:
|
|
3118
|
+
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
|
|
3119
|
+
|
|
3120
|
+
/nopt@6.0.0:
|
|
3121
|
+
resolution: {integrity: sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==}
|
|
3122
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3123
|
+
hasBin: true
|
|
3124
|
+
dependencies:
|
|
3125
|
+
abbrev: 1.1.1
|
|
3126
|
+
dev: true
|
|
3127
|
+
|
|
3128
|
+
/nopt@7.1.0:
|
|
3129
|
+
resolution: {integrity: sha512-ZFPLe9Iu0tnx7oWhFxAo4s7QTn8+NNDDxYNaKLjE7Dp0tbakQ3M1QhQzsnzXHQBTUO3K9BmwaxnyO8Ayn2I95Q==}
|
|
3130
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3131
|
+
hasBin: true
|
|
3132
|
+
dependencies:
|
|
3133
|
+
abbrev: 2.0.0
|
|
3134
|
+
dev: true
|
|
3135
|
+
|
|
3136
|
+
/normalize-package-data@5.0.0:
|
|
3137
|
+
resolution: {integrity: sha512-h9iPVIfrVZ9wVYQnxFgtw1ugSvGEMOlyPWWtm8BMJhnwyEL/FLbYbTY3V3PpjI/BUK67n9PEWDu6eHzu1fB15Q==}
|
|
3138
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3139
|
+
dependencies:
|
|
3140
|
+
hosted-git-info: 6.1.1
|
|
3141
|
+
is-core-module: 2.12.0
|
|
3142
|
+
semver: 7.5.0
|
|
3143
|
+
validate-npm-package-license: 3.0.4
|
|
3144
|
+
dev: true
|
|
3145
|
+
|
|
3146
|
+
/normalize-path@3.0.0:
|
|
3147
|
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
|
3148
|
+
engines: {node: '>=0.10.0'}
|
|
3149
|
+
|
|
3150
|
+
/normalize-range@0.1.2:
|
|
3151
|
+
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
|
|
3152
|
+
engines: {node: '>=0.10.0'}
|
|
3153
|
+
dev: true
|
|
3154
|
+
|
|
3155
|
+
/npm-bundled@3.0.0:
|
|
3156
|
+
resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
|
|
3157
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3158
|
+
dependencies:
|
|
3159
|
+
npm-normalize-package-bin: 3.0.0
|
|
3160
|
+
dev: true
|
|
3161
|
+
|
|
3162
|
+
/npm-install-checks@6.1.1:
|
|
3163
|
+
resolution: {integrity: sha512-dH3GmQL4vsPtld59cOn8uY0iOqRmqKvV+DLGwNXV/Q7MDgD2QfOADWd/mFXcIE5LVhYYGjA3baz6W9JneqnuCw==}
|
|
3164
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3165
|
+
dependencies:
|
|
3166
|
+
semver: 7.5.0
|
|
3167
|
+
dev: true
|
|
3168
|
+
|
|
3169
|
+
/npm-normalize-package-bin@3.0.0:
|
|
3170
|
+
resolution: {integrity: sha512-g+DPQSkusnk7HYXr75NtzkIP4+N81i3RPsGFidF3DzHd9MT9wWngmqoeg/fnHFz5MNdtG4w03s+QnhewSLTT2Q==}
|
|
3171
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3172
|
+
dev: true
|
|
3173
|
+
|
|
3174
|
+
/npm-package-arg@10.1.0:
|
|
3175
|
+
resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
|
|
3176
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3177
|
+
dependencies:
|
|
3178
|
+
hosted-git-info: 6.1.1
|
|
3179
|
+
proc-log: 3.0.0
|
|
3180
|
+
semver: 7.5.0
|
|
3181
|
+
validate-npm-package-name: 5.0.0
|
|
3182
|
+
dev: true
|
|
3183
|
+
|
|
3184
|
+
/npm-packlist@7.0.4:
|
|
3185
|
+
resolution: {integrity: sha512-d6RGEuRrNS5/N84iglPivjaJPxhDbZmlbTwTDX2IbcRHG5bZCdtysYMhwiPvcF4GisXHGn7xsxv+GQ7T/02M5Q==}
|
|
3186
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3187
|
+
dependencies:
|
|
3188
|
+
ignore-walk: 6.0.3
|
|
3189
|
+
dev: true
|
|
3190
|
+
|
|
3191
|
+
/npm-pick-manifest@8.0.1:
|
|
3192
|
+
resolution: {integrity: sha512-mRtvlBjTsJvfCCdmPtiu2bdlx8d/KXtF7yNXNWe7G0Z36qWA9Ny5zXsI2PfBZEv7SXgoxTmNaTzGSbbzDZChoA==}
|
|
3193
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3194
|
+
dependencies:
|
|
3195
|
+
npm-install-checks: 6.1.1
|
|
3196
|
+
npm-normalize-package-bin: 3.0.0
|
|
3197
|
+
npm-package-arg: 10.1.0
|
|
3198
|
+
semver: 7.5.0
|
|
3199
|
+
dev: true
|
|
3200
|
+
|
|
3201
|
+
/npm-registry-fetch@14.0.5:
|
|
3202
|
+
resolution: {integrity: sha512-kIDMIo4aBm6xg7jOttupWZamsZRkAqMqwqqbVXnUqstY5+tapvv6bkH/qMR76jdgV+YljEUCyWx3hRYMrJiAgA==}
|
|
3203
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3204
|
+
dependencies:
|
|
3205
|
+
make-fetch-happen: 11.1.1
|
|
3206
|
+
minipass: 5.0.0
|
|
3207
|
+
minipass-fetch: 3.0.3
|
|
3208
|
+
minipass-json-stream: 1.0.1
|
|
3209
|
+
minizlib: 2.1.2
|
|
3210
|
+
npm-package-arg: 10.1.0
|
|
3211
|
+
proc-log: 3.0.0
|
|
3212
|
+
transitivePeerDependencies:
|
|
3213
|
+
- supports-color
|
|
3214
|
+
dev: true
|
|
3215
|
+
|
|
3216
|
+
/npmlog@6.0.2:
|
|
3217
|
+
resolution: {integrity: sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==}
|
|
3218
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3219
|
+
dependencies:
|
|
3220
|
+
are-we-there-yet: 3.0.1
|
|
3221
|
+
console-control-strings: 1.1.0
|
|
3222
|
+
gauge: 4.0.4
|
|
3223
|
+
set-blocking: 2.0.0
|
|
3224
|
+
dev: true
|
|
3225
|
+
|
|
3226
|
+
/object-assign@4.1.1:
|
|
3227
|
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
|
3228
|
+
engines: {node: '>=0.10.0'}
|
|
3229
|
+
|
|
3230
|
+
/object-hash@3.0.0:
|
|
3231
|
+
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
|
3232
|
+
engines: {node: '>= 6'}
|
|
3233
|
+
|
|
3234
|
+
/once@1.4.0:
|
|
3235
|
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
|
3236
|
+
dependencies:
|
|
3237
|
+
wrappy: 1.0.2
|
|
3238
|
+
|
|
3239
|
+
/p-map@4.0.0:
|
|
3240
|
+
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
|
|
3241
|
+
engines: {node: '>=10'}
|
|
3242
|
+
dependencies:
|
|
3243
|
+
aggregate-error: 3.1.0
|
|
3244
|
+
dev: true
|
|
3245
|
+
|
|
3246
|
+
/pacote@15.1.3:
|
|
3247
|
+
resolution: {integrity: sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA==}
|
|
3248
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3249
|
+
hasBin: true
|
|
3250
|
+
dependencies:
|
|
3251
|
+
'@npmcli/git': 4.0.4
|
|
3252
|
+
'@npmcli/installed-package-contents': 2.0.2
|
|
3253
|
+
'@npmcli/promise-spawn': 6.0.2
|
|
3254
|
+
'@npmcli/run-script': 6.0.1
|
|
3255
|
+
cacache: 17.1.0
|
|
3256
|
+
fs-minipass: 3.0.2
|
|
3257
|
+
minipass: 5.0.0
|
|
3258
|
+
npm-package-arg: 10.1.0
|
|
3259
|
+
npm-packlist: 7.0.4
|
|
3260
|
+
npm-pick-manifest: 8.0.1
|
|
3261
|
+
npm-registry-fetch: 14.0.5
|
|
3262
|
+
proc-log: 3.0.0
|
|
3263
|
+
promise-retry: 2.0.1
|
|
3264
|
+
read-package-json: 6.0.3
|
|
3265
|
+
read-package-json-fast: 3.0.2
|
|
3266
|
+
sigstore: 1.4.0
|
|
3267
|
+
ssri: 10.0.4
|
|
3268
|
+
tar: 6.1.13
|
|
3269
|
+
transitivePeerDependencies:
|
|
3270
|
+
- bluebird
|
|
3271
|
+
- supports-color
|
|
3272
|
+
dev: true
|
|
3273
|
+
|
|
3274
|
+
/path-is-absolute@1.0.1:
|
|
3275
|
+
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
|
3276
|
+
engines: {node: '>=0.10.0'}
|
|
3277
|
+
|
|
3278
|
+
/path-key@3.1.1:
|
|
3279
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
3280
|
+
engines: {node: '>=8'}
|
|
3281
|
+
dev: true
|
|
3282
|
+
|
|
3283
|
+
/path-parse@1.0.7:
|
|
3284
|
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
3285
|
+
|
|
3286
|
+
/path-scurry@1.7.0:
|
|
3287
|
+
resolution: {integrity: sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg==}
|
|
3288
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
3289
|
+
dependencies:
|
|
3290
|
+
lru-cache: 9.1.0
|
|
3291
|
+
minipass: 5.0.0
|
|
3292
|
+
dev: true
|
|
3293
|
+
|
|
3294
|
+
/picocolors@1.0.0:
|
|
3295
|
+
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
|
3296
|
+
|
|
3297
|
+
/picomatch@2.3.1:
|
|
3298
|
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
3299
|
+
engines: {node: '>=8.6'}
|
|
3300
|
+
|
|
3301
|
+
/pify@2.3.0:
|
|
3302
|
+
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
|
|
3303
|
+
engines: {node: '>=0.10.0'}
|
|
3304
|
+
|
|
3305
|
+
/pirates@4.0.5:
|
|
3306
|
+
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
|
|
3307
|
+
engines: {node: '>= 6'}
|
|
3308
|
+
|
|
3309
|
+
/postcss-import@15.1.0(postcss@8.4.23):
|
|
3310
|
+
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
|
3311
|
+
engines: {node: '>=14.0.0'}
|
|
3312
|
+
peerDependencies:
|
|
3313
|
+
postcss: ^8.0.0
|
|
3314
|
+
dependencies:
|
|
3315
|
+
postcss: 8.4.23
|
|
3316
|
+
postcss-value-parser: 4.2.0
|
|
3317
|
+
read-cache: 1.0.0
|
|
3318
|
+
resolve: 1.22.2
|
|
3319
|
+
|
|
3320
|
+
/postcss-js@4.0.1(postcss@8.4.23):
|
|
3321
|
+
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
|
|
3322
|
+
engines: {node: ^12 || ^14 || >= 16}
|
|
3323
|
+
peerDependencies:
|
|
3324
|
+
postcss: ^8.4.21
|
|
3325
|
+
dependencies:
|
|
3326
|
+
camelcase-css: 2.0.1
|
|
3327
|
+
postcss: 8.4.23
|
|
3328
|
+
|
|
3329
|
+
/postcss-load-config@4.0.1(postcss@8.4.23):
|
|
3330
|
+
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
|
|
3331
|
+
engines: {node: '>= 14'}
|
|
3332
|
+
peerDependencies:
|
|
3333
|
+
postcss: '>=8.0.9'
|
|
3334
|
+
ts-node: '>=9.0.0'
|
|
3335
|
+
peerDependenciesMeta:
|
|
3336
|
+
postcss:
|
|
3337
|
+
optional: true
|
|
3338
|
+
ts-node:
|
|
3339
|
+
optional: true
|
|
3340
|
+
dependencies:
|
|
3341
|
+
lilconfig: 2.1.0
|
|
3342
|
+
postcss: 8.4.23
|
|
3343
|
+
yaml: 2.2.2
|
|
3344
|
+
|
|
3345
|
+
/postcss-nested@6.0.1(postcss@8.4.23):
|
|
3346
|
+
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
|
|
3347
|
+
engines: {node: '>=12.0'}
|
|
3348
|
+
peerDependencies:
|
|
3349
|
+
postcss: ^8.2.14
|
|
3350
|
+
dependencies:
|
|
3351
|
+
postcss: 8.4.23
|
|
3352
|
+
postcss-selector-parser: 6.0.11
|
|
3353
|
+
|
|
3354
|
+
/postcss-selector-parser@6.0.11:
|
|
3355
|
+
resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
|
|
3356
|
+
engines: {node: '>=4'}
|
|
3357
|
+
dependencies:
|
|
3358
|
+
cssesc: 3.0.0
|
|
3359
|
+
util-deprecate: 1.0.2
|
|
3360
|
+
|
|
3361
|
+
/postcss-value-parser@3.3.1:
|
|
3362
|
+
resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
|
|
3363
|
+
dev: false
|
|
3364
|
+
|
|
3365
|
+
/postcss-value-parser@4.2.0:
|
|
3366
|
+
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
3367
|
+
|
|
3368
|
+
/postcss@8.4.14:
|
|
3369
|
+
resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
|
|
3370
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
3371
|
+
dependencies:
|
|
3372
|
+
nanoid: 3.3.6
|
|
3373
|
+
picocolors: 1.0.0
|
|
3374
|
+
source-map-js: 1.0.2
|
|
3375
|
+
dev: false
|
|
3376
|
+
|
|
3377
|
+
/postcss@8.4.23:
|
|
3378
|
+
resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==}
|
|
3379
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
3380
|
+
dependencies:
|
|
3381
|
+
nanoid: 3.3.6
|
|
3382
|
+
picocolors: 1.0.0
|
|
3383
|
+
source-map-js: 1.0.2
|
|
3384
|
+
|
|
3385
|
+
/prettier-plugin-tailwindcss@0.3.0(@ianvs/prettier-plugin-sort-imports@3.7.2)(prettier@2.8.8):
|
|
3386
|
+
resolution: {integrity: sha512-009/Xqdy7UmkcTBpwlq7jsViDqXAYSOMLDrHAdTMlVZOrKfM2o9Ci7EMWTMZ7SkKBFTG04UM9F9iM2+4i6boDA==}
|
|
3387
|
+
engines: {node: '>=12.17.0'}
|
|
3388
|
+
peerDependencies:
|
|
3389
|
+
'@ianvs/prettier-plugin-sort-imports': '*'
|
|
3390
|
+
'@prettier/plugin-pug': '*'
|
|
3391
|
+
'@shopify/prettier-plugin-liquid': '*'
|
|
3392
|
+
'@shufo/prettier-plugin-blade': '*'
|
|
3393
|
+
'@trivago/prettier-plugin-sort-imports': '*'
|
|
3394
|
+
prettier: '>=2.2.0'
|
|
3395
|
+
prettier-plugin-astro: '*'
|
|
3396
|
+
prettier-plugin-css-order: '*'
|
|
3397
|
+
prettier-plugin-import-sort: '*'
|
|
3398
|
+
prettier-plugin-jsdoc: '*'
|
|
3399
|
+
prettier-plugin-marko: '*'
|
|
3400
|
+
prettier-plugin-organize-attributes: '*'
|
|
3401
|
+
prettier-plugin-organize-imports: '*'
|
|
3402
|
+
prettier-plugin-style-order: '*'
|
|
3403
|
+
prettier-plugin-svelte: '*'
|
|
3404
|
+
prettier-plugin-twig-melody: '*'
|
|
3405
|
+
peerDependenciesMeta:
|
|
3406
|
+
'@ianvs/prettier-plugin-sort-imports':
|
|
3407
|
+
optional: true
|
|
3408
|
+
'@prettier/plugin-pug':
|
|
3409
|
+
optional: true
|
|
3410
|
+
'@shopify/prettier-plugin-liquid':
|
|
3411
|
+
optional: true
|
|
3412
|
+
'@shufo/prettier-plugin-blade':
|
|
3413
|
+
optional: true
|
|
3414
|
+
'@trivago/prettier-plugin-sort-imports':
|
|
3415
|
+
optional: true
|
|
3416
|
+
prettier-plugin-astro:
|
|
3417
|
+
optional: true
|
|
3418
|
+
prettier-plugin-css-order:
|
|
3419
|
+
optional: true
|
|
3420
|
+
prettier-plugin-import-sort:
|
|
3421
|
+
optional: true
|
|
3422
|
+
prettier-plugin-jsdoc:
|
|
3423
|
+
optional: true
|
|
3424
|
+
prettier-plugin-marko:
|
|
3425
|
+
optional: true
|
|
3426
|
+
prettier-plugin-organize-attributes:
|
|
3427
|
+
optional: true
|
|
3428
|
+
prettier-plugin-organize-imports:
|
|
3429
|
+
optional: true
|
|
3430
|
+
prettier-plugin-style-order:
|
|
3431
|
+
optional: true
|
|
3432
|
+
prettier-plugin-svelte:
|
|
3433
|
+
optional: true
|
|
3434
|
+
prettier-plugin-twig-melody:
|
|
3435
|
+
optional: true
|
|
3436
|
+
dependencies:
|
|
3437
|
+
'@ianvs/prettier-plugin-sort-imports': 3.7.2(prettier@2.8.8)
|
|
3438
|
+
prettier: 2.8.8
|
|
3439
|
+
dev: true
|
|
3440
|
+
|
|
3441
|
+
/prettier@2.8.8:
|
|
3442
|
+
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
|
|
3443
|
+
engines: {node: '>=10.13.0'}
|
|
3444
|
+
hasBin: true
|
|
3445
|
+
dev: true
|
|
3446
|
+
|
|
3447
|
+
/proc-log@3.0.0:
|
|
3448
|
+
resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
|
|
3449
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3450
|
+
dev: true
|
|
3451
|
+
|
|
3452
|
+
/promise-inflight@1.0.1:
|
|
3453
|
+
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
|
|
3454
|
+
peerDependencies:
|
|
3455
|
+
bluebird: '*'
|
|
3456
|
+
peerDependenciesMeta:
|
|
3457
|
+
bluebird:
|
|
3458
|
+
optional: true
|
|
3459
|
+
dev: true
|
|
3460
|
+
|
|
3461
|
+
/promise-retry@2.0.1:
|
|
3462
|
+
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
|
|
3463
|
+
engines: {node: '>=10'}
|
|
3464
|
+
dependencies:
|
|
3465
|
+
err-code: 2.0.3
|
|
3466
|
+
retry: 0.12.0
|
|
3467
|
+
dev: true
|
|
3468
|
+
|
|
3469
|
+
/prompts@2.4.2:
|
|
3470
|
+
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
|
|
3471
|
+
engines: {node: '>= 6'}
|
|
3472
|
+
dependencies:
|
|
3473
|
+
kleur: 3.0.3
|
|
3474
|
+
sisteransi: 1.0.5
|
|
3475
|
+
dev: true
|
|
3476
|
+
|
|
3477
|
+
/prop-types@15.8.1:
|
|
3478
|
+
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
|
|
3479
|
+
dependencies:
|
|
3480
|
+
loose-envify: 1.4.0
|
|
3481
|
+
object-assign: 4.1.1
|
|
3482
|
+
react-is: 16.13.1
|
|
3483
|
+
dev: false
|
|
3484
|
+
|
|
3485
|
+
/queue-microtask@1.2.3:
|
|
3486
|
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
3487
|
+
|
|
3488
|
+
/react-day-picker@8.7.1(date-fns@2.30.0)(react@18.2.0):
|
|
3489
|
+
resolution: {integrity: sha512-Gv426AW8b151CZfh3aP5RUGztLwHB/EyJgWZ5iMgtzbFBkjHfG6Y66CIQFMWGLnYjsQ9DYSJRmJ5S0Pg5HWKjA==}
|
|
3490
|
+
peerDependencies:
|
|
3491
|
+
date-fns: ^2.28.0
|
|
3492
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3493
|
+
dependencies:
|
|
3494
|
+
date-fns: 2.30.0
|
|
3495
|
+
react: 18.2.0
|
|
3496
|
+
dev: false
|
|
3497
|
+
|
|
3498
|
+
/react-dom@18.2.0(react@18.2.0):
|
|
3499
|
+
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
|
|
3500
|
+
peerDependencies:
|
|
3501
|
+
react: ^18.2.0
|
|
3502
|
+
dependencies:
|
|
3503
|
+
loose-envify: 1.4.0
|
|
3504
|
+
react: 18.2.0
|
|
3505
|
+
scheduler: 0.23.0
|
|
3506
|
+
dev: false
|
|
3507
|
+
|
|
3508
|
+
/react-hook-form@7.43.9(react@18.2.0):
|
|
3509
|
+
resolution: {integrity: sha512-AUDN3Pz2NSeoxQ7Hs6OhQhDr6gtF9YRuutGDwPQqhSUAHJSgGl2VeY3qN19MG0SucpjgDiuMJ4iC5T5uB+eaNQ==}
|
|
3510
|
+
engines: {node: '>=12.22.0'}
|
|
3511
|
+
peerDependencies:
|
|
3512
|
+
react: ^16.8.0 || ^17 || ^18
|
|
3513
|
+
dependencies:
|
|
3514
|
+
react: 18.2.0
|
|
3515
|
+
dev: false
|
|
3516
|
+
|
|
3517
|
+
/react-is@16.13.1:
|
|
3518
|
+
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
|
|
3519
|
+
dev: false
|
|
3520
|
+
|
|
3521
|
+
/react-lifecycles-compat@3.0.4:
|
|
3522
|
+
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
|
|
3523
|
+
dev: false
|
|
3524
|
+
|
|
3525
|
+
/react-remove-scroll-bar@2.3.4(@types/react@18.2.6)(react@18.2.0):
|
|
3526
|
+
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
|
|
3527
|
+
engines: {node: '>=10'}
|
|
3528
|
+
peerDependencies:
|
|
3529
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3530
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3531
|
+
peerDependenciesMeta:
|
|
3532
|
+
'@types/react':
|
|
3533
|
+
optional: true
|
|
3534
|
+
dependencies:
|
|
3535
|
+
'@types/react': 18.2.6
|
|
3536
|
+
react: 18.2.0
|
|
3537
|
+
react-style-singleton: 2.2.1(@types/react@18.2.6)(react@18.2.0)
|
|
3538
|
+
tslib: 2.5.0
|
|
3539
|
+
dev: false
|
|
3540
|
+
|
|
3541
|
+
/react-remove-scroll@2.5.4(@types/react@18.2.6)(react@18.2.0):
|
|
3542
|
+
resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
|
|
3543
|
+
engines: {node: '>=10'}
|
|
3544
|
+
peerDependencies:
|
|
3545
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3546
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3547
|
+
peerDependenciesMeta:
|
|
3548
|
+
'@types/react':
|
|
3549
|
+
optional: true
|
|
3550
|
+
dependencies:
|
|
3551
|
+
'@types/react': 18.2.6
|
|
3552
|
+
react: 18.2.0
|
|
3553
|
+
react-remove-scroll-bar: 2.3.4(@types/react@18.2.6)(react@18.2.0)
|
|
3554
|
+
react-style-singleton: 2.2.1(@types/react@18.2.6)(react@18.2.0)
|
|
3555
|
+
tslib: 2.5.0
|
|
3556
|
+
use-callback-ref: 1.3.0(@types/react@18.2.6)(react@18.2.0)
|
|
3557
|
+
use-sidecar: 1.1.2(@types/react@18.2.6)(react@18.2.0)
|
|
3558
|
+
dev: false
|
|
3559
|
+
|
|
3560
|
+
/react-remove-scroll@2.5.5(@types/react@18.2.6)(react@18.2.0):
|
|
3561
|
+
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
|
|
3562
|
+
engines: {node: '>=10'}
|
|
3563
|
+
peerDependencies:
|
|
3564
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3565
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3566
|
+
peerDependenciesMeta:
|
|
3567
|
+
'@types/react':
|
|
3568
|
+
optional: true
|
|
3569
|
+
dependencies:
|
|
3570
|
+
'@types/react': 18.2.6
|
|
3571
|
+
react: 18.2.0
|
|
3572
|
+
react-remove-scroll-bar: 2.3.4(@types/react@18.2.6)(react@18.2.0)
|
|
3573
|
+
react-style-singleton: 2.2.1(@types/react@18.2.6)(react@18.2.0)
|
|
3574
|
+
tslib: 2.5.0
|
|
3575
|
+
use-callback-ref: 1.3.0(@types/react@18.2.6)(react@18.2.0)
|
|
3576
|
+
use-sidecar: 1.1.2(@types/react@18.2.6)(react@18.2.0)
|
|
3577
|
+
dev: false
|
|
3578
|
+
|
|
3579
|
+
/react-resize-detector@8.1.0(react-dom@18.2.0)(react@18.2.0):
|
|
3580
|
+
resolution: {integrity: sha512-S7szxlaIuiy5UqLhLL1KY3aoyGHbZzsTpYal9eYMwCyKqoqoVLCmIgAgNyIM1FhnP2KyBygASJxdhejrzjMb+w==}
|
|
3581
|
+
peerDependencies:
|
|
3582
|
+
react: ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
3583
|
+
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
3584
|
+
dependencies:
|
|
3585
|
+
lodash: 4.17.21
|
|
3586
|
+
react: 18.2.0
|
|
3587
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
3588
|
+
dev: false
|
|
3589
|
+
|
|
3590
|
+
/react-smooth@2.0.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
|
|
3591
|
+
resolution: {integrity: sha512-pgqSp1q8rAGtF1bXQE0m3CHGLNfZZh5oA5o1tsPLXRHnKtkujMIJ8Ws5nO1mTySZf1c4vgwlEk+pHi3Ln6eYLw==}
|
|
3592
|
+
peerDependencies:
|
|
3593
|
+
prop-types: ^15.6.0
|
|
3594
|
+
react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
3595
|
+
react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
3596
|
+
dependencies:
|
|
3597
|
+
fast-equals: 4.0.3
|
|
3598
|
+
prop-types: 15.8.1
|
|
3599
|
+
react: 18.2.0
|
|
3600
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
3601
|
+
react-transition-group: 2.9.0(react-dom@18.2.0)(react@18.2.0)
|
|
3602
|
+
dev: false
|
|
3603
|
+
|
|
3604
|
+
/react-style-singleton@2.2.1(@types/react@18.2.6)(react@18.2.0):
|
|
3605
|
+
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
|
|
3606
|
+
engines: {node: '>=10'}
|
|
3607
|
+
peerDependencies:
|
|
3608
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3609
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
3610
|
+
peerDependenciesMeta:
|
|
3611
|
+
'@types/react':
|
|
3612
|
+
optional: true
|
|
3613
|
+
dependencies:
|
|
3614
|
+
'@types/react': 18.2.6
|
|
3615
|
+
get-nonce: 1.0.1
|
|
3616
|
+
invariant: 2.2.4
|
|
3617
|
+
react: 18.2.0
|
|
3618
|
+
tslib: 2.5.0
|
|
3619
|
+
dev: false
|
|
3620
|
+
|
|
3621
|
+
/react-transition-group@2.9.0(react-dom@18.2.0)(react@18.2.0):
|
|
3622
|
+
resolution: {integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==}
|
|
3623
|
+
peerDependencies:
|
|
3624
|
+
react: '>=15.0.0'
|
|
3625
|
+
react-dom: '>=15.0.0'
|
|
3626
|
+
dependencies:
|
|
3627
|
+
dom-helpers: 3.4.0
|
|
3628
|
+
loose-envify: 1.4.0
|
|
3629
|
+
prop-types: 15.8.1
|
|
3630
|
+
react: 18.2.0
|
|
3631
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
3632
|
+
react-lifecycles-compat: 3.0.4
|
|
3633
|
+
dev: false
|
|
3634
|
+
|
|
3635
|
+
/react-wrap-balancer@0.5.0(react@18.2.0):
|
|
3636
|
+
resolution: {integrity: sha512-5vwe5QDczQ9zwAtv3iEVj8hdMbNwQtM/QlSNLJfDUzRE9noPtxevb+Kon916Mu2RUorCrAtashQ1F9BVBjdeZg==}
|
|
3637
|
+
peerDependencies:
|
|
3638
|
+
react: '>=16.8.0 || ^17.0.0 || ^18'
|
|
3639
|
+
dependencies:
|
|
3640
|
+
react: 18.2.0
|
|
3641
|
+
dev: false
|
|
3642
|
+
|
|
3643
|
+
/react@18.2.0:
|
|
3644
|
+
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
|
|
3645
|
+
engines: {node: '>=0.10.0'}
|
|
3646
|
+
dependencies:
|
|
3647
|
+
loose-envify: 1.4.0
|
|
3648
|
+
dev: false
|
|
3649
|
+
|
|
3650
|
+
/read-cache@1.0.0:
|
|
3651
|
+
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
|
3652
|
+
dependencies:
|
|
3653
|
+
pify: 2.3.0
|
|
3654
|
+
|
|
3655
|
+
/read-package-json-fast@3.0.2:
|
|
3656
|
+
resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==}
|
|
3657
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3658
|
+
dependencies:
|
|
3659
|
+
json-parse-even-better-errors: 3.0.0
|
|
3660
|
+
npm-normalize-package-bin: 3.0.0
|
|
3661
|
+
dev: true
|
|
3662
|
+
|
|
3663
|
+
/read-package-json@6.0.3:
|
|
3664
|
+
resolution: {integrity: sha512-4QbpReW4kxFgeBQ0vPAqh2y8sXEB3D4t3jsXbJKIhBiF80KT6XRo45reqwtftju5J6ru1ax06A2Gb/wM1qCOEQ==}
|
|
3665
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3666
|
+
dependencies:
|
|
3667
|
+
glob: 10.2.2
|
|
3668
|
+
json-parse-even-better-errors: 3.0.0
|
|
3669
|
+
normalize-package-data: 5.0.0
|
|
3670
|
+
npm-normalize-package-bin: 3.0.0
|
|
3671
|
+
dev: true
|
|
3672
|
+
|
|
3673
|
+
/readable-stream@3.6.2:
|
|
3674
|
+
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
|
|
3675
|
+
engines: {node: '>= 6'}
|
|
3676
|
+
dependencies:
|
|
3677
|
+
inherits: 2.0.4
|
|
3678
|
+
string_decoder: 1.3.0
|
|
3679
|
+
util-deprecate: 1.0.2
|
|
3680
|
+
dev: true
|
|
3681
|
+
|
|
3682
|
+
/readdirp@3.6.0:
|
|
3683
|
+
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
3684
|
+
engines: {node: '>=8.10.0'}
|
|
3685
|
+
dependencies:
|
|
3686
|
+
picomatch: 2.3.1
|
|
3687
|
+
|
|
3688
|
+
/recharts-scale@0.4.5:
|
|
3689
|
+
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
|
|
3690
|
+
dependencies:
|
|
3691
|
+
decimal.js-light: 2.5.1
|
|
3692
|
+
dev: false
|
|
3693
|
+
|
|
3694
|
+
/recharts@2.6.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
|
|
3695
|
+
resolution: {integrity: sha512-dVhNfgI21LlF+4AesO3mj+i+9YdAAjoGaDWIctUgH/G2iy14YVtb/DSUeic77xr19rbKCiq+pQGfeg2kJQDHig==}
|
|
3696
|
+
engines: {node: '>=12'}
|
|
3697
|
+
peerDependencies:
|
|
3698
|
+
prop-types: ^15.6.0
|
|
3699
|
+
react: ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
3700
|
+
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
3701
|
+
dependencies:
|
|
3702
|
+
classnames: 2.3.2
|
|
3703
|
+
eventemitter3: 4.0.7
|
|
3704
|
+
lodash: 4.17.21
|
|
3705
|
+
prop-types: 15.8.1
|
|
3706
|
+
react: 18.2.0
|
|
3707
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
3708
|
+
react-is: 16.13.1
|
|
3709
|
+
react-resize-detector: 8.1.0(react-dom@18.2.0)(react@18.2.0)
|
|
3710
|
+
react-smooth: 2.0.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
|
|
3711
|
+
recharts-scale: 0.4.5
|
|
3712
|
+
reduce-css-calc: 2.1.8
|
|
3713
|
+
victory-vendor: 36.6.8
|
|
3714
|
+
dev: false
|
|
3715
|
+
|
|
3716
|
+
/reduce-css-calc@2.1.8:
|
|
3717
|
+
resolution: {integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==}
|
|
3718
|
+
dependencies:
|
|
3719
|
+
css-unit-converter: 1.1.2
|
|
3720
|
+
postcss-value-parser: 3.3.1
|
|
3721
|
+
dev: false
|
|
3722
|
+
|
|
3723
|
+
/regenerator-runtime@0.13.11:
|
|
3724
|
+
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
|
|
3725
|
+
dev: false
|
|
3726
|
+
|
|
3727
|
+
/require-directory@2.1.1:
|
|
3728
|
+
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
3729
|
+
engines: {node: '>=0.10.0'}
|
|
3730
|
+
dev: true
|
|
3731
|
+
|
|
3732
|
+
/resolve@1.22.2:
|
|
3733
|
+
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
|
|
3734
|
+
hasBin: true
|
|
3735
|
+
dependencies:
|
|
3736
|
+
is-core-module: 2.12.0
|
|
3737
|
+
path-parse: 1.0.7
|
|
3738
|
+
supports-preserve-symlinks-flag: 1.0.0
|
|
3739
|
+
|
|
3740
|
+
/retry@0.12.0:
|
|
3741
|
+
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
|
|
3742
|
+
engines: {node: '>= 4'}
|
|
3743
|
+
dev: true
|
|
3744
|
+
|
|
3745
|
+
/reusify@1.0.4:
|
|
3746
|
+
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
|
3747
|
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
3748
|
+
|
|
3749
|
+
/rimraf@3.0.2:
|
|
3750
|
+
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
|
3751
|
+
hasBin: true
|
|
3752
|
+
dependencies:
|
|
3753
|
+
glob: 7.2.3
|
|
3754
|
+
dev: true
|
|
3755
|
+
|
|
3756
|
+
/run-parallel@1.2.0:
|
|
3757
|
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
3758
|
+
dependencies:
|
|
3759
|
+
queue-microtask: 1.2.3
|
|
3760
|
+
|
|
3761
|
+
/safe-buffer@5.2.1:
|
|
3762
|
+
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
|
|
3763
|
+
dev: true
|
|
3764
|
+
|
|
3765
|
+
/safer-buffer@2.1.2:
|
|
3766
|
+
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
3767
|
+
dev: true
|
|
3768
|
+
optional: true
|
|
3769
|
+
|
|
3770
|
+
/scheduler@0.23.0:
|
|
3771
|
+
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
|
|
3772
|
+
dependencies:
|
|
3773
|
+
loose-envify: 1.4.0
|
|
3774
|
+
dev: false
|
|
3775
|
+
|
|
3776
|
+
/semver@6.3.0:
|
|
3777
|
+
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
|
|
3778
|
+
hasBin: true
|
|
3779
|
+
|
|
3780
|
+
/semver@7.5.0:
|
|
3781
|
+
resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==}
|
|
3782
|
+
engines: {node: '>=10'}
|
|
3783
|
+
hasBin: true
|
|
3784
|
+
dependencies:
|
|
3785
|
+
lru-cache: 6.0.0
|
|
3786
|
+
dev: true
|
|
3787
|
+
|
|
3788
|
+
/set-blocking@2.0.0:
|
|
3789
|
+
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
|
|
3790
|
+
dev: true
|
|
3791
|
+
|
|
3792
|
+
/shebang-command@2.0.0:
|
|
3793
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
3794
|
+
engines: {node: '>=8'}
|
|
3795
|
+
dependencies:
|
|
3796
|
+
shebang-regex: 3.0.0
|
|
3797
|
+
dev: true
|
|
3798
|
+
|
|
3799
|
+
/shebang-regex@3.0.0:
|
|
3800
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
3801
|
+
engines: {node: '>=8'}
|
|
3802
|
+
dev: true
|
|
3803
|
+
|
|
3804
|
+
/signal-exit@3.0.7:
|
|
3805
|
+
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
|
|
3806
|
+
dev: true
|
|
3807
|
+
|
|
3808
|
+
/signal-exit@4.0.1:
|
|
3809
|
+
resolution: {integrity: sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw==}
|
|
3810
|
+
engines: {node: '>=14'}
|
|
3811
|
+
dev: true
|
|
3812
|
+
|
|
3813
|
+
/sigstore@1.4.0:
|
|
3814
|
+
resolution: {integrity: sha512-N7TRpSbFjY/TrFDg6yGAQSYBrQ5s6qmPiq4pD6fkv1LoyfMsLG0NwZWG2s5q+uttLHgyVyTa0Rogx2P78rN8kQ==}
|
|
3815
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3816
|
+
hasBin: true
|
|
3817
|
+
dependencies:
|
|
3818
|
+
'@sigstore/protobuf-specs': 0.1.0
|
|
3819
|
+
make-fetch-happen: 11.1.1
|
|
3820
|
+
tuf-js: 1.1.5
|
|
3821
|
+
transitivePeerDependencies:
|
|
3822
|
+
- supports-color
|
|
3823
|
+
dev: true
|
|
3824
|
+
|
|
3825
|
+
/sisteransi@1.0.5:
|
|
3826
|
+
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
|
3827
|
+
dev: true
|
|
3828
|
+
|
|
3829
|
+
/smart-buffer@4.2.0:
|
|
3830
|
+
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
|
|
3831
|
+
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
|
|
3832
|
+
dev: true
|
|
3833
|
+
|
|
3834
|
+
/socks-proxy-agent@7.0.0:
|
|
3835
|
+
resolution: {integrity: sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==}
|
|
3836
|
+
engines: {node: '>= 10'}
|
|
3837
|
+
dependencies:
|
|
3838
|
+
agent-base: 6.0.2
|
|
3839
|
+
debug: 4.3.4
|
|
3840
|
+
socks: 2.7.1
|
|
3841
|
+
transitivePeerDependencies:
|
|
3842
|
+
- supports-color
|
|
3843
|
+
dev: true
|
|
3844
|
+
|
|
3845
|
+
/socks@2.7.1:
|
|
3846
|
+
resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
|
|
3847
|
+
engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
|
|
3848
|
+
dependencies:
|
|
3849
|
+
ip: 2.0.0
|
|
3850
|
+
smart-buffer: 4.2.0
|
|
3851
|
+
dev: true
|
|
3852
|
+
|
|
3853
|
+
/source-map-js@1.0.2:
|
|
3854
|
+
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
|
|
3855
|
+
engines: {node: '>=0.10.0'}
|
|
3856
|
+
|
|
3857
|
+
/spdx-correct@3.2.0:
|
|
3858
|
+
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
|
|
3859
|
+
dependencies:
|
|
3860
|
+
spdx-expression-parse: 3.0.1
|
|
3861
|
+
spdx-license-ids: 3.0.13
|
|
3862
|
+
dev: true
|
|
3863
|
+
|
|
3864
|
+
/spdx-exceptions@2.3.0:
|
|
3865
|
+
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
|
|
3866
|
+
dev: true
|
|
3867
|
+
|
|
3868
|
+
/spdx-expression-parse@3.0.1:
|
|
3869
|
+
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
|
|
3870
|
+
dependencies:
|
|
3871
|
+
spdx-exceptions: 2.3.0
|
|
3872
|
+
spdx-license-ids: 3.0.13
|
|
3873
|
+
dev: true
|
|
3874
|
+
|
|
3875
|
+
/spdx-license-ids@3.0.13:
|
|
3876
|
+
resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==}
|
|
3877
|
+
dev: true
|
|
3878
|
+
|
|
3879
|
+
/ssri@10.0.4:
|
|
3880
|
+
resolution: {integrity: sha512-12+IR2CB2C28MMAw0Ncqwj5QbTcs0nGIhgJzYWzDkb21vWmfNI83KS4f3Ci6GI98WreIfG7o9UXp3C0qbpA8nQ==}
|
|
3881
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
3882
|
+
dependencies:
|
|
3883
|
+
minipass: 5.0.0
|
|
3884
|
+
dev: true
|
|
3885
|
+
|
|
3886
|
+
/ssri@9.0.1:
|
|
3887
|
+
resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
|
|
3888
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
3889
|
+
dependencies:
|
|
3890
|
+
minipass: 3.3.6
|
|
3891
|
+
dev: true
|
|
3892
|
+
|
|
3893
|
+
/streamsearch@1.1.0:
|
|
3894
|
+
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
|
|
3895
|
+
engines: {node: '>=10.0.0'}
|
|
3896
|
+
dev: false
|
|
3897
|
+
|
|
3898
|
+
/string-width@4.2.3:
|
|
3899
|
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
3900
|
+
engines: {node: '>=8'}
|
|
3901
|
+
dependencies:
|
|
3902
|
+
emoji-regex: 8.0.0
|
|
3903
|
+
is-fullwidth-code-point: 3.0.0
|
|
3904
|
+
strip-ansi: 6.0.1
|
|
3905
|
+
dev: true
|
|
3906
|
+
|
|
3907
|
+
/string-width@5.1.2:
|
|
3908
|
+
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
|
3909
|
+
engines: {node: '>=12'}
|
|
3910
|
+
dependencies:
|
|
3911
|
+
eastasianwidth: 0.2.0
|
|
3912
|
+
emoji-regex: 9.2.2
|
|
3913
|
+
strip-ansi: 7.0.1
|
|
3914
|
+
dev: true
|
|
3915
|
+
|
|
3916
|
+
/string_decoder@1.3.0:
|
|
3917
|
+
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
|
|
3918
|
+
dependencies:
|
|
3919
|
+
safe-buffer: 5.2.1
|
|
3920
|
+
dev: true
|
|
3921
|
+
|
|
3922
|
+
/strip-ansi@6.0.1:
|
|
3923
|
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
3924
|
+
engines: {node: '>=8'}
|
|
3925
|
+
dependencies:
|
|
3926
|
+
ansi-regex: 5.0.1
|
|
3927
|
+
dev: true
|
|
3928
|
+
|
|
3929
|
+
/strip-ansi@7.0.1:
|
|
3930
|
+
resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
|
|
3931
|
+
engines: {node: '>=12'}
|
|
3932
|
+
dependencies:
|
|
3933
|
+
ansi-regex: 6.0.1
|
|
3934
|
+
dev: true
|
|
3935
|
+
|
|
3936
|
+
/styled-jsx@5.1.1(@babel/core@7.21.4)(react@18.2.0):
|
|
3937
|
+
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
|
|
3938
|
+
engines: {node: '>= 12.0.0'}
|
|
3939
|
+
peerDependencies:
|
|
3940
|
+
'@babel/core': '*'
|
|
3941
|
+
babel-plugin-macros: '*'
|
|
3942
|
+
react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
|
|
3943
|
+
peerDependenciesMeta:
|
|
3944
|
+
'@babel/core':
|
|
3945
|
+
optional: true
|
|
3946
|
+
babel-plugin-macros:
|
|
3947
|
+
optional: true
|
|
3948
|
+
dependencies:
|
|
3949
|
+
'@babel/core': 7.21.4
|
|
3950
|
+
client-only: 0.0.1
|
|
3951
|
+
react: 18.2.0
|
|
3952
|
+
dev: false
|
|
3953
|
+
|
|
3954
|
+
/sucrase@3.32.0:
|
|
3955
|
+
resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==}
|
|
3956
|
+
engines: {node: '>=8'}
|
|
3957
|
+
hasBin: true
|
|
3958
|
+
dependencies:
|
|
3959
|
+
'@jridgewell/gen-mapping': 0.3.3
|
|
3960
|
+
commander: 4.1.1
|
|
3961
|
+
glob: 7.1.6
|
|
3962
|
+
lines-and-columns: 1.2.4
|
|
3963
|
+
mz: 2.7.0
|
|
3964
|
+
pirates: 4.0.5
|
|
3965
|
+
ts-interface-checker: 0.1.13
|
|
3966
|
+
|
|
3967
|
+
/supports-color@5.5.0:
|
|
3968
|
+
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
|
3969
|
+
engines: {node: '>=4'}
|
|
3970
|
+
dependencies:
|
|
3971
|
+
has-flag: 3.0.0
|
|
3972
|
+
|
|
3973
|
+
/supports-preserve-symlinks-flag@1.0.0:
|
|
3974
|
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
3975
|
+
engines: {node: '>= 0.4'}
|
|
3976
|
+
|
|
3977
|
+
/tailwind-merge@1.12.0:
|
|
3978
|
+
resolution: {integrity: sha512-Y17eDp7FtN1+JJ4OY0Bqv9OA41O+MS8c1Iyr3T6JFLnOgLg3EvcyMKZAnQ8AGyvB5Nxm3t9Xb5Mhe139m8QT/g==}
|
|
3979
|
+
dev: false
|
|
3980
|
+
|
|
3981
|
+
/tailwind-scrollbar@3.0.4(tailwindcss@3.3.2):
|
|
3982
|
+
resolution: {integrity: sha512-X/QBsn/C5u9x6/YvTc1Zo7b09Gqs5BfDe0UK/8LDQUv8IEBKF+p2ISTRwvAr50MH0hn/wTyCEOann7uXoa1/2Q==}
|
|
3983
|
+
engines: {node: '>=12.13.0'}
|
|
3984
|
+
peerDependencies:
|
|
3985
|
+
tailwindcss: 3.x
|
|
3986
|
+
dependencies:
|
|
3987
|
+
tailwindcss: 3.3.2
|
|
3988
|
+
dev: true
|
|
3989
|
+
|
|
3990
|
+
/tailwindcss-animate@1.0.5(tailwindcss@3.3.2):
|
|
3991
|
+
resolution: {integrity: sha512-UU3qrOJ4lFQABY+MVADmBm+0KW3xZyhMdRvejwtXqYOL7YjHYxmuREFAZdmVG5LPe5E9CAst846SLC4j5I3dcw==}
|
|
3992
|
+
peerDependencies:
|
|
3993
|
+
tailwindcss: '>=3.0.0 || insiders'
|
|
3994
|
+
dependencies:
|
|
3995
|
+
tailwindcss: 3.3.2
|
|
3996
|
+
dev: false
|
|
3997
|
+
|
|
3998
|
+
/tailwindcss@3.3.2:
|
|
3999
|
+
resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
|
|
4000
|
+
engines: {node: '>=14.0.0'}
|
|
4001
|
+
hasBin: true
|
|
4002
|
+
dependencies:
|
|
4003
|
+
'@alloc/quick-lru': 5.2.0
|
|
4004
|
+
arg: 5.0.2
|
|
4005
|
+
chokidar: 3.5.3
|
|
4006
|
+
didyoumean: 1.2.2
|
|
4007
|
+
dlv: 1.1.3
|
|
4008
|
+
fast-glob: 3.2.12
|
|
4009
|
+
glob-parent: 6.0.2
|
|
4010
|
+
is-glob: 4.0.3
|
|
4011
|
+
jiti: 1.18.2
|
|
4012
|
+
lilconfig: 2.1.0
|
|
4013
|
+
micromatch: 4.0.5
|
|
4014
|
+
normalize-path: 3.0.0
|
|
4015
|
+
object-hash: 3.0.0
|
|
4016
|
+
picocolors: 1.0.0
|
|
4017
|
+
postcss: 8.4.23
|
|
4018
|
+
postcss-import: 15.1.0(postcss@8.4.23)
|
|
4019
|
+
postcss-js: 4.0.1(postcss@8.4.23)
|
|
4020
|
+
postcss-load-config: 4.0.1(postcss@8.4.23)
|
|
4021
|
+
postcss-nested: 6.0.1(postcss@8.4.23)
|
|
4022
|
+
postcss-selector-parser: 6.0.11
|
|
4023
|
+
postcss-value-parser: 4.2.0
|
|
4024
|
+
resolve: 1.22.2
|
|
4025
|
+
sucrase: 3.32.0
|
|
4026
|
+
transitivePeerDependencies:
|
|
4027
|
+
- ts-node
|
|
4028
|
+
|
|
4029
|
+
/tar@6.1.13:
|
|
4030
|
+
resolution: {integrity: sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==}
|
|
4031
|
+
engines: {node: '>=10'}
|
|
4032
|
+
dependencies:
|
|
4033
|
+
chownr: 2.0.0
|
|
4034
|
+
fs-minipass: 2.1.0
|
|
4035
|
+
minipass: 4.2.8
|
|
4036
|
+
minizlib: 2.1.2
|
|
4037
|
+
mkdirp: 1.0.4
|
|
4038
|
+
yallist: 4.0.0
|
|
4039
|
+
dev: true
|
|
4040
|
+
|
|
4041
|
+
/taze@0.10.1:
|
|
4042
|
+
resolution: {integrity: sha512-1dqLA+3kUufmJZEfAeRGHYwiKR8BwG7VMnCPtfY2g9NUlPIlXVBDm/rtdK2pwHauAQDDXkAKwmno30CHHX4F4Q==}
|
|
4043
|
+
hasBin: true
|
|
4044
|
+
dependencies:
|
|
4045
|
+
'@antfu/ni': 0.21.3
|
|
4046
|
+
'@npmcli/config': 6.1.6
|
|
4047
|
+
detect-indent: 7.0.1
|
|
4048
|
+
pacote: 15.1.3
|
|
4049
|
+
prompts: 2.4.2
|
|
4050
|
+
semver: 7.5.0
|
|
4051
|
+
unconfig: 0.3.7
|
|
4052
|
+
yargs: 17.7.2
|
|
4053
|
+
transitivePeerDependencies:
|
|
4054
|
+
- bluebird
|
|
4055
|
+
- supports-color
|
|
4056
|
+
dev: true
|
|
4057
|
+
|
|
4058
|
+
/thenify-all@1.6.0:
|
|
4059
|
+
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
|
|
4060
|
+
engines: {node: '>=0.8'}
|
|
4061
|
+
dependencies:
|
|
4062
|
+
thenify: 3.3.1
|
|
4063
|
+
|
|
4064
|
+
/thenify@3.3.1:
|
|
4065
|
+
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
|
4066
|
+
dependencies:
|
|
4067
|
+
any-promise: 1.3.0
|
|
4068
|
+
|
|
4069
|
+
/to-fast-properties@2.0.0:
|
|
4070
|
+
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
|
4071
|
+
engines: {node: '>=4'}
|
|
4072
|
+
|
|
4073
|
+
/to-regex-range@5.0.1:
|
|
4074
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
4075
|
+
engines: {node: '>=8.0'}
|
|
4076
|
+
dependencies:
|
|
4077
|
+
is-number: 7.0.0
|
|
4078
|
+
|
|
4079
|
+
/ts-interface-checker@0.1.13:
|
|
4080
|
+
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
|
4081
|
+
|
|
4082
|
+
/tslib@2.5.0:
|
|
4083
|
+
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
|
|
4084
|
+
dev: false
|
|
4085
|
+
|
|
4086
|
+
/tuf-js@1.1.5:
|
|
4087
|
+
resolution: {integrity: sha512-inqodgxdsmuxrtQVbu6tPNgRKWD1Boy3VB6GO7KczJZpAHiTukwhSzXUSzvDcw5pE2Jo8ua+e1ykpHv7VdPVlQ==}
|
|
4088
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
4089
|
+
dependencies:
|
|
4090
|
+
'@tufjs/models': 1.0.4
|
|
4091
|
+
make-fetch-happen: 11.1.1
|
|
4092
|
+
transitivePeerDependencies:
|
|
4093
|
+
- supports-color
|
|
4094
|
+
dev: true
|
|
4095
|
+
|
|
4096
|
+
/typescript@5.0.4:
|
|
4097
|
+
resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==}
|
|
4098
|
+
engines: {node: '>=12.20'}
|
|
4099
|
+
hasBin: true
|
|
4100
|
+
|
|
4101
|
+
/unconfig@0.3.7:
|
|
4102
|
+
resolution: {integrity: sha512-1589b7oGa8ILBYpta7TndM5mLHLzHUqBfhszeZxuUBrjO/RoQ52VGVWsS3w0C0GLNxO9RPmqkf6BmIvBApaRdA==}
|
|
4103
|
+
dependencies:
|
|
4104
|
+
'@antfu/utils': 0.5.2
|
|
4105
|
+
defu: 6.1.2
|
|
4106
|
+
jiti: 1.18.2
|
|
4107
|
+
dev: true
|
|
4108
|
+
|
|
4109
|
+
/unique-filename@2.0.1:
|
|
4110
|
+
resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==}
|
|
4111
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
4112
|
+
dependencies:
|
|
4113
|
+
unique-slug: 3.0.0
|
|
4114
|
+
dev: true
|
|
4115
|
+
|
|
4116
|
+
/unique-filename@3.0.0:
|
|
4117
|
+
resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==}
|
|
4118
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
4119
|
+
dependencies:
|
|
4120
|
+
unique-slug: 4.0.0
|
|
4121
|
+
dev: true
|
|
4122
|
+
|
|
4123
|
+
/unique-slug@3.0.0:
|
|
4124
|
+
resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==}
|
|
4125
|
+
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
|
|
4126
|
+
dependencies:
|
|
4127
|
+
imurmurhash: 0.1.4
|
|
4128
|
+
dev: true
|
|
4129
|
+
|
|
4130
|
+
/unique-slug@4.0.0:
|
|
4131
|
+
resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==}
|
|
4132
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
4133
|
+
dependencies:
|
|
4134
|
+
imurmurhash: 0.1.4
|
|
4135
|
+
dev: true
|
|
4136
|
+
|
|
4137
|
+
/update-browserslist-db@1.0.11(browserslist@4.21.5):
|
|
4138
|
+
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
|
|
4139
|
+
hasBin: true
|
|
4140
|
+
peerDependencies:
|
|
4141
|
+
browserslist: '>= 4.21.0'
|
|
4142
|
+
dependencies:
|
|
4143
|
+
browserslist: 4.21.5
|
|
4144
|
+
escalade: 3.1.1
|
|
4145
|
+
picocolors: 1.0.0
|
|
4146
|
+
|
|
4147
|
+
/use-callback-ref@1.3.0(@types/react@18.2.6)(react@18.2.0):
|
|
4148
|
+
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
|
|
4149
|
+
engines: {node: '>=10'}
|
|
4150
|
+
peerDependencies:
|
|
4151
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
4152
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
4153
|
+
peerDependenciesMeta:
|
|
4154
|
+
'@types/react':
|
|
4155
|
+
optional: true
|
|
4156
|
+
dependencies:
|
|
4157
|
+
'@types/react': 18.2.6
|
|
4158
|
+
react: 18.2.0
|
|
4159
|
+
tslib: 2.5.0
|
|
4160
|
+
dev: false
|
|
4161
|
+
|
|
4162
|
+
/use-isomorphic-layout-effect@1.1.2(@types/react@18.2.6)(react@18.2.0):
|
|
4163
|
+
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
|
|
4164
|
+
peerDependencies:
|
|
4165
|
+
'@types/react': '*'
|
|
4166
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
4167
|
+
peerDependenciesMeta:
|
|
4168
|
+
'@types/react':
|
|
4169
|
+
optional: true
|
|
4170
|
+
dependencies:
|
|
4171
|
+
'@types/react': 18.2.6
|
|
4172
|
+
react: 18.2.0
|
|
4173
|
+
dev: false
|
|
4174
|
+
|
|
4175
|
+
/use-sidecar@1.1.2(@types/react@18.2.6)(react@18.2.0):
|
|
4176
|
+
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
|
|
4177
|
+
engines: {node: '>=10'}
|
|
4178
|
+
peerDependencies:
|
|
4179
|
+
'@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
|
|
4180
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
4181
|
+
peerDependenciesMeta:
|
|
4182
|
+
'@types/react':
|
|
4183
|
+
optional: true
|
|
4184
|
+
dependencies:
|
|
4185
|
+
'@types/react': 18.2.6
|
|
4186
|
+
detect-node-es: 1.1.0
|
|
4187
|
+
react: 18.2.0
|
|
4188
|
+
tslib: 2.5.0
|
|
4189
|
+
dev: false
|
|
4190
|
+
|
|
4191
|
+
/util-deprecate@1.0.2:
|
|
4192
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
4193
|
+
|
|
4194
|
+
/validate-npm-package-license@3.0.4:
|
|
4195
|
+
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
|
|
4196
|
+
dependencies:
|
|
4197
|
+
spdx-correct: 3.2.0
|
|
4198
|
+
spdx-expression-parse: 3.0.1
|
|
4199
|
+
dev: true
|
|
4200
|
+
|
|
4201
|
+
/validate-npm-package-name@5.0.0:
|
|
4202
|
+
resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==}
|
|
4203
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
4204
|
+
dependencies:
|
|
4205
|
+
builtins: 5.0.1
|
|
4206
|
+
dev: true
|
|
4207
|
+
|
|
4208
|
+
/victory-vendor@36.6.8:
|
|
4209
|
+
resolution: {integrity: sha512-H3kyQ+2zgjMPvbPqAl7Vwm2FD5dU7/4bCTQakFQnpIsfDljeOMDojRsrmJfwh4oAlNnWhpAf+mbAoLh8u7dwyQ==}
|
|
4210
|
+
dependencies:
|
|
4211
|
+
'@types/d3-array': 3.0.4
|
|
4212
|
+
'@types/d3-ease': 3.0.0
|
|
4213
|
+
'@types/d3-interpolate': 3.0.1
|
|
4214
|
+
'@types/d3-scale': 4.0.3
|
|
4215
|
+
'@types/d3-shape': 3.1.1
|
|
4216
|
+
'@types/d3-time': 3.0.0
|
|
4217
|
+
'@types/d3-timer': 3.0.0
|
|
4218
|
+
d3-array: 3.2.3
|
|
4219
|
+
d3-ease: 3.0.1
|
|
4220
|
+
d3-interpolate: 3.0.1
|
|
4221
|
+
d3-scale: 4.0.2
|
|
4222
|
+
d3-shape: 3.2.0
|
|
4223
|
+
d3-time: 3.1.0
|
|
4224
|
+
d3-timer: 3.0.1
|
|
4225
|
+
dev: false
|
|
4226
|
+
|
|
4227
|
+
/walk-up-path@3.0.1:
|
|
4228
|
+
resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==}
|
|
4229
|
+
dev: true
|
|
4230
|
+
|
|
4231
|
+
/which@2.0.2:
|
|
4232
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
4233
|
+
engines: {node: '>= 8'}
|
|
4234
|
+
hasBin: true
|
|
4235
|
+
dependencies:
|
|
4236
|
+
isexe: 2.0.0
|
|
4237
|
+
dev: true
|
|
4238
|
+
|
|
4239
|
+
/which@3.0.1:
|
|
4240
|
+
resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==}
|
|
4241
|
+
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
|
|
4242
|
+
hasBin: true
|
|
4243
|
+
dependencies:
|
|
4244
|
+
isexe: 2.0.0
|
|
4245
|
+
dev: true
|
|
4246
|
+
|
|
4247
|
+
/wide-align@1.1.5:
|
|
4248
|
+
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
|
|
4249
|
+
dependencies:
|
|
4250
|
+
string-width: 4.2.3
|
|
4251
|
+
dev: true
|
|
4252
|
+
|
|
4253
|
+
/wrap-ansi@7.0.0:
|
|
4254
|
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
4255
|
+
engines: {node: '>=10'}
|
|
4256
|
+
dependencies:
|
|
4257
|
+
ansi-styles: 4.3.0
|
|
4258
|
+
string-width: 4.2.3
|
|
4259
|
+
strip-ansi: 6.0.1
|
|
4260
|
+
dev: true
|
|
4261
|
+
|
|
4262
|
+
/wrap-ansi@8.1.0:
|
|
4263
|
+
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
|
4264
|
+
engines: {node: '>=12'}
|
|
4265
|
+
dependencies:
|
|
4266
|
+
ansi-styles: 6.2.1
|
|
4267
|
+
string-width: 5.1.2
|
|
4268
|
+
strip-ansi: 7.0.1
|
|
4269
|
+
dev: true
|
|
4270
|
+
|
|
4271
|
+
/wrappy@1.0.2:
|
|
4272
|
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
|
4273
|
+
|
|
4274
|
+
/y18n@5.0.8:
|
|
4275
|
+
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
|
|
4276
|
+
engines: {node: '>=10'}
|
|
4277
|
+
dev: true
|
|
4278
|
+
|
|
4279
|
+
/yallist@3.1.1:
|
|
4280
|
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
4281
|
+
|
|
4282
|
+
/yallist@4.0.0:
|
|
4283
|
+
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
|
|
4284
|
+
dev: true
|
|
4285
|
+
|
|
4286
|
+
/yaml@2.2.2:
|
|
4287
|
+
resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==}
|
|
4288
|
+
engines: {node: '>= 14'}
|
|
4289
|
+
|
|
4290
|
+
/yargs-parser@21.1.1:
|
|
4291
|
+
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
|
|
4292
|
+
engines: {node: '>=12'}
|
|
4293
|
+
dev: true
|
|
4294
|
+
|
|
4295
|
+
/yargs@17.7.2:
|
|
4296
|
+
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
4297
|
+
engines: {node: '>=12'}
|
|
4298
|
+
dependencies:
|
|
4299
|
+
cliui: 8.0.1
|
|
4300
|
+
escalade: 3.1.1
|
|
4301
|
+
get-caller-file: 2.0.5
|
|
4302
|
+
require-directory: 2.1.1
|
|
4303
|
+
string-width: 4.2.3
|
|
4304
|
+
y18n: 5.0.8
|
|
4305
|
+
yargs-parser: 21.1.1
|
|
4306
|
+
dev: true
|
|
4307
|
+
|
|
4308
|
+
/zod@3.21.4:
|
|
4309
|
+
resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
|
|
4310
|
+
dev: false
|
|
4311
|
+
|
|
4312
|
+
github.com/tauri-apps/tauri-plugin-window/884fa34d3a43791129a715a877f37d958bcfd511:
|
|
4313
|
+
resolution: {tarball: https://codeload.github.com/tauri-apps/tauri-plugin-window/tar.gz/884fa34d3a43791129a715a877f37d958bcfd511}
|
|
4314
|
+
name: '@tauri-apps/plugin-window'
|
|
4315
|
+
version: 1.0.0
|
|
4316
|
+
dependencies:
|
|
4317
|
+
'@tauri-apps/api': 2.0.0-alpha.4
|
|
4318
|
+
dev: false
|