@proofkit/cli 1.0.0-beta.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/CHANGELOG.md +120 -0
- package/LICENSE.md +21 -0
- package/README.md +19 -0
- package/dist/acorn-AKFTBDM6.js +15 -0
- package/dist/angular-BOQ6FHSU.js +2 -0
- package/dist/babel-ZTOORN7K.js +15 -0
- package/dist/chunk-4LISTI44.js +1 -0
- package/dist/estree-KOJPX4S6.js +36 -0
- package/dist/flow-RCI44GYZ.js +19 -0
- package/dist/glimmer-GV5EF5E4.js +30 -0
- package/dist/graphql-YXQNPQWM.js +29 -0
- package/dist/html-ZAJTRROK.js +22 -0
- package/dist/index.js +300 -0
- package/dist/markdown-Q75DTQI7.js +63 -0
- package/dist/meriyah-32K7GBV5.js +4 -0
- package/dist/postcss-WWYO4PGL.js +54 -0
- package/dist/typescript-M6N7JDNQ.js +20 -0
- package/dist/yaml-LY7PNAYV.js +161 -0
- package/index.d.ts +19 -0
- package/package.json +122 -0
- package/template/extras/_cursor/conditional-rules/nextjs-framework.mdc +51 -0
- package/template/extras/_cursor/conditional-rules/npm.mdc +60 -0
- package/template/extras/_cursor/conditional-rules/pnpm.mdc +65 -0
- package/template/extras/_cursor/conditional-rules/yarn.mdc +60 -0
- package/template/extras/_cursor/rules/cursor-rules.mdc +88 -0
- package/template/extras/_cursor/rules/filemaker-api.mdc +176 -0
- package/template/extras/_cursor/rules/troubleshooting-patterns.mdc +240 -0
- package/template/extras/_cursor/rules/ui-components.mdc +57 -0
- package/template/extras/config/_eslint.js +27 -0
- package/template/extras/config/_prettier.config.js +6 -0
- package/template/extras/config/drizzle-config-mysql.ts +12 -0
- package/template/extras/config/drizzle-config-postgres.ts +12 -0
- package/template/extras/config/drizzle-config-sqlite.ts +12 -0
- package/template/extras/config/fmschema.config.mjs +9 -0
- package/template/extras/config/get-query-client.ts +6 -0
- package/template/extras/config/postcss.config.cjs +7 -0
- package/template/extras/config/query-provider-vite.tsx +19 -0
- package/template/extras/config/query-provider.tsx +21 -0
- package/template/extras/emailProviders/none/email.tsx +24 -0
- package/template/extras/emailProviders/plunk/email.tsx +26 -0
- package/template/extras/emailProviders/plunk/service.ts +4 -0
- package/template/extras/emailProviders/resend/email.tsx +23 -0
- package/template/extras/emailProviders/resend/service.ts +4 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/actions.ts +93 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/page.tsx +27 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/profile-form.tsx +56 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/reset-password-form.tsx +110 -0
- package/template/extras/fmaddon-auth/app/(main)/auth/profile/schema.ts +19 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/actions.ts +37 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/forgot-form.tsx +41 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/page.tsx +21 -0
- package/template/extras/fmaddon-auth/app/auth/forgot-password/schema.ts +5 -0
- package/template/extras/fmaddon-auth/app/auth/login/actions.ts +34 -0
- package/template/extras/fmaddon-auth/app/auth/login/login-form.tsx +64 -0
- package/template/extras/fmaddon-auth/app/auth/login/page.tsx +26 -0
- package/template/extras/fmaddon-auth/app/auth/login/schema.ts +6 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/actions.ts +50 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/page.tsx +32 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/reset-password-form.tsx +59 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/schema.ts +14 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/actions.ts +45 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/page.tsx +32 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/schema.ts +5 -0
- package/template/extras/fmaddon-auth/app/auth/reset-password/verify-email/verify-email-form.tsx +48 -0
- package/template/extras/fmaddon-auth/app/auth/signup/actions.ts +49 -0
- package/template/extras/fmaddon-auth/app/auth/signup/page.tsx +26 -0
- package/template/extras/fmaddon-auth/app/auth/signup/schema.ts +12 -0
- package/template/extras/fmaddon-auth/app/auth/signup/signup-form.tsx +67 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/actions.ts +110 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/email-verification-form.tsx +45 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/page.tsx +38 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/resend-button.tsx +35 -0
- package/template/extras/fmaddon-auth/app/auth/verify-email/schema.ts +5 -0
- package/template/extras/fmaddon-auth/components/auth/actions.ts +16 -0
- package/template/extras/fmaddon-auth/components/auth/protect.tsx +17 -0
- package/template/extras/fmaddon-auth/components/auth/redirect.tsx +26 -0
- package/template/extras/fmaddon-auth/components/auth/use-user.ts +59 -0
- package/template/extras/fmaddon-auth/components/auth/user-menu.tsx +51 -0
- package/template/extras/fmaddon-auth/emails/auth-code.tsx +156 -0
- package/template/extras/fmaddon-auth/middleware.ts +45 -0
- package/template/extras/fmaddon-auth/server/auth/utils/email-verification.ts +136 -0
- package/template/extras/fmaddon-auth/server/auth/utils/encryption.ts +51 -0
- package/template/extras/fmaddon-auth/server/auth/utils/index.ts +16 -0
- package/template/extras/fmaddon-auth/server/auth/utils/password-reset.ts +152 -0
- package/template/extras/fmaddon-auth/server/auth/utils/password.ts +67 -0
- package/template/extras/fmaddon-auth/server/auth/utils/redirect.ts +8 -0
- package/template/extras/fmaddon-auth/server/auth/utils/session.ts +192 -0
- package/template/extras/fmaddon-auth/server/auth/utils/user.ts +147 -0
- package/template/extras/prisma/schema/base-planetscale.prisma +24 -0
- package/template/extras/prisma/schema/base.prisma +20 -0
- package/template/extras/prisma/schema/with-auth-planetscale.prisma +77 -0
- package/template/extras/prisma/schema/with-auth.prisma +74 -0
- package/template/extras/src/app/_components/post-tw.tsx +50 -0
- package/template/extras/src/app/_components/post.tsx +54 -0
- package/template/extras/src/app/api/auth/[...nextauth]/route.ts +4 -0
- package/template/extras/src/app/api/trpc/[trpc]/route.ts +34 -0
- package/template/extras/src/app/clerk-auth/layout.tsx +10 -0
- package/template/extras/src/app/clerk-auth/signin/[[...sign-in]]/page.tsx +5 -0
- package/template/extras/src/app/clerk-auth/signup/[[...sign-up]]/page.tsx +5 -0
- package/template/extras/src/app/layout/base.tsx +34 -0
- package/template/extras/src/app/layout/main-shell.tsx +37 -0
- package/template/extras/src/app/layout/with-trpc-tw.tsx +24 -0
- package/template/extras/src/app/layout/with-trpc.tsx +24 -0
- package/template/extras/src/app/layout/with-tw.tsx +20 -0
- package/template/extras/src/app/next-auth/layout.tsx +22 -0
- package/template/extras/src/app/next-auth/signin/page.tsx +82 -0
- package/template/extras/src/app/next-auth/signup/action.ts +24 -0
- package/template/extras/src/app/next-auth/signup/page.tsx +40 -0
- package/template/extras/src/app/next-auth/signup/validation.ts +12 -0
- package/template/extras/src/app/page/base.tsx +6 -0
- package/template/extras/src/app/page/with-auth-trpc-tw.tsx +67 -0
- package/template/extras/src/app/page/with-auth-trpc.tsx +68 -0
- package/template/extras/src/app/page/with-trpc-tw.tsx +53 -0
- package/template/extras/src/app/page/with-trpc.tsx +54 -0
- package/template/extras/src/app/page/with-tw.tsx +37 -0
- package/template/extras/src/components/clerk-auth/clerk-provider.tsx +18 -0
- package/template/extras/src/components/clerk-auth/user-menu-mobile.tsx +36 -0
- package/template/extras/src/components/clerk-auth/user-menu.tsx +24 -0
- package/template/extras/src/components/next-auth/next-auth-provider.tsx +14 -0
- package/template/extras/src/components/next-auth/user-menu-mobile.tsx +31 -0
- package/template/extras/src/components/next-auth/user-menu.tsx +38 -0
- package/template/extras/src/env/with-auth.ts +31 -0
- package/template/extras/src/env/with-clerk.ts +20 -0
- package/template/extras/src/index.module.css +177 -0
- package/template/extras/src/middleware/clerk.ts +20 -0
- package/template/extras/src/middleware/next-auth.ts +5 -0
- package/template/extras/src/pages/_app/base.tsx +14 -0
- package/template/extras/src/pages/_app/with-auth-trpc-tw.tsx +23 -0
- package/template/extras/src/pages/_app/with-auth-trpc.tsx +23 -0
- package/template/extras/src/pages/_app/with-auth-tw.tsx +21 -0
- package/template/extras/src/pages/_app/with-auth.tsx +21 -0
- package/template/extras/src/pages/_app/with-trpc-tw.tsx +16 -0
- package/template/extras/src/pages/_app/with-trpc.tsx +16 -0
- package/template/extras/src/pages/_app/with-tw.tsx +14 -0
- package/template/extras/src/pages/api/auth/[...nextauth].ts +5 -0
- package/template/extras/src/pages/api/trpc/[trpc].ts +19 -0
- package/template/extras/src/pages/index/base.tsx +47 -0
- package/template/extras/src/pages/index/with-auth-trpc-tw.tsx +80 -0
- package/template/extras/src/pages/index/with-auth-trpc.tsx +81 -0
- package/template/extras/src/pages/index/with-trpc-tw.tsx +52 -0
- package/template/extras/src/pages/index/with-trpc.tsx +53 -0
- package/template/extras/src/pages/index/with-tw.tsx +45 -0
- package/template/extras/src/server/api/root.ts +23 -0
- package/template/extras/src/server/api/routers/post/base.ts +40 -0
- package/template/extras/src/server/api/routers/post/with-auth-drizzle.ts +39 -0
- package/template/extras/src/server/api/routers/post/with-auth-prisma.ts +41 -0
- package/template/extras/src/server/api/routers/post/with-auth.ts +37 -0
- package/template/extras/src/server/api/routers/post/with-drizzle.ts +30 -0
- package/template/extras/src/server/api/routers/post/with-prisma.ts +31 -0
- package/template/extras/src/server/api/trpc-app/base.ts +103 -0
- package/template/extras/src/server/api/trpc-app/with-auth-db.ts +133 -0
- package/template/extras/src/server/api/trpc-app/with-auth.ts +130 -0
- package/template/extras/src/server/api/trpc-app/with-db.ts +106 -0
- package/template/extras/src/server/api/trpc-pages/base.ts +122 -0
- package/template/extras/src/server/api/trpc-pages/with-auth-db.ts +160 -0
- package/template/extras/src/server/api/trpc-pages/with-auth.ts +158 -0
- package/template/extras/src/server/api/trpc-pages/with-db.ts +125 -0
- package/template/extras/src/server/data/users.ts +23 -0
- package/template/extras/src/server/db/db-prisma-planetscale.ts +22 -0
- package/template/extras/src/server/db/db-prisma.ts +17 -0
- package/template/extras/src/server/db/index-drizzle/with-mysql.ts +18 -0
- package/template/extras/src/server/db/index-drizzle/with-planetscale.ts +7 -0
- package/template/extras/src/server/db/index-drizzle/with-postgres.ts +18 -0
- package/template/extras/src/server/db/index-drizzle/with-sqlite.ts +19 -0
- package/template/extras/src/server/db/schema-drizzle/base-mysql.ts +34 -0
- package/template/extras/src/server/db/schema-drizzle/base-planetscale.ts +34 -0
- package/template/extras/src/server/db/schema-drizzle/base-postgres.ts +36 -0
- package/template/extras/src/server/db/schema-drizzle/base-sqlite.ts +30 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-mysql.ts +123 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-planetscale.ts +117 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-postgres.ts +130 -0
- package/template/extras/src/server/db/schema-drizzle/with-auth-sqlite.ts +116 -0
- package/template/extras/src/server/next-auth/base.ts +111 -0
- package/template/extras/src/server/next-auth/password.ts +13 -0
- package/template/extras/src/server/next-auth/with-drizzle.ts +83 -0
- package/template/extras/src/server/next-auth/with-prisma.ts +72 -0
- package/template/extras/src/trpc/query-client.ts +25 -0
- package/template/extras/src/trpc/react.tsx +76 -0
- package/template/extras/src/trpc/server.ts +30 -0
- package/template/extras/src/utils/api.ts +68 -0
- package/template/extras/start-database/mysql.sh +54 -0
- package/template/extras/start-database/postgres.sh +55 -0
- package/template/fm-addon/ProofKitAuth/de.xml +518 -0
- package/template/fm-addon/ProofKitAuth/en.xml +518 -0
- package/template/fm-addon/ProofKitAuth/es.xml +518 -0
- package/template/fm-addon/ProofKitAuth/fr.xml +518 -0
- package/template/fm-addon/ProofKitAuth/icon.png +0 -0
- package/template/fm-addon/ProofKitAuth/icon@2x.png +0 -0
- package/template/fm-addon/ProofKitAuth/info.json +11 -0
- package/template/fm-addon/ProofKitAuth/info_de.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_en.json +8 -0
- package/template/fm-addon/ProofKitAuth/info_es.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_fr.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_it.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_ja.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_ko.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_nl.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_pt.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_sv.json +18 -0
- package/template/fm-addon/ProofKitAuth/info_zh.json +18 -0
- package/template/fm-addon/ProofKitAuth/it.xml +518 -0
- package/template/fm-addon/ProofKitAuth/ja.xml +518 -0
- package/template/fm-addon/ProofKitAuth/ko.xml +518 -0
- package/template/fm-addon/ProofKitAuth/nl.xml +518 -0
- package/template/fm-addon/ProofKitAuth/preview.png +0 -0
- package/template/fm-addon/ProofKitAuth/pt.xml +518 -0
- package/template/fm-addon/ProofKitAuth/sv.xml +518 -0
- package/template/fm-addon/ProofKitAuth/template.xml +0 -0
- package/template/fm-addon/ProofKitAuth/zh.xml +518 -0
- package/template/fm-addon/ProofKitWV/de.xml +896 -0
- package/template/fm-addon/ProofKitWV/en.xml +896 -0
- package/template/fm-addon/ProofKitWV/es.xml +896 -0
- package/template/fm-addon/ProofKitWV/fr.xml +896 -0
- package/template/fm-addon/ProofKitWV/icon.png +0 -0
- package/template/fm-addon/ProofKitWV/icon@2x.png +0 -0
- package/template/fm-addon/ProofKitWV/info.json +11 -0
- package/template/fm-addon/ProofKitWV/info_de.json +18 -0
- package/template/fm-addon/ProofKitWV/info_en.json +11 -0
- package/template/fm-addon/ProofKitWV/info_es.json +18 -0
- package/template/fm-addon/ProofKitWV/info_fr.json +18 -0
- package/template/fm-addon/ProofKitWV/info_it.json +18 -0
- package/template/fm-addon/ProofKitWV/info_ja.json +18 -0
- package/template/fm-addon/ProofKitWV/info_ko.json +18 -0
- package/template/fm-addon/ProofKitWV/info_nl.json +18 -0
- package/template/fm-addon/ProofKitWV/info_pt.json +18 -0
- package/template/fm-addon/ProofKitWV/info_sv.json +18 -0
- package/template/fm-addon/ProofKitWV/info_zh.json +18 -0
- package/template/fm-addon/ProofKitWV/it.xml +896 -0
- package/template/fm-addon/ProofKitWV/ja.xml +896 -0
- package/template/fm-addon/ProofKitWV/ko.xml +896 -0
- package/template/fm-addon/ProofKitWV/nl.xml +896 -0
- package/template/fm-addon/ProofKitWV/preview.png +0 -0
- package/template/fm-addon/ProofKitWV/pt.xml +896 -0
- package/template/fm-addon/ProofKitWV/records_de.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_en.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_es.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_fr.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_it.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_ja.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_ko.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_nl.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_pt.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_sv.xml +0 -0
- package/template/fm-addon/ProofKitWV/records_zh.xml +0 -0
- package/template/fm-addon/ProofKitWV/sv.xml +896 -0
- package/template/fm-addon/ProofKitWV/template.xml +0 -0
- package/template/fm-addon/ProofKitWV/zh.xml +896 -0
- package/template/nextjs/README.md +27 -0
- package/template/nextjs/_gitignore +37 -0
- package/template/nextjs/next.config.ts +12 -0
- package/template/nextjs/package.json +50 -0
- package/template/nextjs/postcss.config.cjs +14 -0
- package/template/nextjs/proofkit.json +1 -0
- package/template/nextjs/public/favicon.ico +0 -0
- package/template/nextjs/public/proofkit.png +0 -0
- package/template/nextjs/src/app/(main)/layout.tsx +6 -0
- package/template/nextjs/src/app/(main)/page.tsx +90 -0
- package/template/nextjs/src/app/layout.tsx +39 -0
- package/template/nextjs/src/app/navigation.tsx +12 -0
- package/template/nextjs/src/components/AppLogo.tsx +6 -0
- package/template/nextjs/src/components/AppShell/internal/AppShell.tsx +21 -0
- package/template/nextjs/src/components/AppShell/internal/Header.module.css +40 -0
- package/template/nextjs/src/components/AppShell/internal/Header.tsx +34 -0
- package/template/nextjs/src/components/AppShell/internal/HeaderMobileMenu.tsx +27 -0
- package/template/nextjs/src/components/AppShell/internal/HeaderNavLink.tsx +31 -0
- package/template/nextjs/src/components/AppShell/internal/config.ts +1 -0
- package/template/nextjs/src/components/AppShell/slot-header-center.tsx +13 -0
- package/template/nextjs/src/components/AppShell/slot-header-left.tsx +23 -0
- package/template/nextjs/src/components/AppShell/slot-header-mobile-content.tsx +43 -0
- package/template/nextjs/src/components/AppShell/slot-header-right.tsx +26 -0
- package/template/nextjs/src/config/env.ts +13 -0
- package/template/nextjs/src/config/theme/globals.css +1 -0
- package/template/nextjs/src/config/theme/mantine-theme.ts +22 -0
- package/template/nextjs/src/server/safe-action.ts +3 -0
- package/template/nextjs/src/utils/notification-helpers.ts +32 -0
- package/template/nextjs/tsconfig.json +40 -0
- package/template/pages/nextjs/blank/page.tsx +5 -0
- package/template/pages/nextjs/table/page.tsx +17 -0
- package/template/pages/nextjs/table/table.tsx +18 -0
- package/template/pages/nextjs/table-edit/actions.ts +23 -0
- package/template/pages/nextjs/table-edit/page.tsx +28 -0
- package/template/pages/nextjs/table-edit/schema.ts +4 -0
- package/template/pages/nextjs/table-edit/table.tsx +43 -0
- package/template/pages/nextjs/table-infinite/actions.ts +62 -0
- package/template/pages/nextjs/table-infinite/page.tsx +11 -0
- package/template/pages/nextjs/table-infinite/query.ts +44 -0
- package/template/pages/nextjs/table-infinite/table.tsx +107 -0
- package/template/pages/nextjs/table-infinite-edit/actions.ts +84 -0
- package/template/pages/nextjs/table-infinite-edit/page.tsx +23 -0
- package/template/pages/nextjs/table-infinite-edit/query.ts +81 -0
- package/template/pages/nextjs/table-infinite-edit/schema.ts +4 -0
- package/template/pages/nextjs/table-infinite-edit/table.tsx +130 -0
- package/template/pages/vite-wv/blank/index.tsx +0 -0
- package/template/pages/vite-wv/table/index.tsx +34 -0
- package/template/pages/vite-wv/table-edit/index.tsx +72 -0
- package/template/vite-wv/.vscode/settings.json +11 -0
- package/template/vite-wv/_gitignore +18 -0
- package/template/vite-wv/index.html +13 -0
- package/template/vite-wv/package.json +52 -0
- package/template/vite-wv/pnpm-lock.yaml +2294 -0
- package/template/vite-wv/postcss.config.cjs +14 -0
- package/template/vite-wv/proofkit.json +1 -0
- package/template/vite-wv/scripts/launch-fm.sh +3 -0
- package/template/vite-wv/scripts/upload.js +21 -0
- package/template/vite-wv/src/components/AppLogo.tsx +5 -0
- package/template/vite-wv/src/components/full-screen-loader.tsx +9 -0
- package/template/vite-wv/src/config/env.ts +16 -0
- package/template/vite-wv/src/config/theme/globals.css +1 -0
- package/template/vite-wv/src/config/theme/mantine-theme.ts +22 -0
- package/template/vite-wv/src/main.tsx +42 -0
- package/template/vite-wv/src/routeTree.gen.ts +111 -0
- package/template/vite-wv/src/routes/__root.tsx +21 -0
- package/template/vite-wv/src/routes/index.tsx +63 -0
- package/template/vite-wv/src/routes/secondary.tsx +28 -0
- package/template/vite-wv/src/utils/notification-helpers.ts +32 -0
- package/template/vite-wv/tsconfig.json +14 -0
- package/template/vite-wv/vite.config.ts +18 -0
|
@@ -0,0 +1,2294 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@mantine/core':
|
|
12
|
+
specifier: ^7.14.0
|
|
13
|
+
version: 7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
14
|
+
'@mantine/hooks':
|
|
15
|
+
specifier: ^7.14.0
|
|
16
|
+
version: 7.14.0(react@18.3.1)
|
|
17
|
+
'@mantine/modals':
|
|
18
|
+
specifier: ^7.14.0
|
|
19
|
+
version: 7.14.0(@mantine/core@7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.14.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
20
|
+
'@mantine/notifications':
|
|
21
|
+
specifier: ^7.14.0
|
|
22
|
+
version: 7.14.0(@mantine/core@7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.14.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
23
|
+
'@tabler/icons-react':
|
|
24
|
+
specifier: ^3.22.0
|
|
25
|
+
version: 3.22.0(react@18.3.1)
|
|
26
|
+
'@tanstack/react-router':
|
|
27
|
+
specifier: ^1.81.6
|
|
28
|
+
version: 1.81.6(@tanstack/router-generator@1.81.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
29
|
+
'@tanstack/router-devtools':
|
|
30
|
+
specifier: ^1.81.6
|
|
31
|
+
version: 1.81.6(@tanstack/react-router@1.81.6(@tanstack/router-generator@1.81.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
32
|
+
react:
|
|
33
|
+
specifier: ^18.3.1
|
|
34
|
+
version: 18.3.1
|
|
35
|
+
react-dom:
|
|
36
|
+
specifier: ^18.3.1
|
|
37
|
+
version: 18.3.1(react@18.3.1)
|
|
38
|
+
vite-plugin-singlefile:
|
|
39
|
+
specifier: ^2.0.3
|
|
40
|
+
version: 2.0.3(rollup@4.26.0)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
|
|
41
|
+
devDependencies:
|
|
42
|
+
'@tanstack/router-plugin':
|
|
43
|
+
specifier: ^1.81.6
|
|
44
|
+
version: 1.81.6(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
|
|
45
|
+
'@types/node':
|
|
46
|
+
specifier: ^22.9.0
|
|
47
|
+
version: 22.9.0
|
|
48
|
+
'@types/react':
|
|
49
|
+
specifier: ^18.3.3
|
|
50
|
+
version: 18.3.12
|
|
51
|
+
'@types/react-dom':
|
|
52
|
+
specifier: ^18.3.0
|
|
53
|
+
version: 18.3.1
|
|
54
|
+
'@vitejs/plugin-react':
|
|
55
|
+
specifier: ^4.3.2
|
|
56
|
+
version: 4.3.3(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
|
|
57
|
+
dotenv:
|
|
58
|
+
specifier: ^16.4.5
|
|
59
|
+
version: 16.4.5
|
|
60
|
+
open:
|
|
61
|
+
specifier: ^10.1.0
|
|
62
|
+
version: 10.1.0
|
|
63
|
+
postcss:
|
|
64
|
+
specifier: ^8.4.49
|
|
65
|
+
version: 8.4.49
|
|
66
|
+
postcss-preset-mantine:
|
|
67
|
+
specifier: ^1.17.0
|
|
68
|
+
version: 1.17.0(postcss@8.4.49)
|
|
69
|
+
postcss-simple-vars:
|
|
70
|
+
specifier: ^7.0.1
|
|
71
|
+
version: 7.0.1(postcss@8.4.49)
|
|
72
|
+
vite:
|
|
73
|
+
specifier: ^5.4.8
|
|
74
|
+
version: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
|
|
75
|
+
|
|
76
|
+
packages:
|
|
77
|
+
|
|
78
|
+
'@ampproject/remapping@2.3.0':
|
|
79
|
+
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
|
80
|
+
engines: {node: '>=6.0.0'}
|
|
81
|
+
|
|
82
|
+
'@babel/code-frame@7.26.2':
|
|
83
|
+
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
|
|
84
|
+
engines: {node: '>=6.9.0'}
|
|
85
|
+
|
|
86
|
+
'@babel/compat-data@7.26.2':
|
|
87
|
+
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
|
|
88
|
+
engines: {node: '>=6.9.0'}
|
|
89
|
+
|
|
90
|
+
'@babel/core@7.26.0':
|
|
91
|
+
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
|
|
92
|
+
engines: {node: '>=6.9.0'}
|
|
93
|
+
|
|
94
|
+
'@babel/generator@7.26.2':
|
|
95
|
+
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
|
|
96
|
+
engines: {node: '>=6.9.0'}
|
|
97
|
+
|
|
98
|
+
'@babel/helper-compilation-targets@7.25.9':
|
|
99
|
+
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
|
|
100
|
+
engines: {node: '>=6.9.0'}
|
|
101
|
+
|
|
102
|
+
'@babel/helper-module-imports@7.25.9':
|
|
103
|
+
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
|
|
104
|
+
engines: {node: '>=6.9.0'}
|
|
105
|
+
|
|
106
|
+
'@babel/helper-module-transforms@7.26.0':
|
|
107
|
+
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
|
|
108
|
+
engines: {node: '>=6.9.0'}
|
|
109
|
+
peerDependencies:
|
|
110
|
+
'@babel/core': ^7.0.0
|
|
111
|
+
|
|
112
|
+
'@babel/helper-plugin-utils@7.25.9':
|
|
113
|
+
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
|
|
114
|
+
engines: {node: '>=6.9.0'}
|
|
115
|
+
|
|
116
|
+
'@babel/helper-string-parser@7.25.9':
|
|
117
|
+
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
|
|
118
|
+
engines: {node: '>=6.9.0'}
|
|
119
|
+
|
|
120
|
+
'@babel/helper-validator-identifier@7.25.9':
|
|
121
|
+
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
|
|
122
|
+
engines: {node: '>=6.9.0'}
|
|
123
|
+
|
|
124
|
+
'@babel/helper-validator-option@7.25.9':
|
|
125
|
+
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
|
|
126
|
+
engines: {node: '>=6.9.0'}
|
|
127
|
+
|
|
128
|
+
'@babel/helpers@7.26.0':
|
|
129
|
+
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
|
|
130
|
+
engines: {node: '>=6.9.0'}
|
|
131
|
+
|
|
132
|
+
'@babel/parser@7.26.2':
|
|
133
|
+
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
|
|
134
|
+
engines: {node: '>=6.0.0'}
|
|
135
|
+
hasBin: true
|
|
136
|
+
|
|
137
|
+
'@babel/plugin-syntax-jsx@7.25.9':
|
|
138
|
+
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
|
|
139
|
+
engines: {node: '>=6.9.0'}
|
|
140
|
+
peerDependencies:
|
|
141
|
+
'@babel/core': ^7.0.0-0
|
|
142
|
+
|
|
143
|
+
'@babel/plugin-syntax-typescript@7.25.9':
|
|
144
|
+
resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
|
|
145
|
+
engines: {node: '>=6.9.0'}
|
|
146
|
+
peerDependencies:
|
|
147
|
+
'@babel/core': ^7.0.0-0
|
|
148
|
+
|
|
149
|
+
'@babel/plugin-transform-react-jsx-self@7.25.9':
|
|
150
|
+
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
|
|
151
|
+
engines: {node: '>=6.9.0'}
|
|
152
|
+
peerDependencies:
|
|
153
|
+
'@babel/core': ^7.0.0-0
|
|
154
|
+
|
|
155
|
+
'@babel/plugin-transform-react-jsx-source@7.25.9':
|
|
156
|
+
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
|
|
157
|
+
engines: {node: '>=6.9.0'}
|
|
158
|
+
peerDependencies:
|
|
159
|
+
'@babel/core': ^7.0.0-0
|
|
160
|
+
|
|
161
|
+
'@babel/runtime@7.26.0':
|
|
162
|
+
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
|
|
163
|
+
engines: {node: '>=6.9.0'}
|
|
164
|
+
|
|
165
|
+
'@babel/template@7.25.9':
|
|
166
|
+
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
|
|
167
|
+
engines: {node: '>=6.9.0'}
|
|
168
|
+
|
|
169
|
+
'@babel/traverse@7.25.9':
|
|
170
|
+
resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
|
|
171
|
+
engines: {node: '>=6.9.0'}
|
|
172
|
+
|
|
173
|
+
'@babel/types@7.26.0':
|
|
174
|
+
resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
|
|
175
|
+
engines: {node: '>=6.9.0'}
|
|
176
|
+
|
|
177
|
+
'@esbuild/aix-ppc64@0.21.5':
|
|
178
|
+
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
|
|
179
|
+
engines: {node: '>=12'}
|
|
180
|
+
cpu: [ppc64]
|
|
181
|
+
os: [aix]
|
|
182
|
+
|
|
183
|
+
'@esbuild/aix-ppc64@0.23.1':
|
|
184
|
+
resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
|
|
185
|
+
engines: {node: '>=18'}
|
|
186
|
+
cpu: [ppc64]
|
|
187
|
+
os: [aix]
|
|
188
|
+
|
|
189
|
+
'@esbuild/android-arm64@0.21.5':
|
|
190
|
+
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
|
|
191
|
+
engines: {node: '>=12'}
|
|
192
|
+
cpu: [arm64]
|
|
193
|
+
os: [android]
|
|
194
|
+
|
|
195
|
+
'@esbuild/android-arm64@0.23.1':
|
|
196
|
+
resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
|
|
197
|
+
engines: {node: '>=18'}
|
|
198
|
+
cpu: [arm64]
|
|
199
|
+
os: [android]
|
|
200
|
+
|
|
201
|
+
'@esbuild/android-arm@0.21.5':
|
|
202
|
+
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
|
|
203
|
+
engines: {node: '>=12'}
|
|
204
|
+
cpu: [arm]
|
|
205
|
+
os: [android]
|
|
206
|
+
|
|
207
|
+
'@esbuild/android-arm@0.23.1':
|
|
208
|
+
resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
|
|
209
|
+
engines: {node: '>=18'}
|
|
210
|
+
cpu: [arm]
|
|
211
|
+
os: [android]
|
|
212
|
+
|
|
213
|
+
'@esbuild/android-x64@0.21.5':
|
|
214
|
+
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
|
|
215
|
+
engines: {node: '>=12'}
|
|
216
|
+
cpu: [x64]
|
|
217
|
+
os: [android]
|
|
218
|
+
|
|
219
|
+
'@esbuild/android-x64@0.23.1':
|
|
220
|
+
resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
|
|
221
|
+
engines: {node: '>=18'}
|
|
222
|
+
cpu: [x64]
|
|
223
|
+
os: [android]
|
|
224
|
+
|
|
225
|
+
'@esbuild/darwin-arm64@0.21.5':
|
|
226
|
+
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
|
|
227
|
+
engines: {node: '>=12'}
|
|
228
|
+
cpu: [arm64]
|
|
229
|
+
os: [darwin]
|
|
230
|
+
|
|
231
|
+
'@esbuild/darwin-arm64@0.23.1':
|
|
232
|
+
resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
|
|
233
|
+
engines: {node: '>=18'}
|
|
234
|
+
cpu: [arm64]
|
|
235
|
+
os: [darwin]
|
|
236
|
+
|
|
237
|
+
'@esbuild/darwin-x64@0.21.5':
|
|
238
|
+
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
|
|
239
|
+
engines: {node: '>=12'}
|
|
240
|
+
cpu: [x64]
|
|
241
|
+
os: [darwin]
|
|
242
|
+
|
|
243
|
+
'@esbuild/darwin-x64@0.23.1':
|
|
244
|
+
resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
|
|
245
|
+
engines: {node: '>=18'}
|
|
246
|
+
cpu: [x64]
|
|
247
|
+
os: [darwin]
|
|
248
|
+
|
|
249
|
+
'@esbuild/freebsd-arm64@0.21.5':
|
|
250
|
+
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
|
|
251
|
+
engines: {node: '>=12'}
|
|
252
|
+
cpu: [arm64]
|
|
253
|
+
os: [freebsd]
|
|
254
|
+
|
|
255
|
+
'@esbuild/freebsd-arm64@0.23.1':
|
|
256
|
+
resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
|
|
257
|
+
engines: {node: '>=18'}
|
|
258
|
+
cpu: [arm64]
|
|
259
|
+
os: [freebsd]
|
|
260
|
+
|
|
261
|
+
'@esbuild/freebsd-x64@0.21.5':
|
|
262
|
+
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
|
|
263
|
+
engines: {node: '>=12'}
|
|
264
|
+
cpu: [x64]
|
|
265
|
+
os: [freebsd]
|
|
266
|
+
|
|
267
|
+
'@esbuild/freebsd-x64@0.23.1':
|
|
268
|
+
resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
|
|
269
|
+
engines: {node: '>=18'}
|
|
270
|
+
cpu: [x64]
|
|
271
|
+
os: [freebsd]
|
|
272
|
+
|
|
273
|
+
'@esbuild/linux-arm64@0.21.5':
|
|
274
|
+
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
|
|
275
|
+
engines: {node: '>=12'}
|
|
276
|
+
cpu: [arm64]
|
|
277
|
+
os: [linux]
|
|
278
|
+
|
|
279
|
+
'@esbuild/linux-arm64@0.23.1':
|
|
280
|
+
resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
|
|
281
|
+
engines: {node: '>=18'}
|
|
282
|
+
cpu: [arm64]
|
|
283
|
+
os: [linux]
|
|
284
|
+
|
|
285
|
+
'@esbuild/linux-arm@0.21.5':
|
|
286
|
+
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
|
|
287
|
+
engines: {node: '>=12'}
|
|
288
|
+
cpu: [arm]
|
|
289
|
+
os: [linux]
|
|
290
|
+
|
|
291
|
+
'@esbuild/linux-arm@0.23.1':
|
|
292
|
+
resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
|
|
293
|
+
engines: {node: '>=18'}
|
|
294
|
+
cpu: [arm]
|
|
295
|
+
os: [linux]
|
|
296
|
+
|
|
297
|
+
'@esbuild/linux-ia32@0.21.5':
|
|
298
|
+
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
|
|
299
|
+
engines: {node: '>=12'}
|
|
300
|
+
cpu: [ia32]
|
|
301
|
+
os: [linux]
|
|
302
|
+
|
|
303
|
+
'@esbuild/linux-ia32@0.23.1':
|
|
304
|
+
resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
|
|
305
|
+
engines: {node: '>=18'}
|
|
306
|
+
cpu: [ia32]
|
|
307
|
+
os: [linux]
|
|
308
|
+
|
|
309
|
+
'@esbuild/linux-loong64@0.21.5':
|
|
310
|
+
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
|
|
311
|
+
engines: {node: '>=12'}
|
|
312
|
+
cpu: [loong64]
|
|
313
|
+
os: [linux]
|
|
314
|
+
|
|
315
|
+
'@esbuild/linux-loong64@0.23.1':
|
|
316
|
+
resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
|
|
317
|
+
engines: {node: '>=18'}
|
|
318
|
+
cpu: [loong64]
|
|
319
|
+
os: [linux]
|
|
320
|
+
|
|
321
|
+
'@esbuild/linux-mips64el@0.21.5':
|
|
322
|
+
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
|
|
323
|
+
engines: {node: '>=12'}
|
|
324
|
+
cpu: [mips64el]
|
|
325
|
+
os: [linux]
|
|
326
|
+
|
|
327
|
+
'@esbuild/linux-mips64el@0.23.1':
|
|
328
|
+
resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
|
|
329
|
+
engines: {node: '>=18'}
|
|
330
|
+
cpu: [mips64el]
|
|
331
|
+
os: [linux]
|
|
332
|
+
|
|
333
|
+
'@esbuild/linux-ppc64@0.21.5':
|
|
334
|
+
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
|
|
335
|
+
engines: {node: '>=12'}
|
|
336
|
+
cpu: [ppc64]
|
|
337
|
+
os: [linux]
|
|
338
|
+
|
|
339
|
+
'@esbuild/linux-ppc64@0.23.1':
|
|
340
|
+
resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
|
|
341
|
+
engines: {node: '>=18'}
|
|
342
|
+
cpu: [ppc64]
|
|
343
|
+
os: [linux]
|
|
344
|
+
|
|
345
|
+
'@esbuild/linux-riscv64@0.21.5':
|
|
346
|
+
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
|
|
347
|
+
engines: {node: '>=12'}
|
|
348
|
+
cpu: [riscv64]
|
|
349
|
+
os: [linux]
|
|
350
|
+
|
|
351
|
+
'@esbuild/linux-riscv64@0.23.1':
|
|
352
|
+
resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
|
|
353
|
+
engines: {node: '>=18'}
|
|
354
|
+
cpu: [riscv64]
|
|
355
|
+
os: [linux]
|
|
356
|
+
|
|
357
|
+
'@esbuild/linux-s390x@0.21.5':
|
|
358
|
+
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
|
|
359
|
+
engines: {node: '>=12'}
|
|
360
|
+
cpu: [s390x]
|
|
361
|
+
os: [linux]
|
|
362
|
+
|
|
363
|
+
'@esbuild/linux-s390x@0.23.1':
|
|
364
|
+
resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
|
|
365
|
+
engines: {node: '>=18'}
|
|
366
|
+
cpu: [s390x]
|
|
367
|
+
os: [linux]
|
|
368
|
+
|
|
369
|
+
'@esbuild/linux-x64@0.21.5':
|
|
370
|
+
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
|
|
371
|
+
engines: {node: '>=12'}
|
|
372
|
+
cpu: [x64]
|
|
373
|
+
os: [linux]
|
|
374
|
+
|
|
375
|
+
'@esbuild/linux-x64@0.23.1':
|
|
376
|
+
resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
|
|
377
|
+
engines: {node: '>=18'}
|
|
378
|
+
cpu: [x64]
|
|
379
|
+
os: [linux]
|
|
380
|
+
|
|
381
|
+
'@esbuild/netbsd-x64@0.21.5':
|
|
382
|
+
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
|
|
383
|
+
engines: {node: '>=12'}
|
|
384
|
+
cpu: [x64]
|
|
385
|
+
os: [netbsd]
|
|
386
|
+
|
|
387
|
+
'@esbuild/netbsd-x64@0.23.1':
|
|
388
|
+
resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
|
|
389
|
+
engines: {node: '>=18'}
|
|
390
|
+
cpu: [x64]
|
|
391
|
+
os: [netbsd]
|
|
392
|
+
|
|
393
|
+
'@esbuild/openbsd-arm64@0.23.1':
|
|
394
|
+
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
|
|
395
|
+
engines: {node: '>=18'}
|
|
396
|
+
cpu: [arm64]
|
|
397
|
+
os: [openbsd]
|
|
398
|
+
|
|
399
|
+
'@esbuild/openbsd-x64@0.21.5':
|
|
400
|
+
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
|
|
401
|
+
engines: {node: '>=12'}
|
|
402
|
+
cpu: [x64]
|
|
403
|
+
os: [openbsd]
|
|
404
|
+
|
|
405
|
+
'@esbuild/openbsd-x64@0.23.1':
|
|
406
|
+
resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
|
|
407
|
+
engines: {node: '>=18'}
|
|
408
|
+
cpu: [x64]
|
|
409
|
+
os: [openbsd]
|
|
410
|
+
|
|
411
|
+
'@esbuild/sunos-x64@0.21.5':
|
|
412
|
+
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
|
|
413
|
+
engines: {node: '>=12'}
|
|
414
|
+
cpu: [x64]
|
|
415
|
+
os: [sunos]
|
|
416
|
+
|
|
417
|
+
'@esbuild/sunos-x64@0.23.1':
|
|
418
|
+
resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
|
|
419
|
+
engines: {node: '>=18'}
|
|
420
|
+
cpu: [x64]
|
|
421
|
+
os: [sunos]
|
|
422
|
+
|
|
423
|
+
'@esbuild/win32-arm64@0.21.5':
|
|
424
|
+
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
|
|
425
|
+
engines: {node: '>=12'}
|
|
426
|
+
cpu: [arm64]
|
|
427
|
+
os: [win32]
|
|
428
|
+
|
|
429
|
+
'@esbuild/win32-arm64@0.23.1':
|
|
430
|
+
resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
|
|
431
|
+
engines: {node: '>=18'}
|
|
432
|
+
cpu: [arm64]
|
|
433
|
+
os: [win32]
|
|
434
|
+
|
|
435
|
+
'@esbuild/win32-ia32@0.21.5':
|
|
436
|
+
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
|
|
437
|
+
engines: {node: '>=12'}
|
|
438
|
+
cpu: [ia32]
|
|
439
|
+
os: [win32]
|
|
440
|
+
|
|
441
|
+
'@esbuild/win32-ia32@0.23.1':
|
|
442
|
+
resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
|
|
443
|
+
engines: {node: '>=18'}
|
|
444
|
+
cpu: [ia32]
|
|
445
|
+
os: [win32]
|
|
446
|
+
|
|
447
|
+
'@esbuild/win32-x64@0.21.5':
|
|
448
|
+
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
|
|
449
|
+
engines: {node: '>=12'}
|
|
450
|
+
cpu: [x64]
|
|
451
|
+
os: [win32]
|
|
452
|
+
|
|
453
|
+
'@esbuild/win32-x64@0.23.1':
|
|
454
|
+
resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
|
|
455
|
+
engines: {node: '>=18'}
|
|
456
|
+
cpu: [x64]
|
|
457
|
+
os: [win32]
|
|
458
|
+
|
|
459
|
+
'@floating-ui/core@1.6.8':
|
|
460
|
+
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
|
|
461
|
+
|
|
462
|
+
'@floating-ui/dom@1.6.12':
|
|
463
|
+
resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
|
|
464
|
+
|
|
465
|
+
'@floating-ui/react-dom@2.1.2':
|
|
466
|
+
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
|
|
467
|
+
peerDependencies:
|
|
468
|
+
react: '>=16.8.0'
|
|
469
|
+
react-dom: '>=16.8.0'
|
|
470
|
+
|
|
471
|
+
'@floating-ui/react@0.26.27':
|
|
472
|
+
resolution: {integrity: sha512-jLP72x0Kr2CgY6eTYi/ra3VA9LOkTo4C+DUTrbFgFOExKy3omYVmwMjNKqxAHdsnyLS96BIDLcO2SlnsNf8KUQ==}
|
|
473
|
+
peerDependencies:
|
|
474
|
+
react: '>=16.8.0'
|
|
475
|
+
react-dom: '>=16.8.0'
|
|
476
|
+
|
|
477
|
+
'@floating-ui/utils@0.2.8':
|
|
478
|
+
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
|
|
479
|
+
|
|
480
|
+
'@jridgewell/gen-mapping@0.3.5':
|
|
481
|
+
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
|
482
|
+
engines: {node: '>=6.0.0'}
|
|
483
|
+
|
|
484
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
485
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
486
|
+
engines: {node: '>=6.0.0'}
|
|
487
|
+
|
|
488
|
+
'@jridgewell/set-array@1.2.1':
|
|
489
|
+
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
|
|
490
|
+
engines: {node: '>=6.0.0'}
|
|
491
|
+
|
|
492
|
+
'@jridgewell/sourcemap-codec@1.5.0':
|
|
493
|
+
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
|
494
|
+
|
|
495
|
+
'@jridgewell/trace-mapping@0.3.25':
|
|
496
|
+
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
|
497
|
+
|
|
498
|
+
'@mantine/core@7.14.0':
|
|
499
|
+
resolution: {integrity: sha512-Osj3nwCXFhOVHIoDtpEpciP7huPhGmG/0w+Zol5tKJ9SG5trV4NDfdFwFcNoxx5al8L6eCLS/fJhloFXaqhOnA==}
|
|
500
|
+
peerDependencies:
|
|
501
|
+
'@mantine/hooks': 7.14.0
|
|
502
|
+
react: ^18.x || ^19.x
|
|
503
|
+
react-dom: ^18.x || ^19.x
|
|
504
|
+
|
|
505
|
+
'@mantine/hooks@7.14.0':
|
|
506
|
+
resolution: {integrity: sha512-BJ577AoQ5KnvbuaG174TYAmL2UqcX9qh9aL0aOx+gqyMM6GWeBXUXWx1kcMCzaDbYZwfQptU476fpSjHdcLjMw==}
|
|
507
|
+
peerDependencies:
|
|
508
|
+
react: ^18.x || ^19.x
|
|
509
|
+
|
|
510
|
+
'@mantine/modals@7.14.0':
|
|
511
|
+
resolution: {integrity: sha512-+9NeQnvH3dARoPXqJyq68FUt8+YWf/n1iNGM6ssbysrK2RMRZd/+XjdhRwGVi464Lg4UUT/QKbMos9CGrNxj9A==}
|
|
512
|
+
peerDependencies:
|
|
513
|
+
'@mantine/core': 7.14.0
|
|
514
|
+
'@mantine/hooks': 7.14.0
|
|
515
|
+
react: ^18.x || ^19.x
|
|
516
|
+
react-dom: ^18.x || ^19.x
|
|
517
|
+
|
|
518
|
+
'@mantine/notifications@7.14.0':
|
|
519
|
+
resolution: {integrity: sha512-CEpGRYj7xtzYQ8VLHN+tespWkTH3U1ghHKxKeJNmfcSjf7VcMbTa0LlKgszUE6A4CZma32RsxhDXdvgcQ3xmUg==}
|
|
520
|
+
peerDependencies:
|
|
521
|
+
'@mantine/core': 7.14.0
|
|
522
|
+
'@mantine/hooks': 7.14.0
|
|
523
|
+
react: ^18.x || ^19.x
|
|
524
|
+
react-dom: ^18.x || ^19.x
|
|
525
|
+
|
|
526
|
+
'@mantine/store@7.14.0':
|
|
527
|
+
resolution: {integrity: sha512-qI0XnQZkHuWYbe9Mn6kFObka4x26RINnDpyJGSiK6on+VwDWGJ3gn1dfFlQa2zboVtA6OUXHyxDlwALHNJwiZw==}
|
|
528
|
+
peerDependencies:
|
|
529
|
+
react: ^18.x || ^19.x
|
|
530
|
+
|
|
531
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
532
|
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
533
|
+
engines: {node: '>= 8'}
|
|
534
|
+
|
|
535
|
+
'@nodelib/fs.stat@2.0.5':
|
|
536
|
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
|
537
|
+
engines: {node: '>= 8'}
|
|
538
|
+
|
|
539
|
+
'@nodelib/fs.walk@1.2.8':
|
|
540
|
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
541
|
+
engines: {node: '>= 8'}
|
|
542
|
+
|
|
543
|
+
'@rollup/rollup-android-arm-eabi@4.26.0':
|
|
544
|
+
resolution: {integrity: sha512-gJNwtPDGEaOEgejbaseY6xMFu+CPltsc8/T+diUTTbOQLqD+bnrJq9ulH6WD69TqwqWmrfRAtUv30cCFZlbGTQ==}
|
|
545
|
+
cpu: [arm]
|
|
546
|
+
os: [android]
|
|
547
|
+
|
|
548
|
+
'@rollup/rollup-android-arm64@4.26.0':
|
|
549
|
+
resolution: {integrity: sha512-YJa5Gy8mEZgz5JquFruhJODMq3lTHWLm1fOy+HIANquLzfIOzE9RA5ie3JjCdVb9r46qfAQY/l947V0zfGJ0OQ==}
|
|
550
|
+
cpu: [arm64]
|
|
551
|
+
os: [android]
|
|
552
|
+
|
|
553
|
+
'@rollup/rollup-darwin-arm64@4.26.0':
|
|
554
|
+
resolution: {integrity: sha512-ErTASs8YKbqTBoPLp/kA1B1Um5YSom8QAc4rKhg7b9tyyVqDBlQxy7Bf2wW7yIlPGPg2UODDQcbkTlruPzDosw==}
|
|
555
|
+
cpu: [arm64]
|
|
556
|
+
os: [darwin]
|
|
557
|
+
|
|
558
|
+
'@rollup/rollup-darwin-x64@4.26.0':
|
|
559
|
+
resolution: {integrity: sha512-wbgkYDHcdWW+NqP2mnf2NOuEbOLzDblalrOWcPyY6+BRbVhliavon15UploG7PpBRQ2bZJnbmh8o3yLoBvDIHA==}
|
|
560
|
+
cpu: [x64]
|
|
561
|
+
os: [darwin]
|
|
562
|
+
|
|
563
|
+
'@rollup/rollup-freebsd-arm64@4.26.0':
|
|
564
|
+
resolution: {integrity: sha512-Y9vpjfp9CDkAG4q/uwuhZk96LP11fBz/bYdyg9oaHYhtGZp7NrbkQrj/66DYMMP2Yo/QPAsVHkV891KyO52fhg==}
|
|
565
|
+
cpu: [arm64]
|
|
566
|
+
os: [freebsd]
|
|
567
|
+
|
|
568
|
+
'@rollup/rollup-freebsd-x64@4.26.0':
|
|
569
|
+
resolution: {integrity: sha512-A/jvfCZ55EYPsqeaAt/yDAG4q5tt1ZboWMHEvKAH9Zl92DWvMIbnZe/f/eOXze65aJaaKbL+YeM0Hz4kLQvdwg==}
|
|
570
|
+
cpu: [x64]
|
|
571
|
+
os: [freebsd]
|
|
572
|
+
|
|
573
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.26.0':
|
|
574
|
+
resolution: {integrity: sha512-paHF1bMXKDuizaMODm2bBTjRiHxESWiIyIdMugKeLnjuS1TCS54MF5+Y5Dx8Ui/1RBPVRE09i5OUlaLnv8OGnA==}
|
|
575
|
+
cpu: [arm]
|
|
576
|
+
os: [linux]
|
|
577
|
+
|
|
578
|
+
'@rollup/rollup-linux-arm-musleabihf@4.26.0':
|
|
579
|
+
resolution: {integrity: sha512-cwxiHZU1GAs+TMxvgPfUDtVZjdBdTsQwVnNlzRXC5QzIJ6nhfB4I1ahKoe9yPmoaA/Vhf7m9dB1chGPpDRdGXg==}
|
|
580
|
+
cpu: [arm]
|
|
581
|
+
os: [linux]
|
|
582
|
+
|
|
583
|
+
'@rollup/rollup-linux-arm64-gnu@4.26.0':
|
|
584
|
+
resolution: {integrity: sha512-4daeEUQutGRCW/9zEo8JtdAgtJ1q2g5oHaoQaZbMSKaIWKDQwQ3Yx0/3jJNmpzrsScIPtx/V+1AfibLisb3AMQ==}
|
|
585
|
+
cpu: [arm64]
|
|
586
|
+
os: [linux]
|
|
587
|
+
|
|
588
|
+
'@rollup/rollup-linux-arm64-musl@4.26.0':
|
|
589
|
+
resolution: {integrity: sha512-eGkX7zzkNxvvS05ROzJ/cO/AKqNvR/7t1jA3VZDi2vRniLKwAWxUr85fH3NsvtxU5vnUUKFHKh8flIBdlo2b3Q==}
|
|
590
|
+
cpu: [arm64]
|
|
591
|
+
os: [linux]
|
|
592
|
+
|
|
593
|
+
'@rollup/rollup-linux-powerpc64le-gnu@4.26.0':
|
|
594
|
+
resolution: {integrity: sha512-Odp/lgHbW/mAqw/pU21goo5ruWsytP7/HCC/liOt0zcGG0llYWKrd10k9Fj0pdj3prQ63N5yQLCLiE7HTX+MYw==}
|
|
595
|
+
cpu: [ppc64]
|
|
596
|
+
os: [linux]
|
|
597
|
+
|
|
598
|
+
'@rollup/rollup-linux-riscv64-gnu@4.26.0':
|
|
599
|
+
resolution: {integrity: sha512-MBR2ZhCTzUgVD0OJdTzNeF4+zsVogIR1U/FsyuFerwcqjZGvg2nYe24SAHp8O5sN8ZkRVbHwlYeHqcSQ8tcYew==}
|
|
600
|
+
cpu: [riscv64]
|
|
601
|
+
os: [linux]
|
|
602
|
+
|
|
603
|
+
'@rollup/rollup-linux-s390x-gnu@4.26.0':
|
|
604
|
+
resolution: {integrity: sha512-YYcg8MkbN17fMbRMZuxwmxWqsmQufh3ZJFxFGoHjrE7bv0X+T6l3glcdzd7IKLiwhT+PZOJCblpnNlz1/C3kGQ==}
|
|
605
|
+
cpu: [s390x]
|
|
606
|
+
os: [linux]
|
|
607
|
+
|
|
608
|
+
'@rollup/rollup-linux-x64-gnu@4.26.0':
|
|
609
|
+
resolution: {integrity: sha512-ZuwpfjCwjPkAOxpjAEjabg6LRSfL7cAJb6gSQGZYjGhadlzKKywDkCUnJ+KEfrNY1jH5EEoSIKLCb572jSiglA==}
|
|
610
|
+
cpu: [x64]
|
|
611
|
+
os: [linux]
|
|
612
|
+
|
|
613
|
+
'@rollup/rollup-linux-x64-musl@4.26.0':
|
|
614
|
+
resolution: {integrity: sha512-+HJD2lFS86qkeF8kNu0kALtifMpPCZU80HvwztIKnYwym3KnA1os6nsX4BGSTLtS2QVAGG1P3guRgsYyMA0Yhg==}
|
|
615
|
+
cpu: [x64]
|
|
616
|
+
os: [linux]
|
|
617
|
+
|
|
618
|
+
'@rollup/rollup-win32-arm64-msvc@4.26.0':
|
|
619
|
+
resolution: {integrity: sha512-WUQzVFWPSw2uJzX4j6YEbMAiLbs0BUysgysh8s817doAYhR5ybqTI1wtKARQKo6cGop3pHnrUJPFCsXdoFaimQ==}
|
|
620
|
+
cpu: [arm64]
|
|
621
|
+
os: [win32]
|
|
622
|
+
|
|
623
|
+
'@rollup/rollup-win32-ia32-msvc@4.26.0':
|
|
624
|
+
resolution: {integrity: sha512-D4CxkazFKBfN1akAIY6ieyOqzoOoBV1OICxgUblWxff/pSjCA2khXlASUx7mK6W1oP4McqhgcCsu6QaLj3WMWg==}
|
|
625
|
+
cpu: [ia32]
|
|
626
|
+
os: [win32]
|
|
627
|
+
|
|
628
|
+
'@rollup/rollup-win32-x64-msvc@4.26.0':
|
|
629
|
+
resolution: {integrity: sha512-2x8MO1rm4PGEP0xWbubJW5RtbNLk3puzAMaLQd3B3JHVw4KcHlmXcO+Wewx9zCoo7EUFiMlu/aZbCJ7VjMzAag==}
|
|
630
|
+
cpu: [x64]
|
|
631
|
+
os: [win32]
|
|
632
|
+
|
|
633
|
+
'@tabler/icons-react@3.22.0':
|
|
634
|
+
resolution: {integrity: sha512-pOnn+IqZpnkYsEKRvbXXLXwXhYwg4cy1fEVr5SRrgAYJXkobpDjFTdVHlab0HEBXY5AE1NjsMlVeK6H/8Vv2uQ==}
|
|
635
|
+
peerDependencies:
|
|
636
|
+
react: '>= 16'
|
|
637
|
+
|
|
638
|
+
'@tabler/icons@3.22.0':
|
|
639
|
+
resolution: {integrity: sha512-IfgGzhFph5OBr2wTieWL/hyAs0FThnq9O155a6kfGYxqx7h5LQw91wnRswhEaGhXCcfmR7ZVDUr9H+x4b9Pb8g==}
|
|
640
|
+
|
|
641
|
+
'@tanstack/history@1.81.6':
|
|
642
|
+
resolution: {integrity: sha512-ZbqZszXEU5dyNCjpo9hvXeJKUS+n4wlgpym+b2fIPSwV3yVLC3M34MVK5fmmUcrRFKpBT9vgInMNoL2OZ5U3XQ==}
|
|
643
|
+
engines: {node: '>=12'}
|
|
644
|
+
|
|
645
|
+
'@tanstack/react-router@1.81.6':
|
|
646
|
+
resolution: {integrity: sha512-Vl8CoWQTcf5+0MVeH6fuZYEOmSbIkQ7Q5oV9EuIejifBDlQStkGfeaGIguZ/3iXxZFpJ2kIgK4JzH966+xkK5g==}
|
|
647
|
+
engines: {node: '>=12'}
|
|
648
|
+
peerDependencies:
|
|
649
|
+
'@tanstack/router-generator': 1.81.6
|
|
650
|
+
react: '>=18'
|
|
651
|
+
react-dom: '>=18'
|
|
652
|
+
peerDependenciesMeta:
|
|
653
|
+
'@tanstack/router-generator':
|
|
654
|
+
optional: true
|
|
655
|
+
|
|
656
|
+
'@tanstack/react-store@0.5.6':
|
|
657
|
+
resolution: {integrity: sha512-SitIpS5jTj28DajjLpWbIX+YetmJL+6PRY0DKKiCGBKfYIqj3ryODQYF3jB3SNoR9ifUA/jFkqbJdBKFtWd+AQ==}
|
|
658
|
+
peerDependencies:
|
|
659
|
+
react: ^17.0.0 || ^18.0.0
|
|
660
|
+
react-dom: ^17.0.0 || ^18.0.0
|
|
661
|
+
|
|
662
|
+
'@tanstack/router-devtools@1.81.6':
|
|
663
|
+
resolution: {integrity: sha512-GzLSGgR32o+uhk5dPx3rNZRYllQY+06743Poyx+uB+/NF/L88YJxVKynG/D89q4t6ZbiCwv3Ys6pFVmVcSpkLA==}
|
|
664
|
+
engines: {node: '>=12'}
|
|
665
|
+
peerDependencies:
|
|
666
|
+
'@tanstack/react-router': ^1.81.6
|
|
667
|
+
react: '>=18'
|
|
668
|
+
react-dom: '>=18'
|
|
669
|
+
|
|
670
|
+
'@tanstack/router-generator@1.81.6':
|
|
671
|
+
resolution: {integrity: sha512-8UXYMQ3ADDdCY4X7gcOJRMz2hGPrCTfPzobzIkzRjCKPnJ6L3slWXjeJ3WCGp6vavE2zlKIGzLXNbjCigb6fig==}
|
|
672
|
+
engines: {node: '>=12'}
|
|
673
|
+
|
|
674
|
+
'@tanstack/router-plugin@1.81.6':
|
|
675
|
+
resolution: {integrity: sha512-QHTn5C2EyK8VgGJRgIKH5T0+W5Wqhi1bueLXKOyESdrsEK0ko95e8uizw4LEm7bqwl6SBtW+MSj8opNzJepY2w==}
|
|
676
|
+
engines: {node: '>=12'}
|
|
677
|
+
peerDependencies:
|
|
678
|
+
'@rsbuild/core': '>=1.0.2'
|
|
679
|
+
vite: '>=5.0.0'
|
|
680
|
+
webpack: '>=5.92.0'
|
|
681
|
+
peerDependenciesMeta:
|
|
682
|
+
'@rsbuild/core':
|
|
683
|
+
optional: true
|
|
684
|
+
vite:
|
|
685
|
+
optional: true
|
|
686
|
+
webpack:
|
|
687
|
+
optional: true
|
|
688
|
+
|
|
689
|
+
'@tanstack/store@0.5.5':
|
|
690
|
+
resolution: {integrity: sha512-EOSrgdDAJExbvRZEQ/Xhh9iZchXpMN+ga1Bnk8Nmygzs8TfiE6hbzThF+Pr2G19uHL6+DTDTHhJ8VQiOd7l4tA==}
|
|
691
|
+
|
|
692
|
+
'@tanstack/virtual-file-routes@1.81.6':
|
|
693
|
+
resolution: {integrity: sha512-HhVZ42j2ciER0tga+s7lsQ6bBvJ3vvMg72aHUy2vZunwR16NVCJysDEWBBR7ln3rZak5JWijGEDHoyT2XjsWjA==}
|
|
694
|
+
engines: {node: '>=12'}
|
|
695
|
+
|
|
696
|
+
'@types/babel__core@7.20.5':
|
|
697
|
+
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
|
698
|
+
|
|
699
|
+
'@types/babel__generator@7.6.8':
|
|
700
|
+
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
|
|
701
|
+
|
|
702
|
+
'@types/babel__template@7.4.4':
|
|
703
|
+
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
|
|
704
|
+
|
|
705
|
+
'@types/babel__traverse@7.20.6':
|
|
706
|
+
resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
|
|
707
|
+
|
|
708
|
+
'@types/estree@1.0.6':
|
|
709
|
+
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
|
|
710
|
+
|
|
711
|
+
'@types/node@22.9.0':
|
|
712
|
+
resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==}
|
|
713
|
+
|
|
714
|
+
'@types/prop-types@15.7.13':
|
|
715
|
+
resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
|
|
716
|
+
|
|
717
|
+
'@types/react-dom@18.3.1':
|
|
718
|
+
resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
|
|
719
|
+
|
|
720
|
+
'@types/react@18.3.12':
|
|
721
|
+
resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
|
|
722
|
+
|
|
723
|
+
'@vitejs/plugin-react@4.3.3':
|
|
724
|
+
resolution: {integrity: sha512-NooDe9GpHGqNns1i8XDERg0Vsg5SSYRhRxxyTGogUdkdNt47jal+fbuYi+Yfq6pzRCKXyoPcWisfxE6RIM3GKA==}
|
|
725
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
726
|
+
peerDependencies:
|
|
727
|
+
vite: ^4.2.0 || ^5.0.0
|
|
728
|
+
|
|
729
|
+
acorn@8.14.0:
|
|
730
|
+
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
|
|
731
|
+
engines: {node: '>=0.4.0'}
|
|
732
|
+
hasBin: true
|
|
733
|
+
|
|
734
|
+
anymatch@3.1.3:
|
|
735
|
+
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
|
736
|
+
engines: {node: '>= 8'}
|
|
737
|
+
|
|
738
|
+
babel-dead-code-elimination@1.0.6:
|
|
739
|
+
resolution: {integrity: sha512-JxFi9qyRJpN0LjEbbjbN8g0ux71Qppn9R8Qe3k6QzHg2CaKsbUQtbn307LQGiDLGjV6JCtEFqfxzVig9MyDCHQ==}
|
|
740
|
+
|
|
741
|
+
binary-extensions@2.3.0:
|
|
742
|
+
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
|
743
|
+
engines: {node: '>=8'}
|
|
744
|
+
|
|
745
|
+
braces@3.0.3:
|
|
746
|
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
747
|
+
engines: {node: '>=8'}
|
|
748
|
+
|
|
749
|
+
browserslist@4.24.2:
|
|
750
|
+
resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
|
|
751
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
752
|
+
hasBin: true
|
|
753
|
+
|
|
754
|
+
bundle-name@4.1.0:
|
|
755
|
+
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
|
|
756
|
+
engines: {node: '>=18'}
|
|
757
|
+
|
|
758
|
+
camelcase-css@2.0.1:
|
|
759
|
+
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
|
760
|
+
engines: {node: '>= 6'}
|
|
761
|
+
|
|
762
|
+
caniuse-lite@1.0.30001680:
|
|
763
|
+
resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==}
|
|
764
|
+
|
|
765
|
+
chokidar@3.6.0:
|
|
766
|
+
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
|
767
|
+
engines: {node: '>= 8.10.0'}
|
|
768
|
+
|
|
769
|
+
clsx@2.1.1:
|
|
770
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
771
|
+
engines: {node: '>=6'}
|
|
772
|
+
|
|
773
|
+
convert-source-map@2.0.0:
|
|
774
|
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
775
|
+
|
|
776
|
+
cssesc@3.0.0:
|
|
777
|
+
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
778
|
+
engines: {node: '>=4'}
|
|
779
|
+
hasBin: true
|
|
780
|
+
|
|
781
|
+
csstype@3.1.3:
|
|
782
|
+
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
|
783
|
+
|
|
784
|
+
debug@4.3.7:
|
|
785
|
+
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
|
|
786
|
+
engines: {node: '>=6.0'}
|
|
787
|
+
peerDependencies:
|
|
788
|
+
supports-color: '*'
|
|
789
|
+
peerDependenciesMeta:
|
|
790
|
+
supports-color:
|
|
791
|
+
optional: true
|
|
792
|
+
|
|
793
|
+
default-browser-id@5.0.0:
|
|
794
|
+
resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
|
|
795
|
+
engines: {node: '>=18'}
|
|
796
|
+
|
|
797
|
+
default-browser@5.2.1:
|
|
798
|
+
resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
|
|
799
|
+
engines: {node: '>=18'}
|
|
800
|
+
|
|
801
|
+
define-lazy-prop@3.0.0:
|
|
802
|
+
resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
|
|
803
|
+
engines: {node: '>=12'}
|
|
804
|
+
|
|
805
|
+
detect-node-es@1.1.0:
|
|
806
|
+
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
|
|
807
|
+
|
|
808
|
+
dom-helpers@5.2.1:
|
|
809
|
+
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
|
|
810
|
+
|
|
811
|
+
dotenv@16.4.5:
|
|
812
|
+
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
|
|
813
|
+
engines: {node: '>=12'}
|
|
814
|
+
|
|
815
|
+
electron-to-chromium@1.5.58:
|
|
816
|
+
resolution: {integrity: sha512-al2l4r+24ZFL7WzyPTlyD0fC33LLzvxqLCwurtBibVPghRGO9hSTl+tis8t1kD7biPiH/en4U0I7o/nQbYeoVA==}
|
|
817
|
+
|
|
818
|
+
esbuild@0.21.5:
|
|
819
|
+
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
|
820
|
+
engines: {node: '>=12'}
|
|
821
|
+
hasBin: true
|
|
822
|
+
|
|
823
|
+
esbuild@0.23.1:
|
|
824
|
+
resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
|
|
825
|
+
engines: {node: '>=18'}
|
|
826
|
+
hasBin: true
|
|
827
|
+
|
|
828
|
+
escalade@3.2.0:
|
|
829
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
830
|
+
engines: {node: '>=6'}
|
|
831
|
+
|
|
832
|
+
fast-glob@3.3.2:
|
|
833
|
+
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
|
|
834
|
+
engines: {node: '>=8.6.0'}
|
|
835
|
+
|
|
836
|
+
fastq@1.17.1:
|
|
837
|
+
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
|
|
838
|
+
|
|
839
|
+
fill-range@7.1.1:
|
|
840
|
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
841
|
+
engines: {node: '>=8'}
|
|
842
|
+
|
|
843
|
+
fsevents@2.3.3:
|
|
844
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
845
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
846
|
+
os: [darwin]
|
|
847
|
+
|
|
848
|
+
gensync@1.0.0-beta.2:
|
|
849
|
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
850
|
+
engines: {node: '>=6.9.0'}
|
|
851
|
+
|
|
852
|
+
get-nonce@1.0.1:
|
|
853
|
+
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
|
|
854
|
+
engines: {node: '>=6'}
|
|
855
|
+
|
|
856
|
+
get-tsconfig@4.8.1:
|
|
857
|
+
resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
|
|
858
|
+
|
|
859
|
+
glob-parent@5.1.2:
|
|
860
|
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
861
|
+
engines: {node: '>= 6'}
|
|
862
|
+
|
|
863
|
+
globals@11.12.0:
|
|
864
|
+
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
|
865
|
+
engines: {node: '>=4'}
|
|
866
|
+
|
|
867
|
+
goober@2.1.16:
|
|
868
|
+
resolution: {integrity: sha512-erjk19y1U33+XAMe1VTvIONHYoSqE4iS7BYUZfHaqeohLmnC0FdxEh7rQU+6MZ4OajItzjZFSRtVANrQwNq6/g==}
|
|
869
|
+
peerDependencies:
|
|
870
|
+
csstype: ^3.0.10
|
|
871
|
+
|
|
872
|
+
invariant@2.2.4:
|
|
873
|
+
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
|
|
874
|
+
|
|
875
|
+
is-binary-path@2.1.0:
|
|
876
|
+
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
|
877
|
+
engines: {node: '>=8'}
|
|
878
|
+
|
|
879
|
+
is-docker@3.0.0:
|
|
880
|
+
resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
|
|
881
|
+
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
882
|
+
hasBin: true
|
|
883
|
+
|
|
884
|
+
is-extglob@2.1.1:
|
|
885
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
886
|
+
engines: {node: '>=0.10.0'}
|
|
887
|
+
|
|
888
|
+
is-glob@4.0.3:
|
|
889
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
890
|
+
engines: {node: '>=0.10.0'}
|
|
891
|
+
|
|
892
|
+
is-inside-container@1.0.0:
|
|
893
|
+
resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
|
|
894
|
+
engines: {node: '>=14.16'}
|
|
895
|
+
hasBin: true
|
|
896
|
+
|
|
897
|
+
is-number@7.0.0:
|
|
898
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
899
|
+
engines: {node: '>=0.12.0'}
|
|
900
|
+
|
|
901
|
+
is-wsl@3.1.0:
|
|
902
|
+
resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
|
|
903
|
+
engines: {node: '>=16'}
|
|
904
|
+
|
|
905
|
+
js-tokens@4.0.0:
|
|
906
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
907
|
+
|
|
908
|
+
jsesc@3.0.2:
|
|
909
|
+
resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
|
|
910
|
+
engines: {node: '>=6'}
|
|
911
|
+
hasBin: true
|
|
912
|
+
|
|
913
|
+
json5@2.2.3:
|
|
914
|
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
915
|
+
engines: {node: '>=6'}
|
|
916
|
+
hasBin: true
|
|
917
|
+
|
|
918
|
+
loose-envify@1.4.0:
|
|
919
|
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
920
|
+
hasBin: true
|
|
921
|
+
|
|
922
|
+
lru-cache@5.1.1:
|
|
923
|
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
924
|
+
|
|
925
|
+
merge2@1.4.1:
|
|
926
|
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
927
|
+
engines: {node: '>= 8'}
|
|
928
|
+
|
|
929
|
+
micromatch@4.0.8:
|
|
930
|
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
931
|
+
engines: {node: '>=8.6'}
|
|
932
|
+
|
|
933
|
+
ms@2.1.3:
|
|
934
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
935
|
+
|
|
936
|
+
nanoid@3.3.7:
|
|
937
|
+
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
|
|
938
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
939
|
+
hasBin: true
|
|
940
|
+
|
|
941
|
+
node-releases@2.0.18:
|
|
942
|
+
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
|
|
943
|
+
|
|
944
|
+
normalize-path@3.0.0:
|
|
945
|
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
|
946
|
+
engines: {node: '>=0.10.0'}
|
|
947
|
+
|
|
948
|
+
object-assign@4.1.1:
|
|
949
|
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
|
950
|
+
engines: {node: '>=0.10.0'}
|
|
951
|
+
|
|
952
|
+
open@10.1.0:
|
|
953
|
+
resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
|
|
954
|
+
engines: {node: '>=18'}
|
|
955
|
+
|
|
956
|
+
picocolors@1.1.1:
|
|
957
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
958
|
+
|
|
959
|
+
picomatch@2.3.1:
|
|
960
|
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
961
|
+
engines: {node: '>=8.6'}
|
|
962
|
+
|
|
963
|
+
postcss-js@4.0.1:
|
|
964
|
+
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
|
|
965
|
+
engines: {node: ^12 || ^14 || >= 16}
|
|
966
|
+
peerDependencies:
|
|
967
|
+
postcss: ^8.4.21
|
|
968
|
+
|
|
969
|
+
postcss-mixins@9.0.4:
|
|
970
|
+
resolution: {integrity: sha512-XVq5jwQJDRu5M1XGkdpgASqLk37OqkH4JCFDXl/Dn7janOJjCTEKL+36cnRVy7bMtoBzALfO7bV7nTIsFnUWLA==}
|
|
971
|
+
engines: {node: '>=14.0'}
|
|
972
|
+
peerDependencies:
|
|
973
|
+
postcss: ^8.2.14
|
|
974
|
+
|
|
975
|
+
postcss-nested@6.2.0:
|
|
976
|
+
resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
|
|
977
|
+
engines: {node: '>=12.0'}
|
|
978
|
+
peerDependencies:
|
|
979
|
+
postcss: ^8.2.14
|
|
980
|
+
|
|
981
|
+
postcss-preset-mantine@1.17.0:
|
|
982
|
+
resolution: {integrity: sha512-ji1PMDBUf2Vsx/HE5faMSs1+ff6qE6YRulTr4Ja+6HD3gop8rSMTCYdpN7KrdsEg079kfBKkO/PaKhG9uR0zwQ==}
|
|
983
|
+
peerDependencies:
|
|
984
|
+
postcss: '>=8.0.0'
|
|
985
|
+
|
|
986
|
+
postcss-selector-parser@6.1.2:
|
|
987
|
+
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
|
|
988
|
+
engines: {node: '>=4'}
|
|
989
|
+
|
|
990
|
+
postcss-simple-vars@7.0.1:
|
|
991
|
+
resolution: {integrity: sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==}
|
|
992
|
+
engines: {node: '>=14.0'}
|
|
993
|
+
peerDependencies:
|
|
994
|
+
postcss: ^8.2.1
|
|
995
|
+
|
|
996
|
+
postcss@8.4.49:
|
|
997
|
+
resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
|
|
998
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
999
|
+
|
|
1000
|
+
prettier@3.3.3:
|
|
1001
|
+
resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
|
|
1002
|
+
engines: {node: '>=14'}
|
|
1003
|
+
hasBin: true
|
|
1004
|
+
|
|
1005
|
+
prop-types@15.8.1:
|
|
1006
|
+
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
|
|
1007
|
+
|
|
1008
|
+
queue-microtask@1.2.3:
|
|
1009
|
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
1010
|
+
|
|
1011
|
+
react-dom@18.3.1:
|
|
1012
|
+
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
|
|
1013
|
+
peerDependencies:
|
|
1014
|
+
react: ^18.3.1
|
|
1015
|
+
|
|
1016
|
+
react-is@16.13.1:
|
|
1017
|
+
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
|
|
1018
|
+
|
|
1019
|
+
react-number-format@5.4.2:
|
|
1020
|
+
resolution: {integrity: sha512-cg//jVdS49PYDgmcYoBnMMHl4XNTMuV723ZnHD2aXYtWWWqbVF3hjQ8iB+UZEuXapLbeA8P8H+1o6ZB1lcw3vg==}
|
|
1021
|
+
peerDependencies:
|
|
1022
|
+
react: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
1023
|
+
react-dom: ^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
|
|
1024
|
+
|
|
1025
|
+
react-refresh@0.14.2:
|
|
1026
|
+
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
|
|
1027
|
+
engines: {node: '>=0.10.0'}
|
|
1028
|
+
|
|
1029
|
+
react-remove-scroll-bar@2.3.6:
|
|
1030
|
+
resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
|
|
1031
|
+
engines: {node: '>=10'}
|
|
1032
|
+
peerDependencies:
|
|
1033
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1034
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1035
|
+
peerDependenciesMeta:
|
|
1036
|
+
'@types/react':
|
|
1037
|
+
optional: true
|
|
1038
|
+
|
|
1039
|
+
react-remove-scroll@2.6.0:
|
|
1040
|
+
resolution: {integrity: sha512-I2U4JVEsQenxDAKaVa3VZ/JeJZe0/2DxPWL8Tj8yLKctQJQiZM52pn/GWFpSp8dftjM3pSAHVJZscAnC/y+ySQ==}
|
|
1041
|
+
engines: {node: '>=10'}
|
|
1042
|
+
peerDependencies:
|
|
1043
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1044
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1045
|
+
peerDependenciesMeta:
|
|
1046
|
+
'@types/react':
|
|
1047
|
+
optional: true
|
|
1048
|
+
|
|
1049
|
+
react-style-singleton@2.2.1:
|
|
1050
|
+
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
|
|
1051
|
+
engines: {node: '>=10'}
|
|
1052
|
+
peerDependencies:
|
|
1053
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1054
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1055
|
+
peerDependenciesMeta:
|
|
1056
|
+
'@types/react':
|
|
1057
|
+
optional: true
|
|
1058
|
+
|
|
1059
|
+
react-textarea-autosize@8.5.4:
|
|
1060
|
+
resolution: {integrity: sha512-eSSjVtRLcLfFwFcariT77t9hcbVJHQV76b51QjQGarQIHml2+gM2lms0n3XrhnDmgK5B+/Z7TmQk5OHNzqYm/A==}
|
|
1061
|
+
engines: {node: '>=10'}
|
|
1062
|
+
peerDependencies:
|
|
1063
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1064
|
+
|
|
1065
|
+
react-transition-group@4.4.5:
|
|
1066
|
+
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
|
|
1067
|
+
peerDependencies:
|
|
1068
|
+
react: '>=16.6.0'
|
|
1069
|
+
react-dom: '>=16.6.0'
|
|
1070
|
+
|
|
1071
|
+
react@18.3.1:
|
|
1072
|
+
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
|
1073
|
+
engines: {node: '>=0.10.0'}
|
|
1074
|
+
|
|
1075
|
+
readdirp@3.6.0:
|
|
1076
|
+
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
|
1077
|
+
engines: {node: '>=8.10.0'}
|
|
1078
|
+
|
|
1079
|
+
regenerator-runtime@0.14.1:
|
|
1080
|
+
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
|
|
1081
|
+
|
|
1082
|
+
resolve-pkg-maps@1.0.0:
|
|
1083
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1084
|
+
|
|
1085
|
+
reusify@1.0.4:
|
|
1086
|
+
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
|
1087
|
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
1088
|
+
|
|
1089
|
+
rollup@4.26.0:
|
|
1090
|
+
resolution: {integrity: sha512-ilcl12hnWonG8f+NxU6BlgysVA0gvY2l8N0R84S1HcINbW20bvwuCngJkkInV6LXhwRpucsW5k1ovDwEdBVrNg==}
|
|
1091
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1092
|
+
hasBin: true
|
|
1093
|
+
|
|
1094
|
+
run-applescript@7.0.0:
|
|
1095
|
+
resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
|
|
1096
|
+
engines: {node: '>=18'}
|
|
1097
|
+
|
|
1098
|
+
run-parallel@1.2.0:
|
|
1099
|
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
1100
|
+
|
|
1101
|
+
scheduler@0.23.2:
|
|
1102
|
+
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
|
|
1103
|
+
|
|
1104
|
+
semver@6.3.1:
|
|
1105
|
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
1106
|
+
hasBin: true
|
|
1107
|
+
|
|
1108
|
+
source-map-js@1.2.1:
|
|
1109
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1110
|
+
engines: {node: '>=0.10.0'}
|
|
1111
|
+
|
|
1112
|
+
sugarss@4.0.1:
|
|
1113
|
+
resolution: {integrity: sha512-WCjS5NfuVJjkQzK10s8WOBY+hhDxxNt/N6ZaGwxFZ+wN3/lKKFSaaKUNecULcTTvE4urLcKaZFQD8vO0mOZujw==}
|
|
1114
|
+
engines: {node: '>=12.0'}
|
|
1115
|
+
peerDependencies:
|
|
1116
|
+
postcss: ^8.3.3
|
|
1117
|
+
|
|
1118
|
+
tabbable@6.2.0:
|
|
1119
|
+
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
|
|
1120
|
+
|
|
1121
|
+
tiny-invariant@1.3.3:
|
|
1122
|
+
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
|
|
1123
|
+
|
|
1124
|
+
tiny-warning@1.0.3:
|
|
1125
|
+
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
|
|
1126
|
+
|
|
1127
|
+
to-regex-range@5.0.1:
|
|
1128
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1129
|
+
engines: {node: '>=8.0'}
|
|
1130
|
+
|
|
1131
|
+
tslib@2.8.1:
|
|
1132
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1133
|
+
|
|
1134
|
+
tsx@4.19.2:
|
|
1135
|
+
resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
|
|
1136
|
+
engines: {node: '>=18.0.0'}
|
|
1137
|
+
hasBin: true
|
|
1138
|
+
|
|
1139
|
+
type-fest@4.26.1:
|
|
1140
|
+
resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
|
|
1141
|
+
engines: {node: '>=16'}
|
|
1142
|
+
|
|
1143
|
+
undici-types@6.19.8:
|
|
1144
|
+
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
|
|
1145
|
+
|
|
1146
|
+
unplugin@1.16.0:
|
|
1147
|
+
resolution: {integrity: sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==}
|
|
1148
|
+
engines: {node: '>=14.0.0'}
|
|
1149
|
+
|
|
1150
|
+
update-browserslist-db@1.1.1:
|
|
1151
|
+
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
|
|
1152
|
+
hasBin: true
|
|
1153
|
+
peerDependencies:
|
|
1154
|
+
browserslist: '>= 4.21.0'
|
|
1155
|
+
|
|
1156
|
+
use-callback-ref@1.3.2:
|
|
1157
|
+
resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==}
|
|
1158
|
+
engines: {node: '>=10'}
|
|
1159
|
+
peerDependencies:
|
|
1160
|
+
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1161
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1162
|
+
peerDependenciesMeta:
|
|
1163
|
+
'@types/react':
|
|
1164
|
+
optional: true
|
|
1165
|
+
|
|
1166
|
+
use-composed-ref@1.3.0:
|
|
1167
|
+
resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
|
|
1168
|
+
peerDependencies:
|
|
1169
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1170
|
+
|
|
1171
|
+
use-isomorphic-layout-effect@1.1.2:
|
|
1172
|
+
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
|
|
1173
|
+
peerDependencies:
|
|
1174
|
+
'@types/react': '*'
|
|
1175
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1176
|
+
peerDependenciesMeta:
|
|
1177
|
+
'@types/react':
|
|
1178
|
+
optional: true
|
|
1179
|
+
|
|
1180
|
+
use-latest@1.2.1:
|
|
1181
|
+
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
|
|
1182
|
+
peerDependencies:
|
|
1183
|
+
'@types/react': '*'
|
|
1184
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1185
|
+
peerDependenciesMeta:
|
|
1186
|
+
'@types/react':
|
|
1187
|
+
optional: true
|
|
1188
|
+
|
|
1189
|
+
use-sidecar@1.1.2:
|
|
1190
|
+
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
|
|
1191
|
+
engines: {node: '>=10'}
|
|
1192
|
+
peerDependencies:
|
|
1193
|
+
'@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
|
|
1194
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1195
|
+
peerDependenciesMeta:
|
|
1196
|
+
'@types/react':
|
|
1197
|
+
optional: true
|
|
1198
|
+
|
|
1199
|
+
use-sync-external-store@1.2.2:
|
|
1200
|
+
resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
|
|
1201
|
+
peerDependencies:
|
|
1202
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
|
1203
|
+
|
|
1204
|
+
util-deprecate@1.0.2:
|
|
1205
|
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
1206
|
+
|
|
1207
|
+
vite-plugin-singlefile@2.0.3:
|
|
1208
|
+
resolution: {integrity: sha512-OEBEwdX8nCGPSdtaB1D7rryYnT+YfPTS8ojL1TDyeUF+bWDCTfRriQqw6T0vl9EbKI/KMg7szN3awst6cLrKkA==}
|
|
1209
|
+
engines: {node: '>18.0.0'}
|
|
1210
|
+
peerDependencies:
|
|
1211
|
+
rollup: ^4.24.3
|
|
1212
|
+
vite: ^5.4.10
|
|
1213
|
+
|
|
1214
|
+
vite@5.4.11:
|
|
1215
|
+
resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
|
|
1216
|
+
engines: {node: ^18.0.0 || >=20.0.0}
|
|
1217
|
+
hasBin: true
|
|
1218
|
+
peerDependencies:
|
|
1219
|
+
'@types/node': ^18.0.0 || >=20.0.0
|
|
1220
|
+
less: '*'
|
|
1221
|
+
lightningcss: ^1.21.0
|
|
1222
|
+
sass: '*'
|
|
1223
|
+
sass-embedded: '*'
|
|
1224
|
+
stylus: '*'
|
|
1225
|
+
sugarss: '*'
|
|
1226
|
+
terser: ^5.4.0
|
|
1227
|
+
peerDependenciesMeta:
|
|
1228
|
+
'@types/node':
|
|
1229
|
+
optional: true
|
|
1230
|
+
less:
|
|
1231
|
+
optional: true
|
|
1232
|
+
lightningcss:
|
|
1233
|
+
optional: true
|
|
1234
|
+
sass:
|
|
1235
|
+
optional: true
|
|
1236
|
+
sass-embedded:
|
|
1237
|
+
optional: true
|
|
1238
|
+
stylus:
|
|
1239
|
+
optional: true
|
|
1240
|
+
sugarss:
|
|
1241
|
+
optional: true
|
|
1242
|
+
terser:
|
|
1243
|
+
optional: true
|
|
1244
|
+
|
|
1245
|
+
webpack-virtual-modules@0.6.2:
|
|
1246
|
+
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
|
|
1247
|
+
|
|
1248
|
+
yallist@3.1.1:
|
|
1249
|
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
1250
|
+
|
|
1251
|
+
zod@3.23.8:
|
|
1252
|
+
resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
|
|
1253
|
+
|
|
1254
|
+
snapshots:
|
|
1255
|
+
|
|
1256
|
+
'@ampproject/remapping@2.3.0':
|
|
1257
|
+
dependencies:
|
|
1258
|
+
'@jridgewell/gen-mapping': 0.3.5
|
|
1259
|
+
'@jridgewell/trace-mapping': 0.3.25
|
|
1260
|
+
|
|
1261
|
+
'@babel/code-frame@7.26.2':
|
|
1262
|
+
dependencies:
|
|
1263
|
+
'@babel/helper-validator-identifier': 7.25.9
|
|
1264
|
+
js-tokens: 4.0.0
|
|
1265
|
+
picocolors: 1.1.1
|
|
1266
|
+
|
|
1267
|
+
'@babel/compat-data@7.26.2': {}
|
|
1268
|
+
|
|
1269
|
+
'@babel/core@7.26.0':
|
|
1270
|
+
dependencies:
|
|
1271
|
+
'@ampproject/remapping': 2.3.0
|
|
1272
|
+
'@babel/code-frame': 7.26.2
|
|
1273
|
+
'@babel/generator': 7.26.2
|
|
1274
|
+
'@babel/helper-compilation-targets': 7.25.9
|
|
1275
|
+
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
|
|
1276
|
+
'@babel/helpers': 7.26.0
|
|
1277
|
+
'@babel/parser': 7.26.2
|
|
1278
|
+
'@babel/template': 7.25.9
|
|
1279
|
+
'@babel/traverse': 7.25.9
|
|
1280
|
+
'@babel/types': 7.26.0
|
|
1281
|
+
convert-source-map: 2.0.0
|
|
1282
|
+
debug: 4.3.7
|
|
1283
|
+
gensync: 1.0.0-beta.2
|
|
1284
|
+
json5: 2.2.3
|
|
1285
|
+
semver: 6.3.1
|
|
1286
|
+
transitivePeerDependencies:
|
|
1287
|
+
- supports-color
|
|
1288
|
+
|
|
1289
|
+
'@babel/generator@7.26.2':
|
|
1290
|
+
dependencies:
|
|
1291
|
+
'@babel/parser': 7.26.2
|
|
1292
|
+
'@babel/types': 7.26.0
|
|
1293
|
+
'@jridgewell/gen-mapping': 0.3.5
|
|
1294
|
+
'@jridgewell/trace-mapping': 0.3.25
|
|
1295
|
+
jsesc: 3.0.2
|
|
1296
|
+
|
|
1297
|
+
'@babel/helper-compilation-targets@7.25.9':
|
|
1298
|
+
dependencies:
|
|
1299
|
+
'@babel/compat-data': 7.26.2
|
|
1300
|
+
'@babel/helper-validator-option': 7.25.9
|
|
1301
|
+
browserslist: 4.24.2
|
|
1302
|
+
lru-cache: 5.1.1
|
|
1303
|
+
semver: 6.3.1
|
|
1304
|
+
|
|
1305
|
+
'@babel/helper-module-imports@7.25.9':
|
|
1306
|
+
dependencies:
|
|
1307
|
+
'@babel/traverse': 7.25.9
|
|
1308
|
+
'@babel/types': 7.26.0
|
|
1309
|
+
transitivePeerDependencies:
|
|
1310
|
+
- supports-color
|
|
1311
|
+
|
|
1312
|
+
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
|
|
1313
|
+
dependencies:
|
|
1314
|
+
'@babel/core': 7.26.0
|
|
1315
|
+
'@babel/helper-module-imports': 7.25.9
|
|
1316
|
+
'@babel/helper-validator-identifier': 7.25.9
|
|
1317
|
+
'@babel/traverse': 7.25.9
|
|
1318
|
+
transitivePeerDependencies:
|
|
1319
|
+
- supports-color
|
|
1320
|
+
|
|
1321
|
+
'@babel/helper-plugin-utils@7.25.9': {}
|
|
1322
|
+
|
|
1323
|
+
'@babel/helper-string-parser@7.25.9': {}
|
|
1324
|
+
|
|
1325
|
+
'@babel/helper-validator-identifier@7.25.9': {}
|
|
1326
|
+
|
|
1327
|
+
'@babel/helper-validator-option@7.25.9': {}
|
|
1328
|
+
|
|
1329
|
+
'@babel/helpers@7.26.0':
|
|
1330
|
+
dependencies:
|
|
1331
|
+
'@babel/template': 7.25.9
|
|
1332
|
+
'@babel/types': 7.26.0
|
|
1333
|
+
|
|
1334
|
+
'@babel/parser@7.26.2':
|
|
1335
|
+
dependencies:
|
|
1336
|
+
'@babel/types': 7.26.0
|
|
1337
|
+
|
|
1338
|
+
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
|
|
1339
|
+
dependencies:
|
|
1340
|
+
'@babel/core': 7.26.0
|
|
1341
|
+
'@babel/helper-plugin-utils': 7.25.9
|
|
1342
|
+
|
|
1343
|
+
'@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
|
|
1344
|
+
dependencies:
|
|
1345
|
+
'@babel/core': 7.26.0
|
|
1346
|
+
'@babel/helper-plugin-utils': 7.25.9
|
|
1347
|
+
|
|
1348
|
+
'@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
|
|
1349
|
+
dependencies:
|
|
1350
|
+
'@babel/core': 7.26.0
|
|
1351
|
+
'@babel/helper-plugin-utils': 7.25.9
|
|
1352
|
+
|
|
1353
|
+
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
|
|
1354
|
+
dependencies:
|
|
1355
|
+
'@babel/core': 7.26.0
|
|
1356
|
+
'@babel/helper-plugin-utils': 7.25.9
|
|
1357
|
+
|
|
1358
|
+
'@babel/runtime@7.26.0':
|
|
1359
|
+
dependencies:
|
|
1360
|
+
regenerator-runtime: 0.14.1
|
|
1361
|
+
|
|
1362
|
+
'@babel/template@7.25.9':
|
|
1363
|
+
dependencies:
|
|
1364
|
+
'@babel/code-frame': 7.26.2
|
|
1365
|
+
'@babel/parser': 7.26.2
|
|
1366
|
+
'@babel/types': 7.26.0
|
|
1367
|
+
|
|
1368
|
+
'@babel/traverse@7.25.9':
|
|
1369
|
+
dependencies:
|
|
1370
|
+
'@babel/code-frame': 7.26.2
|
|
1371
|
+
'@babel/generator': 7.26.2
|
|
1372
|
+
'@babel/parser': 7.26.2
|
|
1373
|
+
'@babel/template': 7.25.9
|
|
1374
|
+
'@babel/types': 7.26.0
|
|
1375
|
+
debug: 4.3.7
|
|
1376
|
+
globals: 11.12.0
|
|
1377
|
+
transitivePeerDependencies:
|
|
1378
|
+
- supports-color
|
|
1379
|
+
|
|
1380
|
+
'@babel/types@7.26.0':
|
|
1381
|
+
dependencies:
|
|
1382
|
+
'@babel/helper-string-parser': 7.25.9
|
|
1383
|
+
'@babel/helper-validator-identifier': 7.25.9
|
|
1384
|
+
|
|
1385
|
+
'@esbuild/aix-ppc64@0.21.5':
|
|
1386
|
+
optional: true
|
|
1387
|
+
|
|
1388
|
+
'@esbuild/aix-ppc64@0.23.1':
|
|
1389
|
+
optional: true
|
|
1390
|
+
|
|
1391
|
+
'@esbuild/android-arm64@0.21.5':
|
|
1392
|
+
optional: true
|
|
1393
|
+
|
|
1394
|
+
'@esbuild/android-arm64@0.23.1':
|
|
1395
|
+
optional: true
|
|
1396
|
+
|
|
1397
|
+
'@esbuild/android-arm@0.21.5':
|
|
1398
|
+
optional: true
|
|
1399
|
+
|
|
1400
|
+
'@esbuild/android-arm@0.23.1':
|
|
1401
|
+
optional: true
|
|
1402
|
+
|
|
1403
|
+
'@esbuild/android-x64@0.21.5':
|
|
1404
|
+
optional: true
|
|
1405
|
+
|
|
1406
|
+
'@esbuild/android-x64@0.23.1':
|
|
1407
|
+
optional: true
|
|
1408
|
+
|
|
1409
|
+
'@esbuild/darwin-arm64@0.21.5':
|
|
1410
|
+
optional: true
|
|
1411
|
+
|
|
1412
|
+
'@esbuild/darwin-arm64@0.23.1':
|
|
1413
|
+
optional: true
|
|
1414
|
+
|
|
1415
|
+
'@esbuild/darwin-x64@0.21.5':
|
|
1416
|
+
optional: true
|
|
1417
|
+
|
|
1418
|
+
'@esbuild/darwin-x64@0.23.1':
|
|
1419
|
+
optional: true
|
|
1420
|
+
|
|
1421
|
+
'@esbuild/freebsd-arm64@0.21.5':
|
|
1422
|
+
optional: true
|
|
1423
|
+
|
|
1424
|
+
'@esbuild/freebsd-arm64@0.23.1':
|
|
1425
|
+
optional: true
|
|
1426
|
+
|
|
1427
|
+
'@esbuild/freebsd-x64@0.21.5':
|
|
1428
|
+
optional: true
|
|
1429
|
+
|
|
1430
|
+
'@esbuild/freebsd-x64@0.23.1':
|
|
1431
|
+
optional: true
|
|
1432
|
+
|
|
1433
|
+
'@esbuild/linux-arm64@0.21.5':
|
|
1434
|
+
optional: true
|
|
1435
|
+
|
|
1436
|
+
'@esbuild/linux-arm64@0.23.1':
|
|
1437
|
+
optional: true
|
|
1438
|
+
|
|
1439
|
+
'@esbuild/linux-arm@0.21.5':
|
|
1440
|
+
optional: true
|
|
1441
|
+
|
|
1442
|
+
'@esbuild/linux-arm@0.23.1':
|
|
1443
|
+
optional: true
|
|
1444
|
+
|
|
1445
|
+
'@esbuild/linux-ia32@0.21.5':
|
|
1446
|
+
optional: true
|
|
1447
|
+
|
|
1448
|
+
'@esbuild/linux-ia32@0.23.1':
|
|
1449
|
+
optional: true
|
|
1450
|
+
|
|
1451
|
+
'@esbuild/linux-loong64@0.21.5':
|
|
1452
|
+
optional: true
|
|
1453
|
+
|
|
1454
|
+
'@esbuild/linux-loong64@0.23.1':
|
|
1455
|
+
optional: true
|
|
1456
|
+
|
|
1457
|
+
'@esbuild/linux-mips64el@0.21.5':
|
|
1458
|
+
optional: true
|
|
1459
|
+
|
|
1460
|
+
'@esbuild/linux-mips64el@0.23.1':
|
|
1461
|
+
optional: true
|
|
1462
|
+
|
|
1463
|
+
'@esbuild/linux-ppc64@0.21.5':
|
|
1464
|
+
optional: true
|
|
1465
|
+
|
|
1466
|
+
'@esbuild/linux-ppc64@0.23.1':
|
|
1467
|
+
optional: true
|
|
1468
|
+
|
|
1469
|
+
'@esbuild/linux-riscv64@0.21.5':
|
|
1470
|
+
optional: true
|
|
1471
|
+
|
|
1472
|
+
'@esbuild/linux-riscv64@0.23.1':
|
|
1473
|
+
optional: true
|
|
1474
|
+
|
|
1475
|
+
'@esbuild/linux-s390x@0.21.5':
|
|
1476
|
+
optional: true
|
|
1477
|
+
|
|
1478
|
+
'@esbuild/linux-s390x@0.23.1':
|
|
1479
|
+
optional: true
|
|
1480
|
+
|
|
1481
|
+
'@esbuild/linux-x64@0.21.5':
|
|
1482
|
+
optional: true
|
|
1483
|
+
|
|
1484
|
+
'@esbuild/linux-x64@0.23.1':
|
|
1485
|
+
optional: true
|
|
1486
|
+
|
|
1487
|
+
'@esbuild/netbsd-x64@0.21.5':
|
|
1488
|
+
optional: true
|
|
1489
|
+
|
|
1490
|
+
'@esbuild/netbsd-x64@0.23.1':
|
|
1491
|
+
optional: true
|
|
1492
|
+
|
|
1493
|
+
'@esbuild/openbsd-arm64@0.23.1':
|
|
1494
|
+
optional: true
|
|
1495
|
+
|
|
1496
|
+
'@esbuild/openbsd-x64@0.21.5':
|
|
1497
|
+
optional: true
|
|
1498
|
+
|
|
1499
|
+
'@esbuild/openbsd-x64@0.23.1':
|
|
1500
|
+
optional: true
|
|
1501
|
+
|
|
1502
|
+
'@esbuild/sunos-x64@0.21.5':
|
|
1503
|
+
optional: true
|
|
1504
|
+
|
|
1505
|
+
'@esbuild/sunos-x64@0.23.1':
|
|
1506
|
+
optional: true
|
|
1507
|
+
|
|
1508
|
+
'@esbuild/win32-arm64@0.21.5':
|
|
1509
|
+
optional: true
|
|
1510
|
+
|
|
1511
|
+
'@esbuild/win32-arm64@0.23.1':
|
|
1512
|
+
optional: true
|
|
1513
|
+
|
|
1514
|
+
'@esbuild/win32-ia32@0.21.5':
|
|
1515
|
+
optional: true
|
|
1516
|
+
|
|
1517
|
+
'@esbuild/win32-ia32@0.23.1':
|
|
1518
|
+
optional: true
|
|
1519
|
+
|
|
1520
|
+
'@esbuild/win32-x64@0.21.5':
|
|
1521
|
+
optional: true
|
|
1522
|
+
|
|
1523
|
+
'@esbuild/win32-x64@0.23.1':
|
|
1524
|
+
optional: true
|
|
1525
|
+
|
|
1526
|
+
'@floating-ui/core@1.6.8':
|
|
1527
|
+
dependencies:
|
|
1528
|
+
'@floating-ui/utils': 0.2.8
|
|
1529
|
+
|
|
1530
|
+
'@floating-ui/dom@1.6.12':
|
|
1531
|
+
dependencies:
|
|
1532
|
+
'@floating-ui/core': 1.6.8
|
|
1533
|
+
'@floating-ui/utils': 0.2.8
|
|
1534
|
+
|
|
1535
|
+
'@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1536
|
+
dependencies:
|
|
1537
|
+
'@floating-ui/dom': 1.6.12
|
|
1538
|
+
react: 18.3.1
|
|
1539
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1540
|
+
|
|
1541
|
+
'@floating-ui/react@0.26.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1542
|
+
dependencies:
|
|
1543
|
+
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1544
|
+
'@floating-ui/utils': 0.2.8
|
|
1545
|
+
react: 18.3.1
|
|
1546
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1547
|
+
tabbable: 6.2.0
|
|
1548
|
+
|
|
1549
|
+
'@floating-ui/utils@0.2.8': {}
|
|
1550
|
+
|
|
1551
|
+
'@jridgewell/gen-mapping@0.3.5':
|
|
1552
|
+
dependencies:
|
|
1553
|
+
'@jridgewell/set-array': 1.2.1
|
|
1554
|
+
'@jridgewell/sourcemap-codec': 1.5.0
|
|
1555
|
+
'@jridgewell/trace-mapping': 0.3.25
|
|
1556
|
+
|
|
1557
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
1558
|
+
|
|
1559
|
+
'@jridgewell/set-array@1.2.1': {}
|
|
1560
|
+
|
|
1561
|
+
'@jridgewell/sourcemap-codec@1.5.0': {}
|
|
1562
|
+
|
|
1563
|
+
'@jridgewell/trace-mapping@0.3.25':
|
|
1564
|
+
dependencies:
|
|
1565
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
1566
|
+
'@jridgewell/sourcemap-codec': 1.5.0
|
|
1567
|
+
|
|
1568
|
+
'@mantine/core@7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1569
|
+
dependencies:
|
|
1570
|
+
'@floating-ui/react': 0.26.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1571
|
+
'@mantine/hooks': 7.14.0(react@18.3.1)
|
|
1572
|
+
clsx: 2.1.1
|
|
1573
|
+
react: 18.3.1
|
|
1574
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1575
|
+
react-number-format: 5.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1576
|
+
react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1)
|
|
1577
|
+
react-textarea-autosize: 8.5.4(@types/react@18.3.12)(react@18.3.1)
|
|
1578
|
+
type-fest: 4.26.1
|
|
1579
|
+
transitivePeerDependencies:
|
|
1580
|
+
- '@types/react'
|
|
1581
|
+
|
|
1582
|
+
'@mantine/hooks@7.14.0(react@18.3.1)':
|
|
1583
|
+
dependencies:
|
|
1584
|
+
react: 18.3.1
|
|
1585
|
+
|
|
1586
|
+
'@mantine/modals@7.14.0(@mantine/core@7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.14.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1587
|
+
dependencies:
|
|
1588
|
+
'@mantine/core': 7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1589
|
+
'@mantine/hooks': 7.14.0(react@18.3.1)
|
|
1590
|
+
react: 18.3.1
|
|
1591
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1592
|
+
|
|
1593
|
+
'@mantine/notifications@7.14.0(@mantine/core@7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.14.0(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1594
|
+
dependencies:
|
|
1595
|
+
'@mantine/core': 7.14.0(@mantine/hooks@7.14.0(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1596
|
+
'@mantine/hooks': 7.14.0(react@18.3.1)
|
|
1597
|
+
'@mantine/store': 7.14.0(react@18.3.1)
|
|
1598
|
+
react: 18.3.1
|
|
1599
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1600
|
+
react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1601
|
+
|
|
1602
|
+
'@mantine/store@7.14.0(react@18.3.1)':
|
|
1603
|
+
dependencies:
|
|
1604
|
+
react: 18.3.1
|
|
1605
|
+
|
|
1606
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
1607
|
+
dependencies:
|
|
1608
|
+
'@nodelib/fs.stat': 2.0.5
|
|
1609
|
+
run-parallel: 1.2.0
|
|
1610
|
+
|
|
1611
|
+
'@nodelib/fs.stat@2.0.5': {}
|
|
1612
|
+
|
|
1613
|
+
'@nodelib/fs.walk@1.2.8':
|
|
1614
|
+
dependencies:
|
|
1615
|
+
'@nodelib/fs.scandir': 2.1.5
|
|
1616
|
+
fastq: 1.17.1
|
|
1617
|
+
|
|
1618
|
+
'@rollup/rollup-android-arm-eabi@4.26.0':
|
|
1619
|
+
optional: true
|
|
1620
|
+
|
|
1621
|
+
'@rollup/rollup-android-arm64@4.26.0':
|
|
1622
|
+
optional: true
|
|
1623
|
+
|
|
1624
|
+
'@rollup/rollup-darwin-arm64@4.26.0':
|
|
1625
|
+
optional: true
|
|
1626
|
+
|
|
1627
|
+
'@rollup/rollup-darwin-x64@4.26.0':
|
|
1628
|
+
optional: true
|
|
1629
|
+
|
|
1630
|
+
'@rollup/rollup-freebsd-arm64@4.26.0':
|
|
1631
|
+
optional: true
|
|
1632
|
+
|
|
1633
|
+
'@rollup/rollup-freebsd-x64@4.26.0':
|
|
1634
|
+
optional: true
|
|
1635
|
+
|
|
1636
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.26.0':
|
|
1637
|
+
optional: true
|
|
1638
|
+
|
|
1639
|
+
'@rollup/rollup-linux-arm-musleabihf@4.26.0':
|
|
1640
|
+
optional: true
|
|
1641
|
+
|
|
1642
|
+
'@rollup/rollup-linux-arm64-gnu@4.26.0':
|
|
1643
|
+
optional: true
|
|
1644
|
+
|
|
1645
|
+
'@rollup/rollup-linux-arm64-musl@4.26.0':
|
|
1646
|
+
optional: true
|
|
1647
|
+
|
|
1648
|
+
'@rollup/rollup-linux-powerpc64le-gnu@4.26.0':
|
|
1649
|
+
optional: true
|
|
1650
|
+
|
|
1651
|
+
'@rollup/rollup-linux-riscv64-gnu@4.26.0':
|
|
1652
|
+
optional: true
|
|
1653
|
+
|
|
1654
|
+
'@rollup/rollup-linux-s390x-gnu@4.26.0':
|
|
1655
|
+
optional: true
|
|
1656
|
+
|
|
1657
|
+
'@rollup/rollup-linux-x64-gnu@4.26.0':
|
|
1658
|
+
optional: true
|
|
1659
|
+
|
|
1660
|
+
'@rollup/rollup-linux-x64-musl@4.26.0':
|
|
1661
|
+
optional: true
|
|
1662
|
+
|
|
1663
|
+
'@rollup/rollup-win32-arm64-msvc@4.26.0':
|
|
1664
|
+
optional: true
|
|
1665
|
+
|
|
1666
|
+
'@rollup/rollup-win32-ia32-msvc@4.26.0':
|
|
1667
|
+
optional: true
|
|
1668
|
+
|
|
1669
|
+
'@rollup/rollup-win32-x64-msvc@4.26.0':
|
|
1670
|
+
optional: true
|
|
1671
|
+
|
|
1672
|
+
'@tabler/icons-react@3.22.0(react@18.3.1)':
|
|
1673
|
+
dependencies:
|
|
1674
|
+
'@tabler/icons': 3.22.0
|
|
1675
|
+
react: 18.3.1
|
|
1676
|
+
|
|
1677
|
+
'@tabler/icons@3.22.0': {}
|
|
1678
|
+
|
|
1679
|
+
'@tanstack/history@1.81.6': {}
|
|
1680
|
+
|
|
1681
|
+
'@tanstack/react-router@1.81.6(@tanstack/router-generator@1.81.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1682
|
+
dependencies:
|
|
1683
|
+
'@tanstack/history': 1.81.6
|
|
1684
|
+
'@tanstack/react-store': 0.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1685
|
+
jsesc: 3.0.2
|
|
1686
|
+
react: 18.3.1
|
|
1687
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1688
|
+
tiny-invariant: 1.3.3
|
|
1689
|
+
tiny-warning: 1.0.3
|
|
1690
|
+
optionalDependencies:
|
|
1691
|
+
'@tanstack/router-generator': 1.81.6
|
|
1692
|
+
|
|
1693
|
+
'@tanstack/react-store@0.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1694
|
+
dependencies:
|
|
1695
|
+
'@tanstack/store': 0.5.5
|
|
1696
|
+
react: 18.3.1
|
|
1697
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1698
|
+
use-sync-external-store: 1.2.2(react@18.3.1)
|
|
1699
|
+
|
|
1700
|
+
'@tanstack/router-devtools@1.81.6(@tanstack/react-router@1.81.6(@tanstack/router-generator@1.81.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
|
|
1701
|
+
dependencies:
|
|
1702
|
+
'@tanstack/react-router': 1.81.6(@tanstack/router-generator@1.81.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
|
|
1703
|
+
clsx: 2.1.1
|
|
1704
|
+
goober: 2.1.16(csstype@3.1.3)
|
|
1705
|
+
react: 18.3.1
|
|
1706
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
1707
|
+
transitivePeerDependencies:
|
|
1708
|
+
- csstype
|
|
1709
|
+
|
|
1710
|
+
'@tanstack/router-generator@1.81.6':
|
|
1711
|
+
dependencies:
|
|
1712
|
+
'@tanstack/virtual-file-routes': 1.81.6
|
|
1713
|
+
prettier: 3.3.3
|
|
1714
|
+
tsx: 4.19.2
|
|
1715
|
+
zod: 3.23.8
|
|
1716
|
+
|
|
1717
|
+
'@tanstack/router-plugin@1.81.6(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))':
|
|
1718
|
+
dependencies:
|
|
1719
|
+
'@babel/core': 7.26.0
|
|
1720
|
+
'@babel/generator': 7.26.2
|
|
1721
|
+
'@babel/parser': 7.26.2
|
|
1722
|
+
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
|
|
1723
|
+
'@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
|
|
1724
|
+
'@babel/template': 7.25.9
|
|
1725
|
+
'@babel/traverse': 7.25.9
|
|
1726
|
+
'@babel/types': 7.26.0
|
|
1727
|
+
'@tanstack/router-generator': 1.81.6
|
|
1728
|
+
'@tanstack/virtual-file-routes': 1.81.6
|
|
1729
|
+
'@types/babel__core': 7.20.5
|
|
1730
|
+
'@types/babel__generator': 7.6.8
|
|
1731
|
+
'@types/babel__template': 7.4.4
|
|
1732
|
+
'@types/babel__traverse': 7.20.6
|
|
1733
|
+
babel-dead-code-elimination: 1.0.6
|
|
1734
|
+
chokidar: 3.6.0
|
|
1735
|
+
unplugin: 1.16.0
|
|
1736
|
+
zod: 3.23.8
|
|
1737
|
+
optionalDependencies:
|
|
1738
|
+
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
|
|
1739
|
+
transitivePeerDependencies:
|
|
1740
|
+
- supports-color
|
|
1741
|
+
|
|
1742
|
+
'@tanstack/store@0.5.5': {}
|
|
1743
|
+
|
|
1744
|
+
'@tanstack/virtual-file-routes@1.81.6': {}
|
|
1745
|
+
|
|
1746
|
+
'@types/babel__core@7.20.5':
|
|
1747
|
+
dependencies:
|
|
1748
|
+
'@babel/parser': 7.26.2
|
|
1749
|
+
'@babel/types': 7.26.0
|
|
1750
|
+
'@types/babel__generator': 7.6.8
|
|
1751
|
+
'@types/babel__template': 7.4.4
|
|
1752
|
+
'@types/babel__traverse': 7.20.6
|
|
1753
|
+
|
|
1754
|
+
'@types/babel__generator@7.6.8':
|
|
1755
|
+
dependencies:
|
|
1756
|
+
'@babel/types': 7.26.0
|
|
1757
|
+
|
|
1758
|
+
'@types/babel__template@7.4.4':
|
|
1759
|
+
dependencies:
|
|
1760
|
+
'@babel/parser': 7.26.2
|
|
1761
|
+
'@babel/types': 7.26.0
|
|
1762
|
+
|
|
1763
|
+
'@types/babel__traverse@7.20.6':
|
|
1764
|
+
dependencies:
|
|
1765
|
+
'@babel/types': 7.26.0
|
|
1766
|
+
|
|
1767
|
+
'@types/estree@1.0.6': {}
|
|
1768
|
+
|
|
1769
|
+
'@types/node@22.9.0':
|
|
1770
|
+
dependencies:
|
|
1771
|
+
undici-types: 6.19.8
|
|
1772
|
+
|
|
1773
|
+
'@types/prop-types@15.7.13': {}
|
|
1774
|
+
|
|
1775
|
+
'@types/react-dom@18.3.1':
|
|
1776
|
+
dependencies:
|
|
1777
|
+
'@types/react': 18.3.12
|
|
1778
|
+
|
|
1779
|
+
'@types/react@18.3.12':
|
|
1780
|
+
dependencies:
|
|
1781
|
+
'@types/prop-types': 15.7.13
|
|
1782
|
+
csstype: 3.1.3
|
|
1783
|
+
|
|
1784
|
+
'@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))':
|
|
1785
|
+
dependencies:
|
|
1786
|
+
'@babel/core': 7.26.0
|
|
1787
|
+
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
|
|
1788
|
+
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
|
|
1789
|
+
'@types/babel__core': 7.20.5
|
|
1790
|
+
react-refresh: 0.14.2
|
|
1791
|
+
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
|
|
1792
|
+
transitivePeerDependencies:
|
|
1793
|
+
- supports-color
|
|
1794
|
+
|
|
1795
|
+
acorn@8.14.0: {}
|
|
1796
|
+
|
|
1797
|
+
anymatch@3.1.3:
|
|
1798
|
+
dependencies:
|
|
1799
|
+
normalize-path: 3.0.0
|
|
1800
|
+
picomatch: 2.3.1
|
|
1801
|
+
|
|
1802
|
+
babel-dead-code-elimination@1.0.6:
|
|
1803
|
+
dependencies:
|
|
1804
|
+
'@babel/core': 7.26.0
|
|
1805
|
+
'@babel/parser': 7.26.2
|
|
1806
|
+
'@babel/traverse': 7.25.9
|
|
1807
|
+
'@babel/types': 7.26.0
|
|
1808
|
+
transitivePeerDependencies:
|
|
1809
|
+
- supports-color
|
|
1810
|
+
|
|
1811
|
+
binary-extensions@2.3.0: {}
|
|
1812
|
+
|
|
1813
|
+
braces@3.0.3:
|
|
1814
|
+
dependencies:
|
|
1815
|
+
fill-range: 7.1.1
|
|
1816
|
+
|
|
1817
|
+
browserslist@4.24.2:
|
|
1818
|
+
dependencies:
|
|
1819
|
+
caniuse-lite: 1.0.30001680
|
|
1820
|
+
electron-to-chromium: 1.5.58
|
|
1821
|
+
node-releases: 2.0.18
|
|
1822
|
+
update-browserslist-db: 1.1.1(browserslist@4.24.2)
|
|
1823
|
+
|
|
1824
|
+
bundle-name@4.1.0:
|
|
1825
|
+
dependencies:
|
|
1826
|
+
run-applescript: 7.0.0
|
|
1827
|
+
|
|
1828
|
+
camelcase-css@2.0.1: {}
|
|
1829
|
+
|
|
1830
|
+
caniuse-lite@1.0.30001680: {}
|
|
1831
|
+
|
|
1832
|
+
chokidar@3.6.0:
|
|
1833
|
+
dependencies:
|
|
1834
|
+
anymatch: 3.1.3
|
|
1835
|
+
braces: 3.0.3
|
|
1836
|
+
glob-parent: 5.1.2
|
|
1837
|
+
is-binary-path: 2.1.0
|
|
1838
|
+
is-glob: 4.0.3
|
|
1839
|
+
normalize-path: 3.0.0
|
|
1840
|
+
readdirp: 3.6.0
|
|
1841
|
+
optionalDependencies:
|
|
1842
|
+
fsevents: 2.3.3
|
|
1843
|
+
|
|
1844
|
+
clsx@2.1.1: {}
|
|
1845
|
+
|
|
1846
|
+
convert-source-map@2.0.0: {}
|
|
1847
|
+
|
|
1848
|
+
cssesc@3.0.0: {}
|
|
1849
|
+
|
|
1850
|
+
csstype@3.1.3: {}
|
|
1851
|
+
|
|
1852
|
+
debug@4.3.7:
|
|
1853
|
+
dependencies:
|
|
1854
|
+
ms: 2.1.3
|
|
1855
|
+
|
|
1856
|
+
default-browser-id@5.0.0: {}
|
|
1857
|
+
|
|
1858
|
+
default-browser@5.2.1:
|
|
1859
|
+
dependencies:
|
|
1860
|
+
bundle-name: 4.1.0
|
|
1861
|
+
default-browser-id: 5.0.0
|
|
1862
|
+
|
|
1863
|
+
define-lazy-prop@3.0.0: {}
|
|
1864
|
+
|
|
1865
|
+
detect-node-es@1.1.0: {}
|
|
1866
|
+
|
|
1867
|
+
dom-helpers@5.2.1:
|
|
1868
|
+
dependencies:
|
|
1869
|
+
'@babel/runtime': 7.26.0
|
|
1870
|
+
csstype: 3.1.3
|
|
1871
|
+
|
|
1872
|
+
dotenv@16.4.5: {}
|
|
1873
|
+
|
|
1874
|
+
electron-to-chromium@1.5.58: {}
|
|
1875
|
+
|
|
1876
|
+
esbuild@0.21.5:
|
|
1877
|
+
optionalDependencies:
|
|
1878
|
+
'@esbuild/aix-ppc64': 0.21.5
|
|
1879
|
+
'@esbuild/android-arm': 0.21.5
|
|
1880
|
+
'@esbuild/android-arm64': 0.21.5
|
|
1881
|
+
'@esbuild/android-x64': 0.21.5
|
|
1882
|
+
'@esbuild/darwin-arm64': 0.21.5
|
|
1883
|
+
'@esbuild/darwin-x64': 0.21.5
|
|
1884
|
+
'@esbuild/freebsd-arm64': 0.21.5
|
|
1885
|
+
'@esbuild/freebsd-x64': 0.21.5
|
|
1886
|
+
'@esbuild/linux-arm': 0.21.5
|
|
1887
|
+
'@esbuild/linux-arm64': 0.21.5
|
|
1888
|
+
'@esbuild/linux-ia32': 0.21.5
|
|
1889
|
+
'@esbuild/linux-loong64': 0.21.5
|
|
1890
|
+
'@esbuild/linux-mips64el': 0.21.5
|
|
1891
|
+
'@esbuild/linux-ppc64': 0.21.5
|
|
1892
|
+
'@esbuild/linux-riscv64': 0.21.5
|
|
1893
|
+
'@esbuild/linux-s390x': 0.21.5
|
|
1894
|
+
'@esbuild/linux-x64': 0.21.5
|
|
1895
|
+
'@esbuild/netbsd-x64': 0.21.5
|
|
1896
|
+
'@esbuild/openbsd-x64': 0.21.5
|
|
1897
|
+
'@esbuild/sunos-x64': 0.21.5
|
|
1898
|
+
'@esbuild/win32-arm64': 0.21.5
|
|
1899
|
+
'@esbuild/win32-ia32': 0.21.5
|
|
1900
|
+
'@esbuild/win32-x64': 0.21.5
|
|
1901
|
+
|
|
1902
|
+
esbuild@0.23.1:
|
|
1903
|
+
optionalDependencies:
|
|
1904
|
+
'@esbuild/aix-ppc64': 0.23.1
|
|
1905
|
+
'@esbuild/android-arm': 0.23.1
|
|
1906
|
+
'@esbuild/android-arm64': 0.23.1
|
|
1907
|
+
'@esbuild/android-x64': 0.23.1
|
|
1908
|
+
'@esbuild/darwin-arm64': 0.23.1
|
|
1909
|
+
'@esbuild/darwin-x64': 0.23.1
|
|
1910
|
+
'@esbuild/freebsd-arm64': 0.23.1
|
|
1911
|
+
'@esbuild/freebsd-x64': 0.23.1
|
|
1912
|
+
'@esbuild/linux-arm': 0.23.1
|
|
1913
|
+
'@esbuild/linux-arm64': 0.23.1
|
|
1914
|
+
'@esbuild/linux-ia32': 0.23.1
|
|
1915
|
+
'@esbuild/linux-loong64': 0.23.1
|
|
1916
|
+
'@esbuild/linux-mips64el': 0.23.1
|
|
1917
|
+
'@esbuild/linux-ppc64': 0.23.1
|
|
1918
|
+
'@esbuild/linux-riscv64': 0.23.1
|
|
1919
|
+
'@esbuild/linux-s390x': 0.23.1
|
|
1920
|
+
'@esbuild/linux-x64': 0.23.1
|
|
1921
|
+
'@esbuild/netbsd-x64': 0.23.1
|
|
1922
|
+
'@esbuild/openbsd-arm64': 0.23.1
|
|
1923
|
+
'@esbuild/openbsd-x64': 0.23.1
|
|
1924
|
+
'@esbuild/sunos-x64': 0.23.1
|
|
1925
|
+
'@esbuild/win32-arm64': 0.23.1
|
|
1926
|
+
'@esbuild/win32-ia32': 0.23.1
|
|
1927
|
+
'@esbuild/win32-x64': 0.23.1
|
|
1928
|
+
|
|
1929
|
+
escalade@3.2.0: {}
|
|
1930
|
+
|
|
1931
|
+
fast-glob@3.3.2:
|
|
1932
|
+
dependencies:
|
|
1933
|
+
'@nodelib/fs.stat': 2.0.5
|
|
1934
|
+
'@nodelib/fs.walk': 1.2.8
|
|
1935
|
+
glob-parent: 5.1.2
|
|
1936
|
+
merge2: 1.4.1
|
|
1937
|
+
micromatch: 4.0.8
|
|
1938
|
+
|
|
1939
|
+
fastq@1.17.1:
|
|
1940
|
+
dependencies:
|
|
1941
|
+
reusify: 1.0.4
|
|
1942
|
+
|
|
1943
|
+
fill-range@7.1.1:
|
|
1944
|
+
dependencies:
|
|
1945
|
+
to-regex-range: 5.0.1
|
|
1946
|
+
|
|
1947
|
+
fsevents@2.3.3:
|
|
1948
|
+
optional: true
|
|
1949
|
+
|
|
1950
|
+
gensync@1.0.0-beta.2: {}
|
|
1951
|
+
|
|
1952
|
+
get-nonce@1.0.1: {}
|
|
1953
|
+
|
|
1954
|
+
get-tsconfig@4.8.1:
|
|
1955
|
+
dependencies:
|
|
1956
|
+
resolve-pkg-maps: 1.0.0
|
|
1957
|
+
|
|
1958
|
+
glob-parent@5.1.2:
|
|
1959
|
+
dependencies:
|
|
1960
|
+
is-glob: 4.0.3
|
|
1961
|
+
|
|
1962
|
+
globals@11.12.0: {}
|
|
1963
|
+
|
|
1964
|
+
goober@2.1.16(csstype@3.1.3):
|
|
1965
|
+
dependencies:
|
|
1966
|
+
csstype: 3.1.3
|
|
1967
|
+
|
|
1968
|
+
invariant@2.2.4:
|
|
1969
|
+
dependencies:
|
|
1970
|
+
loose-envify: 1.4.0
|
|
1971
|
+
|
|
1972
|
+
is-binary-path@2.1.0:
|
|
1973
|
+
dependencies:
|
|
1974
|
+
binary-extensions: 2.3.0
|
|
1975
|
+
|
|
1976
|
+
is-docker@3.0.0: {}
|
|
1977
|
+
|
|
1978
|
+
is-extglob@2.1.1: {}
|
|
1979
|
+
|
|
1980
|
+
is-glob@4.0.3:
|
|
1981
|
+
dependencies:
|
|
1982
|
+
is-extglob: 2.1.1
|
|
1983
|
+
|
|
1984
|
+
is-inside-container@1.0.0:
|
|
1985
|
+
dependencies:
|
|
1986
|
+
is-docker: 3.0.0
|
|
1987
|
+
|
|
1988
|
+
is-number@7.0.0: {}
|
|
1989
|
+
|
|
1990
|
+
is-wsl@3.1.0:
|
|
1991
|
+
dependencies:
|
|
1992
|
+
is-inside-container: 1.0.0
|
|
1993
|
+
|
|
1994
|
+
js-tokens@4.0.0: {}
|
|
1995
|
+
|
|
1996
|
+
jsesc@3.0.2: {}
|
|
1997
|
+
|
|
1998
|
+
json5@2.2.3: {}
|
|
1999
|
+
|
|
2000
|
+
loose-envify@1.4.0:
|
|
2001
|
+
dependencies:
|
|
2002
|
+
js-tokens: 4.0.0
|
|
2003
|
+
|
|
2004
|
+
lru-cache@5.1.1:
|
|
2005
|
+
dependencies:
|
|
2006
|
+
yallist: 3.1.1
|
|
2007
|
+
|
|
2008
|
+
merge2@1.4.1: {}
|
|
2009
|
+
|
|
2010
|
+
micromatch@4.0.8:
|
|
2011
|
+
dependencies:
|
|
2012
|
+
braces: 3.0.3
|
|
2013
|
+
picomatch: 2.3.1
|
|
2014
|
+
|
|
2015
|
+
ms@2.1.3: {}
|
|
2016
|
+
|
|
2017
|
+
nanoid@3.3.7: {}
|
|
2018
|
+
|
|
2019
|
+
node-releases@2.0.18: {}
|
|
2020
|
+
|
|
2021
|
+
normalize-path@3.0.0: {}
|
|
2022
|
+
|
|
2023
|
+
object-assign@4.1.1: {}
|
|
2024
|
+
|
|
2025
|
+
open@10.1.0:
|
|
2026
|
+
dependencies:
|
|
2027
|
+
default-browser: 5.2.1
|
|
2028
|
+
define-lazy-prop: 3.0.0
|
|
2029
|
+
is-inside-container: 1.0.0
|
|
2030
|
+
is-wsl: 3.1.0
|
|
2031
|
+
|
|
2032
|
+
picocolors@1.1.1: {}
|
|
2033
|
+
|
|
2034
|
+
picomatch@2.3.1: {}
|
|
2035
|
+
|
|
2036
|
+
postcss-js@4.0.1(postcss@8.4.49):
|
|
2037
|
+
dependencies:
|
|
2038
|
+
camelcase-css: 2.0.1
|
|
2039
|
+
postcss: 8.4.49
|
|
2040
|
+
|
|
2041
|
+
postcss-mixins@9.0.4(postcss@8.4.49):
|
|
2042
|
+
dependencies:
|
|
2043
|
+
fast-glob: 3.3.2
|
|
2044
|
+
postcss: 8.4.49
|
|
2045
|
+
postcss-js: 4.0.1(postcss@8.4.49)
|
|
2046
|
+
postcss-simple-vars: 7.0.1(postcss@8.4.49)
|
|
2047
|
+
sugarss: 4.0.1(postcss@8.4.49)
|
|
2048
|
+
|
|
2049
|
+
postcss-nested@6.2.0(postcss@8.4.49):
|
|
2050
|
+
dependencies:
|
|
2051
|
+
postcss: 8.4.49
|
|
2052
|
+
postcss-selector-parser: 6.1.2
|
|
2053
|
+
|
|
2054
|
+
postcss-preset-mantine@1.17.0(postcss@8.4.49):
|
|
2055
|
+
dependencies:
|
|
2056
|
+
postcss: 8.4.49
|
|
2057
|
+
postcss-mixins: 9.0.4(postcss@8.4.49)
|
|
2058
|
+
postcss-nested: 6.2.0(postcss@8.4.49)
|
|
2059
|
+
|
|
2060
|
+
postcss-selector-parser@6.1.2:
|
|
2061
|
+
dependencies:
|
|
2062
|
+
cssesc: 3.0.0
|
|
2063
|
+
util-deprecate: 1.0.2
|
|
2064
|
+
|
|
2065
|
+
postcss-simple-vars@7.0.1(postcss@8.4.49):
|
|
2066
|
+
dependencies:
|
|
2067
|
+
postcss: 8.4.49
|
|
2068
|
+
|
|
2069
|
+
postcss@8.4.49:
|
|
2070
|
+
dependencies:
|
|
2071
|
+
nanoid: 3.3.7
|
|
2072
|
+
picocolors: 1.1.1
|
|
2073
|
+
source-map-js: 1.2.1
|
|
2074
|
+
|
|
2075
|
+
prettier@3.3.3: {}
|
|
2076
|
+
|
|
2077
|
+
prop-types@15.8.1:
|
|
2078
|
+
dependencies:
|
|
2079
|
+
loose-envify: 1.4.0
|
|
2080
|
+
object-assign: 4.1.1
|
|
2081
|
+
react-is: 16.13.1
|
|
2082
|
+
|
|
2083
|
+
queue-microtask@1.2.3: {}
|
|
2084
|
+
|
|
2085
|
+
react-dom@18.3.1(react@18.3.1):
|
|
2086
|
+
dependencies:
|
|
2087
|
+
loose-envify: 1.4.0
|
|
2088
|
+
react: 18.3.1
|
|
2089
|
+
scheduler: 0.23.2
|
|
2090
|
+
|
|
2091
|
+
react-is@16.13.1: {}
|
|
2092
|
+
|
|
2093
|
+
react-number-format@5.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
|
2094
|
+
dependencies:
|
|
2095
|
+
react: 18.3.1
|
|
2096
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2097
|
+
|
|
2098
|
+
react-refresh@0.14.2: {}
|
|
2099
|
+
|
|
2100
|
+
react-remove-scroll-bar@2.3.6(@types/react@18.3.12)(react@18.3.1):
|
|
2101
|
+
dependencies:
|
|
2102
|
+
react: 18.3.1
|
|
2103
|
+
react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1)
|
|
2104
|
+
tslib: 2.8.1
|
|
2105
|
+
optionalDependencies:
|
|
2106
|
+
'@types/react': 18.3.12
|
|
2107
|
+
|
|
2108
|
+
react-remove-scroll@2.6.0(@types/react@18.3.12)(react@18.3.1):
|
|
2109
|
+
dependencies:
|
|
2110
|
+
react: 18.3.1
|
|
2111
|
+
react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@18.3.1)
|
|
2112
|
+
react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1)
|
|
2113
|
+
tslib: 2.8.1
|
|
2114
|
+
use-callback-ref: 1.3.2(@types/react@18.3.12)(react@18.3.1)
|
|
2115
|
+
use-sidecar: 1.1.2(@types/react@18.3.12)(react@18.3.1)
|
|
2116
|
+
optionalDependencies:
|
|
2117
|
+
'@types/react': 18.3.12
|
|
2118
|
+
|
|
2119
|
+
react-style-singleton@2.2.1(@types/react@18.3.12)(react@18.3.1):
|
|
2120
|
+
dependencies:
|
|
2121
|
+
get-nonce: 1.0.1
|
|
2122
|
+
invariant: 2.2.4
|
|
2123
|
+
react: 18.3.1
|
|
2124
|
+
tslib: 2.8.1
|
|
2125
|
+
optionalDependencies:
|
|
2126
|
+
'@types/react': 18.3.12
|
|
2127
|
+
|
|
2128
|
+
react-textarea-autosize@8.5.4(@types/react@18.3.12)(react@18.3.1):
|
|
2129
|
+
dependencies:
|
|
2130
|
+
'@babel/runtime': 7.26.0
|
|
2131
|
+
react: 18.3.1
|
|
2132
|
+
use-composed-ref: 1.3.0(react@18.3.1)
|
|
2133
|
+
use-latest: 1.2.1(@types/react@18.3.12)(react@18.3.1)
|
|
2134
|
+
transitivePeerDependencies:
|
|
2135
|
+
- '@types/react'
|
|
2136
|
+
|
|
2137
|
+
react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
|
|
2138
|
+
dependencies:
|
|
2139
|
+
'@babel/runtime': 7.26.0
|
|
2140
|
+
dom-helpers: 5.2.1
|
|
2141
|
+
loose-envify: 1.4.0
|
|
2142
|
+
prop-types: 15.8.1
|
|
2143
|
+
react: 18.3.1
|
|
2144
|
+
react-dom: 18.3.1(react@18.3.1)
|
|
2145
|
+
|
|
2146
|
+
react@18.3.1:
|
|
2147
|
+
dependencies:
|
|
2148
|
+
loose-envify: 1.4.0
|
|
2149
|
+
|
|
2150
|
+
readdirp@3.6.0:
|
|
2151
|
+
dependencies:
|
|
2152
|
+
picomatch: 2.3.1
|
|
2153
|
+
|
|
2154
|
+
regenerator-runtime@0.14.1: {}
|
|
2155
|
+
|
|
2156
|
+
resolve-pkg-maps@1.0.0: {}
|
|
2157
|
+
|
|
2158
|
+
reusify@1.0.4: {}
|
|
2159
|
+
|
|
2160
|
+
rollup@4.26.0:
|
|
2161
|
+
dependencies:
|
|
2162
|
+
'@types/estree': 1.0.6
|
|
2163
|
+
optionalDependencies:
|
|
2164
|
+
'@rollup/rollup-android-arm-eabi': 4.26.0
|
|
2165
|
+
'@rollup/rollup-android-arm64': 4.26.0
|
|
2166
|
+
'@rollup/rollup-darwin-arm64': 4.26.0
|
|
2167
|
+
'@rollup/rollup-darwin-x64': 4.26.0
|
|
2168
|
+
'@rollup/rollup-freebsd-arm64': 4.26.0
|
|
2169
|
+
'@rollup/rollup-freebsd-x64': 4.26.0
|
|
2170
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.26.0
|
|
2171
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.26.0
|
|
2172
|
+
'@rollup/rollup-linux-arm64-gnu': 4.26.0
|
|
2173
|
+
'@rollup/rollup-linux-arm64-musl': 4.26.0
|
|
2174
|
+
'@rollup/rollup-linux-powerpc64le-gnu': 4.26.0
|
|
2175
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.26.0
|
|
2176
|
+
'@rollup/rollup-linux-s390x-gnu': 4.26.0
|
|
2177
|
+
'@rollup/rollup-linux-x64-gnu': 4.26.0
|
|
2178
|
+
'@rollup/rollup-linux-x64-musl': 4.26.0
|
|
2179
|
+
'@rollup/rollup-win32-arm64-msvc': 4.26.0
|
|
2180
|
+
'@rollup/rollup-win32-ia32-msvc': 4.26.0
|
|
2181
|
+
'@rollup/rollup-win32-x64-msvc': 4.26.0
|
|
2182
|
+
fsevents: 2.3.3
|
|
2183
|
+
|
|
2184
|
+
run-applescript@7.0.0: {}
|
|
2185
|
+
|
|
2186
|
+
run-parallel@1.2.0:
|
|
2187
|
+
dependencies:
|
|
2188
|
+
queue-microtask: 1.2.3
|
|
2189
|
+
|
|
2190
|
+
scheduler@0.23.2:
|
|
2191
|
+
dependencies:
|
|
2192
|
+
loose-envify: 1.4.0
|
|
2193
|
+
|
|
2194
|
+
semver@6.3.1: {}
|
|
2195
|
+
|
|
2196
|
+
source-map-js@1.2.1: {}
|
|
2197
|
+
|
|
2198
|
+
sugarss@4.0.1(postcss@8.4.49):
|
|
2199
|
+
dependencies:
|
|
2200
|
+
postcss: 8.4.49
|
|
2201
|
+
|
|
2202
|
+
tabbable@6.2.0: {}
|
|
2203
|
+
|
|
2204
|
+
tiny-invariant@1.3.3: {}
|
|
2205
|
+
|
|
2206
|
+
tiny-warning@1.0.3: {}
|
|
2207
|
+
|
|
2208
|
+
to-regex-range@5.0.1:
|
|
2209
|
+
dependencies:
|
|
2210
|
+
is-number: 7.0.0
|
|
2211
|
+
|
|
2212
|
+
tslib@2.8.1: {}
|
|
2213
|
+
|
|
2214
|
+
tsx@4.19.2:
|
|
2215
|
+
dependencies:
|
|
2216
|
+
esbuild: 0.23.1
|
|
2217
|
+
get-tsconfig: 4.8.1
|
|
2218
|
+
optionalDependencies:
|
|
2219
|
+
fsevents: 2.3.3
|
|
2220
|
+
|
|
2221
|
+
type-fest@4.26.1: {}
|
|
2222
|
+
|
|
2223
|
+
undici-types@6.19.8: {}
|
|
2224
|
+
|
|
2225
|
+
unplugin@1.16.0:
|
|
2226
|
+
dependencies:
|
|
2227
|
+
acorn: 8.14.0
|
|
2228
|
+
webpack-virtual-modules: 0.6.2
|
|
2229
|
+
|
|
2230
|
+
update-browserslist-db@1.1.1(browserslist@4.24.2):
|
|
2231
|
+
dependencies:
|
|
2232
|
+
browserslist: 4.24.2
|
|
2233
|
+
escalade: 3.2.0
|
|
2234
|
+
picocolors: 1.1.1
|
|
2235
|
+
|
|
2236
|
+
use-callback-ref@1.3.2(@types/react@18.3.12)(react@18.3.1):
|
|
2237
|
+
dependencies:
|
|
2238
|
+
react: 18.3.1
|
|
2239
|
+
tslib: 2.8.1
|
|
2240
|
+
optionalDependencies:
|
|
2241
|
+
'@types/react': 18.3.12
|
|
2242
|
+
|
|
2243
|
+
use-composed-ref@1.3.0(react@18.3.1):
|
|
2244
|
+
dependencies:
|
|
2245
|
+
react: 18.3.1
|
|
2246
|
+
|
|
2247
|
+
use-isomorphic-layout-effect@1.1.2(@types/react@18.3.12)(react@18.3.1):
|
|
2248
|
+
dependencies:
|
|
2249
|
+
react: 18.3.1
|
|
2250
|
+
optionalDependencies:
|
|
2251
|
+
'@types/react': 18.3.12
|
|
2252
|
+
|
|
2253
|
+
use-latest@1.2.1(@types/react@18.3.12)(react@18.3.1):
|
|
2254
|
+
dependencies:
|
|
2255
|
+
react: 18.3.1
|
|
2256
|
+
use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.12)(react@18.3.1)
|
|
2257
|
+
optionalDependencies:
|
|
2258
|
+
'@types/react': 18.3.12
|
|
2259
|
+
|
|
2260
|
+
use-sidecar@1.1.2(@types/react@18.3.12)(react@18.3.1):
|
|
2261
|
+
dependencies:
|
|
2262
|
+
detect-node-es: 1.1.0
|
|
2263
|
+
react: 18.3.1
|
|
2264
|
+
tslib: 2.8.1
|
|
2265
|
+
optionalDependencies:
|
|
2266
|
+
'@types/react': 18.3.12
|
|
2267
|
+
|
|
2268
|
+
use-sync-external-store@1.2.2(react@18.3.1):
|
|
2269
|
+
dependencies:
|
|
2270
|
+
react: 18.3.1
|
|
2271
|
+
|
|
2272
|
+
util-deprecate@1.0.2: {}
|
|
2273
|
+
|
|
2274
|
+
vite-plugin-singlefile@2.0.3(rollup@4.26.0)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))):
|
|
2275
|
+
dependencies:
|
|
2276
|
+
micromatch: 4.0.8
|
|
2277
|
+
rollup: 4.26.0
|
|
2278
|
+
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
|
|
2279
|
+
|
|
2280
|
+
vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)):
|
|
2281
|
+
dependencies:
|
|
2282
|
+
esbuild: 0.21.5
|
|
2283
|
+
postcss: 8.4.49
|
|
2284
|
+
rollup: 4.26.0
|
|
2285
|
+
optionalDependencies:
|
|
2286
|
+
'@types/node': 22.9.0
|
|
2287
|
+
fsevents: 2.3.3
|
|
2288
|
+
sugarss: 4.0.1(postcss@8.4.49)
|
|
2289
|
+
|
|
2290
|
+
webpack-virtual-modules@0.6.2: {}
|
|
2291
|
+
|
|
2292
|
+
yallist@3.1.1: {}
|
|
2293
|
+
|
|
2294
|
+
zod@3.23.8: {}
|