package-installer-cli 2.3.0 → 2.4.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.
- checksums.yaml +4 -4
- data/bundle-standalone/cli-with-packages.js +568 -369
- data/bundle-standalone/template.json +87 -14
- data/bundle-standalone/templates/c++_c/crow/template/CMakeLists.txt +18 -0
- data/bundle-standalone/templates/c++_c/crow/template/README.md +11 -0
- data/bundle-standalone/templates/c++_c/crow/template/include/routes.hpp +19 -0
- data/bundle-standalone/templates/c++_c/crow/template/main.cpp +12 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/README.md +36 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/eslint.config.mjs +16 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/middleware.ts +18 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/next.config.ts +7 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/package.json +28 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/pnpm-lock.yaml +3819 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/postcss.config.mjs +5 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/file.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/globe.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/next.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/vercel.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/public/window.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/favicon.ico +0 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/globals.css +26 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/layout.tsx +34 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/app/page.tsx +33 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/src/lib/auth0.ts +3 -0
- data/bundle-standalone/templates/combination-templates/nextjs-auth0-shadcn/tsconfig.json +27 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/README.md +36 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/components.json +21 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/eslint.config.mjs +16 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/middleware.ts +12 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/next.config.ts +7 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/package.json +37 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/pnpm-lock.yaml +4113 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/postcss.config.mjs +5 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/file.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/globe.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/next.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/vercel.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/public/window.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/favicon.ico +0 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/globals.css +122 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/layout.tsx +55 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/app/page.tsx +10 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/button.tsx +59 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/card.tsx +92 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/input.tsx +21 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/components/ui/textarea.tsx +18 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/lib/utils.ts +6 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/src/middleware.ts +12 -0
- data/bundle-standalone/templates/combination-templates/nextjs-clerk-shadcn/tsconfig.json +27 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/README.md +36 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/eslint.config.mjs +16 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/middleware.ts +0 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/next.config.ts +7 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/package.json +28 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/pnpm-lock.yaml +3862 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/postcss.config.mjs +5 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/file.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/globe.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/next.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/vercel.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/public/window.svg +1 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/api/auth/[...nextauth]/route.ts +6 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/favicon.ico +0 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/globals.css +26 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/layout.tsx +39 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/app/page.tsx +10 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/lib/auth-provider.tsx +7 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/src/lib/auth.ts +126 -0
- data/bundle-standalone/templates/combination-templates/nextjs-next-auth-shadcn/tsconfig.json +27 -0
- data/bundle-standalone/templates/game/unity/template/README.md +3 -0
- data/bundle-standalone/templates/game/unity/template/Scripts/PlayerController.cs +25 -0
- data/bundle-standalone/templates/game/unreal/template/README.md +3 -0
- data/bundle-standalone/templates/game/unreal/template/Source/PlayerCharacter.cpp +33 -0
- data/bundle-standalone/templates/game/unreal/template/Source/PlayerCharacter.h +20 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/package.json +18 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/app.css +25 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/app.jsx +43 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/assets/preact.svg +1 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/src/main.jsx +5 -0
- data/bundle-standalone/templates/javascript/preactjs/javascript/template/vite.config.js +7 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/package.json +20 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/app.css +25 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/app.tsx +43 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/assets/preact.svg +1 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/src/main.tsx +5 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.app.json +33 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.json +7 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/tsconfig.node.json +26 -0
- data/bundle-standalone/templates/javascript/preactjs/typescript/template/vite.config.ts +7 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/README.md +28 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/package.json +18 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/App.css +27 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/App.jsx +35 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/assets/solid.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/src/index.jsx +8 -0
- data/bundle-standalone/templates/javascript/solidjs/javascript/template/vite.config.js +6 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/README.md +28 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/package.json +20 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/App.css +27 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/App.tsx +35 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/assets/solid.svg +1 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/index.css +68 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/src/index.tsx +8 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.app.json +29 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.json +7 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/tsconfig.node.json +26 -0
- data/bundle-standalone/templates/javascript/solidjs/typescript/template/vite.config.ts +6 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/README.md +43 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/jsconfig.json +33 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/package.json +16 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/App.svelte +47 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/app.css +79 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/assets/svelte.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/lib/Counter.svelte +10 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/src/main.js +9 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/svelte.config.js +8 -0
- data/bundle-standalone/templates/javascript/sveltejs/javascript/template/vite.config.js +7 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/README.md +47 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/index.html +13 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/package.json +21 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/public/vite.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/App.svelte +47 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/app.css +79 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/assets/svelte.svg +1 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/lib/Counter.svelte +10 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/src/main.ts +9 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/svelte.config.js +8 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.app.json +21 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.json +7 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/tsconfig.node.json +26 -0
- data/bundle-standalone/templates/javascript/sveltejs/typescript/template/vite.config.ts +7 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/README.md +50 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/_layout.jsx +35 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/explore.jsx +112 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/(tabs)/index.jsx +98 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/_layout.jsx +24 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app/modal.jsx +29 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/app.json +48 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-background.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-foreground.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/android-icon-monochrome.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/favicon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/partial-react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo@2x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/react-logo@3x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/assets/images/splash-icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/external-link.jsx +25 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/haptic-tab.jsx +18 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/hello-wave.jsx +19 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/parallax-scroll-view.jsx +79 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/themed-text.jsx +60 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/themed-view.jsx +14 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/collapsible.jsx +45 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/icon-symbol.ios.jsx +32 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/components/ui/icon-symbol.jsx +41 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/constants/theme.js +53 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/eslint.config.js +10 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-color-scheme.js +1 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-color-scheme.web.js +21 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/hooks/use-theme-color.js +21 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/jsconfig.json +17 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/package.json +47 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/pnpm-workspace.yaml +1 -0
- data/bundle-standalone/templates/mobile/react-native/javascript/expo-cli-template/scripts/reset-project.js +112 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/README.md +50 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/_layout.tsx +35 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/explore.tsx +112 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/(tabs)/index.tsx +98 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/_layout.tsx +24 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app/modal.tsx +29 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/app.json +48 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-background.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-foreground.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/android-icon-monochrome.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/favicon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/partial-react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo@2x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/react-logo@3x.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/assets/images/splash-icon.png +0 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/external-link.tsx +25 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/haptic-tab.tsx +18 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/hello-wave.tsx +19 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/parallax-scroll-view.tsx +79 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/themed-text.tsx +60 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/themed-view.tsx +14 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/collapsible.tsx +45 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/icon-symbol.ios.tsx +32 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/components/ui/icon-symbol.tsx +41 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/constants/theme.ts +53 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/eslint.config.js +10 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-color-scheme.ts +1 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-color-scheme.web.ts +21 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/hooks/use-theme-color.ts +21 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/package.json +47 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/pnpm-workspace.yaml +1 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/scripts/reset-project.js +112 -0
- data/bundle-standalone/templates/mobile/react-native/typescript/expo-cli-template/tsconfig.json +17 -0
- data/bundle-standalone/templates/python/bottle/template/README.md +0 -0
- data/bundle-standalone/templates/python/bottle/template/main.py +6 -0
- data/bundle-standalone/templates/python/bottle/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/dash/template/README.md +0 -0
- data/bundle-standalone/templates/python/dash/template/main.py +6 -0
- data/bundle-standalone/templates/python/dash/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/falcon/template/README.md +0 -0
- data/bundle-standalone/templates/python/falcon/template/main.py +6 -0
- data/bundle-standalone/templates/python/falcon/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/fastapi/template/README.md +0 -0
- data/bundle-standalone/templates/python/fastapi/template/main.py +27 -0
- data/bundle-standalone/templates/python/fastapi/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/pyramid/template/README.md +0 -0
- data/bundle-standalone/templates/python/pyramid/template/main.py +6 -0
- data/bundle-standalone/templates/python/pyramid/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/quart/template/README.md +0 -0
- data/bundle-standalone/templates/python/quart/template/main.py +6 -0
- data/bundle-standalone/templates/python/quart/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/streamlit/template/README.md +0 -0
- data/bundle-standalone/templates/python/streamlit/template/main.py +6 -0
- data/bundle-standalone/templates/python/streamlit/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/python/tornado/template/README.md +0 -0
- data/bundle-standalone/templates/python/tornado/template/main.py +6 -0
- data/bundle-standalone/templates/python/tornado/template/pyproject.toml +7 -0
- data/bundle-standalone/templates/template.json +87 -14
- data/bundle-standalone/templates/web3/anchor/template/Anchor.toml +6 -0
- data/bundle-standalone/templates/web3/anchor/template/Cargo.toml +23 -0
- data/bundle-standalone/templates/web3/anchor/template/README.md +10 -0
- data/bundle-standalone/templates/web3/anchor/template/migrations/deploy.ts +27 -0
- data/bundle-standalone/templates/web3/anchor/template/programs/mysolanaapp/src/lib.rs +40 -0
- data/bundle-standalone/templates/web3/anchor/template/tests/mysolanaapp.ts +26 -0
- data/bundle-standalone/templates/web3/ethersjs/template/README.md +12 -0
- data/bundle-standalone/templates/web3/ethersjs/template/contracts/SimpleStorage.sol +17 -0
- data/bundle-standalone/templates/web3/ethersjs/template/hardhat.config.js +8 -0
- data/bundle-standalone/templates/web3/ethersjs/template/package.json +29 -0
- data/bundle-standalone/templates/web3/ethersjs/template/scripts/deploy.ts +18 -0
- data/bundle-standalone/templates/web3/ethersjs/template/scripts/interact.ts +17 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/01_data-types/DataTypes.sol +37 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/01_data-types/SolidityOperations.sol +48 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/02_contructors/Constructor.sol +16 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/03_variables/Variables.sol +31 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/04_functions/Functions.sol +19 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/05_visibility/FunctionVisibility.sol +39 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/06_pure_and_view_functions/PureAndViewFunction.sol +19 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/07_function_modifiers/Modifiers.sol +27 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/09_events/Events.sol +19 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/10_error_handling/ErrorHandling.sol +25 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/11_fallback_function/Fallback.sol +7 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/12_for_loop/ForLoop.sol +15 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/13_array/Array.sol +40 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/14_mapping/Mapping.sol +21 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/14_mapping/NestedMapping.sol +25 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/15_enum/Enum.sol +22 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/16_struct/Struct.sol +23 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/17_payable_modifier/Payable.sol +26 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/18_imports/Contract1.sol +15 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/18_imports/Contract2.sol +11 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/19_contract_cleanup/Cleanup.sol +18 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/20_memory_and_storage/MemoryAndStorage.sol +20 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/21_inheritance/Inheritance.sol +67 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/22_if_statement/if-statement.sol +22 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/23_libraries/libraries.sol +31 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/23_libraries/safemath.sol +116 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/24_interface/interface.sol +88 -0
- data/bundle-standalone/templates/web3/solidity/solidity-learning/README.md +423 -0
- data/bundle-standalone/templates/web3/solidity/uniswap-simple-swap/SimpleSwap.sol +46 -0
- metadata +369 -93
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/App.jsx +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/Gemfile +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/README.md +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/build.gradle +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradlew +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/app.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/babel.config.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/index.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/Podfile +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/metro.config.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/javascript/{template → react-native-cli-template}/package.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/App.tsx +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/Gemfile +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/README.md +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/__tests__/App.test.tsx +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/build.gradle +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/debug.keystore +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/proguard-rules.pro +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/AndroidManifest.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainActivity.kt +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/java/com/template/MainApplication.kt +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/drawable/rn_edit_text_material.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/values/strings.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/app/src/main/res/values/styles.xml +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/build.gradle +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradle/wrapper/gradle-wrapper.properties +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradle.properties +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradlew +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/gradlew.bat +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/android/settings.gradle +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/app.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/babel.config.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/index.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/Podfile +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/AppDelegate.swift +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/Images.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/Images.xcassets/Contents.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/Info.plist +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/LaunchScreen.storyboard +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template/PrivacyInfo.xcprivacy +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template.xcodeproj/project.pbxproj +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/ios/template.xcodeproj/xcshareddata/xcschemes/template.xcscheme +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/jest.config.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/metro.config.js +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/package.json +0 -0
- /data/bundle-standalone/templates/mobile/react-native/typescript/{template → react-native-cli-template}/tsconfig.json +0 -0
|
@@ -0,0 +1,3819 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@auth0/nextjs-auth0':
|
|
12
|
+
specifier: ^4.10.0
|
|
13
|
+
version: 4.10.0(next@15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
14
|
+
next:
|
|
15
|
+
specifier: 15.4.4
|
|
16
|
+
version: 15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
17
|
+
react:
|
|
18
|
+
specifier: 19.1.0
|
|
19
|
+
version: 19.1.0
|
|
20
|
+
react-dom:
|
|
21
|
+
specifier: 19.1.0
|
|
22
|
+
version: 19.1.0(react@19.1.0)
|
|
23
|
+
devDependencies:
|
|
24
|
+
'@eslint/eslintrc':
|
|
25
|
+
specifier: ^3
|
|
26
|
+
version: 3.3.1
|
|
27
|
+
'@tailwindcss/postcss':
|
|
28
|
+
specifier: ^4
|
|
29
|
+
version: 4.1.14
|
|
30
|
+
'@types/node':
|
|
31
|
+
specifier: ^20
|
|
32
|
+
version: 20.19.22
|
|
33
|
+
'@types/react':
|
|
34
|
+
specifier: ^19
|
|
35
|
+
version: 19.2.2
|
|
36
|
+
'@types/react-dom':
|
|
37
|
+
specifier: ^19
|
|
38
|
+
version: 19.2.2(@types/react@19.2.2)
|
|
39
|
+
eslint:
|
|
40
|
+
specifier: ^9
|
|
41
|
+
version: 9.37.0(jiti@2.6.1)
|
|
42
|
+
eslint-config-next:
|
|
43
|
+
specifier: 15.4.4
|
|
44
|
+
version: 15.4.4(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
45
|
+
tailwindcss:
|
|
46
|
+
specifier: ^4
|
|
47
|
+
version: 4.1.14
|
|
48
|
+
typescript:
|
|
49
|
+
specifier: ^5
|
|
50
|
+
version: 5.9.3
|
|
51
|
+
|
|
52
|
+
packages:
|
|
53
|
+
|
|
54
|
+
'@alloc/quick-lru@5.2.0':
|
|
55
|
+
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
56
|
+
engines: {node: '>=10'}
|
|
57
|
+
|
|
58
|
+
'@auth0/nextjs-auth0@4.10.0':
|
|
59
|
+
resolution: {integrity: sha512-4CBuMlPJ4boxrB5IYisqMh9VBn74PGsspMfZpLG5JvrgDklw2CZsThW+UeAi1YMhE4/3VHyeht2yzN1Fs95bug==}
|
|
60
|
+
peerDependencies:
|
|
61
|
+
next: ^14.2.25 || ^15.2.3
|
|
62
|
+
react: ^18.0.0 || ^19.0.0 || ^19.0.0-0
|
|
63
|
+
react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-0
|
|
64
|
+
|
|
65
|
+
'@edge-runtime/cookies@5.0.2':
|
|
66
|
+
resolution: {integrity: sha512-Sd8LcWpZk/SWEeKGE8LT6gMm5MGfX/wm+GPnh1eBEtCpya3vYqn37wYknwAHw92ONoyyREl1hJwxV/Qx2DWNOg==}
|
|
67
|
+
engines: {node: '>=16'}
|
|
68
|
+
|
|
69
|
+
'@emnapi/core@1.5.0':
|
|
70
|
+
resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==}
|
|
71
|
+
|
|
72
|
+
'@emnapi/runtime@1.5.0':
|
|
73
|
+
resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==}
|
|
74
|
+
|
|
75
|
+
'@emnapi/wasi-threads@1.1.0':
|
|
76
|
+
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
|
|
77
|
+
|
|
78
|
+
'@eslint-community/eslint-utils@4.9.0':
|
|
79
|
+
resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
|
|
80
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
81
|
+
peerDependencies:
|
|
82
|
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
|
83
|
+
|
|
84
|
+
'@eslint-community/regexpp@4.12.1':
|
|
85
|
+
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
|
86
|
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
|
87
|
+
|
|
88
|
+
'@eslint/config-array@0.21.0':
|
|
89
|
+
resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
|
|
90
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
91
|
+
|
|
92
|
+
'@eslint/config-helpers@0.4.0':
|
|
93
|
+
resolution: {integrity: sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==}
|
|
94
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
95
|
+
|
|
96
|
+
'@eslint/core@0.16.0':
|
|
97
|
+
resolution: {integrity: sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==}
|
|
98
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
99
|
+
|
|
100
|
+
'@eslint/eslintrc@3.3.1':
|
|
101
|
+
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
|
|
102
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
103
|
+
|
|
104
|
+
'@eslint/js@9.37.0':
|
|
105
|
+
resolution: {integrity: sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==}
|
|
106
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
107
|
+
|
|
108
|
+
'@eslint/object-schema@2.1.6':
|
|
109
|
+
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
|
|
110
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
111
|
+
|
|
112
|
+
'@eslint/plugin-kit@0.4.0':
|
|
113
|
+
resolution: {integrity: sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==}
|
|
114
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
115
|
+
|
|
116
|
+
'@humanfs/core@0.19.1':
|
|
117
|
+
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
|
118
|
+
engines: {node: '>=18.18.0'}
|
|
119
|
+
|
|
120
|
+
'@humanfs/node@0.16.7':
|
|
121
|
+
resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
|
|
122
|
+
engines: {node: '>=18.18.0'}
|
|
123
|
+
|
|
124
|
+
'@humanwhocodes/module-importer@1.0.1':
|
|
125
|
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
|
126
|
+
engines: {node: '>=12.22'}
|
|
127
|
+
|
|
128
|
+
'@humanwhocodes/retry@0.4.3':
|
|
129
|
+
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
|
|
130
|
+
engines: {node: '>=18.18'}
|
|
131
|
+
|
|
132
|
+
'@img/colour@1.0.0':
|
|
133
|
+
resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==}
|
|
134
|
+
engines: {node: '>=18'}
|
|
135
|
+
|
|
136
|
+
'@img/sharp-darwin-arm64@0.34.4':
|
|
137
|
+
resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==}
|
|
138
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
139
|
+
cpu: [arm64]
|
|
140
|
+
os: [darwin]
|
|
141
|
+
|
|
142
|
+
'@img/sharp-darwin-x64@0.34.4':
|
|
143
|
+
resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==}
|
|
144
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
145
|
+
cpu: [x64]
|
|
146
|
+
os: [darwin]
|
|
147
|
+
|
|
148
|
+
'@img/sharp-libvips-darwin-arm64@1.2.3':
|
|
149
|
+
resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==}
|
|
150
|
+
cpu: [arm64]
|
|
151
|
+
os: [darwin]
|
|
152
|
+
|
|
153
|
+
'@img/sharp-libvips-darwin-x64@1.2.3':
|
|
154
|
+
resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==}
|
|
155
|
+
cpu: [x64]
|
|
156
|
+
os: [darwin]
|
|
157
|
+
|
|
158
|
+
'@img/sharp-libvips-linux-arm64@1.2.3':
|
|
159
|
+
resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==}
|
|
160
|
+
cpu: [arm64]
|
|
161
|
+
os: [linux]
|
|
162
|
+
|
|
163
|
+
'@img/sharp-libvips-linux-arm@1.2.3':
|
|
164
|
+
resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==}
|
|
165
|
+
cpu: [arm]
|
|
166
|
+
os: [linux]
|
|
167
|
+
|
|
168
|
+
'@img/sharp-libvips-linux-ppc64@1.2.3':
|
|
169
|
+
resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==}
|
|
170
|
+
cpu: [ppc64]
|
|
171
|
+
os: [linux]
|
|
172
|
+
|
|
173
|
+
'@img/sharp-libvips-linux-s390x@1.2.3':
|
|
174
|
+
resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==}
|
|
175
|
+
cpu: [s390x]
|
|
176
|
+
os: [linux]
|
|
177
|
+
|
|
178
|
+
'@img/sharp-libvips-linux-x64@1.2.3':
|
|
179
|
+
resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==}
|
|
180
|
+
cpu: [x64]
|
|
181
|
+
os: [linux]
|
|
182
|
+
|
|
183
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.3':
|
|
184
|
+
resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==}
|
|
185
|
+
cpu: [arm64]
|
|
186
|
+
os: [linux]
|
|
187
|
+
|
|
188
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.3':
|
|
189
|
+
resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==}
|
|
190
|
+
cpu: [x64]
|
|
191
|
+
os: [linux]
|
|
192
|
+
|
|
193
|
+
'@img/sharp-linux-arm64@0.34.4':
|
|
194
|
+
resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==}
|
|
195
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
196
|
+
cpu: [arm64]
|
|
197
|
+
os: [linux]
|
|
198
|
+
|
|
199
|
+
'@img/sharp-linux-arm@0.34.4':
|
|
200
|
+
resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==}
|
|
201
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
202
|
+
cpu: [arm]
|
|
203
|
+
os: [linux]
|
|
204
|
+
|
|
205
|
+
'@img/sharp-linux-ppc64@0.34.4':
|
|
206
|
+
resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==}
|
|
207
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
208
|
+
cpu: [ppc64]
|
|
209
|
+
os: [linux]
|
|
210
|
+
|
|
211
|
+
'@img/sharp-linux-s390x@0.34.4':
|
|
212
|
+
resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==}
|
|
213
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
214
|
+
cpu: [s390x]
|
|
215
|
+
os: [linux]
|
|
216
|
+
|
|
217
|
+
'@img/sharp-linux-x64@0.34.4':
|
|
218
|
+
resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==}
|
|
219
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
220
|
+
cpu: [x64]
|
|
221
|
+
os: [linux]
|
|
222
|
+
|
|
223
|
+
'@img/sharp-linuxmusl-arm64@0.34.4':
|
|
224
|
+
resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==}
|
|
225
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
226
|
+
cpu: [arm64]
|
|
227
|
+
os: [linux]
|
|
228
|
+
|
|
229
|
+
'@img/sharp-linuxmusl-x64@0.34.4':
|
|
230
|
+
resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==}
|
|
231
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
232
|
+
cpu: [x64]
|
|
233
|
+
os: [linux]
|
|
234
|
+
|
|
235
|
+
'@img/sharp-wasm32@0.34.4':
|
|
236
|
+
resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==}
|
|
237
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
238
|
+
cpu: [wasm32]
|
|
239
|
+
|
|
240
|
+
'@img/sharp-win32-arm64@0.34.4':
|
|
241
|
+
resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==}
|
|
242
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
243
|
+
cpu: [arm64]
|
|
244
|
+
os: [win32]
|
|
245
|
+
|
|
246
|
+
'@img/sharp-win32-ia32@0.34.4':
|
|
247
|
+
resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==}
|
|
248
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
249
|
+
cpu: [ia32]
|
|
250
|
+
os: [win32]
|
|
251
|
+
|
|
252
|
+
'@img/sharp-win32-x64@0.34.4':
|
|
253
|
+
resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==}
|
|
254
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
255
|
+
cpu: [x64]
|
|
256
|
+
os: [win32]
|
|
257
|
+
|
|
258
|
+
'@isaacs/fs-minipass@4.0.1':
|
|
259
|
+
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
|
|
260
|
+
engines: {node: '>=18.0.0'}
|
|
261
|
+
|
|
262
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
263
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
264
|
+
|
|
265
|
+
'@jridgewell/remapping@2.3.5':
|
|
266
|
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
267
|
+
|
|
268
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
269
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
270
|
+
engines: {node: '>=6.0.0'}
|
|
271
|
+
|
|
272
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
273
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
274
|
+
|
|
275
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
276
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
277
|
+
|
|
278
|
+
'@napi-rs/wasm-runtime@0.2.12':
|
|
279
|
+
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
|
|
280
|
+
|
|
281
|
+
'@next/env@15.4.4':
|
|
282
|
+
resolution: {integrity: sha512-SJKOOkULKENyHSYXE5+KiFU6itcIb6wSBjgM92meK0HVKpo94dNOLZVdLLuS7/BxImROkGoPsjR4EnuDucqiiA==}
|
|
283
|
+
|
|
284
|
+
'@next/eslint-plugin-next@15.4.4':
|
|
285
|
+
resolution: {integrity: sha512-1FDsyN//ai3Jd97SEd7scw5h1yLdzDACGOPRofr2GD3sEFsBylEEoL0MHSerd4n2dq9Zm/mFMqi4+NRMOreOKA==}
|
|
286
|
+
|
|
287
|
+
'@next/swc-darwin-arm64@15.4.4':
|
|
288
|
+
resolution: {integrity: sha512-eVG55dnGwfUuG+TtnUCt+mEJ+8TGgul6nHEvdb8HEH7dmJIFYOCApAaFrIrxwtEq2Cdf+0m5sG1Np8cNpw9EAw==}
|
|
289
|
+
engines: {node: '>= 10'}
|
|
290
|
+
cpu: [arm64]
|
|
291
|
+
os: [darwin]
|
|
292
|
+
|
|
293
|
+
'@next/swc-darwin-x64@15.4.4':
|
|
294
|
+
resolution: {integrity: sha512-zqG+/8apsu49CltEj4NAmCGZvHcZbOOOsNoTVeIXphYWIbE4l6A/vuQHyqll0flU2o3dmYCXsBW5FmbrGDgljQ==}
|
|
295
|
+
engines: {node: '>= 10'}
|
|
296
|
+
cpu: [x64]
|
|
297
|
+
os: [darwin]
|
|
298
|
+
|
|
299
|
+
'@next/swc-linux-arm64-gnu@15.4.4':
|
|
300
|
+
resolution: {integrity: sha512-LRD4l2lq4R+2QCHBQVC0wjxxkLlALGJCwigaJ5FSRSqnje+MRKHljQNZgDCaKUZQzO/TXxlmUdkZP/X3KNGZaw==}
|
|
301
|
+
engines: {node: '>= 10'}
|
|
302
|
+
cpu: [arm64]
|
|
303
|
+
os: [linux]
|
|
304
|
+
|
|
305
|
+
'@next/swc-linux-arm64-musl@15.4.4':
|
|
306
|
+
resolution: {integrity: sha512-LsGUCTvuZ0690fFWerA4lnQvjkYg9gHo12A3wiPUR4kCxbx/d+SlwmonuTH2SWZI+RVGA9VL3N0S03WTYv6bYg==}
|
|
307
|
+
engines: {node: '>= 10'}
|
|
308
|
+
cpu: [arm64]
|
|
309
|
+
os: [linux]
|
|
310
|
+
|
|
311
|
+
'@next/swc-linux-x64-gnu@15.4.4':
|
|
312
|
+
resolution: {integrity: sha512-aOy5yNRpLL3wNiJVkFYl6w22hdREERNjvegE6vvtix8LHRdsTHhWTpgvcYdCK7AIDCQW5ATmzr9XkPHvSoAnvg==}
|
|
313
|
+
engines: {node: '>= 10'}
|
|
314
|
+
cpu: [x64]
|
|
315
|
+
os: [linux]
|
|
316
|
+
|
|
317
|
+
'@next/swc-linux-x64-musl@15.4.4':
|
|
318
|
+
resolution: {integrity: sha512-FL7OAn4UkR8hKQRGBmlHiHinzOb07tsfARdGh7v0Z0jEJ3sz8/7L5bR23ble9E6DZMabSStqlATHlSxv1fuzAg==}
|
|
319
|
+
engines: {node: '>= 10'}
|
|
320
|
+
cpu: [x64]
|
|
321
|
+
os: [linux]
|
|
322
|
+
|
|
323
|
+
'@next/swc-win32-arm64-msvc@15.4.4':
|
|
324
|
+
resolution: {integrity: sha512-eEdNW/TXwjYhOulQh0pffTMMItWVwKCQpbziSBmgBNFZIIRn2GTXrhrewevs8wP8KXWYMx8Z+mNU0X+AfvtrRg==}
|
|
325
|
+
engines: {node: '>= 10'}
|
|
326
|
+
cpu: [arm64]
|
|
327
|
+
os: [win32]
|
|
328
|
+
|
|
329
|
+
'@next/swc-win32-x64-msvc@15.4.4':
|
|
330
|
+
resolution: {integrity: sha512-SE5pYNbn/xZKMy1RE3pAs+4xD32OI4rY6mzJa4XUkp/ItZY+OMjIgilskmErt8ls/fVJ+Ihopi2QIeW6O3TrMw==}
|
|
331
|
+
engines: {node: '>= 10'}
|
|
332
|
+
cpu: [x64]
|
|
333
|
+
os: [win32]
|
|
334
|
+
|
|
335
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
336
|
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
|
337
|
+
engines: {node: '>= 8'}
|
|
338
|
+
|
|
339
|
+
'@nodelib/fs.stat@2.0.5':
|
|
340
|
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
|
341
|
+
engines: {node: '>= 8'}
|
|
342
|
+
|
|
343
|
+
'@nodelib/fs.walk@1.2.8':
|
|
344
|
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
|
345
|
+
engines: {node: '>= 8'}
|
|
346
|
+
|
|
347
|
+
'@nolyfill/is-core-module@1.0.39':
|
|
348
|
+
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
|
|
349
|
+
engines: {node: '>=12.4.0'}
|
|
350
|
+
|
|
351
|
+
'@panva/hkdf@1.2.1':
|
|
352
|
+
resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==}
|
|
353
|
+
|
|
354
|
+
'@rtsao/scc@1.1.0':
|
|
355
|
+
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
|
|
356
|
+
|
|
357
|
+
'@rushstack/eslint-patch@1.14.0':
|
|
358
|
+
resolution: {integrity: sha512-WJFej426qe4RWOm9MMtP4V3CV4AucXolQty+GRgAWLgQXmpCuwzs7hEpxxhSc/znXUSxum9d/P/32MW0FlAAlA==}
|
|
359
|
+
|
|
360
|
+
'@swc/helpers@0.5.15':
|
|
361
|
+
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
362
|
+
|
|
363
|
+
'@tailwindcss/node@4.1.14':
|
|
364
|
+
resolution: {integrity: sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==}
|
|
365
|
+
|
|
366
|
+
'@tailwindcss/oxide-android-arm64@4.1.14':
|
|
367
|
+
resolution: {integrity: sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==}
|
|
368
|
+
engines: {node: '>= 10'}
|
|
369
|
+
cpu: [arm64]
|
|
370
|
+
os: [android]
|
|
371
|
+
|
|
372
|
+
'@tailwindcss/oxide-darwin-arm64@4.1.14':
|
|
373
|
+
resolution: {integrity: sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==}
|
|
374
|
+
engines: {node: '>= 10'}
|
|
375
|
+
cpu: [arm64]
|
|
376
|
+
os: [darwin]
|
|
377
|
+
|
|
378
|
+
'@tailwindcss/oxide-darwin-x64@4.1.14':
|
|
379
|
+
resolution: {integrity: sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==}
|
|
380
|
+
engines: {node: '>= 10'}
|
|
381
|
+
cpu: [x64]
|
|
382
|
+
os: [darwin]
|
|
383
|
+
|
|
384
|
+
'@tailwindcss/oxide-freebsd-x64@4.1.14':
|
|
385
|
+
resolution: {integrity: sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==}
|
|
386
|
+
engines: {node: '>= 10'}
|
|
387
|
+
cpu: [x64]
|
|
388
|
+
os: [freebsd]
|
|
389
|
+
|
|
390
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.14':
|
|
391
|
+
resolution: {integrity: sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==}
|
|
392
|
+
engines: {node: '>= 10'}
|
|
393
|
+
cpu: [arm]
|
|
394
|
+
os: [linux]
|
|
395
|
+
|
|
396
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.14':
|
|
397
|
+
resolution: {integrity: sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==}
|
|
398
|
+
engines: {node: '>= 10'}
|
|
399
|
+
cpu: [arm64]
|
|
400
|
+
os: [linux]
|
|
401
|
+
|
|
402
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.14':
|
|
403
|
+
resolution: {integrity: sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==}
|
|
404
|
+
engines: {node: '>= 10'}
|
|
405
|
+
cpu: [arm64]
|
|
406
|
+
os: [linux]
|
|
407
|
+
|
|
408
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.14':
|
|
409
|
+
resolution: {integrity: sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==}
|
|
410
|
+
engines: {node: '>= 10'}
|
|
411
|
+
cpu: [x64]
|
|
412
|
+
os: [linux]
|
|
413
|
+
|
|
414
|
+
'@tailwindcss/oxide-linux-x64-musl@4.1.14':
|
|
415
|
+
resolution: {integrity: sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==}
|
|
416
|
+
engines: {node: '>= 10'}
|
|
417
|
+
cpu: [x64]
|
|
418
|
+
os: [linux]
|
|
419
|
+
|
|
420
|
+
'@tailwindcss/oxide-wasm32-wasi@4.1.14':
|
|
421
|
+
resolution: {integrity: sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==}
|
|
422
|
+
engines: {node: '>=14.0.0'}
|
|
423
|
+
cpu: [wasm32]
|
|
424
|
+
bundledDependencies:
|
|
425
|
+
- '@napi-rs/wasm-runtime'
|
|
426
|
+
- '@emnapi/core'
|
|
427
|
+
- '@emnapi/runtime'
|
|
428
|
+
- '@tybys/wasm-util'
|
|
429
|
+
- '@emnapi/wasi-threads'
|
|
430
|
+
- tslib
|
|
431
|
+
|
|
432
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.14':
|
|
433
|
+
resolution: {integrity: sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==}
|
|
434
|
+
engines: {node: '>= 10'}
|
|
435
|
+
cpu: [arm64]
|
|
436
|
+
os: [win32]
|
|
437
|
+
|
|
438
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.14':
|
|
439
|
+
resolution: {integrity: sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==}
|
|
440
|
+
engines: {node: '>= 10'}
|
|
441
|
+
cpu: [x64]
|
|
442
|
+
os: [win32]
|
|
443
|
+
|
|
444
|
+
'@tailwindcss/oxide@4.1.14':
|
|
445
|
+
resolution: {integrity: sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==}
|
|
446
|
+
engines: {node: '>= 10'}
|
|
447
|
+
|
|
448
|
+
'@tailwindcss/postcss@4.1.14':
|
|
449
|
+
resolution: {integrity: sha512-BdMjIxy7HUNThK87C7BC8I1rE8BVUsfNQSI5siQ4JK3iIa3w0XyVvVL9SXLWO//CtYTcp1v7zci0fYwJOjB+Zg==}
|
|
450
|
+
|
|
451
|
+
'@tybys/wasm-util@0.10.1':
|
|
452
|
+
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
|
|
453
|
+
|
|
454
|
+
'@types/estree@1.0.8':
|
|
455
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
456
|
+
|
|
457
|
+
'@types/json-schema@7.0.15':
|
|
458
|
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
459
|
+
|
|
460
|
+
'@types/json5@0.0.29':
|
|
461
|
+
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
|
|
462
|
+
|
|
463
|
+
'@types/node@20.19.22':
|
|
464
|
+
resolution: {integrity: sha512-hRnu+5qggKDSyWHlnmThnUqg62l29Aj/6vcYgUaSFL9oc7DVjeWEQN3PRgdSc6F8d9QRMWkf36CLMch1Do/+RQ==}
|
|
465
|
+
|
|
466
|
+
'@types/react-dom@19.2.2':
|
|
467
|
+
resolution: {integrity: sha512-9KQPoO6mZCi7jcIStSnlOWn2nEF3mNmyr3rIAsGnAbQKYbRLyqmeSc39EVgtxXVia+LMT8j3knZLAZAh+xLmrw==}
|
|
468
|
+
peerDependencies:
|
|
469
|
+
'@types/react': ^19.2.0
|
|
470
|
+
|
|
471
|
+
'@types/react@19.2.2':
|
|
472
|
+
resolution: {integrity: sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==}
|
|
473
|
+
|
|
474
|
+
'@typescript-eslint/eslint-plugin@8.46.1':
|
|
475
|
+
resolution: {integrity: sha512-rUsLh8PXmBjdiPY+Emjz9NX2yHvhS11v0SR6xNJkm5GM1MO9ea/1GoDKlHHZGrOJclL/cZ2i/vRUYVtjRhrHVQ==}
|
|
476
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
477
|
+
peerDependencies:
|
|
478
|
+
'@typescript-eslint/parser': ^8.46.1
|
|
479
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
480
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
481
|
+
|
|
482
|
+
'@typescript-eslint/parser@8.46.1':
|
|
483
|
+
resolution: {integrity: sha512-6JSSaBZmsKvEkbRUkf7Zj7dru/8ZCrJxAqArcLaVMee5907JdtEbKGsZ7zNiIm/UAkpGUkaSMZEXShnN2D1HZA==}
|
|
484
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
485
|
+
peerDependencies:
|
|
486
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
487
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
488
|
+
|
|
489
|
+
'@typescript-eslint/project-service@8.46.1':
|
|
490
|
+
resolution: {integrity: sha512-FOIaFVMHzRskXr5J4Jp8lFVV0gz5ngv3RHmn+E4HYxSJ3DgDzU7fVI1/M7Ijh1zf6S7HIoaIOtln1H5y8V+9Zg==}
|
|
491
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
492
|
+
peerDependencies:
|
|
493
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
494
|
+
|
|
495
|
+
'@typescript-eslint/scope-manager@8.46.1':
|
|
496
|
+
resolution: {integrity: sha512-weL9Gg3/5F0pVQKiF8eOXFZp8emqWzZsOJuWRUNtHT+UNV2xSJegmpCNQHy37aEQIbToTq7RHKhWvOsmbM680A==}
|
|
497
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
498
|
+
|
|
499
|
+
'@typescript-eslint/tsconfig-utils@8.46.1':
|
|
500
|
+
resolution: {integrity: sha512-X88+J/CwFvlJB+mK09VFqx5FE4H5cXD+H/Bdza2aEWkSb8hnWIQorNcscRl4IEo1Cz9VI/+/r/jnGWkbWPx54g==}
|
|
501
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
502
|
+
peerDependencies:
|
|
503
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
504
|
+
|
|
505
|
+
'@typescript-eslint/type-utils@8.46.1':
|
|
506
|
+
resolution: {integrity: sha512-+BlmiHIiqufBxkVnOtFwjah/vrkF4MtKKvpXrKSPLCkCtAp8H01/VV43sfqA98Od7nJpDcFnkwgyfQbOG0AMvw==}
|
|
507
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
508
|
+
peerDependencies:
|
|
509
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
510
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
511
|
+
|
|
512
|
+
'@typescript-eslint/types@8.46.1':
|
|
513
|
+
resolution: {integrity: sha512-C+soprGBHwWBdkDpbaRC4paGBrkIXxVlNohadL5o0kfhsXqOC6GYH2S/Obmig+I0HTDl8wMaRySwrfrXVP8/pQ==}
|
|
514
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
515
|
+
|
|
516
|
+
'@typescript-eslint/typescript-estree@8.46.1':
|
|
517
|
+
resolution: {integrity: sha512-uIifjT4s8cQKFQ8ZBXXyoUODtRoAd7F7+G8MKmtzj17+1UbdzFl52AzRyZRyKqPHhgzvXunnSckVu36flGy8cg==}
|
|
518
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
519
|
+
peerDependencies:
|
|
520
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
521
|
+
|
|
522
|
+
'@typescript-eslint/utils@8.46.1':
|
|
523
|
+
resolution: {integrity: sha512-vkYUy6LdZS7q1v/Gxb2Zs7zziuXN0wxqsetJdeZdRe/f5dwJFglmuvZBfTUivCtjH725C1jWCDfpadadD95EDQ==}
|
|
524
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
525
|
+
peerDependencies:
|
|
526
|
+
eslint: ^8.57.0 || ^9.0.0
|
|
527
|
+
typescript: '>=4.8.4 <6.0.0'
|
|
528
|
+
|
|
529
|
+
'@typescript-eslint/visitor-keys@8.46.1':
|
|
530
|
+
resolution: {integrity: sha512-ptkmIf2iDkNUjdeu2bQqhFPV1m6qTnFFjg7PPDjxKWaMaP0Z6I9l30Jr3g5QqbZGdw8YdYvLp+XnqnWWZOg/NA==}
|
|
531
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
532
|
+
|
|
533
|
+
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
|
534
|
+
resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==}
|
|
535
|
+
cpu: [arm]
|
|
536
|
+
os: [android]
|
|
537
|
+
|
|
538
|
+
'@unrs/resolver-binding-android-arm64@1.11.1':
|
|
539
|
+
resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==}
|
|
540
|
+
cpu: [arm64]
|
|
541
|
+
os: [android]
|
|
542
|
+
|
|
543
|
+
'@unrs/resolver-binding-darwin-arm64@1.11.1':
|
|
544
|
+
resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==}
|
|
545
|
+
cpu: [arm64]
|
|
546
|
+
os: [darwin]
|
|
547
|
+
|
|
548
|
+
'@unrs/resolver-binding-darwin-x64@1.11.1':
|
|
549
|
+
resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==}
|
|
550
|
+
cpu: [x64]
|
|
551
|
+
os: [darwin]
|
|
552
|
+
|
|
553
|
+
'@unrs/resolver-binding-freebsd-x64@1.11.1':
|
|
554
|
+
resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==}
|
|
555
|
+
cpu: [x64]
|
|
556
|
+
os: [freebsd]
|
|
557
|
+
|
|
558
|
+
'@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
|
|
559
|
+
resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==}
|
|
560
|
+
cpu: [arm]
|
|
561
|
+
os: [linux]
|
|
562
|
+
|
|
563
|
+
'@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
|
|
564
|
+
resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==}
|
|
565
|
+
cpu: [arm]
|
|
566
|
+
os: [linux]
|
|
567
|
+
|
|
568
|
+
'@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
|
|
569
|
+
resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==}
|
|
570
|
+
cpu: [arm64]
|
|
571
|
+
os: [linux]
|
|
572
|
+
|
|
573
|
+
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
|
|
574
|
+
resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==}
|
|
575
|
+
cpu: [arm64]
|
|
576
|
+
os: [linux]
|
|
577
|
+
|
|
578
|
+
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
|
|
579
|
+
resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==}
|
|
580
|
+
cpu: [ppc64]
|
|
581
|
+
os: [linux]
|
|
582
|
+
|
|
583
|
+
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
|
|
584
|
+
resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==}
|
|
585
|
+
cpu: [riscv64]
|
|
586
|
+
os: [linux]
|
|
587
|
+
|
|
588
|
+
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
|
|
589
|
+
resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==}
|
|
590
|
+
cpu: [riscv64]
|
|
591
|
+
os: [linux]
|
|
592
|
+
|
|
593
|
+
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
|
|
594
|
+
resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==}
|
|
595
|
+
cpu: [s390x]
|
|
596
|
+
os: [linux]
|
|
597
|
+
|
|
598
|
+
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
|
|
599
|
+
resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==}
|
|
600
|
+
cpu: [x64]
|
|
601
|
+
os: [linux]
|
|
602
|
+
|
|
603
|
+
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
|
|
604
|
+
resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==}
|
|
605
|
+
cpu: [x64]
|
|
606
|
+
os: [linux]
|
|
607
|
+
|
|
608
|
+
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
|
|
609
|
+
resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==}
|
|
610
|
+
engines: {node: '>=14.0.0'}
|
|
611
|
+
cpu: [wasm32]
|
|
612
|
+
|
|
613
|
+
'@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
|
|
614
|
+
resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==}
|
|
615
|
+
cpu: [arm64]
|
|
616
|
+
os: [win32]
|
|
617
|
+
|
|
618
|
+
'@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
|
|
619
|
+
resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==}
|
|
620
|
+
cpu: [ia32]
|
|
621
|
+
os: [win32]
|
|
622
|
+
|
|
623
|
+
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
|
|
624
|
+
resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==}
|
|
625
|
+
cpu: [x64]
|
|
626
|
+
os: [win32]
|
|
627
|
+
|
|
628
|
+
acorn-jsx@5.3.2:
|
|
629
|
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
|
630
|
+
peerDependencies:
|
|
631
|
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
632
|
+
|
|
633
|
+
acorn@8.15.0:
|
|
634
|
+
resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
|
|
635
|
+
engines: {node: '>=0.4.0'}
|
|
636
|
+
hasBin: true
|
|
637
|
+
|
|
638
|
+
ajv@6.12.6:
|
|
639
|
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
|
640
|
+
|
|
641
|
+
ansi-styles@4.3.0:
|
|
642
|
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
643
|
+
engines: {node: '>=8'}
|
|
644
|
+
|
|
645
|
+
argparse@2.0.1:
|
|
646
|
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
647
|
+
|
|
648
|
+
aria-query@5.3.2:
|
|
649
|
+
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
|
|
650
|
+
engines: {node: '>= 0.4'}
|
|
651
|
+
|
|
652
|
+
array-buffer-byte-length@1.0.2:
|
|
653
|
+
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
|
|
654
|
+
engines: {node: '>= 0.4'}
|
|
655
|
+
|
|
656
|
+
array-includes@3.1.9:
|
|
657
|
+
resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==}
|
|
658
|
+
engines: {node: '>= 0.4'}
|
|
659
|
+
|
|
660
|
+
array.prototype.findlast@1.2.5:
|
|
661
|
+
resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
|
|
662
|
+
engines: {node: '>= 0.4'}
|
|
663
|
+
|
|
664
|
+
array.prototype.findlastindex@1.2.6:
|
|
665
|
+
resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==}
|
|
666
|
+
engines: {node: '>= 0.4'}
|
|
667
|
+
|
|
668
|
+
array.prototype.flat@1.3.3:
|
|
669
|
+
resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
|
|
670
|
+
engines: {node: '>= 0.4'}
|
|
671
|
+
|
|
672
|
+
array.prototype.flatmap@1.3.3:
|
|
673
|
+
resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
|
|
674
|
+
engines: {node: '>= 0.4'}
|
|
675
|
+
|
|
676
|
+
array.prototype.tosorted@1.1.4:
|
|
677
|
+
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
|
|
678
|
+
engines: {node: '>= 0.4'}
|
|
679
|
+
|
|
680
|
+
arraybuffer.prototype.slice@1.0.4:
|
|
681
|
+
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
|
|
682
|
+
engines: {node: '>= 0.4'}
|
|
683
|
+
|
|
684
|
+
ast-types-flow@0.0.8:
|
|
685
|
+
resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
|
|
686
|
+
|
|
687
|
+
async-function@1.0.0:
|
|
688
|
+
resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
|
|
689
|
+
engines: {node: '>= 0.4'}
|
|
690
|
+
|
|
691
|
+
available-typed-arrays@1.0.7:
|
|
692
|
+
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
|
|
693
|
+
engines: {node: '>= 0.4'}
|
|
694
|
+
|
|
695
|
+
axe-core@4.11.0:
|
|
696
|
+
resolution: {integrity: sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==}
|
|
697
|
+
engines: {node: '>=4'}
|
|
698
|
+
|
|
699
|
+
axobject-query@4.1.0:
|
|
700
|
+
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
|
|
701
|
+
engines: {node: '>= 0.4'}
|
|
702
|
+
|
|
703
|
+
balanced-match@1.0.2:
|
|
704
|
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
|
705
|
+
|
|
706
|
+
brace-expansion@1.1.12:
|
|
707
|
+
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
|
|
708
|
+
|
|
709
|
+
brace-expansion@2.0.2:
|
|
710
|
+
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
|
|
711
|
+
|
|
712
|
+
braces@3.0.3:
|
|
713
|
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
|
714
|
+
engines: {node: '>=8'}
|
|
715
|
+
|
|
716
|
+
call-bind-apply-helpers@1.0.2:
|
|
717
|
+
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
718
|
+
engines: {node: '>= 0.4'}
|
|
719
|
+
|
|
720
|
+
call-bind@1.0.8:
|
|
721
|
+
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
|
|
722
|
+
engines: {node: '>= 0.4'}
|
|
723
|
+
|
|
724
|
+
call-bound@1.0.4:
|
|
725
|
+
resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
|
|
726
|
+
engines: {node: '>= 0.4'}
|
|
727
|
+
|
|
728
|
+
callsites@3.1.0:
|
|
729
|
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
730
|
+
engines: {node: '>=6'}
|
|
731
|
+
|
|
732
|
+
caniuse-lite@1.0.30001751:
|
|
733
|
+
resolution: {integrity: sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==}
|
|
734
|
+
|
|
735
|
+
chalk@4.1.2:
|
|
736
|
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
|
737
|
+
engines: {node: '>=10'}
|
|
738
|
+
|
|
739
|
+
chownr@3.0.0:
|
|
740
|
+
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
|
|
741
|
+
engines: {node: '>=18'}
|
|
742
|
+
|
|
743
|
+
client-only@0.0.1:
|
|
744
|
+
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
|
|
745
|
+
|
|
746
|
+
color-convert@2.0.1:
|
|
747
|
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
748
|
+
engines: {node: '>=7.0.0'}
|
|
749
|
+
|
|
750
|
+
color-name@1.1.4:
|
|
751
|
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
752
|
+
|
|
753
|
+
concat-map@0.0.1:
|
|
754
|
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
|
755
|
+
|
|
756
|
+
cross-spawn@7.0.6:
|
|
757
|
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
|
758
|
+
engines: {node: '>= 8'}
|
|
759
|
+
|
|
760
|
+
csstype@3.1.3:
|
|
761
|
+
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
|
762
|
+
|
|
763
|
+
damerau-levenshtein@1.0.8:
|
|
764
|
+
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
|
|
765
|
+
|
|
766
|
+
data-view-buffer@1.0.2:
|
|
767
|
+
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
|
|
768
|
+
engines: {node: '>= 0.4'}
|
|
769
|
+
|
|
770
|
+
data-view-byte-length@1.0.2:
|
|
771
|
+
resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
|
|
772
|
+
engines: {node: '>= 0.4'}
|
|
773
|
+
|
|
774
|
+
data-view-byte-offset@1.0.1:
|
|
775
|
+
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
|
|
776
|
+
engines: {node: '>= 0.4'}
|
|
777
|
+
|
|
778
|
+
debug@3.2.7:
|
|
779
|
+
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
|
780
|
+
peerDependencies:
|
|
781
|
+
supports-color: '*'
|
|
782
|
+
peerDependenciesMeta:
|
|
783
|
+
supports-color:
|
|
784
|
+
optional: true
|
|
785
|
+
|
|
786
|
+
debug@4.4.3:
|
|
787
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
788
|
+
engines: {node: '>=6.0'}
|
|
789
|
+
peerDependencies:
|
|
790
|
+
supports-color: '*'
|
|
791
|
+
peerDependenciesMeta:
|
|
792
|
+
supports-color:
|
|
793
|
+
optional: true
|
|
794
|
+
|
|
795
|
+
deep-is@0.1.4:
|
|
796
|
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
|
797
|
+
|
|
798
|
+
define-data-property@1.1.4:
|
|
799
|
+
resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
|
|
800
|
+
engines: {node: '>= 0.4'}
|
|
801
|
+
|
|
802
|
+
define-properties@1.2.1:
|
|
803
|
+
resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
|
|
804
|
+
engines: {node: '>= 0.4'}
|
|
805
|
+
|
|
806
|
+
dequal@2.0.3:
|
|
807
|
+
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
808
|
+
engines: {node: '>=6'}
|
|
809
|
+
|
|
810
|
+
detect-libc@2.1.2:
|
|
811
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
812
|
+
engines: {node: '>=8'}
|
|
813
|
+
|
|
814
|
+
doctrine@2.1.0:
|
|
815
|
+
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
|
|
816
|
+
engines: {node: '>=0.10.0'}
|
|
817
|
+
|
|
818
|
+
dunder-proto@1.0.1:
|
|
819
|
+
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
|
|
820
|
+
engines: {node: '>= 0.4'}
|
|
821
|
+
|
|
822
|
+
emoji-regex@9.2.2:
|
|
823
|
+
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
|
824
|
+
|
|
825
|
+
enhanced-resolve@5.18.3:
|
|
826
|
+
resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
|
|
827
|
+
engines: {node: '>=10.13.0'}
|
|
828
|
+
|
|
829
|
+
es-abstract@1.24.0:
|
|
830
|
+
resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==}
|
|
831
|
+
engines: {node: '>= 0.4'}
|
|
832
|
+
|
|
833
|
+
es-define-property@1.0.1:
|
|
834
|
+
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
|
|
835
|
+
engines: {node: '>= 0.4'}
|
|
836
|
+
|
|
837
|
+
es-errors@1.3.0:
|
|
838
|
+
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
|
|
839
|
+
engines: {node: '>= 0.4'}
|
|
840
|
+
|
|
841
|
+
es-iterator-helpers@1.2.1:
|
|
842
|
+
resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
|
|
843
|
+
engines: {node: '>= 0.4'}
|
|
844
|
+
|
|
845
|
+
es-object-atoms@1.1.1:
|
|
846
|
+
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
|
|
847
|
+
engines: {node: '>= 0.4'}
|
|
848
|
+
|
|
849
|
+
es-set-tostringtag@2.1.0:
|
|
850
|
+
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
|
|
851
|
+
engines: {node: '>= 0.4'}
|
|
852
|
+
|
|
853
|
+
es-shim-unscopables@1.1.0:
|
|
854
|
+
resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
|
|
855
|
+
engines: {node: '>= 0.4'}
|
|
856
|
+
|
|
857
|
+
es-to-primitive@1.3.0:
|
|
858
|
+
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
|
|
859
|
+
engines: {node: '>= 0.4'}
|
|
860
|
+
|
|
861
|
+
escape-string-regexp@4.0.0:
|
|
862
|
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
|
863
|
+
engines: {node: '>=10'}
|
|
864
|
+
|
|
865
|
+
eslint-config-next@15.4.4:
|
|
866
|
+
resolution: {integrity: sha512-sK/lWLUVF5om18O5w76Jt3F8uzu/LP5mVa6TprCMWkjWHUmByq80iHGHcdH7k1dLiJlj+DRIWf98d5piwRsSuA==}
|
|
867
|
+
peerDependencies:
|
|
868
|
+
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
|
|
869
|
+
typescript: '>=3.3.1'
|
|
870
|
+
peerDependenciesMeta:
|
|
871
|
+
typescript:
|
|
872
|
+
optional: true
|
|
873
|
+
|
|
874
|
+
eslint-import-resolver-node@0.3.9:
|
|
875
|
+
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
|
|
876
|
+
|
|
877
|
+
eslint-import-resolver-typescript@3.10.1:
|
|
878
|
+
resolution: {integrity: sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==}
|
|
879
|
+
engines: {node: ^14.18.0 || >=16.0.0}
|
|
880
|
+
peerDependencies:
|
|
881
|
+
eslint: '*'
|
|
882
|
+
eslint-plugin-import: '*'
|
|
883
|
+
eslint-plugin-import-x: '*'
|
|
884
|
+
peerDependenciesMeta:
|
|
885
|
+
eslint-plugin-import:
|
|
886
|
+
optional: true
|
|
887
|
+
eslint-plugin-import-x:
|
|
888
|
+
optional: true
|
|
889
|
+
|
|
890
|
+
eslint-module-utils@2.12.1:
|
|
891
|
+
resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==}
|
|
892
|
+
engines: {node: '>=4'}
|
|
893
|
+
peerDependencies:
|
|
894
|
+
'@typescript-eslint/parser': '*'
|
|
895
|
+
eslint: '*'
|
|
896
|
+
eslint-import-resolver-node: '*'
|
|
897
|
+
eslint-import-resolver-typescript: '*'
|
|
898
|
+
eslint-import-resolver-webpack: '*'
|
|
899
|
+
peerDependenciesMeta:
|
|
900
|
+
'@typescript-eslint/parser':
|
|
901
|
+
optional: true
|
|
902
|
+
eslint:
|
|
903
|
+
optional: true
|
|
904
|
+
eslint-import-resolver-node:
|
|
905
|
+
optional: true
|
|
906
|
+
eslint-import-resolver-typescript:
|
|
907
|
+
optional: true
|
|
908
|
+
eslint-import-resolver-webpack:
|
|
909
|
+
optional: true
|
|
910
|
+
|
|
911
|
+
eslint-plugin-import@2.32.0:
|
|
912
|
+
resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==}
|
|
913
|
+
engines: {node: '>=4'}
|
|
914
|
+
peerDependencies:
|
|
915
|
+
'@typescript-eslint/parser': '*'
|
|
916
|
+
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
|
|
917
|
+
peerDependenciesMeta:
|
|
918
|
+
'@typescript-eslint/parser':
|
|
919
|
+
optional: true
|
|
920
|
+
|
|
921
|
+
eslint-plugin-jsx-a11y@6.10.2:
|
|
922
|
+
resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
|
|
923
|
+
engines: {node: '>=4.0'}
|
|
924
|
+
peerDependencies:
|
|
925
|
+
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
|
|
926
|
+
|
|
927
|
+
eslint-plugin-react-hooks@5.2.0:
|
|
928
|
+
resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
|
|
929
|
+
engines: {node: '>=10'}
|
|
930
|
+
peerDependencies:
|
|
931
|
+
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
|
|
932
|
+
|
|
933
|
+
eslint-plugin-react@7.37.5:
|
|
934
|
+
resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
|
|
935
|
+
engines: {node: '>=4'}
|
|
936
|
+
peerDependencies:
|
|
937
|
+
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
|
|
938
|
+
|
|
939
|
+
eslint-scope@8.4.0:
|
|
940
|
+
resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
|
|
941
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
942
|
+
|
|
943
|
+
eslint-visitor-keys@3.4.3:
|
|
944
|
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
|
945
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
946
|
+
|
|
947
|
+
eslint-visitor-keys@4.2.1:
|
|
948
|
+
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
|
949
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
950
|
+
|
|
951
|
+
eslint@9.37.0:
|
|
952
|
+
resolution: {integrity: sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==}
|
|
953
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
954
|
+
hasBin: true
|
|
955
|
+
peerDependencies:
|
|
956
|
+
jiti: '*'
|
|
957
|
+
peerDependenciesMeta:
|
|
958
|
+
jiti:
|
|
959
|
+
optional: true
|
|
960
|
+
|
|
961
|
+
espree@10.4.0:
|
|
962
|
+
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
|
963
|
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
964
|
+
|
|
965
|
+
esquery@1.6.0:
|
|
966
|
+
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
|
967
|
+
engines: {node: '>=0.10'}
|
|
968
|
+
|
|
969
|
+
esrecurse@4.3.0:
|
|
970
|
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
971
|
+
engines: {node: '>=4.0'}
|
|
972
|
+
|
|
973
|
+
estraverse@5.3.0:
|
|
974
|
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
975
|
+
engines: {node: '>=4.0'}
|
|
976
|
+
|
|
977
|
+
esutils@2.0.3:
|
|
978
|
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
979
|
+
engines: {node: '>=0.10.0'}
|
|
980
|
+
|
|
981
|
+
fast-deep-equal@3.1.3:
|
|
982
|
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
983
|
+
|
|
984
|
+
fast-glob@3.3.1:
|
|
985
|
+
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
|
|
986
|
+
engines: {node: '>=8.6.0'}
|
|
987
|
+
|
|
988
|
+
fast-glob@3.3.3:
|
|
989
|
+
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
|
990
|
+
engines: {node: '>=8.6.0'}
|
|
991
|
+
|
|
992
|
+
fast-json-stable-stringify@2.1.0:
|
|
993
|
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
|
994
|
+
|
|
995
|
+
fast-levenshtein@2.0.6:
|
|
996
|
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
|
997
|
+
|
|
998
|
+
fastq@1.19.1:
|
|
999
|
+
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
|
|
1000
|
+
|
|
1001
|
+
fdir@6.5.0:
|
|
1002
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
1003
|
+
engines: {node: '>=12.0.0'}
|
|
1004
|
+
peerDependencies:
|
|
1005
|
+
picomatch: ^3 || ^4
|
|
1006
|
+
peerDependenciesMeta:
|
|
1007
|
+
picomatch:
|
|
1008
|
+
optional: true
|
|
1009
|
+
|
|
1010
|
+
file-entry-cache@8.0.0:
|
|
1011
|
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
|
1012
|
+
engines: {node: '>=16.0.0'}
|
|
1013
|
+
|
|
1014
|
+
fill-range@7.1.1:
|
|
1015
|
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
|
1016
|
+
engines: {node: '>=8'}
|
|
1017
|
+
|
|
1018
|
+
find-up@5.0.0:
|
|
1019
|
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
|
1020
|
+
engines: {node: '>=10'}
|
|
1021
|
+
|
|
1022
|
+
flat-cache@4.0.1:
|
|
1023
|
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
1024
|
+
engines: {node: '>=16'}
|
|
1025
|
+
|
|
1026
|
+
flatted@3.3.3:
|
|
1027
|
+
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
|
|
1028
|
+
|
|
1029
|
+
for-each@0.3.5:
|
|
1030
|
+
resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
|
|
1031
|
+
engines: {node: '>= 0.4'}
|
|
1032
|
+
|
|
1033
|
+
function-bind@1.1.2:
|
|
1034
|
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
1035
|
+
|
|
1036
|
+
function.prototype.name@1.1.8:
|
|
1037
|
+
resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
|
|
1038
|
+
engines: {node: '>= 0.4'}
|
|
1039
|
+
|
|
1040
|
+
functions-have-names@1.2.3:
|
|
1041
|
+
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
|
1042
|
+
|
|
1043
|
+
generator-function@2.0.1:
|
|
1044
|
+
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
|
|
1045
|
+
engines: {node: '>= 0.4'}
|
|
1046
|
+
|
|
1047
|
+
get-intrinsic@1.3.0:
|
|
1048
|
+
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
|
|
1049
|
+
engines: {node: '>= 0.4'}
|
|
1050
|
+
|
|
1051
|
+
get-proto@1.0.1:
|
|
1052
|
+
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
|
|
1053
|
+
engines: {node: '>= 0.4'}
|
|
1054
|
+
|
|
1055
|
+
get-symbol-description@1.1.0:
|
|
1056
|
+
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
|
|
1057
|
+
engines: {node: '>= 0.4'}
|
|
1058
|
+
|
|
1059
|
+
get-tsconfig@4.12.0:
|
|
1060
|
+
resolution: {integrity: sha512-LScr2aNr2FbjAjZh2C6X6BxRx1/x+aTDExct/xyq2XKbYOiG5c0aK7pMsSuyc0brz3ibr/lbQiHD9jzt4lccJw==}
|
|
1061
|
+
|
|
1062
|
+
glob-parent@5.1.2:
|
|
1063
|
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
|
1064
|
+
engines: {node: '>= 6'}
|
|
1065
|
+
|
|
1066
|
+
glob-parent@6.0.2:
|
|
1067
|
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
|
1068
|
+
engines: {node: '>=10.13.0'}
|
|
1069
|
+
|
|
1070
|
+
globals@14.0.0:
|
|
1071
|
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
|
1072
|
+
engines: {node: '>=18'}
|
|
1073
|
+
|
|
1074
|
+
globalthis@1.0.4:
|
|
1075
|
+
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
|
|
1076
|
+
engines: {node: '>= 0.4'}
|
|
1077
|
+
|
|
1078
|
+
gopd@1.2.0:
|
|
1079
|
+
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
|
|
1080
|
+
engines: {node: '>= 0.4'}
|
|
1081
|
+
|
|
1082
|
+
graceful-fs@4.2.11:
|
|
1083
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
1084
|
+
|
|
1085
|
+
graphemer@1.4.0:
|
|
1086
|
+
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
|
1087
|
+
|
|
1088
|
+
has-bigints@1.1.0:
|
|
1089
|
+
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
|
|
1090
|
+
engines: {node: '>= 0.4'}
|
|
1091
|
+
|
|
1092
|
+
has-flag@4.0.0:
|
|
1093
|
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
1094
|
+
engines: {node: '>=8'}
|
|
1095
|
+
|
|
1096
|
+
has-property-descriptors@1.0.2:
|
|
1097
|
+
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
|
|
1098
|
+
|
|
1099
|
+
has-proto@1.2.0:
|
|
1100
|
+
resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
|
|
1101
|
+
engines: {node: '>= 0.4'}
|
|
1102
|
+
|
|
1103
|
+
has-symbols@1.1.0:
|
|
1104
|
+
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
|
|
1105
|
+
engines: {node: '>= 0.4'}
|
|
1106
|
+
|
|
1107
|
+
has-tostringtag@1.0.2:
|
|
1108
|
+
resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
|
|
1109
|
+
engines: {node: '>= 0.4'}
|
|
1110
|
+
|
|
1111
|
+
hasown@2.0.2:
|
|
1112
|
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
1113
|
+
engines: {node: '>= 0.4'}
|
|
1114
|
+
|
|
1115
|
+
ignore@5.3.2:
|
|
1116
|
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
|
1117
|
+
engines: {node: '>= 4'}
|
|
1118
|
+
|
|
1119
|
+
ignore@7.0.5:
|
|
1120
|
+
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
|
1121
|
+
engines: {node: '>= 4'}
|
|
1122
|
+
|
|
1123
|
+
import-fresh@3.3.1:
|
|
1124
|
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
1125
|
+
engines: {node: '>=6'}
|
|
1126
|
+
|
|
1127
|
+
imurmurhash@0.1.4:
|
|
1128
|
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
|
1129
|
+
engines: {node: '>=0.8.19'}
|
|
1130
|
+
|
|
1131
|
+
internal-slot@1.1.0:
|
|
1132
|
+
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
|
|
1133
|
+
engines: {node: '>= 0.4'}
|
|
1134
|
+
|
|
1135
|
+
is-array-buffer@3.0.5:
|
|
1136
|
+
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
|
|
1137
|
+
engines: {node: '>= 0.4'}
|
|
1138
|
+
|
|
1139
|
+
is-async-function@2.1.1:
|
|
1140
|
+
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
|
|
1141
|
+
engines: {node: '>= 0.4'}
|
|
1142
|
+
|
|
1143
|
+
is-bigint@1.1.0:
|
|
1144
|
+
resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
|
|
1145
|
+
engines: {node: '>= 0.4'}
|
|
1146
|
+
|
|
1147
|
+
is-boolean-object@1.2.2:
|
|
1148
|
+
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
|
|
1149
|
+
engines: {node: '>= 0.4'}
|
|
1150
|
+
|
|
1151
|
+
is-bun-module@2.0.0:
|
|
1152
|
+
resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==}
|
|
1153
|
+
|
|
1154
|
+
is-callable@1.2.7:
|
|
1155
|
+
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
|
|
1156
|
+
engines: {node: '>= 0.4'}
|
|
1157
|
+
|
|
1158
|
+
is-core-module@2.16.1:
|
|
1159
|
+
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
|
|
1160
|
+
engines: {node: '>= 0.4'}
|
|
1161
|
+
|
|
1162
|
+
is-data-view@1.0.2:
|
|
1163
|
+
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
|
|
1164
|
+
engines: {node: '>= 0.4'}
|
|
1165
|
+
|
|
1166
|
+
is-date-object@1.1.0:
|
|
1167
|
+
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
|
|
1168
|
+
engines: {node: '>= 0.4'}
|
|
1169
|
+
|
|
1170
|
+
is-extglob@2.1.1:
|
|
1171
|
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
|
1172
|
+
engines: {node: '>=0.10.0'}
|
|
1173
|
+
|
|
1174
|
+
is-finalizationregistry@1.1.1:
|
|
1175
|
+
resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
|
|
1176
|
+
engines: {node: '>= 0.4'}
|
|
1177
|
+
|
|
1178
|
+
is-generator-function@1.1.2:
|
|
1179
|
+
resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
|
|
1180
|
+
engines: {node: '>= 0.4'}
|
|
1181
|
+
|
|
1182
|
+
is-glob@4.0.3:
|
|
1183
|
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
|
1184
|
+
engines: {node: '>=0.10.0'}
|
|
1185
|
+
|
|
1186
|
+
is-map@2.0.3:
|
|
1187
|
+
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
|
|
1188
|
+
engines: {node: '>= 0.4'}
|
|
1189
|
+
|
|
1190
|
+
is-negative-zero@2.0.3:
|
|
1191
|
+
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
|
|
1192
|
+
engines: {node: '>= 0.4'}
|
|
1193
|
+
|
|
1194
|
+
is-number-object@1.1.1:
|
|
1195
|
+
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
|
|
1196
|
+
engines: {node: '>= 0.4'}
|
|
1197
|
+
|
|
1198
|
+
is-number@7.0.0:
|
|
1199
|
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
|
1200
|
+
engines: {node: '>=0.12.0'}
|
|
1201
|
+
|
|
1202
|
+
is-regex@1.2.1:
|
|
1203
|
+
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
|
|
1204
|
+
engines: {node: '>= 0.4'}
|
|
1205
|
+
|
|
1206
|
+
is-set@2.0.3:
|
|
1207
|
+
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
|
|
1208
|
+
engines: {node: '>= 0.4'}
|
|
1209
|
+
|
|
1210
|
+
is-shared-array-buffer@1.0.4:
|
|
1211
|
+
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
|
|
1212
|
+
engines: {node: '>= 0.4'}
|
|
1213
|
+
|
|
1214
|
+
is-string@1.1.1:
|
|
1215
|
+
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
|
|
1216
|
+
engines: {node: '>= 0.4'}
|
|
1217
|
+
|
|
1218
|
+
is-symbol@1.1.1:
|
|
1219
|
+
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
|
|
1220
|
+
engines: {node: '>= 0.4'}
|
|
1221
|
+
|
|
1222
|
+
is-typed-array@1.1.15:
|
|
1223
|
+
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
|
|
1224
|
+
engines: {node: '>= 0.4'}
|
|
1225
|
+
|
|
1226
|
+
is-weakmap@2.0.2:
|
|
1227
|
+
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
|
|
1228
|
+
engines: {node: '>= 0.4'}
|
|
1229
|
+
|
|
1230
|
+
is-weakref@1.1.1:
|
|
1231
|
+
resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
|
|
1232
|
+
engines: {node: '>= 0.4'}
|
|
1233
|
+
|
|
1234
|
+
is-weakset@2.0.4:
|
|
1235
|
+
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
|
|
1236
|
+
engines: {node: '>= 0.4'}
|
|
1237
|
+
|
|
1238
|
+
isarray@2.0.5:
|
|
1239
|
+
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
|
|
1240
|
+
|
|
1241
|
+
isexe@2.0.0:
|
|
1242
|
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
1243
|
+
|
|
1244
|
+
iterator.prototype@1.1.5:
|
|
1245
|
+
resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
|
|
1246
|
+
engines: {node: '>= 0.4'}
|
|
1247
|
+
|
|
1248
|
+
jiti@2.6.1:
|
|
1249
|
+
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
|
1250
|
+
hasBin: true
|
|
1251
|
+
|
|
1252
|
+
jose@6.1.0:
|
|
1253
|
+
resolution: {integrity: sha512-TTQJyoEoKcC1lscpVDCSsVgYzUDg/0Bt3WE//WiTPK6uOCQC2KZS4MpugbMWt/zyjkopgZoXhZuCi00gLudfUA==}
|
|
1254
|
+
|
|
1255
|
+
js-tokens@4.0.0:
|
|
1256
|
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
1257
|
+
|
|
1258
|
+
js-yaml@4.1.0:
|
|
1259
|
+
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
|
|
1260
|
+
hasBin: true
|
|
1261
|
+
|
|
1262
|
+
json-buffer@3.0.1:
|
|
1263
|
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
|
1264
|
+
|
|
1265
|
+
json-schema-traverse@0.4.1:
|
|
1266
|
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
|
1267
|
+
|
|
1268
|
+
json-stable-stringify-without-jsonify@1.0.1:
|
|
1269
|
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
1270
|
+
|
|
1271
|
+
json5@1.0.2:
|
|
1272
|
+
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
|
|
1273
|
+
hasBin: true
|
|
1274
|
+
|
|
1275
|
+
jsx-ast-utils@3.3.5:
|
|
1276
|
+
resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
|
|
1277
|
+
engines: {node: '>=4.0'}
|
|
1278
|
+
|
|
1279
|
+
keyv@4.5.4:
|
|
1280
|
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
|
1281
|
+
|
|
1282
|
+
language-subtag-registry@0.3.23:
|
|
1283
|
+
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
|
|
1284
|
+
|
|
1285
|
+
language-tags@1.0.9:
|
|
1286
|
+
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
|
|
1287
|
+
engines: {node: '>=0.10'}
|
|
1288
|
+
|
|
1289
|
+
levn@0.4.1:
|
|
1290
|
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
|
1291
|
+
engines: {node: '>= 0.8.0'}
|
|
1292
|
+
|
|
1293
|
+
lightningcss-darwin-arm64@1.30.1:
|
|
1294
|
+
resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
|
|
1295
|
+
engines: {node: '>= 12.0.0'}
|
|
1296
|
+
cpu: [arm64]
|
|
1297
|
+
os: [darwin]
|
|
1298
|
+
|
|
1299
|
+
lightningcss-darwin-x64@1.30.1:
|
|
1300
|
+
resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
|
|
1301
|
+
engines: {node: '>= 12.0.0'}
|
|
1302
|
+
cpu: [x64]
|
|
1303
|
+
os: [darwin]
|
|
1304
|
+
|
|
1305
|
+
lightningcss-freebsd-x64@1.30.1:
|
|
1306
|
+
resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
|
|
1307
|
+
engines: {node: '>= 12.0.0'}
|
|
1308
|
+
cpu: [x64]
|
|
1309
|
+
os: [freebsd]
|
|
1310
|
+
|
|
1311
|
+
lightningcss-linux-arm-gnueabihf@1.30.1:
|
|
1312
|
+
resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
|
|
1313
|
+
engines: {node: '>= 12.0.0'}
|
|
1314
|
+
cpu: [arm]
|
|
1315
|
+
os: [linux]
|
|
1316
|
+
|
|
1317
|
+
lightningcss-linux-arm64-gnu@1.30.1:
|
|
1318
|
+
resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
|
|
1319
|
+
engines: {node: '>= 12.0.0'}
|
|
1320
|
+
cpu: [arm64]
|
|
1321
|
+
os: [linux]
|
|
1322
|
+
|
|
1323
|
+
lightningcss-linux-arm64-musl@1.30.1:
|
|
1324
|
+
resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
|
|
1325
|
+
engines: {node: '>= 12.0.0'}
|
|
1326
|
+
cpu: [arm64]
|
|
1327
|
+
os: [linux]
|
|
1328
|
+
|
|
1329
|
+
lightningcss-linux-x64-gnu@1.30.1:
|
|
1330
|
+
resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
|
|
1331
|
+
engines: {node: '>= 12.0.0'}
|
|
1332
|
+
cpu: [x64]
|
|
1333
|
+
os: [linux]
|
|
1334
|
+
|
|
1335
|
+
lightningcss-linux-x64-musl@1.30.1:
|
|
1336
|
+
resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
|
|
1337
|
+
engines: {node: '>= 12.0.0'}
|
|
1338
|
+
cpu: [x64]
|
|
1339
|
+
os: [linux]
|
|
1340
|
+
|
|
1341
|
+
lightningcss-win32-arm64-msvc@1.30.1:
|
|
1342
|
+
resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
|
|
1343
|
+
engines: {node: '>= 12.0.0'}
|
|
1344
|
+
cpu: [arm64]
|
|
1345
|
+
os: [win32]
|
|
1346
|
+
|
|
1347
|
+
lightningcss-win32-x64-msvc@1.30.1:
|
|
1348
|
+
resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
|
|
1349
|
+
engines: {node: '>= 12.0.0'}
|
|
1350
|
+
cpu: [x64]
|
|
1351
|
+
os: [win32]
|
|
1352
|
+
|
|
1353
|
+
lightningcss@1.30.1:
|
|
1354
|
+
resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
|
|
1355
|
+
engines: {node: '>= 12.0.0'}
|
|
1356
|
+
|
|
1357
|
+
locate-path@6.0.0:
|
|
1358
|
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
|
1359
|
+
engines: {node: '>=10'}
|
|
1360
|
+
|
|
1361
|
+
lodash.merge@4.6.2:
|
|
1362
|
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
|
1363
|
+
|
|
1364
|
+
loose-envify@1.4.0:
|
|
1365
|
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
1366
|
+
hasBin: true
|
|
1367
|
+
|
|
1368
|
+
magic-string@0.30.19:
|
|
1369
|
+
resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
|
|
1370
|
+
|
|
1371
|
+
math-intrinsics@1.1.0:
|
|
1372
|
+
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
|
|
1373
|
+
engines: {node: '>= 0.4'}
|
|
1374
|
+
|
|
1375
|
+
merge2@1.4.1:
|
|
1376
|
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
|
1377
|
+
engines: {node: '>= 8'}
|
|
1378
|
+
|
|
1379
|
+
micromatch@4.0.8:
|
|
1380
|
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
|
1381
|
+
engines: {node: '>=8.6'}
|
|
1382
|
+
|
|
1383
|
+
minimatch@3.1.2:
|
|
1384
|
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
|
1385
|
+
|
|
1386
|
+
minimatch@9.0.5:
|
|
1387
|
+
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
|
1388
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
1389
|
+
|
|
1390
|
+
minimist@1.2.8:
|
|
1391
|
+
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
|
1392
|
+
|
|
1393
|
+
minipass@7.1.2:
|
|
1394
|
+
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
|
1395
|
+
engines: {node: '>=16 || 14 >=14.17'}
|
|
1396
|
+
|
|
1397
|
+
minizlib@3.1.0:
|
|
1398
|
+
resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
|
|
1399
|
+
engines: {node: '>= 18'}
|
|
1400
|
+
|
|
1401
|
+
ms@2.1.3:
|
|
1402
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1403
|
+
|
|
1404
|
+
nanoid@3.3.11:
|
|
1405
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
1406
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1407
|
+
hasBin: true
|
|
1408
|
+
|
|
1409
|
+
napi-postinstall@0.3.4:
|
|
1410
|
+
resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
|
|
1411
|
+
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
|
|
1412
|
+
hasBin: true
|
|
1413
|
+
|
|
1414
|
+
natural-compare@1.4.0:
|
|
1415
|
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
|
1416
|
+
|
|
1417
|
+
next@15.4.4:
|
|
1418
|
+
resolution: {integrity: sha512-kNcubvJjOL9yUOfwtZF3HfDhuhp+kVD+FM2A6Tyua1eI/xfmY4r/8ZS913MMz+oWKDlbps/dQOWdDricuIkXLw==}
|
|
1419
|
+
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
|
|
1420
|
+
hasBin: true
|
|
1421
|
+
peerDependencies:
|
|
1422
|
+
'@opentelemetry/api': ^1.1.0
|
|
1423
|
+
'@playwright/test': ^1.51.1
|
|
1424
|
+
babel-plugin-react-compiler: '*'
|
|
1425
|
+
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
1426
|
+
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
1427
|
+
sass: ^1.3.0
|
|
1428
|
+
peerDependenciesMeta:
|
|
1429
|
+
'@opentelemetry/api':
|
|
1430
|
+
optional: true
|
|
1431
|
+
'@playwright/test':
|
|
1432
|
+
optional: true
|
|
1433
|
+
babel-plugin-react-compiler:
|
|
1434
|
+
optional: true
|
|
1435
|
+
sass:
|
|
1436
|
+
optional: true
|
|
1437
|
+
|
|
1438
|
+
oauth4webapi@3.8.2:
|
|
1439
|
+
resolution: {integrity: sha512-FzZZ+bht5X0FKe7Mwz3DAVAmlH1BV5blSak/lHMBKz0/EBMhX6B10GlQYI51+oRp8ObJaX0g6pXrAxZh5s8rjw==}
|
|
1440
|
+
|
|
1441
|
+
object-assign@4.1.1:
|
|
1442
|
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
|
1443
|
+
engines: {node: '>=0.10.0'}
|
|
1444
|
+
|
|
1445
|
+
object-inspect@1.13.4:
|
|
1446
|
+
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
|
|
1447
|
+
engines: {node: '>= 0.4'}
|
|
1448
|
+
|
|
1449
|
+
object-keys@1.1.1:
|
|
1450
|
+
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
|
|
1451
|
+
engines: {node: '>= 0.4'}
|
|
1452
|
+
|
|
1453
|
+
object.assign@4.1.7:
|
|
1454
|
+
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
|
|
1455
|
+
engines: {node: '>= 0.4'}
|
|
1456
|
+
|
|
1457
|
+
object.entries@1.1.9:
|
|
1458
|
+
resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
|
|
1459
|
+
engines: {node: '>= 0.4'}
|
|
1460
|
+
|
|
1461
|
+
object.fromentries@2.0.8:
|
|
1462
|
+
resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
|
|
1463
|
+
engines: {node: '>= 0.4'}
|
|
1464
|
+
|
|
1465
|
+
object.groupby@1.0.3:
|
|
1466
|
+
resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
|
|
1467
|
+
engines: {node: '>= 0.4'}
|
|
1468
|
+
|
|
1469
|
+
object.values@1.2.1:
|
|
1470
|
+
resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
|
|
1471
|
+
engines: {node: '>= 0.4'}
|
|
1472
|
+
|
|
1473
|
+
openid-client@6.8.1:
|
|
1474
|
+
resolution: {integrity: sha512-VoYT6enBo6Vj2j3Q5Ec0AezS+9YGzQo1f5Xc42lreMGlfP4ljiXPKVDvCADh+XHCV/bqPu/wWSiCVXbJKvrODw==}
|
|
1475
|
+
|
|
1476
|
+
optionator@0.9.4:
|
|
1477
|
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
|
1478
|
+
engines: {node: '>= 0.8.0'}
|
|
1479
|
+
|
|
1480
|
+
own-keys@1.0.1:
|
|
1481
|
+
resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
|
|
1482
|
+
engines: {node: '>= 0.4'}
|
|
1483
|
+
|
|
1484
|
+
p-limit@3.1.0:
|
|
1485
|
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
|
1486
|
+
engines: {node: '>=10'}
|
|
1487
|
+
|
|
1488
|
+
p-locate@5.0.0:
|
|
1489
|
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
|
1490
|
+
engines: {node: '>=10'}
|
|
1491
|
+
|
|
1492
|
+
parent-module@1.0.1:
|
|
1493
|
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
1494
|
+
engines: {node: '>=6'}
|
|
1495
|
+
|
|
1496
|
+
path-exists@4.0.0:
|
|
1497
|
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
|
1498
|
+
engines: {node: '>=8'}
|
|
1499
|
+
|
|
1500
|
+
path-key@3.1.1:
|
|
1501
|
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
1502
|
+
engines: {node: '>=8'}
|
|
1503
|
+
|
|
1504
|
+
path-parse@1.0.7:
|
|
1505
|
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
1506
|
+
|
|
1507
|
+
picocolors@1.1.1:
|
|
1508
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1509
|
+
|
|
1510
|
+
picomatch@2.3.1:
|
|
1511
|
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
|
1512
|
+
engines: {node: '>=8.6'}
|
|
1513
|
+
|
|
1514
|
+
picomatch@4.0.3:
|
|
1515
|
+
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
|
1516
|
+
engines: {node: '>=12'}
|
|
1517
|
+
|
|
1518
|
+
possible-typed-array-names@1.1.0:
|
|
1519
|
+
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
|
|
1520
|
+
engines: {node: '>= 0.4'}
|
|
1521
|
+
|
|
1522
|
+
postcss@8.4.31:
|
|
1523
|
+
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
|
|
1524
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1525
|
+
|
|
1526
|
+
postcss@8.5.6:
|
|
1527
|
+
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
1528
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1529
|
+
|
|
1530
|
+
prelude-ls@1.2.1:
|
|
1531
|
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
|
1532
|
+
engines: {node: '>= 0.8.0'}
|
|
1533
|
+
|
|
1534
|
+
prop-types@15.8.1:
|
|
1535
|
+
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
|
|
1536
|
+
|
|
1537
|
+
punycode@2.3.1:
|
|
1538
|
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
|
1539
|
+
engines: {node: '>=6'}
|
|
1540
|
+
|
|
1541
|
+
queue-microtask@1.2.3:
|
|
1542
|
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
1543
|
+
|
|
1544
|
+
react-dom@19.1.0:
|
|
1545
|
+
resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
|
|
1546
|
+
peerDependencies:
|
|
1547
|
+
react: ^19.1.0
|
|
1548
|
+
|
|
1549
|
+
react-is@16.13.1:
|
|
1550
|
+
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
|
|
1551
|
+
|
|
1552
|
+
react@19.1.0:
|
|
1553
|
+
resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
|
|
1554
|
+
engines: {node: '>=0.10.0'}
|
|
1555
|
+
|
|
1556
|
+
reflect.getprototypeof@1.0.10:
|
|
1557
|
+
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
|
|
1558
|
+
engines: {node: '>= 0.4'}
|
|
1559
|
+
|
|
1560
|
+
regexp.prototype.flags@1.5.4:
|
|
1561
|
+
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
|
|
1562
|
+
engines: {node: '>= 0.4'}
|
|
1563
|
+
|
|
1564
|
+
resolve-from@4.0.0:
|
|
1565
|
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
1566
|
+
engines: {node: '>=4'}
|
|
1567
|
+
|
|
1568
|
+
resolve-pkg-maps@1.0.0:
|
|
1569
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1570
|
+
|
|
1571
|
+
resolve@1.22.10:
|
|
1572
|
+
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
|
|
1573
|
+
engines: {node: '>= 0.4'}
|
|
1574
|
+
hasBin: true
|
|
1575
|
+
|
|
1576
|
+
resolve@2.0.0-next.5:
|
|
1577
|
+
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
|
|
1578
|
+
hasBin: true
|
|
1579
|
+
|
|
1580
|
+
reusify@1.1.0:
|
|
1581
|
+
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
|
1582
|
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
1583
|
+
|
|
1584
|
+
run-parallel@1.2.0:
|
|
1585
|
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
1586
|
+
|
|
1587
|
+
safe-array-concat@1.1.3:
|
|
1588
|
+
resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
|
|
1589
|
+
engines: {node: '>=0.4'}
|
|
1590
|
+
|
|
1591
|
+
safe-push-apply@1.0.0:
|
|
1592
|
+
resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
|
|
1593
|
+
engines: {node: '>= 0.4'}
|
|
1594
|
+
|
|
1595
|
+
safe-regex-test@1.1.0:
|
|
1596
|
+
resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
|
|
1597
|
+
engines: {node: '>= 0.4'}
|
|
1598
|
+
|
|
1599
|
+
scheduler@0.26.0:
|
|
1600
|
+
resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
|
|
1601
|
+
|
|
1602
|
+
semver@6.3.1:
|
|
1603
|
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
1604
|
+
hasBin: true
|
|
1605
|
+
|
|
1606
|
+
semver@7.7.3:
|
|
1607
|
+
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
1608
|
+
engines: {node: '>=10'}
|
|
1609
|
+
hasBin: true
|
|
1610
|
+
|
|
1611
|
+
set-function-length@1.2.2:
|
|
1612
|
+
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
|
|
1613
|
+
engines: {node: '>= 0.4'}
|
|
1614
|
+
|
|
1615
|
+
set-function-name@2.0.2:
|
|
1616
|
+
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
|
|
1617
|
+
engines: {node: '>= 0.4'}
|
|
1618
|
+
|
|
1619
|
+
set-proto@1.0.0:
|
|
1620
|
+
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
|
|
1621
|
+
engines: {node: '>= 0.4'}
|
|
1622
|
+
|
|
1623
|
+
sharp@0.34.4:
|
|
1624
|
+
resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==}
|
|
1625
|
+
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1626
|
+
|
|
1627
|
+
shebang-command@2.0.0:
|
|
1628
|
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
1629
|
+
engines: {node: '>=8'}
|
|
1630
|
+
|
|
1631
|
+
shebang-regex@3.0.0:
|
|
1632
|
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
1633
|
+
engines: {node: '>=8'}
|
|
1634
|
+
|
|
1635
|
+
side-channel-list@1.0.0:
|
|
1636
|
+
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
|
|
1637
|
+
engines: {node: '>= 0.4'}
|
|
1638
|
+
|
|
1639
|
+
side-channel-map@1.0.1:
|
|
1640
|
+
resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
|
|
1641
|
+
engines: {node: '>= 0.4'}
|
|
1642
|
+
|
|
1643
|
+
side-channel-weakmap@1.0.2:
|
|
1644
|
+
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
|
|
1645
|
+
engines: {node: '>= 0.4'}
|
|
1646
|
+
|
|
1647
|
+
side-channel@1.1.0:
|
|
1648
|
+
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
|
|
1649
|
+
engines: {node: '>= 0.4'}
|
|
1650
|
+
|
|
1651
|
+
source-map-js@1.2.1:
|
|
1652
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1653
|
+
engines: {node: '>=0.10.0'}
|
|
1654
|
+
|
|
1655
|
+
stable-hash@0.0.5:
|
|
1656
|
+
resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==}
|
|
1657
|
+
|
|
1658
|
+
stop-iteration-iterator@1.1.0:
|
|
1659
|
+
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
|
|
1660
|
+
engines: {node: '>= 0.4'}
|
|
1661
|
+
|
|
1662
|
+
string.prototype.includes@2.0.1:
|
|
1663
|
+
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
|
|
1664
|
+
engines: {node: '>= 0.4'}
|
|
1665
|
+
|
|
1666
|
+
string.prototype.matchall@4.0.12:
|
|
1667
|
+
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
|
|
1668
|
+
engines: {node: '>= 0.4'}
|
|
1669
|
+
|
|
1670
|
+
string.prototype.repeat@1.0.0:
|
|
1671
|
+
resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
|
|
1672
|
+
|
|
1673
|
+
string.prototype.trim@1.2.10:
|
|
1674
|
+
resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
|
|
1675
|
+
engines: {node: '>= 0.4'}
|
|
1676
|
+
|
|
1677
|
+
string.prototype.trimend@1.0.9:
|
|
1678
|
+
resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
|
|
1679
|
+
engines: {node: '>= 0.4'}
|
|
1680
|
+
|
|
1681
|
+
string.prototype.trimstart@1.0.8:
|
|
1682
|
+
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
|
|
1683
|
+
engines: {node: '>= 0.4'}
|
|
1684
|
+
|
|
1685
|
+
strip-bom@3.0.0:
|
|
1686
|
+
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
|
|
1687
|
+
engines: {node: '>=4'}
|
|
1688
|
+
|
|
1689
|
+
strip-json-comments@3.1.1:
|
|
1690
|
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
|
1691
|
+
engines: {node: '>=8'}
|
|
1692
|
+
|
|
1693
|
+
styled-jsx@5.1.6:
|
|
1694
|
+
resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
|
|
1695
|
+
engines: {node: '>= 12.0.0'}
|
|
1696
|
+
peerDependencies:
|
|
1697
|
+
'@babel/core': '*'
|
|
1698
|
+
babel-plugin-macros: '*'
|
|
1699
|
+
react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
|
|
1700
|
+
peerDependenciesMeta:
|
|
1701
|
+
'@babel/core':
|
|
1702
|
+
optional: true
|
|
1703
|
+
babel-plugin-macros:
|
|
1704
|
+
optional: true
|
|
1705
|
+
|
|
1706
|
+
supports-color@7.2.0:
|
|
1707
|
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
|
1708
|
+
engines: {node: '>=8'}
|
|
1709
|
+
|
|
1710
|
+
supports-preserve-symlinks-flag@1.0.0:
|
|
1711
|
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
1712
|
+
engines: {node: '>= 0.4'}
|
|
1713
|
+
|
|
1714
|
+
swr@2.3.6:
|
|
1715
|
+
resolution: {integrity: sha512-wfHRmHWk/isGNMwlLGlZX5Gzz/uTgo0o2IRuTMcf4CPuPFJZlq0rDaKUx+ozB5nBOReNV1kiOyzMfj+MBMikLw==}
|
|
1716
|
+
peerDependencies:
|
|
1717
|
+
react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1718
|
+
|
|
1719
|
+
tailwindcss@4.1.14:
|
|
1720
|
+
resolution: {integrity: sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==}
|
|
1721
|
+
|
|
1722
|
+
tapable@2.3.0:
|
|
1723
|
+
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
1724
|
+
engines: {node: '>=6'}
|
|
1725
|
+
|
|
1726
|
+
tar@7.5.1:
|
|
1727
|
+
resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==}
|
|
1728
|
+
engines: {node: '>=18'}
|
|
1729
|
+
|
|
1730
|
+
tinyglobby@0.2.15:
|
|
1731
|
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
1732
|
+
engines: {node: '>=12.0.0'}
|
|
1733
|
+
|
|
1734
|
+
to-regex-range@5.0.1:
|
|
1735
|
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
|
1736
|
+
engines: {node: '>=8.0'}
|
|
1737
|
+
|
|
1738
|
+
ts-api-utils@2.1.0:
|
|
1739
|
+
resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
|
|
1740
|
+
engines: {node: '>=18.12'}
|
|
1741
|
+
peerDependencies:
|
|
1742
|
+
typescript: '>=4.8.4'
|
|
1743
|
+
|
|
1744
|
+
tsconfig-paths@3.15.0:
|
|
1745
|
+
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
|
|
1746
|
+
|
|
1747
|
+
tslib@2.8.1:
|
|
1748
|
+
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
1749
|
+
|
|
1750
|
+
type-check@0.4.0:
|
|
1751
|
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
|
1752
|
+
engines: {node: '>= 0.8.0'}
|
|
1753
|
+
|
|
1754
|
+
typed-array-buffer@1.0.3:
|
|
1755
|
+
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
1756
|
+
engines: {node: '>= 0.4'}
|
|
1757
|
+
|
|
1758
|
+
typed-array-byte-length@1.0.3:
|
|
1759
|
+
resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
|
|
1760
|
+
engines: {node: '>= 0.4'}
|
|
1761
|
+
|
|
1762
|
+
typed-array-byte-offset@1.0.4:
|
|
1763
|
+
resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
|
|
1764
|
+
engines: {node: '>= 0.4'}
|
|
1765
|
+
|
|
1766
|
+
typed-array-length@1.0.7:
|
|
1767
|
+
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
|
|
1768
|
+
engines: {node: '>= 0.4'}
|
|
1769
|
+
|
|
1770
|
+
typescript@5.9.3:
|
|
1771
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1772
|
+
engines: {node: '>=14.17'}
|
|
1773
|
+
hasBin: true
|
|
1774
|
+
|
|
1775
|
+
unbox-primitive@1.1.0:
|
|
1776
|
+
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
|
|
1777
|
+
engines: {node: '>= 0.4'}
|
|
1778
|
+
|
|
1779
|
+
undici-types@6.21.0:
|
|
1780
|
+
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
1781
|
+
|
|
1782
|
+
unrs-resolver@1.11.1:
|
|
1783
|
+
resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
|
|
1784
|
+
|
|
1785
|
+
uri-js@4.4.1:
|
|
1786
|
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
1787
|
+
|
|
1788
|
+
use-sync-external-store@1.6.0:
|
|
1789
|
+
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
|
|
1790
|
+
peerDependencies:
|
|
1791
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1792
|
+
|
|
1793
|
+
which-boxed-primitive@1.1.1:
|
|
1794
|
+
resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
|
|
1795
|
+
engines: {node: '>= 0.4'}
|
|
1796
|
+
|
|
1797
|
+
which-builtin-type@1.2.1:
|
|
1798
|
+
resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
|
|
1799
|
+
engines: {node: '>= 0.4'}
|
|
1800
|
+
|
|
1801
|
+
which-collection@1.0.2:
|
|
1802
|
+
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
|
|
1803
|
+
engines: {node: '>= 0.4'}
|
|
1804
|
+
|
|
1805
|
+
which-typed-array@1.1.19:
|
|
1806
|
+
resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
|
|
1807
|
+
engines: {node: '>= 0.4'}
|
|
1808
|
+
|
|
1809
|
+
which@2.0.2:
|
|
1810
|
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
1811
|
+
engines: {node: '>= 8'}
|
|
1812
|
+
hasBin: true
|
|
1813
|
+
|
|
1814
|
+
word-wrap@1.2.5:
|
|
1815
|
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
|
1816
|
+
engines: {node: '>=0.10.0'}
|
|
1817
|
+
|
|
1818
|
+
yallist@5.0.0:
|
|
1819
|
+
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
|
|
1820
|
+
engines: {node: '>=18'}
|
|
1821
|
+
|
|
1822
|
+
yocto-queue@0.1.0:
|
|
1823
|
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
|
1824
|
+
engines: {node: '>=10'}
|
|
1825
|
+
|
|
1826
|
+
snapshots:
|
|
1827
|
+
|
|
1828
|
+
'@alloc/quick-lru@5.2.0': {}
|
|
1829
|
+
|
|
1830
|
+
'@auth0/nextjs-auth0@4.10.0(next@15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
|
|
1831
|
+
dependencies:
|
|
1832
|
+
'@edge-runtime/cookies': 5.0.2
|
|
1833
|
+
'@panva/hkdf': 1.2.1
|
|
1834
|
+
jose: 6.1.0
|
|
1835
|
+
next: 15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
|
|
1836
|
+
oauth4webapi: 3.8.2
|
|
1837
|
+
openid-client: 6.8.1
|
|
1838
|
+
react: 19.1.0
|
|
1839
|
+
react-dom: 19.1.0(react@19.1.0)
|
|
1840
|
+
swr: 2.3.6(react@19.1.0)
|
|
1841
|
+
|
|
1842
|
+
'@edge-runtime/cookies@5.0.2': {}
|
|
1843
|
+
|
|
1844
|
+
'@emnapi/core@1.5.0':
|
|
1845
|
+
dependencies:
|
|
1846
|
+
'@emnapi/wasi-threads': 1.1.0
|
|
1847
|
+
tslib: 2.8.1
|
|
1848
|
+
optional: true
|
|
1849
|
+
|
|
1850
|
+
'@emnapi/runtime@1.5.0':
|
|
1851
|
+
dependencies:
|
|
1852
|
+
tslib: 2.8.1
|
|
1853
|
+
optional: true
|
|
1854
|
+
|
|
1855
|
+
'@emnapi/wasi-threads@1.1.0':
|
|
1856
|
+
dependencies:
|
|
1857
|
+
tslib: 2.8.1
|
|
1858
|
+
optional: true
|
|
1859
|
+
|
|
1860
|
+
'@eslint-community/eslint-utils@4.9.0(eslint@9.37.0(jiti@2.6.1))':
|
|
1861
|
+
dependencies:
|
|
1862
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
1863
|
+
eslint-visitor-keys: 3.4.3
|
|
1864
|
+
|
|
1865
|
+
'@eslint-community/regexpp@4.12.1': {}
|
|
1866
|
+
|
|
1867
|
+
'@eslint/config-array@0.21.0':
|
|
1868
|
+
dependencies:
|
|
1869
|
+
'@eslint/object-schema': 2.1.6
|
|
1870
|
+
debug: 4.4.3
|
|
1871
|
+
minimatch: 3.1.2
|
|
1872
|
+
transitivePeerDependencies:
|
|
1873
|
+
- supports-color
|
|
1874
|
+
|
|
1875
|
+
'@eslint/config-helpers@0.4.0':
|
|
1876
|
+
dependencies:
|
|
1877
|
+
'@eslint/core': 0.16.0
|
|
1878
|
+
|
|
1879
|
+
'@eslint/core@0.16.0':
|
|
1880
|
+
dependencies:
|
|
1881
|
+
'@types/json-schema': 7.0.15
|
|
1882
|
+
|
|
1883
|
+
'@eslint/eslintrc@3.3.1':
|
|
1884
|
+
dependencies:
|
|
1885
|
+
ajv: 6.12.6
|
|
1886
|
+
debug: 4.4.3
|
|
1887
|
+
espree: 10.4.0
|
|
1888
|
+
globals: 14.0.0
|
|
1889
|
+
ignore: 5.3.2
|
|
1890
|
+
import-fresh: 3.3.1
|
|
1891
|
+
js-yaml: 4.1.0
|
|
1892
|
+
minimatch: 3.1.2
|
|
1893
|
+
strip-json-comments: 3.1.1
|
|
1894
|
+
transitivePeerDependencies:
|
|
1895
|
+
- supports-color
|
|
1896
|
+
|
|
1897
|
+
'@eslint/js@9.37.0': {}
|
|
1898
|
+
|
|
1899
|
+
'@eslint/object-schema@2.1.6': {}
|
|
1900
|
+
|
|
1901
|
+
'@eslint/plugin-kit@0.4.0':
|
|
1902
|
+
dependencies:
|
|
1903
|
+
'@eslint/core': 0.16.0
|
|
1904
|
+
levn: 0.4.1
|
|
1905
|
+
|
|
1906
|
+
'@humanfs/core@0.19.1': {}
|
|
1907
|
+
|
|
1908
|
+
'@humanfs/node@0.16.7':
|
|
1909
|
+
dependencies:
|
|
1910
|
+
'@humanfs/core': 0.19.1
|
|
1911
|
+
'@humanwhocodes/retry': 0.4.3
|
|
1912
|
+
|
|
1913
|
+
'@humanwhocodes/module-importer@1.0.1': {}
|
|
1914
|
+
|
|
1915
|
+
'@humanwhocodes/retry@0.4.3': {}
|
|
1916
|
+
|
|
1917
|
+
'@img/colour@1.0.0':
|
|
1918
|
+
optional: true
|
|
1919
|
+
|
|
1920
|
+
'@img/sharp-darwin-arm64@0.34.4':
|
|
1921
|
+
optionalDependencies:
|
|
1922
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.3
|
|
1923
|
+
optional: true
|
|
1924
|
+
|
|
1925
|
+
'@img/sharp-darwin-x64@0.34.4':
|
|
1926
|
+
optionalDependencies:
|
|
1927
|
+
'@img/sharp-libvips-darwin-x64': 1.2.3
|
|
1928
|
+
optional: true
|
|
1929
|
+
|
|
1930
|
+
'@img/sharp-libvips-darwin-arm64@1.2.3':
|
|
1931
|
+
optional: true
|
|
1932
|
+
|
|
1933
|
+
'@img/sharp-libvips-darwin-x64@1.2.3':
|
|
1934
|
+
optional: true
|
|
1935
|
+
|
|
1936
|
+
'@img/sharp-libvips-linux-arm64@1.2.3':
|
|
1937
|
+
optional: true
|
|
1938
|
+
|
|
1939
|
+
'@img/sharp-libvips-linux-arm@1.2.3':
|
|
1940
|
+
optional: true
|
|
1941
|
+
|
|
1942
|
+
'@img/sharp-libvips-linux-ppc64@1.2.3':
|
|
1943
|
+
optional: true
|
|
1944
|
+
|
|
1945
|
+
'@img/sharp-libvips-linux-s390x@1.2.3':
|
|
1946
|
+
optional: true
|
|
1947
|
+
|
|
1948
|
+
'@img/sharp-libvips-linux-x64@1.2.3':
|
|
1949
|
+
optional: true
|
|
1950
|
+
|
|
1951
|
+
'@img/sharp-libvips-linuxmusl-arm64@1.2.3':
|
|
1952
|
+
optional: true
|
|
1953
|
+
|
|
1954
|
+
'@img/sharp-libvips-linuxmusl-x64@1.2.3':
|
|
1955
|
+
optional: true
|
|
1956
|
+
|
|
1957
|
+
'@img/sharp-linux-arm64@0.34.4':
|
|
1958
|
+
optionalDependencies:
|
|
1959
|
+
'@img/sharp-libvips-linux-arm64': 1.2.3
|
|
1960
|
+
optional: true
|
|
1961
|
+
|
|
1962
|
+
'@img/sharp-linux-arm@0.34.4':
|
|
1963
|
+
optionalDependencies:
|
|
1964
|
+
'@img/sharp-libvips-linux-arm': 1.2.3
|
|
1965
|
+
optional: true
|
|
1966
|
+
|
|
1967
|
+
'@img/sharp-linux-ppc64@0.34.4':
|
|
1968
|
+
optionalDependencies:
|
|
1969
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.3
|
|
1970
|
+
optional: true
|
|
1971
|
+
|
|
1972
|
+
'@img/sharp-linux-s390x@0.34.4':
|
|
1973
|
+
optionalDependencies:
|
|
1974
|
+
'@img/sharp-libvips-linux-s390x': 1.2.3
|
|
1975
|
+
optional: true
|
|
1976
|
+
|
|
1977
|
+
'@img/sharp-linux-x64@0.34.4':
|
|
1978
|
+
optionalDependencies:
|
|
1979
|
+
'@img/sharp-libvips-linux-x64': 1.2.3
|
|
1980
|
+
optional: true
|
|
1981
|
+
|
|
1982
|
+
'@img/sharp-linuxmusl-arm64@0.34.4':
|
|
1983
|
+
optionalDependencies:
|
|
1984
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.3
|
|
1985
|
+
optional: true
|
|
1986
|
+
|
|
1987
|
+
'@img/sharp-linuxmusl-x64@0.34.4':
|
|
1988
|
+
optionalDependencies:
|
|
1989
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.3
|
|
1990
|
+
optional: true
|
|
1991
|
+
|
|
1992
|
+
'@img/sharp-wasm32@0.34.4':
|
|
1993
|
+
dependencies:
|
|
1994
|
+
'@emnapi/runtime': 1.5.0
|
|
1995
|
+
optional: true
|
|
1996
|
+
|
|
1997
|
+
'@img/sharp-win32-arm64@0.34.4':
|
|
1998
|
+
optional: true
|
|
1999
|
+
|
|
2000
|
+
'@img/sharp-win32-ia32@0.34.4':
|
|
2001
|
+
optional: true
|
|
2002
|
+
|
|
2003
|
+
'@img/sharp-win32-x64@0.34.4':
|
|
2004
|
+
optional: true
|
|
2005
|
+
|
|
2006
|
+
'@isaacs/fs-minipass@4.0.1':
|
|
2007
|
+
dependencies:
|
|
2008
|
+
minipass: 7.1.2
|
|
2009
|
+
|
|
2010
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
2011
|
+
dependencies:
|
|
2012
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2013
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2014
|
+
|
|
2015
|
+
'@jridgewell/remapping@2.3.5':
|
|
2016
|
+
dependencies:
|
|
2017
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
2018
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
2019
|
+
|
|
2020
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
2021
|
+
|
|
2022
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
2023
|
+
|
|
2024
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
2025
|
+
dependencies:
|
|
2026
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
2027
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2028
|
+
|
|
2029
|
+
'@napi-rs/wasm-runtime@0.2.12':
|
|
2030
|
+
dependencies:
|
|
2031
|
+
'@emnapi/core': 1.5.0
|
|
2032
|
+
'@emnapi/runtime': 1.5.0
|
|
2033
|
+
'@tybys/wasm-util': 0.10.1
|
|
2034
|
+
optional: true
|
|
2035
|
+
|
|
2036
|
+
'@next/env@15.4.4': {}
|
|
2037
|
+
|
|
2038
|
+
'@next/eslint-plugin-next@15.4.4':
|
|
2039
|
+
dependencies:
|
|
2040
|
+
fast-glob: 3.3.1
|
|
2041
|
+
|
|
2042
|
+
'@next/swc-darwin-arm64@15.4.4':
|
|
2043
|
+
optional: true
|
|
2044
|
+
|
|
2045
|
+
'@next/swc-darwin-x64@15.4.4':
|
|
2046
|
+
optional: true
|
|
2047
|
+
|
|
2048
|
+
'@next/swc-linux-arm64-gnu@15.4.4':
|
|
2049
|
+
optional: true
|
|
2050
|
+
|
|
2051
|
+
'@next/swc-linux-arm64-musl@15.4.4':
|
|
2052
|
+
optional: true
|
|
2053
|
+
|
|
2054
|
+
'@next/swc-linux-x64-gnu@15.4.4':
|
|
2055
|
+
optional: true
|
|
2056
|
+
|
|
2057
|
+
'@next/swc-linux-x64-musl@15.4.4':
|
|
2058
|
+
optional: true
|
|
2059
|
+
|
|
2060
|
+
'@next/swc-win32-arm64-msvc@15.4.4':
|
|
2061
|
+
optional: true
|
|
2062
|
+
|
|
2063
|
+
'@next/swc-win32-x64-msvc@15.4.4':
|
|
2064
|
+
optional: true
|
|
2065
|
+
|
|
2066
|
+
'@nodelib/fs.scandir@2.1.5':
|
|
2067
|
+
dependencies:
|
|
2068
|
+
'@nodelib/fs.stat': 2.0.5
|
|
2069
|
+
run-parallel: 1.2.0
|
|
2070
|
+
|
|
2071
|
+
'@nodelib/fs.stat@2.0.5': {}
|
|
2072
|
+
|
|
2073
|
+
'@nodelib/fs.walk@1.2.8':
|
|
2074
|
+
dependencies:
|
|
2075
|
+
'@nodelib/fs.scandir': 2.1.5
|
|
2076
|
+
fastq: 1.19.1
|
|
2077
|
+
|
|
2078
|
+
'@nolyfill/is-core-module@1.0.39': {}
|
|
2079
|
+
|
|
2080
|
+
'@panva/hkdf@1.2.1': {}
|
|
2081
|
+
|
|
2082
|
+
'@rtsao/scc@1.1.0': {}
|
|
2083
|
+
|
|
2084
|
+
'@rushstack/eslint-patch@1.14.0': {}
|
|
2085
|
+
|
|
2086
|
+
'@swc/helpers@0.5.15':
|
|
2087
|
+
dependencies:
|
|
2088
|
+
tslib: 2.8.1
|
|
2089
|
+
|
|
2090
|
+
'@tailwindcss/node@4.1.14':
|
|
2091
|
+
dependencies:
|
|
2092
|
+
'@jridgewell/remapping': 2.3.5
|
|
2093
|
+
enhanced-resolve: 5.18.3
|
|
2094
|
+
jiti: 2.6.1
|
|
2095
|
+
lightningcss: 1.30.1
|
|
2096
|
+
magic-string: 0.30.19
|
|
2097
|
+
source-map-js: 1.2.1
|
|
2098
|
+
tailwindcss: 4.1.14
|
|
2099
|
+
|
|
2100
|
+
'@tailwindcss/oxide-android-arm64@4.1.14':
|
|
2101
|
+
optional: true
|
|
2102
|
+
|
|
2103
|
+
'@tailwindcss/oxide-darwin-arm64@4.1.14':
|
|
2104
|
+
optional: true
|
|
2105
|
+
|
|
2106
|
+
'@tailwindcss/oxide-darwin-x64@4.1.14':
|
|
2107
|
+
optional: true
|
|
2108
|
+
|
|
2109
|
+
'@tailwindcss/oxide-freebsd-x64@4.1.14':
|
|
2110
|
+
optional: true
|
|
2111
|
+
|
|
2112
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.14':
|
|
2113
|
+
optional: true
|
|
2114
|
+
|
|
2115
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.14':
|
|
2116
|
+
optional: true
|
|
2117
|
+
|
|
2118
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.14':
|
|
2119
|
+
optional: true
|
|
2120
|
+
|
|
2121
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.14':
|
|
2122
|
+
optional: true
|
|
2123
|
+
|
|
2124
|
+
'@tailwindcss/oxide-linux-x64-musl@4.1.14':
|
|
2125
|
+
optional: true
|
|
2126
|
+
|
|
2127
|
+
'@tailwindcss/oxide-wasm32-wasi@4.1.14':
|
|
2128
|
+
optional: true
|
|
2129
|
+
|
|
2130
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.14':
|
|
2131
|
+
optional: true
|
|
2132
|
+
|
|
2133
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.14':
|
|
2134
|
+
optional: true
|
|
2135
|
+
|
|
2136
|
+
'@tailwindcss/oxide@4.1.14':
|
|
2137
|
+
dependencies:
|
|
2138
|
+
detect-libc: 2.1.2
|
|
2139
|
+
tar: 7.5.1
|
|
2140
|
+
optionalDependencies:
|
|
2141
|
+
'@tailwindcss/oxide-android-arm64': 4.1.14
|
|
2142
|
+
'@tailwindcss/oxide-darwin-arm64': 4.1.14
|
|
2143
|
+
'@tailwindcss/oxide-darwin-x64': 4.1.14
|
|
2144
|
+
'@tailwindcss/oxide-freebsd-x64': 4.1.14
|
|
2145
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.14
|
|
2146
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.1.14
|
|
2147
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.1.14
|
|
2148
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.1.14
|
|
2149
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.1.14
|
|
2150
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.1.14
|
|
2151
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.14
|
|
2152
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.1.14
|
|
2153
|
+
|
|
2154
|
+
'@tailwindcss/postcss@4.1.14':
|
|
2155
|
+
dependencies:
|
|
2156
|
+
'@alloc/quick-lru': 5.2.0
|
|
2157
|
+
'@tailwindcss/node': 4.1.14
|
|
2158
|
+
'@tailwindcss/oxide': 4.1.14
|
|
2159
|
+
postcss: 8.5.6
|
|
2160
|
+
tailwindcss: 4.1.14
|
|
2161
|
+
|
|
2162
|
+
'@tybys/wasm-util@0.10.1':
|
|
2163
|
+
dependencies:
|
|
2164
|
+
tslib: 2.8.1
|
|
2165
|
+
optional: true
|
|
2166
|
+
|
|
2167
|
+
'@types/estree@1.0.8': {}
|
|
2168
|
+
|
|
2169
|
+
'@types/json-schema@7.0.15': {}
|
|
2170
|
+
|
|
2171
|
+
'@types/json5@0.0.29': {}
|
|
2172
|
+
|
|
2173
|
+
'@types/node@20.19.22':
|
|
2174
|
+
dependencies:
|
|
2175
|
+
undici-types: 6.21.0
|
|
2176
|
+
|
|
2177
|
+
'@types/react-dom@19.2.2(@types/react@19.2.2)':
|
|
2178
|
+
dependencies:
|
|
2179
|
+
'@types/react': 19.2.2
|
|
2180
|
+
|
|
2181
|
+
'@types/react@19.2.2':
|
|
2182
|
+
dependencies:
|
|
2183
|
+
csstype: 3.1.3
|
|
2184
|
+
|
|
2185
|
+
'@typescript-eslint/eslint-plugin@8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
|
|
2186
|
+
dependencies:
|
|
2187
|
+
'@eslint-community/regexpp': 4.12.1
|
|
2188
|
+
'@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2189
|
+
'@typescript-eslint/scope-manager': 8.46.1
|
|
2190
|
+
'@typescript-eslint/type-utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2191
|
+
'@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2192
|
+
'@typescript-eslint/visitor-keys': 8.46.1
|
|
2193
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2194
|
+
graphemer: 1.4.0
|
|
2195
|
+
ignore: 7.0.5
|
|
2196
|
+
natural-compare: 1.4.0
|
|
2197
|
+
ts-api-utils: 2.1.0(typescript@5.9.3)
|
|
2198
|
+
typescript: 5.9.3
|
|
2199
|
+
transitivePeerDependencies:
|
|
2200
|
+
- supports-color
|
|
2201
|
+
|
|
2202
|
+
'@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
|
|
2203
|
+
dependencies:
|
|
2204
|
+
'@typescript-eslint/scope-manager': 8.46.1
|
|
2205
|
+
'@typescript-eslint/types': 8.46.1
|
|
2206
|
+
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
|
|
2207
|
+
'@typescript-eslint/visitor-keys': 8.46.1
|
|
2208
|
+
debug: 4.4.3
|
|
2209
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2210
|
+
typescript: 5.9.3
|
|
2211
|
+
transitivePeerDependencies:
|
|
2212
|
+
- supports-color
|
|
2213
|
+
|
|
2214
|
+
'@typescript-eslint/project-service@8.46.1(typescript@5.9.3)':
|
|
2215
|
+
dependencies:
|
|
2216
|
+
'@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3)
|
|
2217
|
+
'@typescript-eslint/types': 8.46.1
|
|
2218
|
+
debug: 4.4.3
|
|
2219
|
+
typescript: 5.9.3
|
|
2220
|
+
transitivePeerDependencies:
|
|
2221
|
+
- supports-color
|
|
2222
|
+
|
|
2223
|
+
'@typescript-eslint/scope-manager@8.46.1':
|
|
2224
|
+
dependencies:
|
|
2225
|
+
'@typescript-eslint/types': 8.46.1
|
|
2226
|
+
'@typescript-eslint/visitor-keys': 8.46.1
|
|
2227
|
+
|
|
2228
|
+
'@typescript-eslint/tsconfig-utils@8.46.1(typescript@5.9.3)':
|
|
2229
|
+
dependencies:
|
|
2230
|
+
typescript: 5.9.3
|
|
2231
|
+
|
|
2232
|
+
'@typescript-eslint/type-utils@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
|
|
2233
|
+
dependencies:
|
|
2234
|
+
'@typescript-eslint/types': 8.46.1
|
|
2235
|
+
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
|
|
2236
|
+
'@typescript-eslint/utils': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2237
|
+
debug: 4.4.3
|
|
2238
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2239
|
+
ts-api-utils: 2.1.0(typescript@5.9.3)
|
|
2240
|
+
typescript: 5.9.3
|
|
2241
|
+
transitivePeerDependencies:
|
|
2242
|
+
- supports-color
|
|
2243
|
+
|
|
2244
|
+
'@typescript-eslint/types@8.46.1': {}
|
|
2245
|
+
|
|
2246
|
+
'@typescript-eslint/typescript-estree@8.46.1(typescript@5.9.3)':
|
|
2247
|
+
dependencies:
|
|
2248
|
+
'@typescript-eslint/project-service': 8.46.1(typescript@5.9.3)
|
|
2249
|
+
'@typescript-eslint/tsconfig-utils': 8.46.1(typescript@5.9.3)
|
|
2250
|
+
'@typescript-eslint/types': 8.46.1
|
|
2251
|
+
'@typescript-eslint/visitor-keys': 8.46.1
|
|
2252
|
+
debug: 4.4.3
|
|
2253
|
+
fast-glob: 3.3.3
|
|
2254
|
+
is-glob: 4.0.3
|
|
2255
|
+
minimatch: 9.0.5
|
|
2256
|
+
semver: 7.7.3
|
|
2257
|
+
ts-api-utils: 2.1.0(typescript@5.9.3)
|
|
2258
|
+
typescript: 5.9.3
|
|
2259
|
+
transitivePeerDependencies:
|
|
2260
|
+
- supports-color
|
|
2261
|
+
|
|
2262
|
+
'@typescript-eslint/utils@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)':
|
|
2263
|
+
dependencies:
|
|
2264
|
+
'@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
|
|
2265
|
+
'@typescript-eslint/scope-manager': 8.46.1
|
|
2266
|
+
'@typescript-eslint/types': 8.46.1
|
|
2267
|
+
'@typescript-eslint/typescript-estree': 8.46.1(typescript@5.9.3)
|
|
2268
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2269
|
+
typescript: 5.9.3
|
|
2270
|
+
transitivePeerDependencies:
|
|
2271
|
+
- supports-color
|
|
2272
|
+
|
|
2273
|
+
'@typescript-eslint/visitor-keys@8.46.1':
|
|
2274
|
+
dependencies:
|
|
2275
|
+
'@typescript-eslint/types': 8.46.1
|
|
2276
|
+
eslint-visitor-keys: 4.2.1
|
|
2277
|
+
|
|
2278
|
+
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
|
2279
|
+
optional: true
|
|
2280
|
+
|
|
2281
|
+
'@unrs/resolver-binding-android-arm64@1.11.1':
|
|
2282
|
+
optional: true
|
|
2283
|
+
|
|
2284
|
+
'@unrs/resolver-binding-darwin-arm64@1.11.1':
|
|
2285
|
+
optional: true
|
|
2286
|
+
|
|
2287
|
+
'@unrs/resolver-binding-darwin-x64@1.11.1':
|
|
2288
|
+
optional: true
|
|
2289
|
+
|
|
2290
|
+
'@unrs/resolver-binding-freebsd-x64@1.11.1':
|
|
2291
|
+
optional: true
|
|
2292
|
+
|
|
2293
|
+
'@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1':
|
|
2294
|
+
optional: true
|
|
2295
|
+
|
|
2296
|
+
'@unrs/resolver-binding-linux-arm-musleabihf@1.11.1':
|
|
2297
|
+
optional: true
|
|
2298
|
+
|
|
2299
|
+
'@unrs/resolver-binding-linux-arm64-gnu@1.11.1':
|
|
2300
|
+
optional: true
|
|
2301
|
+
|
|
2302
|
+
'@unrs/resolver-binding-linux-arm64-musl@1.11.1':
|
|
2303
|
+
optional: true
|
|
2304
|
+
|
|
2305
|
+
'@unrs/resolver-binding-linux-ppc64-gnu@1.11.1':
|
|
2306
|
+
optional: true
|
|
2307
|
+
|
|
2308
|
+
'@unrs/resolver-binding-linux-riscv64-gnu@1.11.1':
|
|
2309
|
+
optional: true
|
|
2310
|
+
|
|
2311
|
+
'@unrs/resolver-binding-linux-riscv64-musl@1.11.1':
|
|
2312
|
+
optional: true
|
|
2313
|
+
|
|
2314
|
+
'@unrs/resolver-binding-linux-s390x-gnu@1.11.1':
|
|
2315
|
+
optional: true
|
|
2316
|
+
|
|
2317
|
+
'@unrs/resolver-binding-linux-x64-gnu@1.11.1':
|
|
2318
|
+
optional: true
|
|
2319
|
+
|
|
2320
|
+
'@unrs/resolver-binding-linux-x64-musl@1.11.1':
|
|
2321
|
+
optional: true
|
|
2322
|
+
|
|
2323
|
+
'@unrs/resolver-binding-wasm32-wasi@1.11.1':
|
|
2324
|
+
dependencies:
|
|
2325
|
+
'@napi-rs/wasm-runtime': 0.2.12
|
|
2326
|
+
optional: true
|
|
2327
|
+
|
|
2328
|
+
'@unrs/resolver-binding-win32-arm64-msvc@1.11.1':
|
|
2329
|
+
optional: true
|
|
2330
|
+
|
|
2331
|
+
'@unrs/resolver-binding-win32-ia32-msvc@1.11.1':
|
|
2332
|
+
optional: true
|
|
2333
|
+
|
|
2334
|
+
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
|
|
2335
|
+
optional: true
|
|
2336
|
+
|
|
2337
|
+
acorn-jsx@5.3.2(acorn@8.15.0):
|
|
2338
|
+
dependencies:
|
|
2339
|
+
acorn: 8.15.0
|
|
2340
|
+
|
|
2341
|
+
acorn@8.15.0: {}
|
|
2342
|
+
|
|
2343
|
+
ajv@6.12.6:
|
|
2344
|
+
dependencies:
|
|
2345
|
+
fast-deep-equal: 3.1.3
|
|
2346
|
+
fast-json-stable-stringify: 2.1.0
|
|
2347
|
+
json-schema-traverse: 0.4.1
|
|
2348
|
+
uri-js: 4.4.1
|
|
2349
|
+
|
|
2350
|
+
ansi-styles@4.3.0:
|
|
2351
|
+
dependencies:
|
|
2352
|
+
color-convert: 2.0.1
|
|
2353
|
+
|
|
2354
|
+
argparse@2.0.1: {}
|
|
2355
|
+
|
|
2356
|
+
aria-query@5.3.2: {}
|
|
2357
|
+
|
|
2358
|
+
array-buffer-byte-length@1.0.2:
|
|
2359
|
+
dependencies:
|
|
2360
|
+
call-bound: 1.0.4
|
|
2361
|
+
is-array-buffer: 3.0.5
|
|
2362
|
+
|
|
2363
|
+
array-includes@3.1.9:
|
|
2364
|
+
dependencies:
|
|
2365
|
+
call-bind: 1.0.8
|
|
2366
|
+
call-bound: 1.0.4
|
|
2367
|
+
define-properties: 1.2.1
|
|
2368
|
+
es-abstract: 1.24.0
|
|
2369
|
+
es-object-atoms: 1.1.1
|
|
2370
|
+
get-intrinsic: 1.3.0
|
|
2371
|
+
is-string: 1.1.1
|
|
2372
|
+
math-intrinsics: 1.1.0
|
|
2373
|
+
|
|
2374
|
+
array.prototype.findlast@1.2.5:
|
|
2375
|
+
dependencies:
|
|
2376
|
+
call-bind: 1.0.8
|
|
2377
|
+
define-properties: 1.2.1
|
|
2378
|
+
es-abstract: 1.24.0
|
|
2379
|
+
es-errors: 1.3.0
|
|
2380
|
+
es-object-atoms: 1.1.1
|
|
2381
|
+
es-shim-unscopables: 1.1.0
|
|
2382
|
+
|
|
2383
|
+
array.prototype.findlastindex@1.2.6:
|
|
2384
|
+
dependencies:
|
|
2385
|
+
call-bind: 1.0.8
|
|
2386
|
+
call-bound: 1.0.4
|
|
2387
|
+
define-properties: 1.2.1
|
|
2388
|
+
es-abstract: 1.24.0
|
|
2389
|
+
es-errors: 1.3.0
|
|
2390
|
+
es-object-atoms: 1.1.1
|
|
2391
|
+
es-shim-unscopables: 1.1.0
|
|
2392
|
+
|
|
2393
|
+
array.prototype.flat@1.3.3:
|
|
2394
|
+
dependencies:
|
|
2395
|
+
call-bind: 1.0.8
|
|
2396
|
+
define-properties: 1.2.1
|
|
2397
|
+
es-abstract: 1.24.0
|
|
2398
|
+
es-shim-unscopables: 1.1.0
|
|
2399
|
+
|
|
2400
|
+
array.prototype.flatmap@1.3.3:
|
|
2401
|
+
dependencies:
|
|
2402
|
+
call-bind: 1.0.8
|
|
2403
|
+
define-properties: 1.2.1
|
|
2404
|
+
es-abstract: 1.24.0
|
|
2405
|
+
es-shim-unscopables: 1.1.0
|
|
2406
|
+
|
|
2407
|
+
array.prototype.tosorted@1.1.4:
|
|
2408
|
+
dependencies:
|
|
2409
|
+
call-bind: 1.0.8
|
|
2410
|
+
define-properties: 1.2.1
|
|
2411
|
+
es-abstract: 1.24.0
|
|
2412
|
+
es-errors: 1.3.0
|
|
2413
|
+
es-shim-unscopables: 1.1.0
|
|
2414
|
+
|
|
2415
|
+
arraybuffer.prototype.slice@1.0.4:
|
|
2416
|
+
dependencies:
|
|
2417
|
+
array-buffer-byte-length: 1.0.2
|
|
2418
|
+
call-bind: 1.0.8
|
|
2419
|
+
define-properties: 1.2.1
|
|
2420
|
+
es-abstract: 1.24.0
|
|
2421
|
+
es-errors: 1.3.0
|
|
2422
|
+
get-intrinsic: 1.3.0
|
|
2423
|
+
is-array-buffer: 3.0.5
|
|
2424
|
+
|
|
2425
|
+
ast-types-flow@0.0.8: {}
|
|
2426
|
+
|
|
2427
|
+
async-function@1.0.0: {}
|
|
2428
|
+
|
|
2429
|
+
available-typed-arrays@1.0.7:
|
|
2430
|
+
dependencies:
|
|
2431
|
+
possible-typed-array-names: 1.1.0
|
|
2432
|
+
|
|
2433
|
+
axe-core@4.11.0: {}
|
|
2434
|
+
|
|
2435
|
+
axobject-query@4.1.0: {}
|
|
2436
|
+
|
|
2437
|
+
balanced-match@1.0.2: {}
|
|
2438
|
+
|
|
2439
|
+
brace-expansion@1.1.12:
|
|
2440
|
+
dependencies:
|
|
2441
|
+
balanced-match: 1.0.2
|
|
2442
|
+
concat-map: 0.0.1
|
|
2443
|
+
|
|
2444
|
+
brace-expansion@2.0.2:
|
|
2445
|
+
dependencies:
|
|
2446
|
+
balanced-match: 1.0.2
|
|
2447
|
+
|
|
2448
|
+
braces@3.0.3:
|
|
2449
|
+
dependencies:
|
|
2450
|
+
fill-range: 7.1.1
|
|
2451
|
+
|
|
2452
|
+
call-bind-apply-helpers@1.0.2:
|
|
2453
|
+
dependencies:
|
|
2454
|
+
es-errors: 1.3.0
|
|
2455
|
+
function-bind: 1.1.2
|
|
2456
|
+
|
|
2457
|
+
call-bind@1.0.8:
|
|
2458
|
+
dependencies:
|
|
2459
|
+
call-bind-apply-helpers: 1.0.2
|
|
2460
|
+
es-define-property: 1.0.1
|
|
2461
|
+
get-intrinsic: 1.3.0
|
|
2462
|
+
set-function-length: 1.2.2
|
|
2463
|
+
|
|
2464
|
+
call-bound@1.0.4:
|
|
2465
|
+
dependencies:
|
|
2466
|
+
call-bind-apply-helpers: 1.0.2
|
|
2467
|
+
get-intrinsic: 1.3.0
|
|
2468
|
+
|
|
2469
|
+
callsites@3.1.0: {}
|
|
2470
|
+
|
|
2471
|
+
caniuse-lite@1.0.30001751: {}
|
|
2472
|
+
|
|
2473
|
+
chalk@4.1.2:
|
|
2474
|
+
dependencies:
|
|
2475
|
+
ansi-styles: 4.3.0
|
|
2476
|
+
supports-color: 7.2.0
|
|
2477
|
+
|
|
2478
|
+
chownr@3.0.0: {}
|
|
2479
|
+
|
|
2480
|
+
client-only@0.0.1: {}
|
|
2481
|
+
|
|
2482
|
+
color-convert@2.0.1:
|
|
2483
|
+
dependencies:
|
|
2484
|
+
color-name: 1.1.4
|
|
2485
|
+
|
|
2486
|
+
color-name@1.1.4: {}
|
|
2487
|
+
|
|
2488
|
+
concat-map@0.0.1: {}
|
|
2489
|
+
|
|
2490
|
+
cross-spawn@7.0.6:
|
|
2491
|
+
dependencies:
|
|
2492
|
+
path-key: 3.1.1
|
|
2493
|
+
shebang-command: 2.0.0
|
|
2494
|
+
which: 2.0.2
|
|
2495
|
+
|
|
2496
|
+
csstype@3.1.3: {}
|
|
2497
|
+
|
|
2498
|
+
damerau-levenshtein@1.0.8: {}
|
|
2499
|
+
|
|
2500
|
+
data-view-buffer@1.0.2:
|
|
2501
|
+
dependencies:
|
|
2502
|
+
call-bound: 1.0.4
|
|
2503
|
+
es-errors: 1.3.0
|
|
2504
|
+
is-data-view: 1.0.2
|
|
2505
|
+
|
|
2506
|
+
data-view-byte-length@1.0.2:
|
|
2507
|
+
dependencies:
|
|
2508
|
+
call-bound: 1.0.4
|
|
2509
|
+
es-errors: 1.3.0
|
|
2510
|
+
is-data-view: 1.0.2
|
|
2511
|
+
|
|
2512
|
+
data-view-byte-offset@1.0.1:
|
|
2513
|
+
dependencies:
|
|
2514
|
+
call-bound: 1.0.4
|
|
2515
|
+
es-errors: 1.3.0
|
|
2516
|
+
is-data-view: 1.0.2
|
|
2517
|
+
|
|
2518
|
+
debug@3.2.7:
|
|
2519
|
+
dependencies:
|
|
2520
|
+
ms: 2.1.3
|
|
2521
|
+
|
|
2522
|
+
debug@4.4.3:
|
|
2523
|
+
dependencies:
|
|
2524
|
+
ms: 2.1.3
|
|
2525
|
+
|
|
2526
|
+
deep-is@0.1.4: {}
|
|
2527
|
+
|
|
2528
|
+
define-data-property@1.1.4:
|
|
2529
|
+
dependencies:
|
|
2530
|
+
es-define-property: 1.0.1
|
|
2531
|
+
es-errors: 1.3.0
|
|
2532
|
+
gopd: 1.2.0
|
|
2533
|
+
|
|
2534
|
+
define-properties@1.2.1:
|
|
2535
|
+
dependencies:
|
|
2536
|
+
define-data-property: 1.1.4
|
|
2537
|
+
has-property-descriptors: 1.0.2
|
|
2538
|
+
object-keys: 1.1.1
|
|
2539
|
+
|
|
2540
|
+
dequal@2.0.3: {}
|
|
2541
|
+
|
|
2542
|
+
detect-libc@2.1.2: {}
|
|
2543
|
+
|
|
2544
|
+
doctrine@2.1.0:
|
|
2545
|
+
dependencies:
|
|
2546
|
+
esutils: 2.0.3
|
|
2547
|
+
|
|
2548
|
+
dunder-proto@1.0.1:
|
|
2549
|
+
dependencies:
|
|
2550
|
+
call-bind-apply-helpers: 1.0.2
|
|
2551
|
+
es-errors: 1.3.0
|
|
2552
|
+
gopd: 1.2.0
|
|
2553
|
+
|
|
2554
|
+
emoji-regex@9.2.2: {}
|
|
2555
|
+
|
|
2556
|
+
enhanced-resolve@5.18.3:
|
|
2557
|
+
dependencies:
|
|
2558
|
+
graceful-fs: 4.2.11
|
|
2559
|
+
tapable: 2.3.0
|
|
2560
|
+
|
|
2561
|
+
es-abstract@1.24.0:
|
|
2562
|
+
dependencies:
|
|
2563
|
+
array-buffer-byte-length: 1.0.2
|
|
2564
|
+
arraybuffer.prototype.slice: 1.0.4
|
|
2565
|
+
available-typed-arrays: 1.0.7
|
|
2566
|
+
call-bind: 1.0.8
|
|
2567
|
+
call-bound: 1.0.4
|
|
2568
|
+
data-view-buffer: 1.0.2
|
|
2569
|
+
data-view-byte-length: 1.0.2
|
|
2570
|
+
data-view-byte-offset: 1.0.1
|
|
2571
|
+
es-define-property: 1.0.1
|
|
2572
|
+
es-errors: 1.3.0
|
|
2573
|
+
es-object-atoms: 1.1.1
|
|
2574
|
+
es-set-tostringtag: 2.1.0
|
|
2575
|
+
es-to-primitive: 1.3.0
|
|
2576
|
+
function.prototype.name: 1.1.8
|
|
2577
|
+
get-intrinsic: 1.3.0
|
|
2578
|
+
get-proto: 1.0.1
|
|
2579
|
+
get-symbol-description: 1.1.0
|
|
2580
|
+
globalthis: 1.0.4
|
|
2581
|
+
gopd: 1.2.0
|
|
2582
|
+
has-property-descriptors: 1.0.2
|
|
2583
|
+
has-proto: 1.2.0
|
|
2584
|
+
has-symbols: 1.1.0
|
|
2585
|
+
hasown: 2.0.2
|
|
2586
|
+
internal-slot: 1.1.0
|
|
2587
|
+
is-array-buffer: 3.0.5
|
|
2588
|
+
is-callable: 1.2.7
|
|
2589
|
+
is-data-view: 1.0.2
|
|
2590
|
+
is-negative-zero: 2.0.3
|
|
2591
|
+
is-regex: 1.2.1
|
|
2592
|
+
is-set: 2.0.3
|
|
2593
|
+
is-shared-array-buffer: 1.0.4
|
|
2594
|
+
is-string: 1.1.1
|
|
2595
|
+
is-typed-array: 1.1.15
|
|
2596
|
+
is-weakref: 1.1.1
|
|
2597
|
+
math-intrinsics: 1.1.0
|
|
2598
|
+
object-inspect: 1.13.4
|
|
2599
|
+
object-keys: 1.1.1
|
|
2600
|
+
object.assign: 4.1.7
|
|
2601
|
+
own-keys: 1.0.1
|
|
2602
|
+
regexp.prototype.flags: 1.5.4
|
|
2603
|
+
safe-array-concat: 1.1.3
|
|
2604
|
+
safe-push-apply: 1.0.0
|
|
2605
|
+
safe-regex-test: 1.1.0
|
|
2606
|
+
set-proto: 1.0.0
|
|
2607
|
+
stop-iteration-iterator: 1.1.0
|
|
2608
|
+
string.prototype.trim: 1.2.10
|
|
2609
|
+
string.prototype.trimend: 1.0.9
|
|
2610
|
+
string.prototype.trimstart: 1.0.8
|
|
2611
|
+
typed-array-buffer: 1.0.3
|
|
2612
|
+
typed-array-byte-length: 1.0.3
|
|
2613
|
+
typed-array-byte-offset: 1.0.4
|
|
2614
|
+
typed-array-length: 1.0.7
|
|
2615
|
+
unbox-primitive: 1.1.0
|
|
2616
|
+
which-typed-array: 1.1.19
|
|
2617
|
+
|
|
2618
|
+
es-define-property@1.0.1: {}
|
|
2619
|
+
|
|
2620
|
+
es-errors@1.3.0: {}
|
|
2621
|
+
|
|
2622
|
+
es-iterator-helpers@1.2.1:
|
|
2623
|
+
dependencies:
|
|
2624
|
+
call-bind: 1.0.8
|
|
2625
|
+
call-bound: 1.0.4
|
|
2626
|
+
define-properties: 1.2.1
|
|
2627
|
+
es-abstract: 1.24.0
|
|
2628
|
+
es-errors: 1.3.0
|
|
2629
|
+
es-set-tostringtag: 2.1.0
|
|
2630
|
+
function-bind: 1.1.2
|
|
2631
|
+
get-intrinsic: 1.3.0
|
|
2632
|
+
globalthis: 1.0.4
|
|
2633
|
+
gopd: 1.2.0
|
|
2634
|
+
has-property-descriptors: 1.0.2
|
|
2635
|
+
has-proto: 1.2.0
|
|
2636
|
+
has-symbols: 1.1.0
|
|
2637
|
+
internal-slot: 1.1.0
|
|
2638
|
+
iterator.prototype: 1.1.5
|
|
2639
|
+
safe-array-concat: 1.1.3
|
|
2640
|
+
|
|
2641
|
+
es-object-atoms@1.1.1:
|
|
2642
|
+
dependencies:
|
|
2643
|
+
es-errors: 1.3.0
|
|
2644
|
+
|
|
2645
|
+
es-set-tostringtag@2.1.0:
|
|
2646
|
+
dependencies:
|
|
2647
|
+
es-errors: 1.3.0
|
|
2648
|
+
get-intrinsic: 1.3.0
|
|
2649
|
+
has-tostringtag: 1.0.2
|
|
2650
|
+
hasown: 2.0.2
|
|
2651
|
+
|
|
2652
|
+
es-shim-unscopables@1.1.0:
|
|
2653
|
+
dependencies:
|
|
2654
|
+
hasown: 2.0.2
|
|
2655
|
+
|
|
2656
|
+
es-to-primitive@1.3.0:
|
|
2657
|
+
dependencies:
|
|
2658
|
+
is-callable: 1.2.7
|
|
2659
|
+
is-date-object: 1.1.0
|
|
2660
|
+
is-symbol: 1.1.1
|
|
2661
|
+
|
|
2662
|
+
escape-string-regexp@4.0.0: {}
|
|
2663
|
+
|
|
2664
|
+
eslint-config-next@15.4.4(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3):
|
|
2665
|
+
dependencies:
|
|
2666
|
+
'@next/eslint-plugin-next': 15.4.4
|
|
2667
|
+
'@rushstack/eslint-patch': 1.14.0
|
|
2668
|
+
'@typescript-eslint/eslint-plugin': 8.46.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2669
|
+
'@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2670
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2671
|
+
eslint-import-resolver-node: 0.3.9
|
|
2672
|
+
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.37.0(jiti@2.6.1))
|
|
2673
|
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1))
|
|
2674
|
+
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.37.0(jiti@2.6.1))
|
|
2675
|
+
eslint-plugin-react: 7.37.5(eslint@9.37.0(jiti@2.6.1))
|
|
2676
|
+
eslint-plugin-react-hooks: 5.2.0(eslint@9.37.0(jiti@2.6.1))
|
|
2677
|
+
optionalDependencies:
|
|
2678
|
+
typescript: 5.9.3
|
|
2679
|
+
transitivePeerDependencies:
|
|
2680
|
+
- eslint-import-resolver-webpack
|
|
2681
|
+
- eslint-plugin-import-x
|
|
2682
|
+
- supports-color
|
|
2683
|
+
|
|
2684
|
+
eslint-import-resolver-node@0.3.9:
|
|
2685
|
+
dependencies:
|
|
2686
|
+
debug: 3.2.7
|
|
2687
|
+
is-core-module: 2.16.1
|
|
2688
|
+
resolve: 1.22.10
|
|
2689
|
+
transitivePeerDependencies:
|
|
2690
|
+
- supports-color
|
|
2691
|
+
|
|
2692
|
+
eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@9.37.0(jiti@2.6.1)):
|
|
2693
|
+
dependencies:
|
|
2694
|
+
'@nolyfill/is-core-module': 1.0.39
|
|
2695
|
+
debug: 4.4.3
|
|
2696
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2697
|
+
get-tsconfig: 4.12.0
|
|
2698
|
+
is-bun-module: 2.0.0
|
|
2699
|
+
stable-hash: 0.0.5
|
|
2700
|
+
tinyglobby: 0.2.15
|
|
2701
|
+
unrs-resolver: 1.11.1
|
|
2702
|
+
optionalDependencies:
|
|
2703
|
+
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1))
|
|
2704
|
+
transitivePeerDependencies:
|
|
2705
|
+
- supports-color
|
|
2706
|
+
|
|
2707
|
+
eslint-module-utils@2.12.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1)):
|
|
2708
|
+
dependencies:
|
|
2709
|
+
debug: 3.2.7
|
|
2710
|
+
optionalDependencies:
|
|
2711
|
+
'@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2712
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2713
|
+
eslint-import-resolver-node: 0.3.9
|
|
2714
|
+
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.37.0(jiti@2.6.1))
|
|
2715
|
+
transitivePeerDependencies:
|
|
2716
|
+
- supports-color
|
|
2717
|
+
|
|
2718
|
+
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1)):
|
|
2719
|
+
dependencies:
|
|
2720
|
+
'@rtsao/scc': 1.1.0
|
|
2721
|
+
array-includes: 3.1.9
|
|
2722
|
+
array.prototype.findlastindex: 1.2.6
|
|
2723
|
+
array.prototype.flat: 1.3.3
|
|
2724
|
+
array.prototype.flatmap: 1.3.3
|
|
2725
|
+
debug: 3.2.7
|
|
2726
|
+
doctrine: 2.1.0
|
|
2727
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2728
|
+
eslint-import-resolver-node: 0.3.9
|
|
2729
|
+
eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.37.0(jiti@2.6.1))
|
|
2730
|
+
hasown: 2.0.2
|
|
2731
|
+
is-core-module: 2.16.1
|
|
2732
|
+
is-glob: 4.0.3
|
|
2733
|
+
minimatch: 3.1.2
|
|
2734
|
+
object.fromentries: 2.0.8
|
|
2735
|
+
object.groupby: 1.0.3
|
|
2736
|
+
object.values: 1.2.1
|
|
2737
|
+
semver: 6.3.1
|
|
2738
|
+
string.prototype.trimend: 1.0.9
|
|
2739
|
+
tsconfig-paths: 3.15.0
|
|
2740
|
+
optionalDependencies:
|
|
2741
|
+
'@typescript-eslint/parser': 8.46.1(eslint@9.37.0(jiti@2.6.1))(typescript@5.9.3)
|
|
2742
|
+
transitivePeerDependencies:
|
|
2743
|
+
- eslint-import-resolver-typescript
|
|
2744
|
+
- eslint-import-resolver-webpack
|
|
2745
|
+
- supports-color
|
|
2746
|
+
|
|
2747
|
+
eslint-plugin-jsx-a11y@6.10.2(eslint@9.37.0(jiti@2.6.1)):
|
|
2748
|
+
dependencies:
|
|
2749
|
+
aria-query: 5.3.2
|
|
2750
|
+
array-includes: 3.1.9
|
|
2751
|
+
array.prototype.flatmap: 1.3.3
|
|
2752
|
+
ast-types-flow: 0.0.8
|
|
2753
|
+
axe-core: 4.11.0
|
|
2754
|
+
axobject-query: 4.1.0
|
|
2755
|
+
damerau-levenshtein: 1.0.8
|
|
2756
|
+
emoji-regex: 9.2.2
|
|
2757
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2758
|
+
hasown: 2.0.2
|
|
2759
|
+
jsx-ast-utils: 3.3.5
|
|
2760
|
+
language-tags: 1.0.9
|
|
2761
|
+
minimatch: 3.1.2
|
|
2762
|
+
object.fromentries: 2.0.8
|
|
2763
|
+
safe-regex-test: 1.1.0
|
|
2764
|
+
string.prototype.includes: 2.0.1
|
|
2765
|
+
|
|
2766
|
+
eslint-plugin-react-hooks@5.2.0(eslint@9.37.0(jiti@2.6.1)):
|
|
2767
|
+
dependencies:
|
|
2768
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2769
|
+
|
|
2770
|
+
eslint-plugin-react@7.37.5(eslint@9.37.0(jiti@2.6.1)):
|
|
2771
|
+
dependencies:
|
|
2772
|
+
array-includes: 3.1.9
|
|
2773
|
+
array.prototype.findlast: 1.2.5
|
|
2774
|
+
array.prototype.flatmap: 1.3.3
|
|
2775
|
+
array.prototype.tosorted: 1.1.4
|
|
2776
|
+
doctrine: 2.1.0
|
|
2777
|
+
es-iterator-helpers: 1.2.1
|
|
2778
|
+
eslint: 9.37.0(jiti@2.6.1)
|
|
2779
|
+
estraverse: 5.3.0
|
|
2780
|
+
hasown: 2.0.2
|
|
2781
|
+
jsx-ast-utils: 3.3.5
|
|
2782
|
+
minimatch: 3.1.2
|
|
2783
|
+
object.entries: 1.1.9
|
|
2784
|
+
object.fromentries: 2.0.8
|
|
2785
|
+
object.values: 1.2.1
|
|
2786
|
+
prop-types: 15.8.1
|
|
2787
|
+
resolve: 2.0.0-next.5
|
|
2788
|
+
semver: 6.3.1
|
|
2789
|
+
string.prototype.matchall: 4.0.12
|
|
2790
|
+
string.prototype.repeat: 1.0.0
|
|
2791
|
+
|
|
2792
|
+
eslint-scope@8.4.0:
|
|
2793
|
+
dependencies:
|
|
2794
|
+
esrecurse: 4.3.0
|
|
2795
|
+
estraverse: 5.3.0
|
|
2796
|
+
|
|
2797
|
+
eslint-visitor-keys@3.4.3: {}
|
|
2798
|
+
|
|
2799
|
+
eslint-visitor-keys@4.2.1: {}
|
|
2800
|
+
|
|
2801
|
+
eslint@9.37.0(jiti@2.6.1):
|
|
2802
|
+
dependencies:
|
|
2803
|
+
'@eslint-community/eslint-utils': 4.9.0(eslint@9.37.0(jiti@2.6.1))
|
|
2804
|
+
'@eslint-community/regexpp': 4.12.1
|
|
2805
|
+
'@eslint/config-array': 0.21.0
|
|
2806
|
+
'@eslint/config-helpers': 0.4.0
|
|
2807
|
+
'@eslint/core': 0.16.0
|
|
2808
|
+
'@eslint/eslintrc': 3.3.1
|
|
2809
|
+
'@eslint/js': 9.37.0
|
|
2810
|
+
'@eslint/plugin-kit': 0.4.0
|
|
2811
|
+
'@humanfs/node': 0.16.7
|
|
2812
|
+
'@humanwhocodes/module-importer': 1.0.1
|
|
2813
|
+
'@humanwhocodes/retry': 0.4.3
|
|
2814
|
+
'@types/estree': 1.0.8
|
|
2815
|
+
'@types/json-schema': 7.0.15
|
|
2816
|
+
ajv: 6.12.6
|
|
2817
|
+
chalk: 4.1.2
|
|
2818
|
+
cross-spawn: 7.0.6
|
|
2819
|
+
debug: 4.4.3
|
|
2820
|
+
escape-string-regexp: 4.0.0
|
|
2821
|
+
eslint-scope: 8.4.0
|
|
2822
|
+
eslint-visitor-keys: 4.2.1
|
|
2823
|
+
espree: 10.4.0
|
|
2824
|
+
esquery: 1.6.0
|
|
2825
|
+
esutils: 2.0.3
|
|
2826
|
+
fast-deep-equal: 3.1.3
|
|
2827
|
+
file-entry-cache: 8.0.0
|
|
2828
|
+
find-up: 5.0.0
|
|
2829
|
+
glob-parent: 6.0.2
|
|
2830
|
+
ignore: 5.3.2
|
|
2831
|
+
imurmurhash: 0.1.4
|
|
2832
|
+
is-glob: 4.0.3
|
|
2833
|
+
json-stable-stringify-without-jsonify: 1.0.1
|
|
2834
|
+
lodash.merge: 4.6.2
|
|
2835
|
+
minimatch: 3.1.2
|
|
2836
|
+
natural-compare: 1.4.0
|
|
2837
|
+
optionator: 0.9.4
|
|
2838
|
+
optionalDependencies:
|
|
2839
|
+
jiti: 2.6.1
|
|
2840
|
+
transitivePeerDependencies:
|
|
2841
|
+
- supports-color
|
|
2842
|
+
|
|
2843
|
+
espree@10.4.0:
|
|
2844
|
+
dependencies:
|
|
2845
|
+
acorn: 8.15.0
|
|
2846
|
+
acorn-jsx: 5.3.2(acorn@8.15.0)
|
|
2847
|
+
eslint-visitor-keys: 4.2.1
|
|
2848
|
+
|
|
2849
|
+
esquery@1.6.0:
|
|
2850
|
+
dependencies:
|
|
2851
|
+
estraverse: 5.3.0
|
|
2852
|
+
|
|
2853
|
+
esrecurse@4.3.0:
|
|
2854
|
+
dependencies:
|
|
2855
|
+
estraverse: 5.3.0
|
|
2856
|
+
|
|
2857
|
+
estraverse@5.3.0: {}
|
|
2858
|
+
|
|
2859
|
+
esutils@2.0.3: {}
|
|
2860
|
+
|
|
2861
|
+
fast-deep-equal@3.1.3: {}
|
|
2862
|
+
|
|
2863
|
+
fast-glob@3.3.1:
|
|
2864
|
+
dependencies:
|
|
2865
|
+
'@nodelib/fs.stat': 2.0.5
|
|
2866
|
+
'@nodelib/fs.walk': 1.2.8
|
|
2867
|
+
glob-parent: 5.1.2
|
|
2868
|
+
merge2: 1.4.1
|
|
2869
|
+
micromatch: 4.0.8
|
|
2870
|
+
|
|
2871
|
+
fast-glob@3.3.3:
|
|
2872
|
+
dependencies:
|
|
2873
|
+
'@nodelib/fs.stat': 2.0.5
|
|
2874
|
+
'@nodelib/fs.walk': 1.2.8
|
|
2875
|
+
glob-parent: 5.1.2
|
|
2876
|
+
merge2: 1.4.1
|
|
2877
|
+
micromatch: 4.0.8
|
|
2878
|
+
|
|
2879
|
+
fast-json-stable-stringify@2.1.0: {}
|
|
2880
|
+
|
|
2881
|
+
fast-levenshtein@2.0.6: {}
|
|
2882
|
+
|
|
2883
|
+
fastq@1.19.1:
|
|
2884
|
+
dependencies:
|
|
2885
|
+
reusify: 1.1.0
|
|
2886
|
+
|
|
2887
|
+
fdir@6.5.0(picomatch@4.0.3):
|
|
2888
|
+
optionalDependencies:
|
|
2889
|
+
picomatch: 4.0.3
|
|
2890
|
+
|
|
2891
|
+
file-entry-cache@8.0.0:
|
|
2892
|
+
dependencies:
|
|
2893
|
+
flat-cache: 4.0.1
|
|
2894
|
+
|
|
2895
|
+
fill-range@7.1.1:
|
|
2896
|
+
dependencies:
|
|
2897
|
+
to-regex-range: 5.0.1
|
|
2898
|
+
|
|
2899
|
+
find-up@5.0.0:
|
|
2900
|
+
dependencies:
|
|
2901
|
+
locate-path: 6.0.0
|
|
2902
|
+
path-exists: 4.0.0
|
|
2903
|
+
|
|
2904
|
+
flat-cache@4.0.1:
|
|
2905
|
+
dependencies:
|
|
2906
|
+
flatted: 3.3.3
|
|
2907
|
+
keyv: 4.5.4
|
|
2908
|
+
|
|
2909
|
+
flatted@3.3.3: {}
|
|
2910
|
+
|
|
2911
|
+
for-each@0.3.5:
|
|
2912
|
+
dependencies:
|
|
2913
|
+
is-callable: 1.2.7
|
|
2914
|
+
|
|
2915
|
+
function-bind@1.1.2: {}
|
|
2916
|
+
|
|
2917
|
+
function.prototype.name@1.1.8:
|
|
2918
|
+
dependencies:
|
|
2919
|
+
call-bind: 1.0.8
|
|
2920
|
+
call-bound: 1.0.4
|
|
2921
|
+
define-properties: 1.2.1
|
|
2922
|
+
functions-have-names: 1.2.3
|
|
2923
|
+
hasown: 2.0.2
|
|
2924
|
+
is-callable: 1.2.7
|
|
2925
|
+
|
|
2926
|
+
functions-have-names@1.2.3: {}
|
|
2927
|
+
|
|
2928
|
+
generator-function@2.0.1: {}
|
|
2929
|
+
|
|
2930
|
+
get-intrinsic@1.3.0:
|
|
2931
|
+
dependencies:
|
|
2932
|
+
call-bind-apply-helpers: 1.0.2
|
|
2933
|
+
es-define-property: 1.0.1
|
|
2934
|
+
es-errors: 1.3.0
|
|
2935
|
+
es-object-atoms: 1.1.1
|
|
2936
|
+
function-bind: 1.1.2
|
|
2937
|
+
get-proto: 1.0.1
|
|
2938
|
+
gopd: 1.2.0
|
|
2939
|
+
has-symbols: 1.1.0
|
|
2940
|
+
hasown: 2.0.2
|
|
2941
|
+
math-intrinsics: 1.1.0
|
|
2942
|
+
|
|
2943
|
+
get-proto@1.0.1:
|
|
2944
|
+
dependencies:
|
|
2945
|
+
dunder-proto: 1.0.1
|
|
2946
|
+
es-object-atoms: 1.1.1
|
|
2947
|
+
|
|
2948
|
+
get-symbol-description@1.1.0:
|
|
2949
|
+
dependencies:
|
|
2950
|
+
call-bound: 1.0.4
|
|
2951
|
+
es-errors: 1.3.0
|
|
2952
|
+
get-intrinsic: 1.3.0
|
|
2953
|
+
|
|
2954
|
+
get-tsconfig@4.12.0:
|
|
2955
|
+
dependencies:
|
|
2956
|
+
resolve-pkg-maps: 1.0.0
|
|
2957
|
+
|
|
2958
|
+
glob-parent@5.1.2:
|
|
2959
|
+
dependencies:
|
|
2960
|
+
is-glob: 4.0.3
|
|
2961
|
+
|
|
2962
|
+
glob-parent@6.0.2:
|
|
2963
|
+
dependencies:
|
|
2964
|
+
is-glob: 4.0.3
|
|
2965
|
+
|
|
2966
|
+
globals@14.0.0: {}
|
|
2967
|
+
|
|
2968
|
+
globalthis@1.0.4:
|
|
2969
|
+
dependencies:
|
|
2970
|
+
define-properties: 1.2.1
|
|
2971
|
+
gopd: 1.2.0
|
|
2972
|
+
|
|
2973
|
+
gopd@1.2.0: {}
|
|
2974
|
+
|
|
2975
|
+
graceful-fs@4.2.11: {}
|
|
2976
|
+
|
|
2977
|
+
graphemer@1.4.0: {}
|
|
2978
|
+
|
|
2979
|
+
has-bigints@1.1.0: {}
|
|
2980
|
+
|
|
2981
|
+
has-flag@4.0.0: {}
|
|
2982
|
+
|
|
2983
|
+
has-property-descriptors@1.0.2:
|
|
2984
|
+
dependencies:
|
|
2985
|
+
es-define-property: 1.0.1
|
|
2986
|
+
|
|
2987
|
+
has-proto@1.2.0:
|
|
2988
|
+
dependencies:
|
|
2989
|
+
dunder-proto: 1.0.1
|
|
2990
|
+
|
|
2991
|
+
has-symbols@1.1.0: {}
|
|
2992
|
+
|
|
2993
|
+
has-tostringtag@1.0.2:
|
|
2994
|
+
dependencies:
|
|
2995
|
+
has-symbols: 1.1.0
|
|
2996
|
+
|
|
2997
|
+
hasown@2.0.2:
|
|
2998
|
+
dependencies:
|
|
2999
|
+
function-bind: 1.1.2
|
|
3000
|
+
|
|
3001
|
+
ignore@5.3.2: {}
|
|
3002
|
+
|
|
3003
|
+
ignore@7.0.5: {}
|
|
3004
|
+
|
|
3005
|
+
import-fresh@3.3.1:
|
|
3006
|
+
dependencies:
|
|
3007
|
+
parent-module: 1.0.1
|
|
3008
|
+
resolve-from: 4.0.0
|
|
3009
|
+
|
|
3010
|
+
imurmurhash@0.1.4: {}
|
|
3011
|
+
|
|
3012
|
+
internal-slot@1.1.0:
|
|
3013
|
+
dependencies:
|
|
3014
|
+
es-errors: 1.3.0
|
|
3015
|
+
hasown: 2.0.2
|
|
3016
|
+
side-channel: 1.1.0
|
|
3017
|
+
|
|
3018
|
+
is-array-buffer@3.0.5:
|
|
3019
|
+
dependencies:
|
|
3020
|
+
call-bind: 1.0.8
|
|
3021
|
+
call-bound: 1.0.4
|
|
3022
|
+
get-intrinsic: 1.3.0
|
|
3023
|
+
|
|
3024
|
+
is-async-function@2.1.1:
|
|
3025
|
+
dependencies:
|
|
3026
|
+
async-function: 1.0.0
|
|
3027
|
+
call-bound: 1.0.4
|
|
3028
|
+
get-proto: 1.0.1
|
|
3029
|
+
has-tostringtag: 1.0.2
|
|
3030
|
+
safe-regex-test: 1.1.0
|
|
3031
|
+
|
|
3032
|
+
is-bigint@1.1.0:
|
|
3033
|
+
dependencies:
|
|
3034
|
+
has-bigints: 1.1.0
|
|
3035
|
+
|
|
3036
|
+
is-boolean-object@1.2.2:
|
|
3037
|
+
dependencies:
|
|
3038
|
+
call-bound: 1.0.4
|
|
3039
|
+
has-tostringtag: 1.0.2
|
|
3040
|
+
|
|
3041
|
+
is-bun-module@2.0.0:
|
|
3042
|
+
dependencies:
|
|
3043
|
+
semver: 7.7.3
|
|
3044
|
+
|
|
3045
|
+
is-callable@1.2.7: {}
|
|
3046
|
+
|
|
3047
|
+
is-core-module@2.16.1:
|
|
3048
|
+
dependencies:
|
|
3049
|
+
hasown: 2.0.2
|
|
3050
|
+
|
|
3051
|
+
is-data-view@1.0.2:
|
|
3052
|
+
dependencies:
|
|
3053
|
+
call-bound: 1.0.4
|
|
3054
|
+
get-intrinsic: 1.3.0
|
|
3055
|
+
is-typed-array: 1.1.15
|
|
3056
|
+
|
|
3057
|
+
is-date-object@1.1.0:
|
|
3058
|
+
dependencies:
|
|
3059
|
+
call-bound: 1.0.4
|
|
3060
|
+
has-tostringtag: 1.0.2
|
|
3061
|
+
|
|
3062
|
+
is-extglob@2.1.1: {}
|
|
3063
|
+
|
|
3064
|
+
is-finalizationregistry@1.1.1:
|
|
3065
|
+
dependencies:
|
|
3066
|
+
call-bound: 1.0.4
|
|
3067
|
+
|
|
3068
|
+
is-generator-function@1.1.2:
|
|
3069
|
+
dependencies:
|
|
3070
|
+
call-bound: 1.0.4
|
|
3071
|
+
generator-function: 2.0.1
|
|
3072
|
+
get-proto: 1.0.1
|
|
3073
|
+
has-tostringtag: 1.0.2
|
|
3074
|
+
safe-regex-test: 1.1.0
|
|
3075
|
+
|
|
3076
|
+
is-glob@4.0.3:
|
|
3077
|
+
dependencies:
|
|
3078
|
+
is-extglob: 2.1.1
|
|
3079
|
+
|
|
3080
|
+
is-map@2.0.3: {}
|
|
3081
|
+
|
|
3082
|
+
is-negative-zero@2.0.3: {}
|
|
3083
|
+
|
|
3084
|
+
is-number-object@1.1.1:
|
|
3085
|
+
dependencies:
|
|
3086
|
+
call-bound: 1.0.4
|
|
3087
|
+
has-tostringtag: 1.0.2
|
|
3088
|
+
|
|
3089
|
+
is-number@7.0.0: {}
|
|
3090
|
+
|
|
3091
|
+
is-regex@1.2.1:
|
|
3092
|
+
dependencies:
|
|
3093
|
+
call-bound: 1.0.4
|
|
3094
|
+
gopd: 1.2.0
|
|
3095
|
+
has-tostringtag: 1.0.2
|
|
3096
|
+
hasown: 2.0.2
|
|
3097
|
+
|
|
3098
|
+
is-set@2.0.3: {}
|
|
3099
|
+
|
|
3100
|
+
is-shared-array-buffer@1.0.4:
|
|
3101
|
+
dependencies:
|
|
3102
|
+
call-bound: 1.0.4
|
|
3103
|
+
|
|
3104
|
+
is-string@1.1.1:
|
|
3105
|
+
dependencies:
|
|
3106
|
+
call-bound: 1.0.4
|
|
3107
|
+
has-tostringtag: 1.0.2
|
|
3108
|
+
|
|
3109
|
+
is-symbol@1.1.1:
|
|
3110
|
+
dependencies:
|
|
3111
|
+
call-bound: 1.0.4
|
|
3112
|
+
has-symbols: 1.1.0
|
|
3113
|
+
safe-regex-test: 1.1.0
|
|
3114
|
+
|
|
3115
|
+
is-typed-array@1.1.15:
|
|
3116
|
+
dependencies:
|
|
3117
|
+
which-typed-array: 1.1.19
|
|
3118
|
+
|
|
3119
|
+
is-weakmap@2.0.2: {}
|
|
3120
|
+
|
|
3121
|
+
is-weakref@1.1.1:
|
|
3122
|
+
dependencies:
|
|
3123
|
+
call-bound: 1.0.4
|
|
3124
|
+
|
|
3125
|
+
is-weakset@2.0.4:
|
|
3126
|
+
dependencies:
|
|
3127
|
+
call-bound: 1.0.4
|
|
3128
|
+
get-intrinsic: 1.3.0
|
|
3129
|
+
|
|
3130
|
+
isarray@2.0.5: {}
|
|
3131
|
+
|
|
3132
|
+
isexe@2.0.0: {}
|
|
3133
|
+
|
|
3134
|
+
iterator.prototype@1.1.5:
|
|
3135
|
+
dependencies:
|
|
3136
|
+
define-data-property: 1.1.4
|
|
3137
|
+
es-object-atoms: 1.1.1
|
|
3138
|
+
get-intrinsic: 1.3.0
|
|
3139
|
+
get-proto: 1.0.1
|
|
3140
|
+
has-symbols: 1.1.0
|
|
3141
|
+
set-function-name: 2.0.2
|
|
3142
|
+
|
|
3143
|
+
jiti@2.6.1: {}
|
|
3144
|
+
|
|
3145
|
+
jose@6.1.0: {}
|
|
3146
|
+
|
|
3147
|
+
js-tokens@4.0.0: {}
|
|
3148
|
+
|
|
3149
|
+
js-yaml@4.1.0:
|
|
3150
|
+
dependencies:
|
|
3151
|
+
argparse: 2.0.1
|
|
3152
|
+
|
|
3153
|
+
json-buffer@3.0.1: {}
|
|
3154
|
+
|
|
3155
|
+
json-schema-traverse@0.4.1: {}
|
|
3156
|
+
|
|
3157
|
+
json-stable-stringify-without-jsonify@1.0.1: {}
|
|
3158
|
+
|
|
3159
|
+
json5@1.0.2:
|
|
3160
|
+
dependencies:
|
|
3161
|
+
minimist: 1.2.8
|
|
3162
|
+
|
|
3163
|
+
jsx-ast-utils@3.3.5:
|
|
3164
|
+
dependencies:
|
|
3165
|
+
array-includes: 3.1.9
|
|
3166
|
+
array.prototype.flat: 1.3.3
|
|
3167
|
+
object.assign: 4.1.7
|
|
3168
|
+
object.values: 1.2.1
|
|
3169
|
+
|
|
3170
|
+
keyv@4.5.4:
|
|
3171
|
+
dependencies:
|
|
3172
|
+
json-buffer: 3.0.1
|
|
3173
|
+
|
|
3174
|
+
language-subtag-registry@0.3.23: {}
|
|
3175
|
+
|
|
3176
|
+
language-tags@1.0.9:
|
|
3177
|
+
dependencies:
|
|
3178
|
+
language-subtag-registry: 0.3.23
|
|
3179
|
+
|
|
3180
|
+
levn@0.4.1:
|
|
3181
|
+
dependencies:
|
|
3182
|
+
prelude-ls: 1.2.1
|
|
3183
|
+
type-check: 0.4.0
|
|
3184
|
+
|
|
3185
|
+
lightningcss-darwin-arm64@1.30.1:
|
|
3186
|
+
optional: true
|
|
3187
|
+
|
|
3188
|
+
lightningcss-darwin-x64@1.30.1:
|
|
3189
|
+
optional: true
|
|
3190
|
+
|
|
3191
|
+
lightningcss-freebsd-x64@1.30.1:
|
|
3192
|
+
optional: true
|
|
3193
|
+
|
|
3194
|
+
lightningcss-linux-arm-gnueabihf@1.30.1:
|
|
3195
|
+
optional: true
|
|
3196
|
+
|
|
3197
|
+
lightningcss-linux-arm64-gnu@1.30.1:
|
|
3198
|
+
optional: true
|
|
3199
|
+
|
|
3200
|
+
lightningcss-linux-arm64-musl@1.30.1:
|
|
3201
|
+
optional: true
|
|
3202
|
+
|
|
3203
|
+
lightningcss-linux-x64-gnu@1.30.1:
|
|
3204
|
+
optional: true
|
|
3205
|
+
|
|
3206
|
+
lightningcss-linux-x64-musl@1.30.1:
|
|
3207
|
+
optional: true
|
|
3208
|
+
|
|
3209
|
+
lightningcss-win32-arm64-msvc@1.30.1:
|
|
3210
|
+
optional: true
|
|
3211
|
+
|
|
3212
|
+
lightningcss-win32-x64-msvc@1.30.1:
|
|
3213
|
+
optional: true
|
|
3214
|
+
|
|
3215
|
+
lightningcss@1.30.1:
|
|
3216
|
+
dependencies:
|
|
3217
|
+
detect-libc: 2.1.2
|
|
3218
|
+
optionalDependencies:
|
|
3219
|
+
lightningcss-darwin-arm64: 1.30.1
|
|
3220
|
+
lightningcss-darwin-x64: 1.30.1
|
|
3221
|
+
lightningcss-freebsd-x64: 1.30.1
|
|
3222
|
+
lightningcss-linux-arm-gnueabihf: 1.30.1
|
|
3223
|
+
lightningcss-linux-arm64-gnu: 1.30.1
|
|
3224
|
+
lightningcss-linux-arm64-musl: 1.30.1
|
|
3225
|
+
lightningcss-linux-x64-gnu: 1.30.1
|
|
3226
|
+
lightningcss-linux-x64-musl: 1.30.1
|
|
3227
|
+
lightningcss-win32-arm64-msvc: 1.30.1
|
|
3228
|
+
lightningcss-win32-x64-msvc: 1.30.1
|
|
3229
|
+
|
|
3230
|
+
locate-path@6.0.0:
|
|
3231
|
+
dependencies:
|
|
3232
|
+
p-locate: 5.0.0
|
|
3233
|
+
|
|
3234
|
+
lodash.merge@4.6.2: {}
|
|
3235
|
+
|
|
3236
|
+
loose-envify@1.4.0:
|
|
3237
|
+
dependencies:
|
|
3238
|
+
js-tokens: 4.0.0
|
|
3239
|
+
|
|
3240
|
+
magic-string@0.30.19:
|
|
3241
|
+
dependencies:
|
|
3242
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
3243
|
+
|
|
3244
|
+
math-intrinsics@1.1.0: {}
|
|
3245
|
+
|
|
3246
|
+
merge2@1.4.1: {}
|
|
3247
|
+
|
|
3248
|
+
micromatch@4.0.8:
|
|
3249
|
+
dependencies:
|
|
3250
|
+
braces: 3.0.3
|
|
3251
|
+
picomatch: 2.3.1
|
|
3252
|
+
|
|
3253
|
+
minimatch@3.1.2:
|
|
3254
|
+
dependencies:
|
|
3255
|
+
brace-expansion: 1.1.12
|
|
3256
|
+
|
|
3257
|
+
minimatch@9.0.5:
|
|
3258
|
+
dependencies:
|
|
3259
|
+
brace-expansion: 2.0.2
|
|
3260
|
+
|
|
3261
|
+
minimist@1.2.8: {}
|
|
3262
|
+
|
|
3263
|
+
minipass@7.1.2: {}
|
|
3264
|
+
|
|
3265
|
+
minizlib@3.1.0:
|
|
3266
|
+
dependencies:
|
|
3267
|
+
minipass: 7.1.2
|
|
3268
|
+
|
|
3269
|
+
ms@2.1.3: {}
|
|
3270
|
+
|
|
3271
|
+
nanoid@3.3.11: {}
|
|
3272
|
+
|
|
3273
|
+
napi-postinstall@0.3.4: {}
|
|
3274
|
+
|
|
3275
|
+
natural-compare@1.4.0: {}
|
|
3276
|
+
|
|
3277
|
+
next@15.4.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
|
|
3278
|
+
dependencies:
|
|
3279
|
+
'@next/env': 15.4.4
|
|
3280
|
+
'@swc/helpers': 0.5.15
|
|
3281
|
+
caniuse-lite: 1.0.30001751
|
|
3282
|
+
postcss: 8.4.31
|
|
3283
|
+
react: 19.1.0
|
|
3284
|
+
react-dom: 19.1.0(react@19.1.0)
|
|
3285
|
+
styled-jsx: 5.1.6(react@19.1.0)
|
|
3286
|
+
optionalDependencies:
|
|
3287
|
+
'@next/swc-darwin-arm64': 15.4.4
|
|
3288
|
+
'@next/swc-darwin-x64': 15.4.4
|
|
3289
|
+
'@next/swc-linux-arm64-gnu': 15.4.4
|
|
3290
|
+
'@next/swc-linux-arm64-musl': 15.4.4
|
|
3291
|
+
'@next/swc-linux-x64-gnu': 15.4.4
|
|
3292
|
+
'@next/swc-linux-x64-musl': 15.4.4
|
|
3293
|
+
'@next/swc-win32-arm64-msvc': 15.4.4
|
|
3294
|
+
'@next/swc-win32-x64-msvc': 15.4.4
|
|
3295
|
+
sharp: 0.34.4
|
|
3296
|
+
transitivePeerDependencies:
|
|
3297
|
+
- '@babel/core'
|
|
3298
|
+
- babel-plugin-macros
|
|
3299
|
+
|
|
3300
|
+
oauth4webapi@3.8.2: {}
|
|
3301
|
+
|
|
3302
|
+
object-assign@4.1.1: {}
|
|
3303
|
+
|
|
3304
|
+
object-inspect@1.13.4: {}
|
|
3305
|
+
|
|
3306
|
+
object-keys@1.1.1: {}
|
|
3307
|
+
|
|
3308
|
+
object.assign@4.1.7:
|
|
3309
|
+
dependencies:
|
|
3310
|
+
call-bind: 1.0.8
|
|
3311
|
+
call-bound: 1.0.4
|
|
3312
|
+
define-properties: 1.2.1
|
|
3313
|
+
es-object-atoms: 1.1.1
|
|
3314
|
+
has-symbols: 1.1.0
|
|
3315
|
+
object-keys: 1.1.1
|
|
3316
|
+
|
|
3317
|
+
object.entries@1.1.9:
|
|
3318
|
+
dependencies:
|
|
3319
|
+
call-bind: 1.0.8
|
|
3320
|
+
call-bound: 1.0.4
|
|
3321
|
+
define-properties: 1.2.1
|
|
3322
|
+
es-object-atoms: 1.1.1
|
|
3323
|
+
|
|
3324
|
+
object.fromentries@2.0.8:
|
|
3325
|
+
dependencies:
|
|
3326
|
+
call-bind: 1.0.8
|
|
3327
|
+
define-properties: 1.2.1
|
|
3328
|
+
es-abstract: 1.24.0
|
|
3329
|
+
es-object-atoms: 1.1.1
|
|
3330
|
+
|
|
3331
|
+
object.groupby@1.0.3:
|
|
3332
|
+
dependencies:
|
|
3333
|
+
call-bind: 1.0.8
|
|
3334
|
+
define-properties: 1.2.1
|
|
3335
|
+
es-abstract: 1.24.0
|
|
3336
|
+
|
|
3337
|
+
object.values@1.2.1:
|
|
3338
|
+
dependencies:
|
|
3339
|
+
call-bind: 1.0.8
|
|
3340
|
+
call-bound: 1.0.4
|
|
3341
|
+
define-properties: 1.2.1
|
|
3342
|
+
es-object-atoms: 1.1.1
|
|
3343
|
+
|
|
3344
|
+
openid-client@6.8.1:
|
|
3345
|
+
dependencies:
|
|
3346
|
+
jose: 6.1.0
|
|
3347
|
+
oauth4webapi: 3.8.2
|
|
3348
|
+
|
|
3349
|
+
optionator@0.9.4:
|
|
3350
|
+
dependencies:
|
|
3351
|
+
deep-is: 0.1.4
|
|
3352
|
+
fast-levenshtein: 2.0.6
|
|
3353
|
+
levn: 0.4.1
|
|
3354
|
+
prelude-ls: 1.2.1
|
|
3355
|
+
type-check: 0.4.0
|
|
3356
|
+
word-wrap: 1.2.5
|
|
3357
|
+
|
|
3358
|
+
own-keys@1.0.1:
|
|
3359
|
+
dependencies:
|
|
3360
|
+
get-intrinsic: 1.3.0
|
|
3361
|
+
object-keys: 1.1.1
|
|
3362
|
+
safe-push-apply: 1.0.0
|
|
3363
|
+
|
|
3364
|
+
p-limit@3.1.0:
|
|
3365
|
+
dependencies:
|
|
3366
|
+
yocto-queue: 0.1.0
|
|
3367
|
+
|
|
3368
|
+
p-locate@5.0.0:
|
|
3369
|
+
dependencies:
|
|
3370
|
+
p-limit: 3.1.0
|
|
3371
|
+
|
|
3372
|
+
parent-module@1.0.1:
|
|
3373
|
+
dependencies:
|
|
3374
|
+
callsites: 3.1.0
|
|
3375
|
+
|
|
3376
|
+
path-exists@4.0.0: {}
|
|
3377
|
+
|
|
3378
|
+
path-key@3.1.1: {}
|
|
3379
|
+
|
|
3380
|
+
path-parse@1.0.7: {}
|
|
3381
|
+
|
|
3382
|
+
picocolors@1.1.1: {}
|
|
3383
|
+
|
|
3384
|
+
picomatch@2.3.1: {}
|
|
3385
|
+
|
|
3386
|
+
picomatch@4.0.3: {}
|
|
3387
|
+
|
|
3388
|
+
possible-typed-array-names@1.1.0: {}
|
|
3389
|
+
|
|
3390
|
+
postcss@8.4.31:
|
|
3391
|
+
dependencies:
|
|
3392
|
+
nanoid: 3.3.11
|
|
3393
|
+
picocolors: 1.1.1
|
|
3394
|
+
source-map-js: 1.2.1
|
|
3395
|
+
|
|
3396
|
+
postcss@8.5.6:
|
|
3397
|
+
dependencies:
|
|
3398
|
+
nanoid: 3.3.11
|
|
3399
|
+
picocolors: 1.1.1
|
|
3400
|
+
source-map-js: 1.2.1
|
|
3401
|
+
|
|
3402
|
+
prelude-ls@1.2.1: {}
|
|
3403
|
+
|
|
3404
|
+
prop-types@15.8.1:
|
|
3405
|
+
dependencies:
|
|
3406
|
+
loose-envify: 1.4.0
|
|
3407
|
+
object-assign: 4.1.1
|
|
3408
|
+
react-is: 16.13.1
|
|
3409
|
+
|
|
3410
|
+
punycode@2.3.1: {}
|
|
3411
|
+
|
|
3412
|
+
queue-microtask@1.2.3: {}
|
|
3413
|
+
|
|
3414
|
+
react-dom@19.1.0(react@19.1.0):
|
|
3415
|
+
dependencies:
|
|
3416
|
+
react: 19.1.0
|
|
3417
|
+
scheduler: 0.26.0
|
|
3418
|
+
|
|
3419
|
+
react-is@16.13.1: {}
|
|
3420
|
+
|
|
3421
|
+
react@19.1.0: {}
|
|
3422
|
+
|
|
3423
|
+
reflect.getprototypeof@1.0.10:
|
|
3424
|
+
dependencies:
|
|
3425
|
+
call-bind: 1.0.8
|
|
3426
|
+
define-properties: 1.2.1
|
|
3427
|
+
es-abstract: 1.24.0
|
|
3428
|
+
es-errors: 1.3.0
|
|
3429
|
+
es-object-atoms: 1.1.1
|
|
3430
|
+
get-intrinsic: 1.3.0
|
|
3431
|
+
get-proto: 1.0.1
|
|
3432
|
+
which-builtin-type: 1.2.1
|
|
3433
|
+
|
|
3434
|
+
regexp.prototype.flags@1.5.4:
|
|
3435
|
+
dependencies:
|
|
3436
|
+
call-bind: 1.0.8
|
|
3437
|
+
define-properties: 1.2.1
|
|
3438
|
+
es-errors: 1.3.0
|
|
3439
|
+
get-proto: 1.0.1
|
|
3440
|
+
gopd: 1.2.0
|
|
3441
|
+
set-function-name: 2.0.2
|
|
3442
|
+
|
|
3443
|
+
resolve-from@4.0.0: {}
|
|
3444
|
+
|
|
3445
|
+
resolve-pkg-maps@1.0.0: {}
|
|
3446
|
+
|
|
3447
|
+
resolve@1.22.10:
|
|
3448
|
+
dependencies:
|
|
3449
|
+
is-core-module: 2.16.1
|
|
3450
|
+
path-parse: 1.0.7
|
|
3451
|
+
supports-preserve-symlinks-flag: 1.0.0
|
|
3452
|
+
|
|
3453
|
+
resolve@2.0.0-next.5:
|
|
3454
|
+
dependencies:
|
|
3455
|
+
is-core-module: 2.16.1
|
|
3456
|
+
path-parse: 1.0.7
|
|
3457
|
+
supports-preserve-symlinks-flag: 1.0.0
|
|
3458
|
+
|
|
3459
|
+
reusify@1.1.0: {}
|
|
3460
|
+
|
|
3461
|
+
run-parallel@1.2.0:
|
|
3462
|
+
dependencies:
|
|
3463
|
+
queue-microtask: 1.2.3
|
|
3464
|
+
|
|
3465
|
+
safe-array-concat@1.1.3:
|
|
3466
|
+
dependencies:
|
|
3467
|
+
call-bind: 1.0.8
|
|
3468
|
+
call-bound: 1.0.4
|
|
3469
|
+
get-intrinsic: 1.3.0
|
|
3470
|
+
has-symbols: 1.1.0
|
|
3471
|
+
isarray: 2.0.5
|
|
3472
|
+
|
|
3473
|
+
safe-push-apply@1.0.0:
|
|
3474
|
+
dependencies:
|
|
3475
|
+
es-errors: 1.3.0
|
|
3476
|
+
isarray: 2.0.5
|
|
3477
|
+
|
|
3478
|
+
safe-regex-test@1.1.0:
|
|
3479
|
+
dependencies:
|
|
3480
|
+
call-bound: 1.0.4
|
|
3481
|
+
es-errors: 1.3.0
|
|
3482
|
+
is-regex: 1.2.1
|
|
3483
|
+
|
|
3484
|
+
scheduler@0.26.0: {}
|
|
3485
|
+
|
|
3486
|
+
semver@6.3.1: {}
|
|
3487
|
+
|
|
3488
|
+
semver@7.7.3: {}
|
|
3489
|
+
|
|
3490
|
+
set-function-length@1.2.2:
|
|
3491
|
+
dependencies:
|
|
3492
|
+
define-data-property: 1.1.4
|
|
3493
|
+
es-errors: 1.3.0
|
|
3494
|
+
function-bind: 1.1.2
|
|
3495
|
+
get-intrinsic: 1.3.0
|
|
3496
|
+
gopd: 1.2.0
|
|
3497
|
+
has-property-descriptors: 1.0.2
|
|
3498
|
+
|
|
3499
|
+
set-function-name@2.0.2:
|
|
3500
|
+
dependencies:
|
|
3501
|
+
define-data-property: 1.1.4
|
|
3502
|
+
es-errors: 1.3.0
|
|
3503
|
+
functions-have-names: 1.2.3
|
|
3504
|
+
has-property-descriptors: 1.0.2
|
|
3505
|
+
|
|
3506
|
+
set-proto@1.0.0:
|
|
3507
|
+
dependencies:
|
|
3508
|
+
dunder-proto: 1.0.1
|
|
3509
|
+
es-errors: 1.3.0
|
|
3510
|
+
es-object-atoms: 1.1.1
|
|
3511
|
+
|
|
3512
|
+
sharp@0.34.4:
|
|
3513
|
+
dependencies:
|
|
3514
|
+
'@img/colour': 1.0.0
|
|
3515
|
+
detect-libc: 2.1.2
|
|
3516
|
+
semver: 7.7.3
|
|
3517
|
+
optionalDependencies:
|
|
3518
|
+
'@img/sharp-darwin-arm64': 0.34.4
|
|
3519
|
+
'@img/sharp-darwin-x64': 0.34.4
|
|
3520
|
+
'@img/sharp-libvips-darwin-arm64': 1.2.3
|
|
3521
|
+
'@img/sharp-libvips-darwin-x64': 1.2.3
|
|
3522
|
+
'@img/sharp-libvips-linux-arm': 1.2.3
|
|
3523
|
+
'@img/sharp-libvips-linux-arm64': 1.2.3
|
|
3524
|
+
'@img/sharp-libvips-linux-ppc64': 1.2.3
|
|
3525
|
+
'@img/sharp-libvips-linux-s390x': 1.2.3
|
|
3526
|
+
'@img/sharp-libvips-linux-x64': 1.2.3
|
|
3527
|
+
'@img/sharp-libvips-linuxmusl-arm64': 1.2.3
|
|
3528
|
+
'@img/sharp-libvips-linuxmusl-x64': 1.2.3
|
|
3529
|
+
'@img/sharp-linux-arm': 0.34.4
|
|
3530
|
+
'@img/sharp-linux-arm64': 0.34.4
|
|
3531
|
+
'@img/sharp-linux-ppc64': 0.34.4
|
|
3532
|
+
'@img/sharp-linux-s390x': 0.34.4
|
|
3533
|
+
'@img/sharp-linux-x64': 0.34.4
|
|
3534
|
+
'@img/sharp-linuxmusl-arm64': 0.34.4
|
|
3535
|
+
'@img/sharp-linuxmusl-x64': 0.34.4
|
|
3536
|
+
'@img/sharp-wasm32': 0.34.4
|
|
3537
|
+
'@img/sharp-win32-arm64': 0.34.4
|
|
3538
|
+
'@img/sharp-win32-ia32': 0.34.4
|
|
3539
|
+
'@img/sharp-win32-x64': 0.34.4
|
|
3540
|
+
optional: true
|
|
3541
|
+
|
|
3542
|
+
shebang-command@2.0.0:
|
|
3543
|
+
dependencies:
|
|
3544
|
+
shebang-regex: 3.0.0
|
|
3545
|
+
|
|
3546
|
+
shebang-regex@3.0.0: {}
|
|
3547
|
+
|
|
3548
|
+
side-channel-list@1.0.0:
|
|
3549
|
+
dependencies:
|
|
3550
|
+
es-errors: 1.3.0
|
|
3551
|
+
object-inspect: 1.13.4
|
|
3552
|
+
|
|
3553
|
+
side-channel-map@1.0.1:
|
|
3554
|
+
dependencies:
|
|
3555
|
+
call-bound: 1.0.4
|
|
3556
|
+
es-errors: 1.3.0
|
|
3557
|
+
get-intrinsic: 1.3.0
|
|
3558
|
+
object-inspect: 1.13.4
|
|
3559
|
+
|
|
3560
|
+
side-channel-weakmap@1.0.2:
|
|
3561
|
+
dependencies:
|
|
3562
|
+
call-bound: 1.0.4
|
|
3563
|
+
es-errors: 1.3.0
|
|
3564
|
+
get-intrinsic: 1.3.0
|
|
3565
|
+
object-inspect: 1.13.4
|
|
3566
|
+
side-channel-map: 1.0.1
|
|
3567
|
+
|
|
3568
|
+
side-channel@1.1.0:
|
|
3569
|
+
dependencies:
|
|
3570
|
+
es-errors: 1.3.0
|
|
3571
|
+
object-inspect: 1.13.4
|
|
3572
|
+
side-channel-list: 1.0.0
|
|
3573
|
+
side-channel-map: 1.0.1
|
|
3574
|
+
side-channel-weakmap: 1.0.2
|
|
3575
|
+
|
|
3576
|
+
source-map-js@1.2.1: {}
|
|
3577
|
+
|
|
3578
|
+
stable-hash@0.0.5: {}
|
|
3579
|
+
|
|
3580
|
+
stop-iteration-iterator@1.1.0:
|
|
3581
|
+
dependencies:
|
|
3582
|
+
es-errors: 1.3.0
|
|
3583
|
+
internal-slot: 1.1.0
|
|
3584
|
+
|
|
3585
|
+
string.prototype.includes@2.0.1:
|
|
3586
|
+
dependencies:
|
|
3587
|
+
call-bind: 1.0.8
|
|
3588
|
+
define-properties: 1.2.1
|
|
3589
|
+
es-abstract: 1.24.0
|
|
3590
|
+
|
|
3591
|
+
string.prototype.matchall@4.0.12:
|
|
3592
|
+
dependencies:
|
|
3593
|
+
call-bind: 1.0.8
|
|
3594
|
+
call-bound: 1.0.4
|
|
3595
|
+
define-properties: 1.2.1
|
|
3596
|
+
es-abstract: 1.24.0
|
|
3597
|
+
es-errors: 1.3.0
|
|
3598
|
+
es-object-atoms: 1.1.1
|
|
3599
|
+
get-intrinsic: 1.3.0
|
|
3600
|
+
gopd: 1.2.0
|
|
3601
|
+
has-symbols: 1.1.0
|
|
3602
|
+
internal-slot: 1.1.0
|
|
3603
|
+
regexp.prototype.flags: 1.5.4
|
|
3604
|
+
set-function-name: 2.0.2
|
|
3605
|
+
side-channel: 1.1.0
|
|
3606
|
+
|
|
3607
|
+
string.prototype.repeat@1.0.0:
|
|
3608
|
+
dependencies:
|
|
3609
|
+
define-properties: 1.2.1
|
|
3610
|
+
es-abstract: 1.24.0
|
|
3611
|
+
|
|
3612
|
+
string.prototype.trim@1.2.10:
|
|
3613
|
+
dependencies:
|
|
3614
|
+
call-bind: 1.0.8
|
|
3615
|
+
call-bound: 1.0.4
|
|
3616
|
+
define-data-property: 1.1.4
|
|
3617
|
+
define-properties: 1.2.1
|
|
3618
|
+
es-abstract: 1.24.0
|
|
3619
|
+
es-object-atoms: 1.1.1
|
|
3620
|
+
has-property-descriptors: 1.0.2
|
|
3621
|
+
|
|
3622
|
+
string.prototype.trimend@1.0.9:
|
|
3623
|
+
dependencies:
|
|
3624
|
+
call-bind: 1.0.8
|
|
3625
|
+
call-bound: 1.0.4
|
|
3626
|
+
define-properties: 1.2.1
|
|
3627
|
+
es-object-atoms: 1.1.1
|
|
3628
|
+
|
|
3629
|
+
string.prototype.trimstart@1.0.8:
|
|
3630
|
+
dependencies:
|
|
3631
|
+
call-bind: 1.0.8
|
|
3632
|
+
define-properties: 1.2.1
|
|
3633
|
+
es-object-atoms: 1.1.1
|
|
3634
|
+
|
|
3635
|
+
strip-bom@3.0.0: {}
|
|
3636
|
+
|
|
3637
|
+
strip-json-comments@3.1.1: {}
|
|
3638
|
+
|
|
3639
|
+
styled-jsx@5.1.6(react@19.1.0):
|
|
3640
|
+
dependencies:
|
|
3641
|
+
client-only: 0.0.1
|
|
3642
|
+
react: 19.1.0
|
|
3643
|
+
|
|
3644
|
+
supports-color@7.2.0:
|
|
3645
|
+
dependencies:
|
|
3646
|
+
has-flag: 4.0.0
|
|
3647
|
+
|
|
3648
|
+
supports-preserve-symlinks-flag@1.0.0: {}
|
|
3649
|
+
|
|
3650
|
+
swr@2.3.6(react@19.1.0):
|
|
3651
|
+
dependencies:
|
|
3652
|
+
dequal: 2.0.3
|
|
3653
|
+
react: 19.1.0
|
|
3654
|
+
use-sync-external-store: 1.6.0(react@19.1.0)
|
|
3655
|
+
|
|
3656
|
+
tailwindcss@4.1.14: {}
|
|
3657
|
+
|
|
3658
|
+
tapable@2.3.0: {}
|
|
3659
|
+
|
|
3660
|
+
tar@7.5.1:
|
|
3661
|
+
dependencies:
|
|
3662
|
+
'@isaacs/fs-minipass': 4.0.1
|
|
3663
|
+
chownr: 3.0.0
|
|
3664
|
+
minipass: 7.1.2
|
|
3665
|
+
minizlib: 3.1.0
|
|
3666
|
+
yallist: 5.0.0
|
|
3667
|
+
|
|
3668
|
+
tinyglobby@0.2.15:
|
|
3669
|
+
dependencies:
|
|
3670
|
+
fdir: 6.5.0(picomatch@4.0.3)
|
|
3671
|
+
picomatch: 4.0.3
|
|
3672
|
+
|
|
3673
|
+
to-regex-range@5.0.1:
|
|
3674
|
+
dependencies:
|
|
3675
|
+
is-number: 7.0.0
|
|
3676
|
+
|
|
3677
|
+
ts-api-utils@2.1.0(typescript@5.9.3):
|
|
3678
|
+
dependencies:
|
|
3679
|
+
typescript: 5.9.3
|
|
3680
|
+
|
|
3681
|
+
tsconfig-paths@3.15.0:
|
|
3682
|
+
dependencies:
|
|
3683
|
+
'@types/json5': 0.0.29
|
|
3684
|
+
json5: 1.0.2
|
|
3685
|
+
minimist: 1.2.8
|
|
3686
|
+
strip-bom: 3.0.0
|
|
3687
|
+
|
|
3688
|
+
tslib@2.8.1: {}
|
|
3689
|
+
|
|
3690
|
+
type-check@0.4.0:
|
|
3691
|
+
dependencies:
|
|
3692
|
+
prelude-ls: 1.2.1
|
|
3693
|
+
|
|
3694
|
+
typed-array-buffer@1.0.3:
|
|
3695
|
+
dependencies:
|
|
3696
|
+
call-bound: 1.0.4
|
|
3697
|
+
es-errors: 1.3.0
|
|
3698
|
+
is-typed-array: 1.1.15
|
|
3699
|
+
|
|
3700
|
+
typed-array-byte-length@1.0.3:
|
|
3701
|
+
dependencies:
|
|
3702
|
+
call-bind: 1.0.8
|
|
3703
|
+
for-each: 0.3.5
|
|
3704
|
+
gopd: 1.2.0
|
|
3705
|
+
has-proto: 1.2.0
|
|
3706
|
+
is-typed-array: 1.1.15
|
|
3707
|
+
|
|
3708
|
+
typed-array-byte-offset@1.0.4:
|
|
3709
|
+
dependencies:
|
|
3710
|
+
available-typed-arrays: 1.0.7
|
|
3711
|
+
call-bind: 1.0.8
|
|
3712
|
+
for-each: 0.3.5
|
|
3713
|
+
gopd: 1.2.0
|
|
3714
|
+
has-proto: 1.2.0
|
|
3715
|
+
is-typed-array: 1.1.15
|
|
3716
|
+
reflect.getprototypeof: 1.0.10
|
|
3717
|
+
|
|
3718
|
+
typed-array-length@1.0.7:
|
|
3719
|
+
dependencies:
|
|
3720
|
+
call-bind: 1.0.8
|
|
3721
|
+
for-each: 0.3.5
|
|
3722
|
+
gopd: 1.2.0
|
|
3723
|
+
is-typed-array: 1.1.15
|
|
3724
|
+
possible-typed-array-names: 1.1.0
|
|
3725
|
+
reflect.getprototypeof: 1.0.10
|
|
3726
|
+
|
|
3727
|
+
typescript@5.9.3: {}
|
|
3728
|
+
|
|
3729
|
+
unbox-primitive@1.1.0:
|
|
3730
|
+
dependencies:
|
|
3731
|
+
call-bound: 1.0.4
|
|
3732
|
+
has-bigints: 1.1.0
|
|
3733
|
+
has-symbols: 1.1.0
|
|
3734
|
+
which-boxed-primitive: 1.1.1
|
|
3735
|
+
|
|
3736
|
+
undici-types@6.21.0: {}
|
|
3737
|
+
|
|
3738
|
+
unrs-resolver@1.11.1:
|
|
3739
|
+
dependencies:
|
|
3740
|
+
napi-postinstall: 0.3.4
|
|
3741
|
+
optionalDependencies:
|
|
3742
|
+
'@unrs/resolver-binding-android-arm-eabi': 1.11.1
|
|
3743
|
+
'@unrs/resolver-binding-android-arm64': 1.11.1
|
|
3744
|
+
'@unrs/resolver-binding-darwin-arm64': 1.11.1
|
|
3745
|
+
'@unrs/resolver-binding-darwin-x64': 1.11.1
|
|
3746
|
+
'@unrs/resolver-binding-freebsd-x64': 1.11.1
|
|
3747
|
+
'@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1
|
|
3748
|
+
'@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1
|
|
3749
|
+
'@unrs/resolver-binding-linux-arm64-gnu': 1.11.1
|
|
3750
|
+
'@unrs/resolver-binding-linux-arm64-musl': 1.11.1
|
|
3751
|
+
'@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1
|
|
3752
|
+
'@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1
|
|
3753
|
+
'@unrs/resolver-binding-linux-riscv64-musl': 1.11.1
|
|
3754
|
+
'@unrs/resolver-binding-linux-s390x-gnu': 1.11.1
|
|
3755
|
+
'@unrs/resolver-binding-linux-x64-gnu': 1.11.1
|
|
3756
|
+
'@unrs/resolver-binding-linux-x64-musl': 1.11.1
|
|
3757
|
+
'@unrs/resolver-binding-wasm32-wasi': 1.11.1
|
|
3758
|
+
'@unrs/resolver-binding-win32-arm64-msvc': 1.11.1
|
|
3759
|
+
'@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
|
|
3760
|
+
'@unrs/resolver-binding-win32-x64-msvc': 1.11.1
|
|
3761
|
+
|
|
3762
|
+
uri-js@4.4.1:
|
|
3763
|
+
dependencies:
|
|
3764
|
+
punycode: 2.3.1
|
|
3765
|
+
|
|
3766
|
+
use-sync-external-store@1.6.0(react@19.1.0):
|
|
3767
|
+
dependencies:
|
|
3768
|
+
react: 19.1.0
|
|
3769
|
+
|
|
3770
|
+
which-boxed-primitive@1.1.1:
|
|
3771
|
+
dependencies:
|
|
3772
|
+
is-bigint: 1.1.0
|
|
3773
|
+
is-boolean-object: 1.2.2
|
|
3774
|
+
is-number-object: 1.1.1
|
|
3775
|
+
is-string: 1.1.1
|
|
3776
|
+
is-symbol: 1.1.1
|
|
3777
|
+
|
|
3778
|
+
which-builtin-type@1.2.1:
|
|
3779
|
+
dependencies:
|
|
3780
|
+
call-bound: 1.0.4
|
|
3781
|
+
function.prototype.name: 1.1.8
|
|
3782
|
+
has-tostringtag: 1.0.2
|
|
3783
|
+
is-async-function: 2.1.1
|
|
3784
|
+
is-date-object: 1.1.0
|
|
3785
|
+
is-finalizationregistry: 1.1.1
|
|
3786
|
+
is-generator-function: 1.1.2
|
|
3787
|
+
is-regex: 1.2.1
|
|
3788
|
+
is-weakref: 1.1.1
|
|
3789
|
+
isarray: 2.0.5
|
|
3790
|
+
which-boxed-primitive: 1.1.1
|
|
3791
|
+
which-collection: 1.0.2
|
|
3792
|
+
which-typed-array: 1.1.19
|
|
3793
|
+
|
|
3794
|
+
which-collection@1.0.2:
|
|
3795
|
+
dependencies:
|
|
3796
|
+
is-map: 2.0.3
|
|
3797
|
+
is-set: 2.0.3
|
|
3798
|
+
is-weakmap: 2.0.2
|
|
3799
|
+
is-weakset: 2.0.4
|
|
3800
|
+
|
|
3801
|
+
which-typed-array@1.1.19:
|
|
3802
|
+
dependencies:
|
|
3803
|
+
available-typed-arrays: 1.0.7
|
|
3804
|
+
call-bind: 1.0.8
|
|
3805
|
+
call-bound: 1.0.4
|
|
3806
|
+
for-each: 0.3.5
|
|
3807
|
+
get-proto: 1.0.1
|
|
3808
|
+
gopd: 1.2.0
|
|
3809
|
+
has-tostringtag: 1.0.2
|
|
3810
|
+
|
|
3811
|
+
which@2.0.2:
|
|
3812
|
+
dependencies:
|
|
3813
|
+
isexe: 2.0.0
|
|
3814
|
+
|
|
3815
|
+
word-wrap@1.2.5: {}
|
|
3816
|
+
|
|
3817
|
+
yallist@5.0.0: {}
|
|
3818
|
+
|
|
3819
|
+
yocto-queue@0.1.0: {}
|