├── .env.example
├── .gitignore
├── README.md
├── app
├── api
│ ├── translate-image
│ │ ├── route.ts
│ │ └── solved-route.ts
│ └── translate
│ │ ├── route.ts
│ │ └── solved-route.ts
├── components
│ ├── Chat-solved.tsx
│ ├── Chat.tsx
│ ├── Icons.tsx
│ ├── Image-solved.tsx
│ ├── Image.tsx
│ ├── LanguageSelector.tsx
│ ├── Nav.tsx
│ ├── SelectLanguage.tsx
│ ├── TextCounter.tsx
│ ├── TranslateImageInput.tsx
│ ├── TranslateTextInput.tsx
│ └── TranslateTextOutput.tsx
├── consts.ts
├── documents
│ └── page.tsx
├── favicon.ico
├── globals.css
├── images
│ └── page.tsx
├── layout.tsx
├── page.tsx
├── utils
│ └── index.ts
└── websites
│ └── page.tsx
├── next.config.mjs
├── package.json
├── pnpm-lock.yaml
├── postcss.config.mjs
├── public
├── drag_and_drop.png
├── next.svg
└── vercel.svg
├── tailwind.config.ts
└── tsconfig.json
/.env.example:
--------------------------------------------------------------------------------
1 | GOOGLE_GENERATIVE_AI_API_KEY="..."
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 | .yarn/install-state.gz
8 |
9 | # testing
10 | /coverage
11 |
12 | # next.js
13 | /.next/
14 | /out/
15 |
16 | # production
17 | /build
18 |
19 | # misc
20 | .DS_Store
21 | *.pem
22 |
23 | # debug
24 | npm-debug.log*
25 | yarn-debug.log*
26 | yarn-error.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
34 | # typescript
35 | *.tsbuildinfo
36 | next-env.d.ts
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Por hacer
2 |
3 | 1. Explicar el proyecto en general
4 | - Levantar el proyecto
5 | - Explicar estructura y componentes
6 |
7 | 2. Traducción de texto
8 | -> /app/components/Chat.tsx
9 | -> /app/api/translate/route.ts
10 |
11 | 3. Traducción de imagen a texto
12 | -> /app/components/Image.tsx
13 | -> /app/api/translate-image/route.ts
--------------------------------------------------------------------------------
/app/api/translate-image/route.ts:
--------------------------------------------------------------------------------
1 | import { streamText } from 'ai'
2 | import { google } from '@ai-sdk/google'
3 | import { object, picklist, safeParse, string } from 'valibot'
4 | import { base64ToUint8Array } from '@/app/utils'
5 |
6 | const RequestSchema = object({
7 | prompt: string(),
8 | image: string(),
9 | from: picklist(['Auto', 'English', 'Español']),
10 | to: picklist(['English', 'Español', 'Japanese'])
11 | })
12 |
13 | export async function POST (req: Request) {
14 | // Extract the message, from and to from the request
15 | const { success, output, issues } = safeParse(RequestSchema, await req.json())
16 | if (!success) {
17 | return new Response(
18 | JSON.stringify({ issues }),
19 | { status: 400, headers: { 'Content-Type': 'application/json' } }
20 | )
21 | }
22 |
23 | const { from, to, image } = output
24 |
25 | // 1. Get google model gemini-pro-vision
26 | // check available models:
27 | // https://ai.google.dev/gemini-api/docs/models/gemini?hl=es-419
28 |
29 | // 2. Transform image base64 to ArrayBuffer Uint8
30 |
31 | // 3. Call streamText, passing the model, imageArray, from and to and get the response
32 |
33 | // 4. Response with stream response
34 | }
35 |
--------------------------------------------------------------------------------
/app/api/translate-image/solved-route.ts:
--------------------------------------------------------------------------------
1 | import { streamText } from 'ai'
2 | import { google } from '@ai-sdk/google'
3 | import { object, picklist, safeParse, string } from 'valibot'
4 | import { base64ToUint8Array } from '@/app/utils'
5 | import { FROM_LANGUAGES, TO_LANGUAGES } from '@/app/consts'
6 |
7 | const RequestSchema = object({
8 | prompt: string(),
9 | image: string(),
10 | from: picklist(FROM_LANGUAGES),
11 | to: picklist(TO_LANGUAGES)
12 | })
13 |
14 | export async function POST (req: Request) {
15 | // Extract the message, from and to from the request
16 | const { success, output, issues } = safeParse(RequestSchema, await req.json())
17 | if (!success) {
18 | return new Response(
19 | JSON.stringify({ issues }),
20 | { status: 400, headers: { 'Content-Type': 'application/json' } }
21 | )
22 | }
23 |
24 | const { from, to, image } = output
25 |
26 | // 1. Get google model gemini-pro-vision
27 | const model = google('models/gemini-pro-vision')
28 |
29 | // 2. Transform image base64 to ArrayBuffer Uint8
30 | const formattedImage = base64ToUint8Array(image)
31 |
32 | // 3. Call streamText,
33 | const result = await streamText({
34 | model,
35 | messages: [
36 | {
37 | role: 'user',
38 | content: [
39 | { type: 'text', text: `Translate the following text from ${from} to ${to}. If "Auto" is the from language, then try to detect the original language automatically after reading the text from the image. If no text is detected in the image, return an empty string. Always return directly the translated text. Do not include the prompt in the response.` },
40 | { type: 'image', image: formattedImage }
41 | ]
42 | }
43 | ],
44 | maxTokens: 4096,
45 | temperature: 0.7
46 | })
47 |
48 | // 4. Response with stream response
49 | return result.toAIStreamResponse()
50 | }
51 |
--------------------------------------------------------------------------------
/app/api/translate/route.ts:
--------------------------------------------------------------------------------
1 | import { object, picklist, safeParse, string } from 'valibot'
2 | import { generateText, streamText } from 'ai'
3 | import { google } from '@ai-sdk/google'
4 |
5 | const RequestSchema = object({
6 | prompt: string(),
7 | from: picklist(['Auto', 'English', 'Español']),
8 | to: picklist(['English', 'Español', 'Japanese'])
9 | })
10 |
11 | export async function POST (req: Request) {
12 | // Extract the message, from and to from the request
13 | const { success, output, issues } = safeParse(RequestSchema, await req.json())
14 | if (!success) {
15 | return new Response(
16 | JSON.stringify({ issues }),
17 | { status: 400, headers: { 'Content-Type': 'application/json' } }
18 | )
19 | }
20 |
21 | const { prompt, from, to } = output
22 |
23 | // TODO
24 | // 1. Get the Google language model
25 | // 2. Call generateText with the model, prompt, system message, maxTokens and temperature
26 | // 3. Return the response text
27 | // 4. Use streamText and toAIStreamResponse to improve performance and UX
28 | }
29 |
--------------------------------------------------------------------------------
/app/api/translate/solved-route.ts:
--------------------------------------------------------------------------------
1 | import { object, picklist, safeParse, string } from 'valibot'
2 | import { streamText } from 'ai'
3 | import { google } from '@ai-sdk/google'
4 |
5 | const RequestSchema = object({
6 | prompt: string(),
7 | from: picklist(['Auto', 'English', 'Español']),
8 | to: picklist(['English', 'Español', 'Japanese'])
9 | })
10 |
11 | export async function POST (req: Request) {
12 | // Extract the message, from and to from the request
13 | const { success, output, issues } = safeParse(RequestSchema, await req.json())
14 | if (!success) {
15 | return new Response(
16 | JSON.stringify({ issues }),
17 | { status: 400, headers: { 'Content-Type': 'application/json' } }
18 | )
19 | }
20 |
21 | const { prompt, from, to } = output
22 |
23 | // 1. Get the Google language model
24 | const model = google('models/gemini-pro')
25 |
26 | // 2. Call generateText with the model, prompt, system message, maxTokens and temperature
27 | const result = await streamText({
28 | model,
29 | prompt,
30 | system: `Translate the following text from ${from} to ${to}. If "Auto" is the from language, then try to detect the original language automatically after reading the text. Return directly the translated text. Do not include the prompt in the response.`,
31 | maxTokens: 4096,
32 | temperature: 0.7
33 | })
34 |
35 | // 3. Return the response text
36 | // 4. Use streamText and toAIStreamResponse to improve performance and UX
37 | return result.toAIStreamResponse()
38 | }
39 |
--------------------------------------------------------------------------------
/app/components/Chat-solved.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import { useCompletion } from 'ai/react'
4 | import { useEffect, useState } from 'react'
5 | import { useDebounce } from '@uidotdev/usehooks'
6 | import { TranslateTextOutput } from './TranslateTextOutput'
7 |
8 | import { FROM_LANGUAGES, TO_LANGUAGES } from '../consts'
9 | import { LanguageSelector } from './LanguageSelector'
10 | import { TranslateTextInput } from './TranslateTextInput'
11 |
12 | export function Chat () {
13 | const [from, setFrom] = useState(FROM_LANGUAGES[0])
14 | const [to, setTo] = useState(TO_LANGUAGES[0])
15 | const [text, setText] = useState('')
16 | const debouncedSearchTerm = useDebounce(text, 300)
17 |
18 | const { completion, complete, isLoading } = useCompletion({
19 | api: '/api/translate',
20 | body: { from, to }
21 | })
22 |
23 | useEffect(() => {
24 | if (debouncedSearchTerm === '') return
25 | complete(debouncedSearchTerm, { body: { from, to } })
26 | }, [debouncedSearchTerm, from, to])
27 |
28 | return (
29 | <>
30 |
31 |
32 |
33 | { setText(newText) }} />
34 |
35 |
36 | >
37 | )
38 | }
39 |
--------------------------------------------------------------------------------
/app/components/Chat.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import { useCompletion } from 'ai/react'
4 | import { useEffect, useState } from 'react'
5 | import { useDebounce } from '@uidotdev/usehooks'
6 |
7 | import { TranslateTextOutput } from './TranslateTextOutput'
8 | import { LanguageSelector } from './LanguageSelector'
9 | import { TranslateTextInput } from './TranslateTextInput'
10 |
11 | import { FROM_LANGUAGES, TO_LANGUAGES } from '../consts'
12 |
13 | export function Chat () {
14 | const [from, setFrom] = useState(FROM_LANGUAGES[0])
15 | const [to, setTo] = useState(TO_LANGUAGES[0])
16 |
17 | // 1. Create state to store user text
18 | // 2. Pass text and onChange callback to TranslateTextInput
19 | // 3. Add useCompletion hook to call to `/api/translate`
20 | // 4. Call `complete` on changing the input
21 | // 5. Call `complete` with useEffect when changing from or to
22 | // 6. Add useDebounce to improve performance
23 | // 7. Add useEffect to call complete when param changes
24 |
25 | return (
26 | <>
27 |
28 |
29 |
30 |
31 |
32 |
33 | >
34 | )
35 | }
36 |
--------------------------------------------------------------------------------
/app/components/Icons.tsx:
--------------------------------------------------------------------------------
1 | export const ArrowsIcon = () => (
2 |
3 | )
4 |
5 | export const ClipboardIcon = () => (
6 |
7 | )
8 |
9 | export const SpeakerIcon = () => (
10 |
11 | )
12 |
--------------------------------------------------------------------------------
/app/components/Image-solved.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import { useEffect, useState } from 'react'
4 | import { useCompletion } from 'ai/react'
5 |
6 | import { TranslateTextOutput } from './TranslateTextOutput'
7 | import { LanguageSelector } from './LanguageSelector'
8 |
9 | import { fileToBase64 } from '../utils'
10 | import { FROM_LANGUAGES, TO_LANGUAGES } from '../consts'
11 | import { TranslateImageInput } from './TranslateImageInput'
12 |
13 | export function Image () {
14 | const [from, setFrom] = useState(FROM_LANGUAGES[0])
15 | const [to, setTo] = useState(TO_LANGUAGES[0])
16 | const [file, setFile] = useState(null)
17 |
18 | const { completion, complete, isLoading } = useCompletion({
19 | api: '/api/translate-image'
20 | })
21 |
22 | const handleDrop = async (acceptedFiles: File[]) => {
23 | setFile(acceptedFiles[0])
24 | }
25 |
26 | useEffect(() => {
27 | async function run () {
28 | if (file === null) return
29 | const image = await fileToBase64(file)
30 | complete('', { body: { from, to, image } })
31 | }
32 |
33 | run()
34 | }, [from, to, file])
35 |
36 | const image = file != null ? URL.createObjectURL(file) : null
37 |
38 | return (
39 | <>
40 |
41 |
42 |
43 | { setFile(null) }}
47 | />
48 |
49 |
50 | >
51 | )
52 | }
53 |
--------------------------------------------------------------------------------
/app/components/Image.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import { useEffect, useState } from 'react'
4 | import { useCompletion } from 'ai/react'
5 |
6 | import { TranslateTextOutput } from './TranslateTextOutput'
7 | import { LanguageSelector } from './LanguageSelector'
8 |
9 | import { fileToBase64 } from '../utils'
10 | import { FROM_LANGUAGES, TO_LANGUAGES } from '../consts'
11 | import { TranslateImageInput } from './TranslateImageInput'
12 |
13 | export function Image () {
14 | const [from, setFrom] = useState(FROM_LANGUAGES[0])
15 | const [to, setTo] = useState(TO_LANGUAGES[0])
16 |
17 | // 1. Create state to store the file
18 | // 2. Create handleDrop function to set the file
19 | // 3. Create `image` variable to show the image
20 | // 4. Pass all the necessary props to TranslateImageInput
21 | // 5. Add `onClose` to remove the file on clicking X
22 |
23 | // 6. Add useCompletion hook to call to `/api/translate-image`
24 | // 7. useEffect: `complete` on changing the file, from or to fields
25 | // 7a. Transform image to base64 and pass it to `complete` body
26 | // 8. Pass `completion` and `isLoading` to TranslateTextOutput
27 |
28 | const image = null
29 |
30 | return (
31 | <>
32 |
33 |
34 |
35 |
36 |
37 |
38 | >
39 | )
40 | }
41 |
--------------------------------------------------------------------------------
/app/components/LanguageSelector.tsx:
--------------------------------------------------------------------------------
1 | import { FROM_LANGUAGES, TO_LANGUAGES } from '../consts'
2 | import { SelectLanguage } from './SelectLanguage'
3 |
4 | export const LanguageSelector: React.FC<{ from: string, setFrom: (language: string) => void, to: string, setTo: (language: string) => void }> = ({ from, setFrom, to, setTo }) => {
5 | return (
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | )
16 | }
17 |
--------------------------------------------------------------------------------
/app/components/Nav.tsx:
--------------------------------------------------------------------------------
1 | 'use client'
2 |
3 | import Link from 'next/link'
4 | import { usePathname } from 'next/navigation'
5 | import { MdDocumentScanner, MdImage, MdTranslate, MdWeb } from 'react-icons/md'
6 |
7 | const TABS = [{
8 | path: '/',
9 | label: 'Texto',
10 | icon:
11 | }, {
12 | path: '/images',
13 | label: 'Imágenes',
14 | icon:
15 | }, {
16 | path: '/documents',
17 | label: 'Documentos',
18 | icon:
19 | }, {
20 | path: '/websites',
21 | label: 'Sitios Web',
22 | icon:
23 | }]
24 |
25 | export function Nav () {
26 | const pathname = usePathname()
27 |
28 | return (
29 |
30 |
31 | {
32 | TABS.map(({ path, label, icon }) => (
33 |
34 | {icon}
35 | {label}
36 |
37 | ))
38 | }
39 |
40 |
41 | )
42 | }
43 |
44 | const NavButton: React.FC<{ children: React.ReactNode, href: string, className?: string }> = ({ children, href, className = '' }) => {
45 | return (
46 |
51 | {children}
52 |
53 | )
54 | }
55 |
--------------------------------------------------------------------------------
/app/components/SelectLanguage.tsx:
--------------------------------------------------------------------------------
1 | export const SelectLanguage: React.FC<{ languages: string[], selected: string, setSelected: (language: string) => void }> = ({ languages, selected, setSelected }) => {
2 | return (
3 |
16 | )
17 | }
18 |
--------------------------------------------------------------------------------
/app/components/TextCounter.tsx:
--------------------------------------------------------------------------------
1 | export const TextCounter = ({ text }: { text: string }) => {
2 | return (
3 |
4 |
5 |
6 |
7 |
{text.length}/5000
8 |
9 |
10 |
11 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/app/components/TranslateImageInput.tsx:
--------------------------------------------------------------------------------
1 | import Dropzone from 'react-dropzone'
2 | import { MdClose } from 'react-icons/md'
3 |
4 | export function TranslateImageInput (
5 | { image, onClose, onDrop }:
6 | { image: string | null, onClose: () => void, onDrop: (acceptedFiles: File[]) => void }
7 | ) {
8 | return (
9 |
10 | {
11 | image !== null
12 | ? (
13 |
14 |
15 |

16 |
17 | )
18 | : (
19 |
20 | {({ getRootProps, getInputProps, isDragActive }) => (
21 |
22 |
23 |
24 |

25 | {isDragActive ? 'Suelta tu imagen aquí...' : 'Arrastra y suelta tu imagen aquí...'}
26 |
27 |
28 | )}
29 |
30 | )
31 | }
32 |
33 | )
34 | }
35 |
--------------------------------------------------------------------------------
/app/components/TranslateTextInput.tsx:
--------------------------------------------------------------------------------
1 | import { TextCounter } from './TextCounter'
2 |
3 | export function TranslateTextInput ({ onChange, text = '' }: { onChange: (text: string) => void, text: string }) {
4 | const handleChange = (e: React.ChangeEvent) => {
5 | onChange(e.target.value)
6 | }
7 |
8 | return (
9 |
24 | )
25 | }
26 |
--------------------------------------------------------------------------------
/app/components/TranslateTextOutput.tsx:
--------------------------------------------------------------------------------
1 | import { MdContentCopy } from 'react-icons/md'
2 |
3 | const Loading = () => ⏺
4 |
5 | export function TranslateTextOutput ({ result = '', isLoading }: { result: string, isLoading: boolean }) {
6 | const copyToClipboard = () => {
7 | navigator.clipboard.writeText(result)
8 | }
9 |
10 | const renderResult = () => {
11 | if (isLoading && result.length === 0) return
12 | if (!isLoading && result.length === 0) return Traducción...
13 | if (isLoading && result.length > 0) return {result}
14 | return {result}
15 | }
16 |
17 | return (
18 |
19 |
20 |
21 | {renderResult()}
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
38 |
39 |
40 |
41 |
42 |
43 | )
44 | }
45 |
--------------------------------------------------------------------------------
/app/consts.ts:
--------------------------------------------------------------------------------
1 | export const FROM_LANGUAGES = ['Auto', 'English', 'Español']
2 | export const TO_LANGUAGES = ['English', 'Español', 'Japanese']
3 |
--------------------------------------------------------------------------------
/app/documents/page.tsx:
--------------------------------------------------------------------------------
1 | export default function Documents() {
2 | return null
3 | }
--------------------------------------------------------------------------------
/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/midudev/midu-translate-gemini/880746de97ce34eaa12c90d472a9bbf898cf26d7/app/favicon.ico
--------------------------------------------------------------------------------
/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | body {
6 | height: 100vh;
7 | display: grid;
8 | place-content: center;
9 | background: #eee;
10 | }
11 |
--------------------------------------------------------------------------------
/app/images/page.tsx:
--------------------------------------------------------------------------------
1 | import { Image } from '../components/Image'
2 |
3 | export default function Images () {
4 | return (
5 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import type { Metadata } from 'next'
2 | import { Inter } from 'next/font/google'
3 | import './globals.css'
4 | import { Nav } from './components/Nav'
5 |
6 | const inter = Inter({ subsets: ['latin'] })
7 |
8 | export const metadata: Metadata = {
9 | title: 'Google Translate Clone',
10 | description: 'Usando Gemini AI para crear un clone de Google Translate'
11 | }
12 |
13 | export default function RootLayout ({
14 | children
15 | }: Readonly<{
16 | children: React.ReactNode
17 | }>) {
18 | return (
19 |
20 |
21 |
22 |
23 |
24 | {children}
25 |
26 |
27 |
28 |
29 | )
30 | }
31 |
--------------------------------------------------------------------------------
/app/page.tsx:
--------------------------------------------------------------------------------
1 | import { Chat } from './components/Chat'
2 |
3 | export default function Home () {
4 | return (
5 |
12 | )
13 | }
14 |
--------------------------------------------------------------------------------
/app/utils/index.ts:
--------------------------------------------------------------------------------
1 | const BASE64_MARKER = ';base64,'
2 |
3 | export async function fileToBase64 (file: File) {
4 | return await new Promise((resolve, reject) => {
5 | const reader = new FileReader()
6 |
7 | reader.onload = (event) => {
8 | if (event.target === null) return reject(new Error('No target'))
9 | resolve(event.target.result)
10 | }
11 |
12 | reader.onerror = reject
13 |
14 | reader.readAsDataURL(file)
15 | })
16 | }
17 |
18 | export function base64ToUint8Array (dataURI: string) {
19 | const base64Index = dataURI.indexOf(BASE64_MARKER) + BASE64_MARKER.length
20 | const base64 = dataURI.substring(base64Index)
21 | const raw = atob(base64)
22 | const rawLength = raw.length
23 | const array = new Uint8Array(new ArrayBuffer(rawLength))
24 |
25 | for (let i = 0; i < rawLength; i++) {
26 | array[i] = raw.charCodeAt(i)
27 | }
28 | return array
29 | }
30 |
31 | export function convertUint8ArrayToBase64 (array: any) {
32 | let latin1string = ''
33 | for (let i = 0; i < array.length; i++) {
34 | latin1string += String.fromCodePoint(array[i])
35 | }
36 | return globalThis.btoa(latin1string)
37 | }
38 |
--------------------------------------------------------------------------------
/app/websites/page.tsx:
--------------------------------------------------------------------------------
1 | export default function Websites() {
2 | return null
3 | }
--------------------------------------------------------------------------------
/next.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {};
3 |
4 | export default nextConfig;
5 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "midu-translate",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "@ai-sdk/google": "0.0.10",
13 | "@uidotdev/usehooks": "^2.4.1",
14 | "ai": "3.1.3",
15 | "next": "14.2.3",
16 | "react": "18.3.1",
17 | "react-dom": "18.3.1",
18 | "react-dropzone": "^14.2.3",
19 | "react-icons": "^5.2.1",
20 | "ts-standard": "^12.0.2",
21 | "valibot": "^0.30.0"
22 | },
23 | "devDependencies": {
24 | "@types/node": "20.12.11",
25 | "@types/react": "18.3.1",
26 | "@types/react-dom": "18.3.0",
27 | "eslint": "8.57.0",
28 | "eslint-config-next": "14.2.3",
29 | "postcss": "8.4.38",
30 | "tailwindcss": "3.4.3",
31 | "typescript": "5.4.5"
32 | },
33 | "eslintConfig": {
34 | "extends": [
35 | "./node_modules/ts-standard/eslintrc.json"
36 | ],
37 | "parserOptions": {
38 | "project": "./tsconfig.json"
39 | },
40 | "rules": {
41 | "@typescript-eslint/explicit-function-return-type": "off",
42 | "@typescript-eslint/no-floating-promises": "off",
43 | "@typescript-eslint/no-misused-promises": "off"
44 | }
45 | }
46 | }
47 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | '@ai-sdk/google':
12 | specifier: 0.0.10
13 | version: 0.0.10(zod@3.23.6)
14 | '@uidotdev/usehooks':
15 | specifier: ^2.4.1
16 | version: 2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
17 | ai:
18 | specifier: 3.1.3
19 | version: 3.1.3(react@18.3.1)(solid-js@1.8.17)(svelte@4.2.15)(vue@3.4.27(typescript@5.4.5))(zod@3.23.6)
20 | next:
21 | specifier: 14.2.3
22 | version: 14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
23 | react:
24 | specifier: 18.3.1
25 | version: 18.3.1
26 | react-dom:
27 | specifier: 18.3.1
28 | version: 18.3.1(react@18.3.1)
29 | react-dropzone:
30 | specifier: ^14.2.3
31 | version: 14.2.3(react@18.3.1)
32 | react-icons:
33 | specifier: ^5.2.1
34 | version: 5.2.1(react@18.3.1)
35 | ts-standard:
36 | specifier: ^12.0.2
37 | version: 12.0.2(typescript@5.4.5)
38 | valibot:
39 | specifier: ^0.30.0
40 | version: 0.30.0
41 | devDependencies:
42 | '@types/node':
43 | specifier: 20.12.11
44 | version: 20.12.11
45 | '@types/react':
46 | specifier: 18.3.1
47 | version: 18.3.1
48 | '@types/react-dom':
49 | specifier: 18.3.0
50 | version: 18.3.0
51 | eslint:
52 | specifier: 8.57.0
53 | version: 8.57.0
54 | eslint-config-next:
55 | specifier: 14.2.3
56 | version: 14.2.3(eslint@8.57.0)(typescript@5.4.5)
57 | postcss:
58 | specifier: 8.4.38
59 | version: 8.4.38
60 | tailwindcss:
61 | specifier: 3.4.3
62 | version: 3.4.3
63 | typescript:
64 | specifier: 5.4.5
65 | version: 5.4.5
66 |
67 | packages:
68 |
69 | '@ai-sdk/google@0.0.10':
70 | resolution: {integrity: sha512-3TYNGrGnzQpUSwGebSVch3FH477FzDv7wBTw9roBh2sjqr6xGd7lmFeNxm9/wXoZ1ryEM6gHuf2LLot3jiBXLA==}
71 | engines: {node: '>=18'}
72 | peerDependencies:
73 | zod: ^3.0.0
74 | peerDependenciesMeta:
75 | zod:
76 | optional: true
77 |
78 | '@ai-sdk/provider-utils@0.0.6':
79 | resolution: {integrity: sha512-SxOZgSxnaVlW04/SjfMoAD45kWOWTWx0QcZrHaQnePooLhyk5AqQpgauPijL803uoJPCKfzd0UBv1gSKvWiU0A==}
80 | engines: {node: '>=18'}
81 | peerDependencies:
82 | zod: ^3.0.0
83 | peerDependenciesMeta:
84 | zod:
85 | optional: true
86 |
87 | '@ai-sdk/provider@0.0.3':
88 | resolution: {integrity: sha512-0B8P6VZpJ6F9yS9BpmJBYSqIaIfeRtL5tD5SP+qgR8y0pPwalIbRMUFiLz9YUT6g70MJsCLpm/2/fX3cfAYCJw==}
89 | engines: {node: '>=18'}
90 |
91 | '@alloc/quick-lru@5.2.0':
92 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
93 | engines: {node: '>=10'}
94 |
95 | '@ampproject/remapping@2.3.0':
96 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
97 | engines: {node: '>=6.0.0'}
98 |
99 | '@babel/helper-string-parser@7.24.1':
100 | resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
101 | engines: {node: '>=6.9.0'}
102 |
103 | '@babel/helper-validator-identifier@7.24.5':
104 | resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
105 | engines: {node: '>=6.9.0'}
106 |
107 | '@babel/parser@7.24.5':
108 | resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
109 | engines: {node: '>=6.0.0'}
110 | hasBin: true
111 |
112 | '@babel/runtime@7.24.5':
113 | resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
114 | engines: {node: '>=6.9.0'}
115 |
116 | '@babel/types@7.24.5':
117 | resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
118 | engines: {node: '>=6.9.0'}
119 |
120 | '@eslint-community/eslint-utils@4.4.0':
121 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
122 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
123 | peerDependencies:
124 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
125 |
126 | '@eslint-community/regexpp@4.10.0':
127 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
128 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
129 |
130 | '@eslint/eslintrc@2.1.4':
131 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
132 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
133 |
134 | '@eslint/js@8.57.0':
135 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
136 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
137 |
138 | '@humanwhocodes/config-array@0.11.14':
139 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
140 | engines: {node: '>=10.10.0'}
141 |
142 | '@humanwhocodes/module-importer@1.0.1':
143 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
144 | engines: {node: '>=12.22'}
145 |
146 | '@humanwhocodes/object-schema@2.0.3':
147 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
148 |
149 | '@isaacs/cliui@8.0.2':
150 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
151 | engines: {node: '>=12'}
152 |
153 | '@jridgewell/gen-mapping@0.3.5':
154 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
155 | engines: {node: '>=6.0.0'}
156 |
157 | '@jridgewell/resolve-uri@3.1.2':
158 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
159 | engines: {node: '>=6.0.0'}
160 |
161 | '@jridgewell/set-array@1.2.1':
162 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
163 | engines: {node: '>=6.0.0'}
164 |
165 | '@jridgewell/sourcemap-codec@1.4.15':
166 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
167 |
168 | '@jridgewell/trace-mapping@0.3.25':
169 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
170 |
171 | '@next/env@14.2.3':
172 | resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==}
173 |
174 | '@next/eslint-plugin-next@14.2.3':
175 | resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==}
176 |
177 | '@next/swc-darwin-arm64@14.2.3':
178 | resolution: {integrity: sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==}
179 | engines: {node: '>= 10'}
180 | cpu: [arm64]
181 | os: [darwin]
182 |
183 | '@next/swc-darwin-x64@14.2.3':
184 | resolution: {integrity: sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==}
185 | engines: {node: '>= 10'}
186 | cpu: [x64]
187 | os: [darwin]
188 |
189 | '@next/swc-linux-arm64-gnu@14.2.3':
190 | resolution: {integrity: sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==}
191 | engines: {node: '>= 10'}
192 | cpu: [arm64]
193 | os: [linux]
194 |
195 | '@next/swc-linux-arm64-musl@14.2.3':
196 | resolution: {integrity: sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==}
197 | engines: {node: '>= 10'}
198 | cpu: [arm64]
199 | os: [linux]
200 |
201 | '@next/swc-linux-x64-gnu@14.2.3':
202 | resolution: {integrity: sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==}
203 | engines: {node: '>= 10'}
204 | cpu: [x64]
205 | os: [linux]
206 |
207 | '@next/swc-linux-x64-musl@14.2.3':
208 | resolution: {integrity: sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==}
209 | engines: {node: '>= 10'}
210 | cpu: [x64]
211 | os: [linux]
212 |
213 | '@next/swc-win32-arm64-msvc@14.2.3':
214 | resolution: {integrity: sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==}
215 | engines: {node: '>= 10'}
216 | cpu: [arm64]
217 | os: [win32]
218 |
219 | '@next/swc-win32-ia32-msvc@14.2.3':
220 | resolution: {integrity: sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==}
221 | engines: {node: '>= 10'}
222 | cpu: [ia32]
223 | os: [win32]
224 |
225 | '@next/swc-win32-x64-msvc@14.2.3':
226 | resolution: {integrity: sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==}
227 | engines: {node: '>= 10'}
228 | cpu: [x64]
229 | os: [win32]
230 |
231 | '@nodelib/fs.scandir@2.1.5':
232 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
233 | engines: {node: '>= 8'}
234 |
235 | '@nodelib/fs.stat@2.0.5':
236 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
237 | engines: {node: '>= 8'}
238 |
239 | '@nodelib/fs.walk@1.2.8':
240 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
241 | engines: {node: '>= 8'}
242 |
243 | '@pkgjs/parseargs@0.11.0':
244 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
245 | engines: {node: '>=14'}
246 |
247 | '@rushstack/eslint-patch@1.10.2':
248 | resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}
249 |
250 | '@swc/counter@0.1.3':
251 | resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
252 |
253 | '@swc/helpers@0.5.5':
254 | resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
255 |
256 | '@types/diff-match-patch@1.0.36':
257 | resolution: {integrity: sha512-xFdR6tkm0MWvBfO8xXCSsinYxHcqkQUlcHeSpMC2ukzOb6lwQAfDmW+Qt0AvlGd8HpsS28qKsB+oPeJn9I39jg==}
258 |
259 | '@types/estree@1.0.5':
260 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
261 |
262 | '@types/json-schema@7.0.15':
263 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
264 |
265 | '@types/json5@0.0.29':
266 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
267 |
268 | '@types/node@20.12.11':
269 | resolution: {integrity: sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==}
270 |
271 | '@types/prop-types@15.7.12':
272 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
273 |
274 | '@types/react-dom@18.3.0':
275 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
276 |
277 | '@types/react@18.3.1':
278 | resolution: {integrity: sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==}
279 |
280 | '@types/semver@7.5.8':
281 | resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==}
282 |
283 | '@typescript-eslint/eslint-plugin@5.62.0':
284 | resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
285 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
286 | peerDependencies:
287 | '@typescript-eslint/parser': ^5.0.0
288 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
289 | typescript: '*'
290 | peerDependenciesMeta:
291 | typescript:
292 | optional: true
293 |
294 | '@typescript-eslint/parser@5.62.0':
295 | resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
296 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
297 | peerDependencies:
298 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
299 | typescript: '*'
300 | peerDependenciesMeta:
301 | typescript:
302 | optional: true
303 |
304 | '@typescript-eslint/parser@7.2.0':
305 | resolution: {integrity: sha512-5FKsVcHTk6TafQKQbuIVkXq58Fnbkd2wDL4LB7AURN7RUOu1utVP+G8+6u3ZhEroW3DF6hyo3ZEXxgKgp4KeCg==}
306 | engines: {node: ^16.0.0 || >=18.0.0}
307 | peerDependencies:
308 | eslint: ^8.56.0
309 | typescript: '*'
310 | peerDependenciesMeta:
311 | typescript:
312 | optional: true
313 |
314 | '@typescript-eslint/scope-manager@5.62.0':
315 | resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
316 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
317 |
318 | '@typescript-eslint/scope-manager@7.2.0':
319 | resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==}
320 | engines: {node: ^16.0.0 || >=18.0.0}
321 |
322 | '@typescript-eslint/type-utils@5.62.0':
323 | resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
324 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
325 | peerDependencies:
326 | eslint: '*'
327 | typescript: '*'
328 | peerDependenciesMeta:
329 | typescript:
330 | optional: true
331 |
332 | '@typescript-eslint/types@5.62.0':
333 | resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
334 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
335 |
336 | '@typescript-eslint/types@7.2.0':
337 | resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==}
338 | engines: {node: ^16.0.0 || >=18.0.0}
339 |
340 | '@typescript-eslint/typescript-estree@5.62.0':
341 | resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
342 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
343 | peerDependencies:
344 | typescript: '*'
345 | peerDependenciesMeta:
346 | typescript:
347 | optional: true
348 |
349 | '@typescript-eslint/typescript-estree@7.2.0':
350 | resolution: {integrity: sha512-cyxS5WQQCoBwSakpMrvMXuMDEbhOo9bNHHrNcEWis6XHx6KF518tkF1wBvKIn/tpq5ZpUYK7Bdklu8qY0MsFIA==}
351 | engines: {node: ^16.0.0 || >=18.0.0}
352 | peerDependencies:
353 | typescript: '*'
354 | peerDependenciesMeta:
355 | typescript:
356 | optional: true
357 |
358 | '@typescript-eslint/utils@5.62.0':
359 | resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
360 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
361 | peerDependencies:
362 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
363 |
364 | '@typescript-eslint/visitor-keys@5.62.0':
365 | resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
366 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
367 |
368 | '@typescript-eslint/visitor-keys@7.2.0':
369 | resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==}
370 | engines: {node: ^16.0.0 || >=18.0.0}
371 |
372 | '@uidotdev/usehooks@2.4.1':
373 | resolution: {integrity: sha512-1I+RwWyS+kdv3Mv0Vmc+p0dPYH0DTRAo04HLyXReYBL9AeseDWUJyi4THuksBJcu9F0Pih69Ak150VDnqbVnXg==}
374 | engines: {node: '>=16'}
375 | peerDependencies:
376 | react: '>=18.0.0'
377 | react-dom: '>=18.0.0'
378 |
379 | '@ungap/structured-clone@1.2.0':
380 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
381 |
382 | '@vue/compiler-core@3.4.27':
383 | resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
384 |
385 | '@vue/compiler-dom@3.4.27':
386 | resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
387 |
388 | '@vue/compiler-sfc@3.4.27':
389 | resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
390 |
391 | '@vue/compiler-ssr@3.4.27':
392 | resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
393 |
394 | '@vue/reactivity@3.4.27':
395 | resolution: {integrity: sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==}
396 |
397 | '@vue/runtime-core@3.4.27':
398 | resolution: {integrity: sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==}
399 |
400 | '@vue/runtime-dom@3.4.27':
401 | resolution: {integrity: sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==}
402 |
403 | '@vue/server-renderer@3.4.27':
404 | resolution: {integrity: sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==}
405 | peerDependencies:
406 | vue: 3.4.27
407 |
408 | '@vue/shared@3.4.27':
409 | resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
410 |
411 | acorn-jsx@5.3.2:
412 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
413 | peerDependencies:
414 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
415 |
416 | acorn@8.11.3:
417 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
418 | engines: {node: '>=0.4.0'}
419 | hasBin: true
420 |
421 | ai@3.1.3:
422 | resolution: {integrity: sha512-65ngr71PaLFzCa+rj/B9u2y3qlJsrUpc0i4WAcsd05/rxeY7RV8soLScCHeqB9v1yVdLBak8K6ftkGHXubtmag==}
423 | engines: {node: '>=18'}
424 | peerDependencies:
425 | react: ^18.2.0
426 | solid-js: ^1.7.7
427 | svelte: ^3.0.0 || ^4.0.0
428 | vue: ^3.3.4
429 | zod: ^3.0.0
430 | peerDependenciesMeta:
431 | react:
432 | optional: true
433 | solid-js:
434 | optional: true
435 | svelte:
436 | optional: true
437 | vue:
438 | optional: true
439 | zod:
440 | optional: true
441 |
442 | ajv@6.12.6:
443 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
444 |
445 | ansi-regex@5.0.1:
446 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
447 | engines: {node: '>=8'}
448 |
449 | ansi-regex@6.0.1:
450 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
451 | engines: {node: '>=12'}
452 |
453 | ansi-styles@4.3.0:
454 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
455 | engines: {node: '>=8'}
456 |
457 | ansi-styles@6.2.1:
458 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
459 | engines: {node: '>=12'}
460 |
461 | any-promise@1.3.0:
462 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
463 |
464 | anymatch@3.1.3:
465 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
466 | engines: {node: '>= 8'}
467 |
468 | arg@5.0.2:
469 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
470 |
471 | argparse@2.0.1:
472 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
473 |
474 | aria-query@5.3.0:
475 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
476 |
477 | array-buffer-byte-length@1.0.1:
478 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
479 | engines: {node: '>= 0.4'}
480 |
481 | array-includes@3.1.8:
482 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
483 | engines: {node: '>= 0.4'}
484 |
485 | array-union@2.1.0:
486 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
487 | engines: {node: '>=8'}
488 |
489 | array.prototype.findlast@1.2.5:
490 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
491 | engines: {node: '>= 0.4'}
492 |
493 | array.prototype.findlastindex@1.2.5:
494 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
495 | engines: {node: '>= 0.4'}
496 |
497 | array.prototype.flat@1.3.2:
498 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
499 | engines: {node: '>= 0.4'}
500 |
501 | array.prototype.flatmap@1.3.2:
502 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
503 | engines: {node: '>= 0.4'}
504 |
505 | array.prototype.toreversed@1.1.2:
506 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
507 |
508 | array.prototype.tosorted@1.1.3:
509 | resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
510 |
511 | arraybuffer.prototype.slice@1.0.3:
512 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
513 | engines: {node: '>= 0.4'}
514 |
515 | ast-types-flow@0.0.8:
516 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
517 |
518 | attr-accept@2.2.2:
519 | resolution: {integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==}
520 | engines: {node: '>=4'}
521 |
522 | available-typed-arrays@1.0.7:
523 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
524 | engines: {node: '>= 0.4'}
525 |
526 | axe-core@4.7.0:
527 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
528 | engines: {node: '>=4'}
529 |
530 | axobject-query@3.2.1:
531 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
532 |
533 | axobject-query@4.0.0:
534 | resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==}
535 |
536 | balanced-match@1.0.2:
537 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
538 |
539 | binary-extensions@2.3.0:
540 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
541 | engines: {node: '>=8'}
542 |
543 | brace-expansion@1.1.11:
544 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
545 |
546 | brace-expansion@2.0.1:
547 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
548 |
549 | braces@3.0.2:
550 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
551 | engines: {node: '>=8'}
552 |
553 | builtins@5.1.0:
554 | resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
555 |
556 | busboy@1.6.0:
557 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
558 | engines: {node: '>=10.16.0'}
559 |
560 | call-bind@1.0.7:
561 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
562 | engines: {node: '>= 0.4'}
563 |
564 | callsites@3.1.0:
565 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
566 | engines: {node: '>=6'}
567 |
568 | camelcase-css@2.0.1:
569 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
570 | engines: {node: '>= 6'}
571 |
572 | caniuse-lite@1.0.30001616:
573 | resolution: {integrity: sha512-RHVYKov7IcdNjVHJFNY/78RdG4oGVjbayxv8u5IO74Wv7Hlq4PnJE6mo/OjFijjVFNy5ijnCt6H3IIo4t+wfEw==}
574 |
575 | chalk@4.1.2:
576 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
577 | engines: {node: '>=10'}
578 |
579 | chalk@5.3.0:
580 | resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
581 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
582 |
583 | chokidar@3.6.0:
584 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
585 | engines: {node: '>= 8.10.0'}
586 |
587 | client-only@0.0.1:
588 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
589 |
590 | code-red@1.0.4:
591 | resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==}
592 |
593 | color-convert@2.0.1:
594 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
595 | engines: {node: '>=7.0.0'}
596 |
597 | color-name@1.1.4:
598 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
599 |
600 | commander@4.1.1:
601 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
602 | engines: {node: '>= 6'}
603 |
604 | concat-map@0.0.1:
605 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
606 |
607 | cross-spawn@7.0.3:
608 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
609 | engines: {node: '>= 8'}
610 |
611 | css-tree@2.3.1:
612 | resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
613 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
614 |
615 | cssesc@3.0.0:
616 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
617 | engines: {node: '>=4'}
618 | hasBin: true
619 |
620 | csstype@3.1.3:
621 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
622 |
623 | damerau-levenshtein@1.0.8:
624 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
625 |
626 | data-view-buffer@1.0.1:
627 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
628 | engines: {node: '>= 0.4'}
629 |
630 | data-view-byte-length@1.0.1:
631 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
632 | engines: {node: '>= 0.4'}
633 |
634 | data-view-byte-offset@1.0.0:
635 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
636 | engines: {node: '>= 0.4'}
637 |
638 | debug@3.2.7:
639 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
640 | peerDependencies:
641 | supports-color: '*'
642 | peerDependenciesMeta:
643 | supports-color:
644 | optional: true
645 |
646 | debug@4.3.4:
647 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
648 | engines: {node: '>=6.0'}
649 | peerDependencies:
650 | supports-color: '*'
651 | peerDependenciesMeta:
652 | supports-color:
653 | optional: true
654 |
655 | deep-is@0.1.4:
656 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
657 |
658 | define-data-property@1.1.4:
659 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
660 | engines: {node: '>= 0.4'}
661 |
662 | define-properties@1.2.1:
663 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
664 | engines: {node: '>= 0.4'}
665 |
666 | dequal@2.0.3:
667 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
668 | engines: {node: '>=6'}
669 |
670 | didyoumean@1.2.2:
671 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
672 |
673 | diff-match-patch@1.0.5:
674 | resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==}
675 |
676 | dir-glob@3.0.1:
677 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
678 | engines: {node: '>=8'}
679 |
680 | dlv@1.1.3:
681 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
682 |
683 | doctrine@2.1.0:
684 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
685 | engines: {node: '>=0.10.0'}
686 |
687 | doctrine@3.0.0:
688 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
689 | engines: {node: '>=6.0.0'}
690 |
691 | eastasianwidth@0.2.0:
692 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
693 |
694 | emoji-regex@8.0.0:
695 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
696 |
697 | emoji-regex@9.2.2:
698 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
699 |
700 | enhanced-resolve@5.16.0:
701 | resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
702 | engines: {node: '>=10.13.0'}
703 |
704 | entities@4.5.0:
705 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
706 | engines: {node: '>=0.12'}
707 |
708 | error-ex@1.3.2:
709 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
710 |
711 | es-abstract@1.23.3:
712 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
713 | engines: {node: '>= 0.4'}
714 |
715 | es-define-property@1.0.0:
716 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
717 | engines: {node: '>= 0.4'}
718 |
719 | es-errors@1.3.0:
720 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
721 | engines: {node: '>= 0.4'}
722 |
723 | es-iterator-helpers@1.0.19:
724 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
725 | engines: {node: '>= 0.4'}
726 |
727 | es-object-atoms@1.0.0:
728 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
729 | engines: {node: '>= 0.4'}
730 |
731 | es-set-tostringtag@2.0.3:
732 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
733 | engines: {node: '>= 0.4'}
734 |
735 | es-shim-unscopables@1.0.2:
736 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
737 |
738 | es-to-primitive@1.2.1:
739 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
740 | engines: {node: '>= 0.4'}
741 |
742 | escape-string-regexp@4.0.0:
743 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
744 | engines: {node: '>=10'}
745 |
746 | eslint-config-next@14.2.3:
747 | resolution: {integrity: sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==}
748 | peerDependencies:
749 | eslint: ^7.23.0 || ^8.0.0
750 | typescript: '>=3.3.1'
751 | peerDependenciesMeta:
752 | typescript:
753 | optional: true
754 |
755 | eslint-config-standard-jsx@11.0.0:
756 | resolution: {integrity: sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==}
757 | peerDependencies:
758 | eslint: ^8.8.0
759 | eslint-plugin-react: ^7.28.0
760 |
761 | eslint-config-standard-with-typescript@23.0.0:
762 | resolution: {integrity: sha512-iaaWifImn37Z1OXbNW1es7KI+S7D408F9ys0bpaQf2temeBWlvb0Nc5qHkOgYaRb5QxTZT32GGeN1gtswASOXA==}
763 | deprecated: Please use eslint-config-love, instead.
764 | peerDependencies:
765 | '@typescript-eslint/eslint-plugin': ^5.0.0
766 | eslint: ^8.0.1
767 | eslint-plugin-import: ^2.25.2
768 | eslint-plugin-n: ^15.0.0
769 | eslint-plugin-promise: ^6.0.0
770 | typescript: '*'
771 |
772 | eslint-config-standard@17.0.0:
773 | resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==}
774 | peerDependencies:
775 | eslint: ^8.0.1
776 | eslint-plugin-import: ^2.25.2
777 | eslint-plugin-n: ^15.0.0
778 | eslint-plugin-promise: ^6.0.0
779 |
780 | eslint-import-resolver-node@0.3.9:
781 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
782 |
783 | eslint-import-resolver-typescript@3.6.1:
784 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
785 | engines: {node: ^14.18.0 || >=16.0.0}
786 | peerDependencies:
787 | eslint: '*'
788 | eslint-plugin-import: '*'
789 |
790 | eslint-module-utils@2.8.1:
791 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
792 | engines: {node: '>=4'}
793 | peerDependencies:
794 | '@typescript-eslint/parser': '*'
795 | eslint: '*'
796 | eslint-import-resolver-node: '*'
797 | eslint-import-resolver-typescript: '*'
798 | eslint-import-resolver-webpack: '*'
799 | peerDependenciesMeta:
800 | '@typescript-eslint/parser':
801 | optional: true
802 | eslint:
803 | optional: true
804 | eslint-import-resolver-node:
805 | optional: true
806 | eslint-import-resolver-typescript:
807 | optional: true
808 | eslint-import-resolver-webpack:
809 | optional: true
810 |
811 | eslint-plugin-es@4.1.0:
812 | resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==}
813 | engines: {node: '>=8.10.0'}
814 | peerDependencies:
815 | eslint: '>=4.19.1'
816 |
817 | eslint-plugin-import@2.29.1:
818 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
819 | engines: {node: '>=4'}
820 | peerDependencies:
821 | '@typescript-eslint/parser': '*'
822 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
823 | peerDependenciesMeta:
824 | '@typescript-eslint/parser':
825 | optional: true
826 |
827 | eslint-plugin-jsx-a11y@6.8.0:
828 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
829 | engines: {node: '>=4.0'}
830 | peerDependencies:
831 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
832 |
833 | eslint-plugin-n@15.7.0:
834 | resolution: {integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==}
835 | engines: {node: '>=12.22.0'}
836 | peerDependencies:
837 | eslint: '>=7.0.0'
838 |
839 | eslint-plugin-promise@6.1.1:
840 | resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==}
841 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
842 | peerDependencies:
843 | eslint: ^7.0.0 || ^8.0.0
844 |
845 | eslint-plugin-react-hooks@4.6.2:
846 | resolution: {integrity: sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==}
847 | engines: {node: '>=10'}
848 | peerDependencies:
849 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
850 |
851 | eslint-plugin-react@7.34.1:
852 | resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==}
853 | engines: {node: '>=4'}
854 | peerDependencies:
855 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
856 |
857 | eslint-scope@5.1.1:
858 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
859 | engines: {node: '>=8.0.0'}
860 |
861 | eslint-scope@7.2.2:
862 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
863 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
864 |
865 | eslint-utils@2.1.0:
866 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
867 | engines: {node: '>=6'}
868 |
869 | eslint-utils@3.0.0:
870 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
871 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
872 | peerDependencies:
873 | eslint: '>=5'
874 |
875 | eslint-visitor-keys@1.3.0:
876 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
877 | engines: {node: '>=4'}
878 |
879 | eslint-visitor-keys@2.1.0:
880 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
881 | engines: {node: '>=10'}
882 |
883 | eslint-visitor-keys@3.4.3:
884 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
885 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
886 |
887 | eslint@8.57.0:
888 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
889 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
890 | hasBin: true
891 |
892 | espree@9.6.1:
893 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
894 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
895 |
896 | esquery@1.5.0:
897 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
898 | engines: {node: '>=0.10'}
899 |
900 | esrecurse@4.3.0:
901 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
902 | engines: {node: '>=4.0'}
903 |
904 | estraverse@4.3.0:
905 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
906 | engines: {node: '>=4.0'}
907 |
908 | estraverse@5.3.0:
909 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
910 | engines: {node: '>=4.0'}
911 |
912 | estree-walker@2.0.2:
913 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
914 |
915 | estree-walker@3.0.3:
916 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
917 |
918 | esutils@2.0.3:
919 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
920 | engines: {node: '>=0.10.0'}
921 |
922 | eventsource-parser@1.1.2:
923 | resolution: {integrity: sha512-v0eOBUbiaFojBu2s2NPBfYUoRR9GjcDNvCXVaqEf5vVfpIAh9f8RCo4vXTP8c63QRKCFwoLpMpTdPwwhEKVgzA==}
924 | engines: {node: '>=14.18'}
925 |
926 | fast-deep-equal@3.1.3:
927 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
928 |
929 | fast-glob@3.3.2:
930 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
931 | engines: {node: '>=8.6.0'}
932 |
933 | fast-json-stable-stringify@2.1.0:
934 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
935 |
936 | fast-levenshtein@2.0.6:
937 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
938 |
939 | fastq@1.17.1:
940 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
941 |
942 | file-entry-cache@6.0.1:
943 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
944 | engines: {node: ^10.12.0 || >=12.0.0}
945 |
946 | file-selector@0.6.0:
947 | resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==}
948 | engines: {node: '>= 12'}
949 |
950 | fill-range@7.0.1:
951 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
952 | engines: {node: '>=8'}
953 |
954 | find-up@3.0.0:
955 | resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
956 | engines: {node: '>=6'}
957 |
958 | find-up@5.0.0:
959 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
960 | engines: {node: '>=10'}
961 |
962 | find-up@6.3.0:
963 | resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
964 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
965 |
966 | flat-cache@3.2.0:
967 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
968 | engines: {node: ^10.12.0 || >=12.0.0}
969 |
970 | flatted@3.3.1:
971 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
972 |
973 | for-each@0.3.3:
974 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
975 |
976 | foreground-child@3.1.1:
977 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
978 | engines: {node: '>=14'}
979 |
980 | fs.realpath@1.0.0:
981 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
982 |
983 | fsevents@2.3.3:
984 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
985 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
986 | os: [darwin]
987 |
988 | function-bind@1.1.2:
989 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
990 |
991 | function.prototype.name@1.1.6:
992 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
993 | engines: {node: '>= 0.4'}
994 |
995 | functions-have-names@1.2.3:
996 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
997 |
998 | get-intrinsic@1.2.4:
999 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
1000 | engines: {node: '>= 0.4'}
1001 |
1002 | get-stdin@8.0.0:
1003 | resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==}
1004 | engines: {node: '>=10'}
1005 |
1006 | get-symbol-description@1.0.2:
1007 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
1008 | engines: {node: '>= 0.4'}
1009 |
1010 | get-tsconfig@4.7.4:
1011 | resolution: {integrity: sha512-ofbkKj+0pjXjhejr007J/fLf+sW+8H7K5GCm+msC8q3IpvgjobpyPqSRFemNyIMxklC0zeJpi7VDFna19FacvQ==}
1012 |
1013 | glob-parent@5.1.2:
1014 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1015 | engines: {node: '>= 6'}
1016 |
1017 | glob-parent@6.0.2:
1018 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1019 | engines: {node: '>=10.13.0'}
1020 |
1021 | glob@10.3.10:
1022 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
1023 | engines: {node: '>=16 || 14 >=14.17'}
1024 | hasBin: true
1025 |
1026 | glob@10.3.12:
1027 | resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
1028 | engines: {node: '>=16 || 14 >=14.17'}
1029 | hasBin: true
1030 |
1031 | glob@7.2.3:
1032 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1033 |
1034 | globals@13.24.0:
1035 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
1036 | engines: {node: '>=8'}
1037 |
1038 | globalthis@1.0.4:
1039 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
1040 | engines: {node: '>= 0.4'}
1041 |
1042 | globby@11.1.0:
1043 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
1044 | engines: {node: '>=10'}
1045 |
1046 | gopd@1.0.1:
1047 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
1048 |
1049 | graceful-fs@4.2.11:
1050 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1051 |
1052 | graphemer@1.4.0:
1053 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
1054 |
1055 | has-bigints@1.0.2:
1056 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
1057 |
1058 | has-flag@4.0.0:
1059 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1060 | engines: {node: '>=8'}
1061 |
1062 | has-property-descriptors@1.0.2:
1063 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
1064 |
1065 | has-proto@1.0.3:
1066 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
1067 | engines: {node: '>= 0.4'}
1068 |
1069 | has-symbols@1.0.3:
1070 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
1071 | engines: {node: '>= 0.4'}
1072 |
1073 | has-tostringtag@1.0.2:
1074 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
1075 | engines: {node: '>= 0.4'}
1076 |
1077 | hasown@2.0.2:
1078 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
1079 | engines: {node: '>= 0.4'}
1080 |
1081 | ignore@5.3.1:
1082 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
1083 | engines: {node: '>= 4'}
1084 |
1085 | import-fresh@3.3.0:
1086 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1087 | engines: {node: '>=6'}
1088 |
1089 | imurmurhash@0.1.4:
1090 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1091 | engines: {node: '>=0.8.19'}
1092 |
1093 | inflight@1.0.6:
1094 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1095 |
1096 | inherits@2.0.4:
1097 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1098 |
1099 | internal-slot@1.0.7:
1100 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
1101 | engines: {node: '>= 0.4'}
1102 |
1103 | is-array-buffer@3.0.4:
1104 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
1105 | engines: {node: '>= 0.4'}
1106 |
1107 | is-arrayish@0.2.1:
1108 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
1109 |
1110 | is-async-function@2.0.0:
1111 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
1112 | engines: {node: '>= 0.4'}
1113 |
1114 | is-bigint@1.0.4:
1115 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
1116 |
1117 | is-binary-path@2.1.0:
1118 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1119 | engines: {node: '>=8'}
1120 |
1121 | is-boolean-object@1.1.2:
1122 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
1123 | engines: {node: '>= 0.4'}
1124 |
1125 | is-callable@1.2.7:
1126 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
1127 | engines: {node: '>= 0.4'}
1128 |
1129 | is-core-module@2.13.1:
1130 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
1131 |
1132 | is-data-view@1.0.1:
1133 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
1134 | engines: {node: '>= 0.4'}
1135 |
1136 | is-date-object@1.0.5:
1137 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
1138 | engines: {node: '>= 0.4'}
1139 |
1140 | is-extglob@2.1.1:
1141 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1142 | engines: {node: '>=0.10.0'}
1143 |
1144 | is-finalizationregistry@1.0.2:
1145 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
1146 |
1147 | is-fullwidth-code-point@3.0.0:
1148 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1149 | engines: {node: '>=8'}
1150 |
1151 | is-generator-function@1.0.10:
1152 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
1153 | engines: {node: '>= 0.4'}
1154 |
1155 | is-glob@4.0.3:
1156 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1157 | engines: {node: '>=0.10.0'}
1158 |
1159 | is-map@2.0.3:
1160 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
1161 | engines: {node: '>= 0.4'}
1162 |
1163 | is-negative-zero@2.0.3:
1164 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
1165 | engines: {node: '>= 0.4'}
1166 |
1167 | is-number-object@1.0.7:
1168 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
1169 | engines: {node: '>= 0.4'}
1170 |
1171 | is-number@7.0.0:
1172 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1173 | engines: {node: '>=0.12.0'}
1174 |
1175 | is-path-inside@3.0.3:
1176 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1177 | engines: {node: '>=8'}
1178 |
1179 | is-reference@3.0.2:
1180 | resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
1181 |
1182 | is-regex@1.1.4:
1183 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1184 | engines: {node: '>= 0.4'}
1185 |
1186 | is-set@2.0.3:
1187 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1188 | engines: {node: '>= 0.4'}
1189 |
1190 | is-shared-array-buffer@1.0.3:
1191 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
1192 | engines: {node: '>= 0.4'}
1193 |
1194 | is-string@1.0.7:
1195 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1196 | engines: {node: '>= 0.4'}
1197 |
1198 | is-symbol@1.0.4:
1199 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1200 | engines: {node: '>= 0.4'}
1201 |
1202 | is-typed-array@1.1.13:
1203 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
1204 | engines: {node: '>= 0.4'}
1205 |
1206 | is-weakmap@2.0.2:
1207 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1208 | engines: {node: '>= 0.4'}
1209 |
1210 | is-weakref@1.0.2:
1211 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1212 |
1213 | is-weakset@2.0.3:
1214 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
1215 | engines: {node: '>= 0.4'}
1216 |
1217 | isarray@2.0.5:
1218 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1219 |
1220 | isexe@2.0.0:
1221 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1222 |
1223 | iterator.prototype@1.1.2:
1224 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
1225 |
1226 | jackspeak@2.3.6:
1227 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
1228 | engines: {node: '>=14'}
1229 |
1230 | jiti@1.21.0:
1231 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
1232 | hasBin: true
1233 |
1234 | js-tokens@4.0.0:
1235 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1236 |
1237 | js-yaml@4.1.0:
1238 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1239 | hasBin: true
1240 |
1241 | json-buffer@3.0.1:
1242 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1243 |
1244 | json-parse-better-errors@1.0.2:
1245 | resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
1246 |
1247 | json-schema-traverse@0.4.1:
1248 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1249 |
1250 | json-schema@0.4.0:
1251 | resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
1252 |
1253 | json-stable-stringify-without-jsonify@1.0.1:
1254 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1255 |
1256 | json5@1.0.2:
1257 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
1258 | hasBin: true
1259 |
1260 | jsondiffpatch@0.6.0:
1261 | resolution: {integrity: sha512-3QItJOXp2AP1uv7waBkao5nCvhEv+QmJAd38Ybq7wNI74Q+BBmnLn4EDKz6yI9xGAIQoUF87qHt+kc1IVxB4zQ==}
1262 | engines: {node: ^18.0.0 || >=20.0.0}
1263 | hasBin: true
1264 |
1265 | jsx-ast-utils@3.3.5:
1266 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
1267 | engines: {node: '>=4.0'}
1268 |
1269 | keyv@4.5.4:
1270 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1271 |
1272 | language-subtag-registry@0.3.22:
1273 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
1274 |
1275 | language-tags@1.0.9:
1276 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
1277 | engines: {node: '>=0.10'}
1278 |
1279 | levn@0.4.1:
1280 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1281 | engines: {node: '>= 0.8.0'}
1282 |
1283 | lilconfig@2.1.0:
1284 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1285 | engines: {node: '>=10'}
1286 |
1287 | lilconfig@3.1.1:
1288 | resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
1289 | engines: {node: '>=14'}
1290 |
1291 | lines-and-columns@1.2.4:
1292 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1293 |
1294 | load-json-file@5.3.0:
1295 | resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==}
1296 | engines: {node: '>=6'}
1297 |
1298 | load-json-file@7.0.1:
1299 | resolution: {integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==}
1300 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1301 |
1302 | locate-character@3.0.0:
1303 | resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==}
1304 |
1305 | locate-path@3.0.0:
1306 | resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
1307 | engines: {node: '>=6'}
1308 |
1309 | locate-path@6.0.0:
1310 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1311 | engines: {node: '>=10'}
1312 |
1313 | locate-path@7.2.0:
1314 | resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
1315 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1316 |
1317 | lodash.merge@4.6.2:
1318 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1319 |
1320 | loose-envify@1.4.0:
1321 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1322 | hasBin: true
1323 |
1324 | lru-cache@10.2.2:
1325 | resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
1326 | engines: {node: 14 || >=16.14}
1327 |
1328 | lru-cache@6.0.0:
1329 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
1330 | engines: {node: '>=10'}
1331 |
1332 | magic-string@0.30.10:
1333 | resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
1334 |
1335 | mdn-data@2.0.30:
1336 | resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
1337 |
1338 | merge2@1.4.1:
1339 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1340 | engines: {node: '>= 8'}
1341 |
1342 | micromatch@4.0.5:
1343 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
1344 | engines: {node: '>=8.6'}
1345 |
1346 | minimatch@3.1.2:
1347 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1348 |
1349 | minimatch@9.0.3:
1350 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
1351 | engines: {node: '>=16 || 14 >=14.17'}
1352 |
1353 | minimatch@9.0.4:
1354 | resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}
1355 | engines: {node: '>=16 || 14 >=14.17'}
1356 |
1357 | minimist@1.2.8:
1358 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
1359 |
1360 | minipass@7.1.0:
1361 | resolution: {integrity: sha512-oGZRv2OT1lO2UF1zUcwdTb3wqUwI0kBGTgt/T7OdSj6M6N5m3o5uPf0AIW6lVxGGoiWUR7e2AwTE+xiwK8WQig==}
1362 | engines: {node: '>=16 || 14 >=14.17'}
1363 |
1364 | ms@2.1.2:
1365 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
1366 |
1367 | ms@2.1.3:
1368 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1369 |
1370 | mz@2.7.0:
1371 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1372 |
1373 | nanoid@3.3.6:
1374 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
1375 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1376 | hasBin: true
1377 |
1378 | nanoid@3.3.7:
1379 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
1380 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1381 | hasBin: true
1382 |
1383 | natural-compare-lite@1.4.0:
1384 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
1385 |
1386 | natural-compare@1.4.0:
1387 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1388 |
1389 | next@14.2.3:
1390 | resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==}
1391 | engines: {node: '>=18.17.0'}
1392 | hasBin: true
1393 | peerDependencies:
1394 | '@opentelemetry/api': ^1.1.0
1395 | '@playwright/test': ^1.41.2
1396 | react: ^18.2.0
1397 | react-dom: ^18.2.0
1398 | sass: ^1.3.0
1399 | peerDependenciesMeta:
1400 | '@opentelemetry/api':
1401 | optional: true
1402 | '@playwright/test':
1403 | optional: true
1404 | sass:
1405 | optional: true
1406 |
1407 | normalize-path@3.0.0:
1408 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1409 | engines: {node: '>=0.10.0'}
1410 |
1411 | object-assign@4.1.1:
1412 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1413 | engines: {node: '>=0.10.0'}
1414 |
1415 | object-hash@3.0.0:
1416 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1417 | engines: {node: '>= 6'}
1418 |
1419 | object-inspect@1.13.1:
1420 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
1421 |
1422 | object-keys@1.1.1:
1423 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1424 | engines: {node: '>= 0.4'}
1425 |
1426 | object.assign@4.1.5:
1427 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
1428 | engines: {node: '>= 0.4'}
1429 |
1430 | object.entries@1.1.8:
1431 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
1432 | engines: {node: '>= 0.4'}
1433 |
1434 | object.fromentries@2.0.8:
1435 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
1436 | engines: {node: '>= 0.4'}
1437 |
1438 | object.groupby@1.0.3:
1439 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
1440 | engines: {node: '>= 0.4'}
1441 |
1442 | object.hasown@1.1.4:
1443 | resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==}
1444 | engines: {node: '>= 0.4'}
1445 |
1446 | object.values@1.2.0:
1447 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
1448 | engines: {node: '>= 0.4'}
1449 |
1450 | once@1.4.0:
1451 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
1452 |
1453 | optionator@0.9.4:
1454 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1455 | engines: {node: '>= 0.8.0'}
1456 |
1457 | p-limit@2.3.0:
1458 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
1459 | engines: {node: '>=6'}
1460 |
1461 | p-limit@3.1.0:
1462 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1463 | engines: {node: '>=10'}
1464 |
1465 | p-limit@4.0.0:
1466 | resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
1467 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1468 |
1469 | p-locate@3.0.0:
1470 | resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
1471 | engines: {node: '>=6'}
1472 |
1473 | p-locate@5.0.0:
1474 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1475 | engines: {node: '>=10'}
1476 |
1477 | p-locate@6.0.0:
1478 | resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
1479 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1480 |
1481 | p-try@2.2.0:
1482 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
1483 | engines: {node: '>=6'}
1484 |
1485 | parent-module@1.0.1:
1486 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1487 | engines: {node: '>=6'}
1488 |
1489 | parse-json@4.0.0:
1490 | resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
1491 | engines: {node: '>=4'}
1492 |
1493 | path-exists@3.0.0:
1494 | resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
1495 | engines: {node: '>=4'}
1496 |
1497 | path-exists@4.0.0:
1498 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1499 | engines: {node: '>=8'}
1500 |
1501 | path-exists@5.0.0:
1502 | resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
1503 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1504 |
1505 | path-is-absolute@1.0.1:
1506 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
1507 | engines: {node: '>=0.10.0'}
1508 |
1509 | path-key@3.1.1:
1510 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1511 | engines: {node: '>=8'}
1512 |
1513 | path-parse@1.0.7:
1514 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1515 |
1516 | path-scurry@1.10.2:
1517 | resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
1518 | engines: {node: '>=16 || 14 >=14.17'}
1519 |
1520 | path-type@4.0.0:
1521 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
1522 | engines: {node: '>=8'}
1523 |
1524 | periscopic@3.1.0:
1525 | resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
1526 |
1527 | picocolors@1.0.0:
1528 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
1529 |
1530 | picomatch@2.3.1:
1531 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1532 | engines: {node: '>=8.6'}
1533 |
1534 | pify@2.3.0:
1535 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1536 | engines: {node: '>=0.10.0'}
1537 |
1538 | pify@4.0.1:
1539 | resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
1540 | engines: {node: '>=6'}
1541 |
1542 | pirates@4.0.6:
1543 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
1544 | engines: {node: '>= 6'}
1545 |
1546 | pkg-conf@3.1.0:
1547 | resolution: {integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==}
1548 | engines: {node: '>=6'}
1549 |
1550 | pkg-conf@4.0.0:
1551 | resolution: {integrity: sha512-7dmgi4UY4qk+4mj5Cd8v/GExPo0K+SlY+hulOSdfZ/T6jVH6//y7NtzZo5WrfhDBxuQ0jCa7fLZmNaNh7EWL/w==}
1552 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
1553 |
1554 | possible-typed-array-names@1.0.0:
1555 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
1556 | engines: {node: '>= 0.4'}
1557 |
1558 | postcss-import@15.1.0:
1559 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1560 | engines: {node: '>=14.0.0'}
1561 | peerDependencies:
1562 | postcss: ^8.0.0
1563 |
1564 | postcss-js@4.0.1:
1565 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
1566 | engines: {node: ^12 || ^14 || >= 16}
1567 | peerDependencies:
1568 | postcss: ^8.4.21
1569 |
1570 | postcss-load-config@4.0.2:
1571 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
1572 | engines: {node: '>= 14'}
1573 | peerDependencies:
1574 | postcss: '>=8.0.9'
1575 | ts-node: '>=9.0.0'
1576 | peerDependenciesMeta:
1577 | postcss:
1578 | optional: true
1579 | ts-node:
1580 | optional: true
1581 |
1582 | postcss-nested@6.0.1:
1583 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
1584 | engines: {node: '>=12.0'}
1585 | peerDependencies:
1586 | postcss: ^8.2.14
1587 |
1588 | postcss-selector-parser@6.0.16:
1589 | resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
1590 | engines: {node: '>=4'}
1591 |
1592 | postcss-value-parser@4.2.0:
1593 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1594 |
1595 | postcss@8.4.31:
1596 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
1597 | engines: {node: ^10 || ^12 || >=14}
1598 |
1599 | postcss@8.4.38:
1600 | resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
1601 | engines: {node: ^10 || ^12 || >=14}
1602 |
1603 | prelude-ls@1.2.1:
1604 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1605 | engines: {node: '>= 0.8.0'}
1606 |
1607 | prop-types@15.8.1:
1608 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1609 |
1610 | punycode@2.3.1:
1611 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1612 | engines: {node: '>=6'}
1613 |
1614 | queue-microtask@1.2.3:
1615 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1616 |
1617 | react-dom@18.3.1:
1618 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
1619 | peerDependencies:
1620 | react: ^18.3.1
1621 |
1622 | react-dropzone@14.2.3:
1623 | resolution: {integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==}
1624 | engines: {node: '>= 10.13'}
1625 | peerDependencies:
1626 | react: '>= 16.8 || 18.0.0'
1627 |
1628 | react-icons@5.2.1:
1629 | resolution: {integrity: sha512-zdbW5GstTzXaVKvGSyTaBalt7HSfuK5ovrzlpyiWHAFXndXTdd/1hdDHI4xBM1Mn7YriT6aqESucFl9kEXzrdw==}
1630 | peerDependencies:
1631 | react: '*'
1632 |
1633 | react-is@16.13.1:
1634 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1635 |
1636 | react@18.3.1:
1637 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
1638 | engines: {node: '>=0.10.0'}
1639 |
1640 | read-cache@1.0.0:
1641 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1642 |
1643 | readdirp@3.6.0:
1644 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1645 | engines: {node: '>=8.10.0'}
1646 |
1647 | reflect.getprototypeof@1.0.6:
1648 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
1649 | engines: {node: '>= 0.4'}
1650 |
1651 | regenerator-runtime@0.14.1:
1652 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
1653 |
1654 | regexp.prototype.flags@1.5.2:
1655 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
1656 | engines: {node: '>= 0.4'}
1657 |
1658 | regexpp@3.2.0:
1659 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
1660 | engines: {node: '>=8'}
1661 |
1662 | resolve-from@4.0.0:
1663 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1664 | engines: {node: '>=4'}
1665 |
1666 | resolve-pkg-maps@1.0.0:
1667 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
1668 |
1669 | resolve@1.22.8:
1670 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
1671 | hasBin: true
1672 |
1673 | resolve@2.0.0-next.5:
1674 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
1675 | hasBin: true
1676 |
1677 | reusify@1.0.4:
1678 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1679 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1680 |
1681 | rimraf@3.0.2:
1682 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
1683 | hasBin: true
1684 |
1685 | run-parallel@1.2.0:
1686 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1687 |
1688 | safe-array-concat@1.1.2:
1689 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
1690 | engines: {node: '>=0.4'}
1691 |
1692 | safe-regex-test@1.0.3:
1693 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
1694 | engines: {node: '>= 0.4'}
1695 |
1696 | scheduler@0.23.2:
1697 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
1698 |
1699 | secure-json-parse@2.7.0:
1700 | resolution: {integrity: sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==}
1701 |
1702 | semver@6.3.1:
1703 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1704 | hasBin: true
1705 |
1706 | semver@7.6.0:
1707 | resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
1708 | engines: {node: '>=10'}
1709 | hasBin: true
1710 |
1711 | seroval-plugins@1.0.5:
1712 | resolution: {integrity: sha512-8+pDC1vOedPXjKG7oz8o+iiHrtF2WswaMQJ7CKFpccvSYfrzmvKY9zOJWCg+881722wIHfwkdnRmiiDm9ym+zQ==}
1713 | engines: {node: '>=10'}
1714 | peerDependencies:
1715 | seroval: ^1.0
1716 |
1717 | seroval@1.0.5:
1718 | resolution: {integrity: sha512-TM+Z11tHHvQVQKeNlOUonOWnsNM+2IBwZ4vwoi4j3zKzIpc5IDw8WPwCfcc8F17wy6cBcJGbZbFOR0UCuTZHQA==}
1719 | engines: {node: '>=10'}
1720 |
1721 | set-function-length@1.2.2:
1722 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
1723 | engines: {node: '>= 0.4'}
1724 |
1725 | set-function-name@2.0.2:
1726 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
1727 | engines: {node: '>= 0.4'}
1728 |
1729 | shebang-command@2.0.0:
1730 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1731 | engines: {node: '>=8'}
1732 |
1733 | shebang-regex@3.0.0:
1734 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1735 | engines: {node: '>=8'}
1736 |
1737 | side-channel@1.0.6:
1738 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
1739 | engines: {node: '>= 0.4'}
1740 |
1741 | signal-exit@4.1.0:
1742 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1743 | engines: {node: '>=14'}
1744 |
1745 | slash@3.0.0:
1746 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
1747 | engines: {node: '>=8'}
1748 |
1749 | solid-js@1.8.17:
1750 | resolution: {integrity: sha512-E0FkUgv9sG/gEBWkHr/2XkBluHb1fkrHywUgA6o6XolPDCJ4g1HaLmQufcBBhiF36ee40q+HpG/vCZu7fLpI3Q==}
1751 |
1752 | solid-swr-store@0.10.7:
1753 | resolution: {integrity: sha512-A6d68aJmRP471aWqKKPE2tpgOiR5fH4qXQNfKIec+Vap+MGQm3tvXlT8n0I8UgJSlNAsSAUuw2VTviH2h3Vv5g==}
1754 | engines: {node: '>=10'}
1755 | peerDependencies:
1756 | solid-js: ^1.2
1757 | swr-store: ^0.10
1758 |
1759 | source-map-js@1.2.0:
1760 | resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
1761 | engines: {node: '>=0.10.0'}
1762 |
1763 | sswr@2.0.0:
1764 | resolution: {integrity: sha512-mV0kkeBHcjcb0M5NqKtKVg/uTIYNlIIniyDfSGrSfxpEdM9C365jK0z55pl9K0xAkNTJi2OAOVFQpgMPUk+V0w==}
1765 | peerDependencies:
1766 | svelte: ^4.0.0
1767 |
1768 | standard-engine@15.1.0:
1769 | resolution: {integrity: sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==}
1770 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1771 |
1772 | streamsearch@1.1.0:
1773 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
1774 | engines: {node: '>=10.0.0'}
1775 |
1776 | string-width@4.2.3:
1777 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1778 | engines: {node: '>=8'}
1779 |
1780 | string-width@5.1.2:
1781 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
1782 | engines: {node: '>=12'}
1783 |
1784 | string.prototype.matchall@4.0.11:
1785 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
1786 | engines: {node: '>= 0.4'}
1787 |
1788 | string.prototype.trim@1.2.9:
1789 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
1790 | engines: {node: '>= 0.4'}
1791 |
1792 | string.prototype.trimend@1.0.8:
1793 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
1794 |
1795 | string.prototype.trimstart@1.0.8:
1796 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
1797 | engines: {node: '>= 0.4'}
1798 |
1799 | strip-ansi@6.0.1:
1800 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1801 | engines: {node: '>=8'}
1802 |
1803 | strip-ansi@7.1.0:
1804 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
1805 | engines: {node: '>=12'}
1806 |
1807 | strip-bom@3.0.0:
1808 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
1809 | engines: {node: '>=4'}
1810 |
1811 | strip-json-comments@3.1.1:
1812 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1813 | engines: {node: '>=8'}
1814 |
1815 | styled-jsx@5.1.1:
1816 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
1817 | engines: {node: '>= 12.0.0'}
1818 | peerDependencies:
1819 | '@babel/core': '*'
1820 | babel-plugin-macros: '*'
1821 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
1822 | peerDependenciesMeta:
1823 | '@babel/core':
1824 | optional: true
1825 | babel-plugin-macros:
1826 | optional: true
1827 |
1828 | sucrase@3.35.0:
1829 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
1830 | engines: {node: '>=16 || 14 >=14.17'}
1831 | hasBin: true
1832 |
1833 | supports-color@7.2.0:
1834 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1835 | engines: {node: '>=8'}
1836 |
1837 | supports-preserve-symlinks-flag@1.0.0:
1838 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1839 | engines: {node: '>= 0.4'}
1840 |
1841 | svelte@4.2.15:
1842 | resolution: {integrity: sha512-j9KJSccHgLeRERPlhMKrCXpk2TqL2m5Z+k+OBTQhZOhIdCCd3WfqV+ylPWeipEwq17P/ekiSFWwrVQv93i3bsg==}
1843 | engines: {node: '>=16'}
1844 |
1845 | swr-store@0.10.6:
1846 | resolution: {integrity: sha512-xPjB1hARSiRaNNlUQvWSVrG5SirCjk2TmaUyzzvk69SZQan9hCJqw/5rG9iL7xElHU784GxRPISClq4488/XVw==}
1847 | engines: {node: '>=10'}
1848 |
1849 | swr@2.2.0:
1850 | resolution: {integrity: sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==}
1851 | peerDependencies:
1852 | react: ^16.11.0 || ^17.0.0 || ^18.0.0
1853 |
1854 | swrev@4.0.0:
1855 | resolution: {integrity: sha512-LqVcOHSB4cPGgitD1riJ1Hh4vdmITOp+BkmfmXRh4hSF/t7EnS4iD+SOTmq7w5pPm/SiPeto4ADbKS6dHUDWFA==}
1856 |
1857 | swrv@1.0.4:
1858 | resolution: {integrity: sha512-zjEkcP8Ywmj+xOJW3lIT65ciY/4AL4e/Or7Gj0MzU3zBJNMdJiT8geVZhINavnlHRMMCcJLHhraLTAiDOTmQ9g==}
1859 | peerDependencies:
1860 | vue: '>=3.2.26 < 4'
1861 |
1862 | tailwindcss@3.4.3:
1863 | resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
1864 | engines: {node: '>=14.0.0'}
1865 | hasBin: true
1866 |
1867 | tapable@2.2.1:
1868 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
1869 | engines: {node: '>=6'}
1870 |
1871 | text-table@0.2.0:
1872 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
1873 |
1874 | thenify-all@1.6.0:
1875 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1876 | engines: {node: '>=0.8'}
1877 |
1878 | thenify@3.3.1:
1879 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1880 |
1881 | to-fast-properties@2.0.0:
1882 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
1883 | engines: {node: '>=4'}
1884 |
1885 | to-regex-range@5.0.1:
1886 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1887 | engines: {node: '>=8.0'}
1888 |
1889 | ts-api-utils@1.3.0:
1890 | resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
1891 | engines: {node: '>=16'}
1892 | peerDependencies:
1893 | typescript: '>=4.2.0'
1894 |
1895 | ts-interface-checker@0.1.13:
1896 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1897 |
1898 | ts-standard@12.0.2:
1899 | resolution: {integrity: sha512-XX2wrB9fKKTfBj4yD3ABm9iShzZcS2iWcPK8XzlBvuL20+wMiLgiz/k5tXgZwTaYq5wRhbks1Y9PelhujF/9ag==}
1900 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1901 | hasBin: true
1902 | peerDependencies:
1903 | typescript: '*'
1904 |
1905 | tsconfig-paths@3.15.0:
1906 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
1907 |
1908 | tslib@1.14.1:
1909 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
1910 |
1911 | tslib@2.6.2:
1912 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
1913 |
1914 | tsutils@3.21.0:
1915 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
1916 | engines: {node: '>= 6'}
1917 | peerDependencies:
1918 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
1919 |
1920 | type-check@0.4.0:
1921 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1922 | engines: {node: '>= 0.8.0'}
1923 |
1924 | type-fest@0.20.2:
1925 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
1926 | engines: {node: '>=10'}
1927 |
1928 | type-fest@0.3.1:
1929 | resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==}
1930 | engines: {node: '>=6'}
1931 |
1932 | typed-array-buffer@1.0.2:
1933 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
1934 | engines: {node: '>= 0.4'}
1935 |
1936 | typed-array-byte-length@1.0.1:
1937 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
1938 | engines: {node: '>= 0.4'}
1939 |
1940 | typed-array-byte-offset@1.0.2:
1941 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
1942 | engines: {node: '>= 0.4'}
1943 |
1944 | typed-array-length@1.0.6:
1945 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
1946 | engines: {node: '>= 0.4'}
1947 |
1948 | typescript@5.4.5:
1949 | resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
1950 | engines: {node: '>=14.17'}
1951 | hasBin: true
1952 |
1953 | unbox-primitive@1.0.2:
1954 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
1955 |
1956 | undici-types@5.26.5:
1957 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
1958 |
1959 | uri-js@4.4.1:
1960 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1961 |
1962 | use-sync-external-store@1.2.2:
1963 | resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
1964 | peerDependencies:
1965 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
1966 |
1967 | util-deprecate@1.0.2:
1968 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1969 |
1970 | valibot@0.30.0:
1971 | resolution: {integrity: sha512-5POBdbSkM+3nvJ6ZlyQHsggisfRtyT4tVTo1EIIShs6qCdXJnyWU5TJ68vr8iTg5zpOLjXLRiBqNx+9zwZz/rA==}
1972 |
1973 | vue@3.4.27:
1974 | resolution: {integrity: sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==}
1975 | peerDependencies:
1976 | typescript: '*'
1977 | peerDependenciesMeta:
1978 | typescript:
1979 | optional: true
1980 |
1981 | which-boxed-primitive@1.0.2:
1982 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
1983 |
1984 | which-builtin-type@1.1.3:
1985 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
1986 | engines: {node: '>= 0.4'}
1987 |
1988 | which-collection@1.0.2:
1989 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
1990 | engines: {node: '>= 0.4'}
1991 |
1992 | which-typed-array@1.1.15:
1993 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
1994 | engines: {node: '>= 0.4'}
1995 |
1996 | which@2.0.2:
1997 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1998 | engines: {node: '>= 8'}
1999 | hasBin: true
2000 |
2001 | word-wrap@1.2.5:
2002 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
2003 | engines: {node: '>=0.10.0'}
2004 |
2005 | wrap-ansi@7.0.0:
2006 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
2007 | engines: {node: '>=10'}
2008 |
2009 | wrap-ansi@8.1.0:
2010 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
2011 | engines: {node: '>=12'}
2012 |
2013 | wrappy@1.0.2:
2014 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2015 |
2016 | xdg-basedir@4.0.0:
2017 | resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
2018 | engines: {node: '>=8'}
2019 |
2020 | yallist@4.0.0:
2021 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
2022 |
2023 | yaml@2.4.2:
2024 | resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
2025 | engines: {node: '>= 14'}
2026 | hasBin: true
2027 |
2028 | yocto-queue@0.1.0:
2029 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2030 | engines: {node: '>=10'}
2031 |
2032 | yocto-queue@1.0.0:
2033 | resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
2034 | engines: {node: '>=12.20'}
2035 |
2036 | zod-to-json-schema@3.22.5:
2037 | resolution: {integrity: sha512-+akaPo6a0zpVCCseDed504KBJUQpEW5QZw7RMneNmKw+fGaML1Z9tUNLnHHAC8x6dzVRO1eB2oEMyZRnuBZg7Q==}
2038 | peerDependencies:
2039 | zod: ^3.22.4
2040 |
2041 | zod@3.23.6:
2042 | resolution: {integrity: sha512-RTHJlZhsRbuA8Hmp/iNL7jnfc4nZishjsanDAfEY1QpDQZCahUp3xDzl+zfweE9BklxMUcgBgS1b7Lvie/ZVwA==}
2043 |
2044 | snapshots:
2045 |
2046 | '@ai-sdk/google@0.0.10(zod@3.23.6)':
2047 | dependencies:
2048 | '@ai-sdk/provider': 0.0.3
2049 | '@ai-sdk/provider-utils': 0.0.6(zod@3.23.6)
2050 | optionalDependencies:
2051 | zod: 3.23.6
2052 |
2053 | '@ai-sdk/provider-utils@0.0.6(zod@3.23.6)':
2054 | dependencies:
2055 | '@ai-sdk/provider': 0.0.3
2056 | eventsource-parser: 1.1.2
2057 | nanoid: 3.3.6
2058 | secure-json-parse: 2.7.0
2059 | optionalDependencies:
2060 | zod: 3.23.6
2061 |
2062 | '@ai-sdk/provider@0.0.3':
2063 | dependencies:
2064 | json-schema: 0.4.0
2065 |
2066 | '@alloc/quick-lru@5.2.0': {}
2067 |
2068 | '@ampproject/remapping@2.3.0':
2069 | dependencies:
2070 | '@jridgewell/gen-mapping': 0.3.5
2071 | '@jridgewell/trace-mapping': 0.3.25
2072 |
2073 | '@babel/helper-string-parser@7.24.1': {}
2074 |
2075 | '@babel/helper-validator-identifier@7.24.5': {}
2076 |
2077 | '@babel/parser@7.24.5':
2078 | dependencies:
2079 | '@babel/types': 7.24.5
2080 |
2081 | '@babel/runtime@7.24.5':
2082 | dependencies:
2083 | regenerator-runtime: 0.14.1
2084 |
2085 | '@babel/types@7.24.5':
2086 | dependencies:
2087 | '@babel/helper-string-parser': 7.24.1
2088 | '@babel/helper-validator-identifier': 7.24.5
2089 | to-fast-properties: 2.0.0
2090 |
2091 | '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
2092 | dependencies:
2093 | eslint: 8.57.0
2094 | eslint-visitor-keys: 3.4.3
2095 |
2096 | '@eslint-community/regexpp@4.10.0': {}
2097 |
2098 | '@eslint/eslintrc@2.1.4':
2099 | dependencies:
2100 | ajv: 6.12.6
2101 | debug: 4.3.4
2102 | espree: 9.6.1
2103 | globals: 13.24.0
2104 | ignore: 5.3.1
2105 | import-fresh: 3.3.0
2106 | js-yaml: 4.1.0
2107 | minimatch: 3.1.2
2108 | strip-json-comments: 3.1.1
2109 | transitivePeerDependencies:
2110 | - supports-color
2111 |
2112 | '@eslint/js@8.57.0': {}
2113 |
2114 | '@humanwhocodes/config-array@0.11.14':
2115 | dependencies:
2116 | '@humanwhocodes/object-schema': 2.0.3
2117 | debug: 4.3.4
2118 | minimatch: 3.1.2
2119 | transitivePeerDependencies:
2120 | - supports-color
2121 |
2122 | '@humanwhocodes/module-importer@1.0.1': {}
2123 |
2124 | '@humanwhocodes/object-schema@2.0.3': {}
2125 |
2126 | '@isaacs/cliui@8.0.2':
2127 | dependencies:
2128 | string-width: 5.1.2
2129 | string-width-cjs: string-width@4.2.3
2130 | strip-ansi: 7.1.0
2131 | strip-ansi-cjs: strip-ansi@6.0.1
2132 | wrap-ansi: 8.1.0
2133 | wrap-ansi-cjs: wrap-ansi@7.0.0
2134 |
2135 | '@jridgewell/gen-mapping@0.3.5':
2136 | dependencies:
2137 | '@jridgewell/set-array': 1.2.1
2138 | '@jridgewell/sourcemap-codec': 1.4.15
2139 | '@jridgewell/trace-mapping': 0.3.25
2140 |
2141 | '@jridgewell/resolve-uri@3.1.2': {}
2142 |
2143 | '@jridgewell/set-array@1.2.1': {}
2144 |
2145 | '@jridgewell/sourcemap-codec@1.4.15': {}
2146 |
2147 | '@jridgewell/trace-mapping@0.3.25':
2148 | dependencies:
2149 | '@jridgewell/resolve-uri': 3.1.2
2150 | '@jridgewell/sourcemap-codec': 1.4.15
2151 |
2152 | '@next/env@14.2.3': {}
2153 |
2154 | '@next/eslint-plugin-next@14.2.3':
2155 | dependencies:
2156 | glob: 10.3.10
2157 |
2158 | '@next/swc-darwin-arm64@14.2.3':
2159 | optional: true
2160 |
2161 | '@next/swc-darwin-x64@14.2.3':
2162 | optional: true
2163 |
2164 | '@next/swc-linux-arm64-gnu@14.2.3':
2165 | optional: true
2166 |
2167 | '@next/swc-linux-arm64-musl@14.2.3':
2168 | optional: true
2169 |
2170 | '@next/swc-linux-x64-gnu@14.2.3':
2171 | optional: true
2172 |
2173 | '@next/swc-linux-x64-musl@14.2.3':
2174 | optional: true
2175 |
2176 | '@next/swc-win32-arm64-msvc@14.2.3':
2177 | optional: true
2178 |
2179 | '@next/swc-win32-ia32-msvc@14.2.3':
2180 | optional: true
2181 |
2182 | '@next/swc-win32-x64-msvc@14.2.3':
2183 | optional: true
2184 |
2185 | '@nodelib/fs.scandir@2.1.5':
2186 | dependencies:
2187 | '@nodelib/fs.stat': 2.0.5
2188 | run-parallel: 1.2.0
2189 |
2190 | '@nodelib/fs.stat@2.0.5': {}
2191 |
2192 | '@nodelib/fs.walk@1.2.8':
2193 | dependencies:
2194 | '@nodelib/fs.scandir': 2.1.5
2195 | fastq: 1.17.1
2196 |
2197 | '@pkgjs/parseargs@0.11.0':
2198 | optional: true
2199 |
2200 | '@rushstack/eslint-patch@1.10.2': {}
2201 |
2202 | '@swc/counter@0.1.3': {}
2203 |
2204 | '@swc/helpers@0.5.5':
2205 | dependencies:
2206 | '@swc/counter': 0.1.3
2207 | tslib: 2.6.2
2208 |
2209 | '@types/diff-match-patch@1.0.36': {}
2210 |
2211 | '@types/estree@1.0.5': {}
2212 |
2213 | '@types/json-schema@7.0.15': {}
2214 |
2215 | '@types/json5@0.0.29': {}
2216 |
2217 | '@types/node@20.12.11':
2218 | dependencies:
2219 | undici-types: 5.26.5
2220 |
2221 | '@types/prop-types@15.7.12': {}
2222 |
2223 | '@types/react-dom@18.3.0':
2224 | dependencies:
2225 | '@types/react': 18.3.1
2226 |
2227 | '@types/react@18.3.1':
2228 | dependencies:
2229 | '@types/prop-types': 15.7.12
2230 | csstype: 3.1.3
2231 |
2232 | '@types/semver@7.5.8': {}
2233 |
2234 | '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)':
2235 | dependencies:
2236 | '@eslint-community/regexpp': 4.10.0
2237 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
2238 | '@typescript-eslint/scope-manager': 5.62.0
2239 | '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
2240 | '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
2241 | debug: 4.3.4
2242 | eslint: 8.57.0
2243 | graphemer: 1.4.0
2244 | ignore: 5.3.1
2245 | natural-compare-lite: 1.4.0
2246 | semver: 7.6.0
2247 | tsutils: 3.21.0(typescript@5.4.5)
2248 | optionalDependencies:
2249 | typescript: 5.4.5
2250 | transitivePeerDependencies:
2251 | - supports-color
2252 |
2253 | '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5)':
2254 | dependencies:
2255 | '@typescript-eslint/scope-manager': 5.62.0
2256 | '@typescript-eslint/types': 5.62.0
2257 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
2258 | debug: 4.3.4
2259 | eslint: 8.57.0
2260 | optionalDependencies:
2261 | typescript: 5.4.5
2262 | transitivePeerDependencies:
2263 | - supports-color
2264 |
2265 | '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5)':
2266 | dependencies:
2267 | '@typescript-eslint/scope-manager': 7.2.0
2268 | '@typescript-eslint/types': 7.2.0
2269 | '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.4.5)
2270 | '@typescript-eslint/visitor-keys': 7.2.0
2271 | debug: 4.3.4
2272 | eslint: 8.57.0
2273 | optionalDependencies:
2274 | typescript: 5.4.5
2275 | transitivePeerDependencies:
2276 | - supports-color
2277 |
2278 | '@typescript-eslint/scope-manager@5.62.0':
2279 | dependencies:
2280 | '@typescript-eslint/types': 5.62.0
2281 | '@typescript-eslint/visitor-keys': 5.62.0
2282 |
2283 | '@typescript-eslint/scope-manager@7.2.0':
2284 | dependencies:
2285 | '@typescript-eslint/types': 7.2.0
2286 | '@typescript-eslint/visitor-keys': 7.2.0
2287 |
2288 | '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)':
2289 | dependencies:
2290 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
2291 | '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
2292 | debug: 4.3.4
2293 | eslint: 8.57.0
2294 | tsutils: 3.21.0(typescript@5.4.5)
2295 | optionalDependencies:
2296 | typescript: 5.4.5
2297 | transitivePeerDependencies:
2298 | - supports-color
2299 |
2300 | '@typescript-eslint/types@5.62.0': {}
2301 |
2302 | '@typescript-eslint/types@7.2.0': {}
2303 |
2304 | '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5)':
2305 | dependencies:
2306 | '@typescript-eslint/types': 5.62.0
2307 | '@typescript-eslint/visitor-keys': 5.62.0
2308 | debug: 4.3.4
2309 | globby: 11.1.0
2310 | is-glob: 4.0.3
2311 | semver: 7.6.0
2312 | tsutils: 3.21.0(typescript@5.4.5)
2313 | optionalDependencies:
2314 | typescript: 5.4.5
2315 | transitivePeerDependencies:
2316 | - supports-color
2317 |
2318 | '@typescript-eslint/typescript-estree@7.2.0(typescript@5.4.5)':
2319 | dependencies:
2320 | '@typescript-eslint/types': 7.2.0
2321 | '@typescript-eslint/visitor-keys': 7.2.0
2322 | debug: 4.3.4
2323 | globby: 11.1.0
2324 | is-glob: 4.0.3
2325 | minimatch: 9.0.3
2326 | semver: 7.6.0
2327 | ts-api-utils: 1.3.0(typescript@5.4.5)
2328 | optionalDependencies:
2329 | typescript: 5.4.5
2330 | transitivePeerDependencies:
2331 | - supports-color
2332 |
2333 | '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)':
2334 | dependencies:
2335 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
2336 | '@types/json-schema': 7.0.15
2337 | '@types/semver': 7.5.8
2338 | '@typescript-eslint/scope-manager': 5.62.0
2339 | '@typescript-eslint/types': 5.62.0
2340 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
2341 | eslint: 8.57.0
2342 | eslint-scope: 5.1.1
2343 | semver: 7.6.0
2344 | transitivePeerDependencies:
2345 | - supports-color
2346 | - typescript
2347 |
2348 | '@typescript-eslint/visitor-keys@5.62.0':
2349 | dependencies:
2350 | '@typescript-eslint/types': 5.62.0
2351 | eslint-visitor-keys: 3.4.3
2352 |
2353 | '@typescript-eslint/visitor-keys@7.2.0':
2354 | dependencies:
2355 | '@typescript-eslint/types': 7.2.0
2356 | eslint-visitor-keys: 3.4.3
2357 |
2358 | '@uidotdev/usehooks@2.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
2359 | dependencies:
2360 | react: 18.3.1
2361 | react-dom: 18.3.1(react@18.3.1)
2362 |
2363 | '@ungap/structured-clone@1.2.0': {}
2364 |
2365 | '@vue/compiler-core@3.4.27':
2366 | dependencies:
2367 | '@babel/parser': 7.24.5
2368 | '@vue/shared': 3.4.27
2369 | entities: 4.5.0
2370 | estree-walker: 2.0.2
2371 | source-map-js: 1.2.0
2372 |
2373 | '@vue/compiler-dom@3.4.27':
2374 | dependencies:
2375 | '@vue/compiler-core': 3.4.27
2376 | '@vue/shared': 3.4.27
2377 |
2378 | '@vue/compiler-sfc@3.4.27':
2379 | dependencies:
2380 | '@babel/parser': 7.24.5
2381 | '@vue/compiler-core': 3.4.27
2382 | '@vue/compiler-dom': 3.4.27
2383 | '@vue/compiler-ssr': 3.4.27
2384 | '@vue/shared': 3.4.27
2385 | estree-walker: 2.0.2
2386 | magic-string: 0.30.10
2387 | postcss: 8.4.38
2388 | source-map-js: 1.2.0
2389 |
2390 | '@vue/compiler-ssr@3.4.27':
2391 | dependencies:
2392 | '@vue/compiler-dom': 3.4.27
2393 | '@vue/shared': 3.4.27
2394 |
2395 | '@vue/reactivity@3.4.27':
2396 | dependencies:
2397 | '@vue/shared': 3.4.27
2398 |
2399 | '@vue/runtime-core@3.4.27':
2400 | dependencies:
2401 | '@vue/reactivity': 3.4.27
2402 | '@vue/shared': 3.4.27
2403 |
2404 | '@vue/runtime-dom@3.4.27':
2405 | dependencies:
2406 | '@vue/runtime-core': 3.4.27
2407 | '@vue/shared': 3.4.27
2408 | csstype: 3.1.3
2409 |
2410 | '@vue/server-renderer@3.4.27(vue@3.4.27(typescript@5.4.5))':
2411 | dependencies:
2412 | '@vue/compiler-ssr': 3.4.27
2413 | '@vue/shared': 3.4.27
2414 | vue: 3.4.27(typescript@5.4.5)
2415 |
2416 | '@vue/shared@3.4.27': {}
2417 |
2418 | acorn-jsx@5.3.2(acorn@8.11.3):
2419 | dependencies:
2420 | acorn: 8.11.3
2421 |
2422 | acorn@8.11.3: {}
2423 |
2424 | ai@3.1.3(react@18.3.1)(solid-js@1.8.17)(svelte@4.2.15)(vue@3.4.27(typescript@5.4.5))(zod@3.23.6):
2425 | dependencies:
2426 | '@ai-sdk/provider': 0.0.3
2427 | '@ai-sdk/provider-utils': 0.0.6(zod@3.23.6)
2428 | eventsource-parser: 1.1.2
2429 | json-schema: 0.4.0
2430 | jsondiffpatch: 0.6.0
2431 | nanoid: 3.3.6
2432 | secure-json-parse: 2.7.0
2433 | solid-swr-store: 0.10.7(solid-js@1.8.17)(swr-store@0.10.6)
2434 | sswr: 2.0.0(svelte@4.2.15)
2435 | swr: 2.2.0(react@18.3.1)
2436 | swr-store: 0.10.6
2437 | swrv: 1.0.4(vue@3.4.27(typescript@5.4.5))
2438 | zod-to-json-schema: 3.22.5(zod@3.23.6)
2439 | optionalDependencies:
2440 | react: 18.3.1
2441 | solid-js: 1.8.17
2442 | svelte: 4.2.15
2443 | vue: 3.4.27(typescript@5.4.5)
2444 | zod: 3.23.6
2445 |
2446 | ajv@6.12.6:
2447 | dependencies:
2448 | fast-deep-equal: 3.1.3
2449 | fast-json-stable-stringify: 2.1.0
2450 | json-schema-traverse: 0.4.1
2451 | uri-js: 4.4.1
2452 |
2453 | ansi-regex@5.0.1: {}
2454 |
2455 | ansi-regex@6.0.1: {}
2456 |
2457 | ansi-styles@4.3.0:
2458 | dependencies:
2459 | color-convert: 2.0.1
2460 |
2461 | ansi-styles@6.2.1: {}
2462 |
2463 | any-promise@1.3.0: {}
2464 |
2465 | anymatch@3.1.3:
2466 | dependencies:
2467 | normalize-path: 3.0.0
2468 | picomatch: 2.3.1
2469 |
2470 | arg@5.0.2: {}
2471 |
2472 | argparse@2.0.1: {}
2473 |
2474 | aria-query@5.3.0:
2475 | dependencies:
2476 | dequal: 2.0.3
2477 |
2478 | array-buffer-byte-length@1.0.1:
2479 | dependencies:
2480 | call-bind: 1.0.7
2481 | is-array-buffer: 3.0.4
2482 |
2483 | array-includes@3.1.8:
2484 | dependencies:
2485 | call-bind: 1.0.7
2486 | define-properties: 1.2.1
2487 | es-abstract: 1.23.3
2488 | es-object-atoms: 1.0.0
2489 | get-intrinsic: 1.2.4
2490 | is-string: 1.0.7
2491 |
2492 | array-union@2.1.0: {}
2493 |
2494 | array.prototype.findlast@1.2.5:
2495 | dependencies:
2496 | call-bind: 1.0.7
2497 | define-properties: 1.2.1
2498 | es-abstract: 1.23.3
2499 | es-errors: 1.3.0
2500 | es-object-atoms: 1.0.0
2501 | es-shim-unscopables: 1.0.2
2502 |
2503 | array.prototype.findlastindex@1.2.5:
2504 | dependencies:
2505 | call-bind: 1.0.7
2506 | define-properties: 1.2.1
2507 | es-abstract: 1.23.3
2508 | es-errors: 1.3.0
2509 | es-object-atoms: 1.0.0
2510 | es-shim-unscopables: 1.0.2
2511 |
2512 | array.prototype.flat@1.3.2:
2513 | dependencies:
2514 | call-bind: 1.0.7
2515 | define-properties: 1.2.1
2516 | es-abstract: 1.23.3
2517 | es-shim-unscopables: 1.0.2
2518 |
2519 | array.prototype.flatmap@1.3.2:
2520 | dependencies:
2521 | call-bind: 1.0.7
2522 | define-properties: 1.2.1
2523 | es-abstract: 1.23.3
2524 | es-shim-unscopables: 1.0.2
2525 |
2526 | array.prototype.toreversed@1.1.2:
2527 | dependencies:
2528 | call-bind: 1.0.7
2529 | define-properties: 1.2.1
2530 | es-abstract: 1.23.3
2531 | es-shim-unscopables: 1.0.2
2532 |
2533 | array.prototype.tosorted@1.1.3:
2534 | dependencies:
2535 | call-bind: 1.0.7
2536 | define-properties: 1.2.1
2537 | es-abstract: 1.23.3
2538 | es-errors: 1.3.0
2539 | es-shim-unscopables: 1.0.2
2540 |
2541 | arraybuffer.prototype.slice@1.0.3:
2542 | dependencies:
2543 | array-buffer-byte-length: 1.0.1
2544 | call-bind: 1.0.7
2545 | define-properties: 1.2.1
2546 | es-abstract: 1.23.3
2547 | es-errors: 1.3.0
2548 | get-intrinsic: 1.2.4
2549 | is-array-buffer: 3.0.4
2550 | is-shared-array-buffer: 1.0.3
2551 |
2552 | ast-types-flow@0.0.8: {}
2553 |
2554 | attr-accept@2.2.2: {}
2555 |
2556 | available-typed-arrays@1.0.7:
2557 | dependencies:
2558 | possible-typed-array-names: 1.0.0
2559 |
2560 | axe-core@4.7.0: {}
2561 |
2562 | axobject-query@3.2.1:
2563 | dependencies:
2564 | dequal: 2.0.3
2565 |
2566 | axobject-query@4.0.0:
2567 | dependencies:
2568 | dequal: 2.0.3
2569 |
2570 | balanced-match@1.0.2: {}
2571 |
2572 | binary-extensions@2.3.0: {}
2573 |
2574 | brace-expansion@1.1.11:
2575 | dependencies:
2576 | balanced-match: 1.0.2
2577 | concat-map: 0.0.1
2578 |
2579 | brace-expansion@2.0.1:
2580 | dependencies:
2581 | balanced-match: 1.0.2
2582 |
2583 | braces@3.0.2:
2584 | dependencies:
2585 | fill-range: 7.0.1
2586 |
2587 | builtins@5.1.0:
2588 | dependencies:
2589 | semver: 7.6.0
2590 |
2591 | busboy@1.6.0:
2592 | dependencies:
2593 | streamsearch: 1.1.0
2594 |
2595 | call-bind@1.0.7:
2596 | dependencies:
2597 | es-define-property: 1.0.0
2598 | es-errors: 1.3.0
2599 | function-bind: 1.1.2
2600 | get-intrinsic: 1.2.4
2601 | set-function-length: 1.2.2
2602 |
2603 | callsites@3.1.0: {}
2604 |
2605 | camelcase-css@2.0.1: {}
2606 |
2607 | caniuse-lite@1.0.30001616: {}
2608 |
2609 | chalk@4.1.2:
2610 | dependencies:
2611 | ansi-styles: 4.3.0
2612 | supports-color: 7.2.0
2613 |
2614 | chalk@5.3.0: {}
2615 |
2616 | chokidar@3.6.0:
2617 | dependencies:
2618 | anymatch: 3.1.3
2619 | braces: 3.0.2
2620 | glob-parent: 5.1.2
2621 | is-binary-path: 2.1.0
2622 | is-glob: 4.0.3
2623 | normalize-path: 3.0.0
2624 | readdirp: 3.6.0
2625 | optionalDependencies:
2626 | fsevents: 2.3.3
2627 |
2628 | client-only@0.0.1: {}
2629 |
2630 | code-red@1.0.4:
2631 | dependencies:
2632 | '@jridgewell/sourcemap-codec': 1.4.15
2633 | '@types/estree': 1.0.5
2634 | acorn: 8.11.3
2635 | estree-walker: 3.0.3
2636 | periscopic: 3.1.0
2637 |
2638 | color-convert@2.0.1:
2639 | dependencies:
2640 | color-name: 1.1.4
2641 |
2642 | color-name@1.1.4: {}
2643 |
2644 | commander@4.1.1: {}
2645 |
2646 | concat-map@0.0.1: {}
2647 |
2648 | cross-spawn@7.0.3:
2649 | dependencies:
2650 | path-key: 3.1.1
2651 | shebang-command: 2.0.0
2652 | which: 2.0.2
2653 |
2654 | css-tree@2.3.1:
2655 | dependencies:
2656 | mdn-data: 2.0.30
2657 | source-map-js: 1.2.0
2658 |
2659 | cssesc@3.0.0: {}
2660 |
2661 | csstype@3.1.3: {}
2662 |
2663 | damerau-levenshtein@1.0.8: {}
2664 |
2665 | data-view-buffer@1.0.1:
2666 | dependencies:
2667 | call-bind: 1.0.7
2668 | es-errors: 1.3.0
2669 | is-data-view: 1.0.1
2670 |
2671 | data-view-byte-length@1.0.1:
2672 | dependencies:
2673 | call-bind: 1.0.7
2674 | es-errors: 1.3.0
2675 | is-data-view: 1.0.1
2676 |
2677 | data-view-byte-offset@1.0.0:
2678 | dependencies:
2679 | call-bind: 1.0.7
2680 | es-errors: 1.3.0
2681 | is-data-view: 1.0.1
2682 |
2683 | debug@3.2.7:
2684 | dependencies:
2685 | ms: 2.1.3
2686 |
2687 | debug@4.3.4:
2688 | dependencies:
2689 | ms: 2.1.2
2690 |
2691 | deep-is@0.1.4: {}
2692 |
2693 | define-data-property@1.1.4:
2694 | dependencies:
2695 | es-define-property: 1.0.0
2696 | es-errors: 1.3.0
2697 | gopd: 1.0.1
2698 |
2699 | define-properties@1.2.1:
2700 | dependencies:
2701 | define-data-property: 1.1.4
2702 | has-property-descriptors: 1.0.2
2703 | object-keys: 1.1.1
2704 |
2705 | dequal@2.0.3: {}
2706 |
2707 | didyoumean@1.2.2: {}
2708 |
2709 | diff-match-patch@1.0.5: {}
2710 |
2711 | dir-glob@3.0.1:
2712 | dependencies:
2713 | path-type: 4.0.0
2714 |
2715 | dlv@1.1.3: {}
2716 |
2717 | doctrine@2.1.0:
2718 | dependencies:
2719 | esutils: 2.0.3
2720 |
2721 | doctrine@3.0.0:
2722 | dependencies:
2723 | esutils: 2.0.3
2724 |
2725 | eastasianwidth@0.2.0: {}
2726 |
2727 | emoji-regex@8.0.0: {}
2728 |
2729 | emoji-regex@9.2.2: {}
2730 |
2731 | enhanced-resolve@5.16.0:
2732 | dependencies:
2733 | graceful-fs: 4.2.11
2734 | tapable: 2.2.1
2735 |
2736 | entities@4.5.0: {}
2737 |
2738 | error-ex@1.3.2:
2739 | dependencies:
2740 | is-arrayish: 0.2.1
2741 |
2742 | es-abstract@1.23.3:
2743 | dependencies:
2744 | array-buffer-byte-length: 1.0.1
2745 | arraybuffer.prototype.slice: 1.0.3
2746 | available-typed-arrays: 1.0.7
2747 | call-bind: 1.0.7
2748 | data-view-buffer: 1.0.1
2749 | data-view-byte-length: 1.0.1
2750 | data-view-byte-offset: 1.0.0
2751 | es-define-property: 1.0.0
2752 | es-errors: 1.3.0
2753 | es-object-atoms: 1.0.0
2754 | es-set-tostringtag: 2.0.3
2755 | es-to-primitive: 1.2.1
2756 | function.prototype.name: 1.1.6
2757 | get-intrinsic: 1.2.4
2758 | get-symbol-description: 1.0.2
2759 | globalthis: 1.0.4
2760 | gopd: 1.0.1
2761 | has-property-descriptors: 1.0.2
2762 | has-proto: 1.0.3
2763 | has-symbols: 1.0.3
2764 | hasown: 2.0.2
2765 | internal-slot: 1.0.7
2766 | is-array-buffer: 3.0.4
2767 | is-callable: 1.2.7
2768 | is-data-view: 1.0.1
2769 | is-negative-zero: 2.0.3
2770 | is-regex: 1.1.4
2771 | is-shared-array-buffer: 1.0.3
2772 | is-string: 1.0.7
2773 | is-typed-array: 1.1.13
2774 | is-weakref: 1.0.2
2775 | object-inspect: 1.13.1
2776 | object-keys: 1.1.1
2777 | object.assign: 4.1.5
2778 | regexp.prototype.flags: 1.5.2
2779 | safe-array-concat: 1.1.2
2780 | safe-regex-test: 1.0.3
2781 | string.prototype.trim: 1.2.9
2782 | string.prototype.trimend: 1.0.8
2783 | string.prototype.trimstart: 1.0.8
2784 | typed-array-buffer: 1.0.2
2785 | typed-array-byte-length: 1.0.1
2786 | typed-array-byte-offset: 1.0.2
2787 | typed-array-length: 1.0.6
2788 | unbox-primitive: 1.0.2
2789 | which-typed-array: 1.1.15
2790 |
2791 | es-define-property@1.0.0:
2792 | dependencies:
2793 | get-intrinsic: 1.2.4
2794 |
2795 | es-errors@1.3.0: {}
2796 |
2797 | es-iterator-helpers@1.0.19:
2798 | dependencies:
2799 | call-bind: 1.0.7
2800 | define-properties: 1.2.1
2801 | es-abstract: 1.23.3
2802 | es-errors: 1.3.0
2803 | es-set-tostringtag: 2.0.3
2804 | function-bind: 1.1.2
2805 | get-intrinsic: 1.2.4
2806 | globalthis: 1.0.4
2807 | has-property-descriptors: 1.0.2
2808 | has-proto: 1.0.3
2809 | has-symbols: 1.0.3
2810 | internal-slot: 1.0.7
2811 | iterator.prototype: 1.1.2
2812 | safe-array-concat: 1.1.2
2813 |
2814 | es-object-atoms@1.0.0:
2815 | dependencies:
2816 | es-errors: 1.3.0
2817 |
2818 | es-set-tostringtag@2.0.3:
2819 | dependencies:
2820 | get-intrinsic: 1.2.4
2821 | has-tostringtag: 1.0.2
2822 | hasown: 2.0.2
2823 |
2824 | es-shim-unscopables@1.0.2:
2825 | dependencies:
2826 | hasown: 2.0.2
2827 |
2828 | es-to-primitive@1.2.1:
2829 | dependencies:
2830 | is-callable: 1.2.7
2831 | is-date-object: 1.0.5
2832 | is-symbol: 1.0.4
2833 |
2834 | escape-string-regexp@4.0.0: {}
2835 |
2836 | eslint-config-next@14.2.3(eslint@8.57.0)(typescript@5.4.5):
2837 | dependencies:
2838 | '@next/eslint-plugin-next': 14.2.3
2839 | '@rushstack/eslint-patch': 1.10.2
2840 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
2841 | eslint: 8.57.0
2842 | eslint-import-resolver-node: 0.3.9
2843 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
2844 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
2845 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
2846 | eslint-plugin-react: 7.34.1(eslint@8.57.0)
2847 | eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0)
2848 | optionalDependencies:
2849 | typescript: 5.4.5
2850 | transitivePeerDependencies:
2851 | - eslint-import-resolver-webpack
2852 | - supports-color
2853 |
2854 | eslint-config-standard-jsx@11.0.0(eslint-plugin-react@7.34.1(eslint@8.57.0))(eslint@8.57.0):
2855 | dependencies:
2856 | eslint: 8.57.0
2857 | eslint-plugin-react: 7.34.1(eslint@8.57.0)
2858 |
2859 | eslint-config-standard-with-typescript@23.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint-plugin-n@15.7.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0))(eslint@8.57.0)(typescript@5.4.5):
2860 | dependencies:
2861 | '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
2862 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
2863 | eslint: 8.57.0
2864 | eslint-config-standard: 17.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint-plugin-n@15.7.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0))(eslint@8.57.0)
2865 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
2866 | eslint-plugin-n: 15.7.0(eslint@8.57.0)
2867 | eslint-plugin-promise: 6.1.1(eslint@8.57.0)
2868 | typescript: 5.4.5
2869 | transitivePeerDependencies:
2870 | - supports-color
2871 |
2872 | eslint-config-standard@17.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint-plugin-n@15.7.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0))(eslint@8.57.0):
2873 | dependencies:
2874 | eslint: 8.57.0
2875 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
2876 | eslint-plugin-n: 15.7.0(eslint@8.57.0)
2877 | eslint-plugin-promise: 6.1.1(eslint@8.57.0)
2878 |
2879 | eslint-import-resolver-node@0.3.9:
2880 | dependencies:
2881 | debug: 3.2.7
2882 | is-core-module: 2.13.1
2883 | resolve: 1.22.8
2884 | transitivePeerDependencies:
2885 | - supports-color
2886 |
2887 | eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0):
2888 | dependencies:
2889 | debug: 4.3.4
2890 | enhanced-resolve: 5.16.0
2891 | eslint: 8.57.0
2892 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0)
2893 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
2894 | fast-glob: 3.3.2
2895 | get-tsconfig: 4.7.4
2896 | is-core-module: 2.13.1
2897 | is-glob: 4.0.3
2898 | transitivePeerDependencies:
2899 | - '@typescript-eslint/parser'
2900 | - eslint-import-resolver-node
2901 | - eslint-import-resolver-webpack
2902 | - supports-color
2903 |
2904 | eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0):
2905 | dependencies:
2906 | debug: 3.2.7
2907 | optionalDependencies:
2908 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
2909 | eslint: 8.57.0
2910 | eslint-import-resolver-node: 0.3.9
2911 | transitivePeerDependencies:
2912 | - supports-color
2913 |
2914 | eslint-module-utils@2.8.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0):
2915 | dependencies:
2916 | debug: 3.2.7
2917 | optionalDependencies:
2918 | '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.4.5)
2919 | eslint: 8.57.0
2920 | eslint-import-resolver-node: 0.3.9
2921 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
2922 | transitivePeerDependencies:
2923 | - supports-color
2924 |
2925 | eslint-plugin-es@4.1.0(eslint@8.57.0):
2926 | dependencies:
2927 | eslint: 8.57.0
2928 | eslint-utils: 2.1.0
2929 | regexpp: 3.2.0
2930 |
2931 | eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0):
2932 | dependencies:
2933 | array-includes: 3.1.8
2934 | array.prototype.findlastindex: 1.2.5
2935 | array.prototype.flat: 1.3.2
2936 | array.prototype.flatmap: 1.3.2
2937 | debug: 3.2.7
2938 | doctrine: 2.1.0
2939 | eslint: 8.57.0
2940 | eslint-import-resolver-node: 0.3.9
2941 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0)
2942 | hasown: 2.0.2
2943 | is-core-module: 2.13.1
2944 | is-glob: 4.0.3
2945 | minimatch: 3.1.2
2946 | object.fromentries: 2.0.8
2947 | object.groupby: 1.0.3
2948 | object.values: 1.2.0
2949 | semver: 6.3.1
2950 | tsconfig-paths: 3.15.0
2951 | optionalDependencies:
2952 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
2953 | transitivePeerDependencies:
2954 | - eslint-import-resolver-typescript
2955 | - eslint-import-resolver-webpack
2956 | - supports-color
2957 |
2958 | eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0):
2959 | dependencies:
2960 | '@babel/runtime': 7.24.5
2961 | aria-query: 5.3.0
2962 | array-includes: 3.1.8
2963 | array.prototype.flatmap: 1.3.2
2964 | ast-types-flow: 0.0.8
2965 | axe-core: 4.7.0
2966 | axobject-query: 3.2.1
2967 | damerau-levenshtein: 1.0.8
2968 | emoji-regex: 9.2.2
2969 | es-iterator-helpers: 1.0.19
2970 | eslint: 8.57.0
2971 | hasown: 2.0.2
2972 | jsx-ast-utils: 3.3.5
2973 | language-tags: 1.0.9
2974 | minimatch: 3.1.2
2975 | object.entries: 1.1.8
2976 | object.fromentries: 2.0.8
2977 |
2978 | eslint-plugin-n@15.7.0(eslint@8.57.0):
2979 | dependencies:
2980 | builtins: 5.1.0
2981 | eslint: 8.57.0
2982 | eslint-plugin-es: 4.1.0(eslint@8.57.0)
2983 | eslint-utils: 3.0.0(eslint@8.57.0)
2984 | ignore: 5.3.1
2985 | is-core-module: 2.13.1
2986 | minimatch: 3.1.2
2987 | resolve: 1.22.8
2988 | semver: 7.6.0
2989 |
2990 | eslint-plugin-promise@6.1.1(eslint@8.57.0):
2991 | dependencies:
2992 | eslint: 8.57.0
2993 |
2994 | eslint-plugin-react-hooks@4.6.2(eslint@8.57.0):
2995 | dependencies:
2996 | eslint: 8.57.0
2997 |
2998 | eslint-plugin-react@7.34.1(eslint@8.57.0):
2999 | dependencies:
3000 | array-includes: 3.1.8
3001 | array.prototype.findlast: 1.2.5
3002 | array.prototype.flatmap: 1.3.2
3003 | array.prototype.toreversed: 1.1.2
3004 | array.prototype.tosorted: 1.1.3
3005 | doctrine: 2.1.0
3006 | es-iterator-helpers: 1.0.19
3007 | eslint: 8.57.0
3008 | estraverse: 5.3.0
3009 | jsx-ast-utils: 3.3.5
3010 | minimatch: 3.1.2
3011 | object.entries: 1.1.8
3012 | object.fromentries: 2.0.8
3013 | object.hasown: 1.1.4
3014 | object.values: 1.2.0
3015 | prop-types: 15.8.1
3016 | resolve: 2.0.0-next.5
3017 | semver: 6.3.1
3018 | string.prototype.matchall: 4.0.11
3019 |
3020 | eslint-scope@5.1.1:
3021 | dependencies:
3022 | esrecurse: 4.3.0
3023 | estraverse: 4.3.0
3024 |
3025 | eslint-scope@7.2.2:
3026 | dependencies:
3027 | esrecurse: 4.3.0
3028 | estraverse: 5.3.0
3029 |
3030 | eslint-utils@2.1.0:
3031 | dependencies:
3032 | eslint-visitor-keys: 1.3.0
3033 |
3034 | eslint-utils@3.0.0(eslint@8.57.0):
3035 | dependencies:
3036 | eslint: 8.57.0
3037 | eslint-visitor-keys: 2.1.0
3038 |
3039 | eslint-visitor-keys@1.3.0: {}
3040 |
3041 | eslint-visitor-keys@2.1.0: {}
3042 |
3043 | eslint-visitor-keys@3.4.3: {}
3044 |
3045 | eslint@8.57.0:
3046 | dependencies:
3047 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
3048 | '@eslint-community/regexpp': 4.10.0
3049 | '@eslint/eslintrc': 2.1.4
3050 | '@eslint/js': 8.57.0
3051 | '@humanwhocodes/config-array': 0.11.14
3052 | '@humanwhocodes/module-importer': 1.0.1
3053 | '@nodelib/fs.walk': 1.2.8
3054 | '@ungap/structured-clone': 1.2.0
3055 | ajv: 6.12.6
3056 | chalk: 4.1.2
3057 | cross-spawn: 7.0.3
3058 | debug: 4.3.4
3059 | doctrine: 3.0.0
3060 | escape-string-regexp: 4.0.0
3061 | eslint-scope: 7.2.2
3062 | eslint-visitor-keys: 3.4.3
3063 | espree: 9.6.1
3064 | esquery: 1.5.0
3065 | esutils: 2.0.3
3066 | fast-deep-equal: 3.1.3
3067 | file-entry-cache: 6.0.1
3068 | find-up: 5.0.0
3069 | glob-parent: 6.0.2
3070 | globals: 13.24.0
3071 | graphemer: 1.4.0
3072 | ignore: 5.3.1
3073 | imurmurhash: 0.1.4
3074 | is-glob: 4.0.3
3075 | is-path-inside: 3.0.3
3076 | js-yaml: 4.1.0
3077 | json-stable-stringify-without-jsonify: 1.0.1
3078 | levn: 0.4.1
3079 | lodash.merge: 4.6.2
3080 | minimatch: 3.1.2
3081 | natural-compare: 1.4.0
3082 | optionator: 0.9.4
3083 | strip-ansi: 6.0.1
3084 | text-table: 0.2.0
3085 | transitivePeerDependencies:
3086 | - supports-color
3087 |
3088 | espree@9.6.1:
3089 | dependencies:
3090 | acorn: 8.11.3
3091 | acorn-jsx: 5.3.2(acorn@8.11.3)
3092 | eslint-visitor-keys: 3.4.3
3093 |
3094 | esquery@1.5.0:
3095 | dependencies:
3096 | estraverse: 5.3.0
3097 |
3098 | esrecurse@4.3.0:
3099 | dependencies:
3100 | estraverse: 5.3.0
3101 |
3102 | estraverse@4.3.0: {}
3103 |
3104 | estraverse@5.3.0: {}
3105 |
3106 | estree-walker@2.0.2: {}
3107 |
3108 | estree-walker@3.0.3:
3109 | dependencies:
3110 | '@types/estree': 1.0.5
3111 |
3112 | esutils@2.0.3: {}
3113 |
3114 | eventsource-parser@1.1.2: {}
3115 |
3116 | fast-deep-equal@3.1.3: {}
3117 |
3118 | fast-glob@3.3.2:
3119 | dependencies:
3120 | '@nodelib/fs.stat': 2.0.5
3121 | '@nodelib/fs.walk': 1.2.8
3122 | glob-parent: 5.1.2
3123 | merge2: 1.4.1
3124 | micromatch: 4.0.5
3125 |
3126 | fast-json-stable-stringify@2.1.0: {}
3127 |
3128 | fast-levenshtein@2.0.6: {}
3129 |
3130 | fastq@1.17.1:
3131 | dependencies:
3132 | reusify: 1.0.4
3133 |
3134 | file-entry-cache@6.0.1:
3135 | dependencies:
3136 | flat-cache: 3.2.0
3137 |
3138 | file-selector@0.6.0:
3139 | dependencies:
3140 | tslib: 2.6.2
3141 |
3142 | fill-range@7.0.1:
3143 | dependencies:
3144 | to-regex-range: 5.0.1
3145 |
3146 | find-up@3.0.0:
3147 | dependencies:
3148 | locate-path: 3.0.0
3149 |
3150 | find-up@5.0.0:
3151 | dependencies:
3152 | locate-path: 6.0.0
3153 | path-exists: 4.0.0
3154 |
3155 | find-up@6.3.0:
3156 | dependencies:
3157 | locate-path: 7.2.0
3158 | path-exists: 5.0.0
3159 |
3160 | flat-cache@3.2.0:
3161 | dependencies:
3162 | flatted: 3.3.1
3163 | keyv: 4.5.4
3164 | rimraf: 3.0.2
3165 |
3166 | flatted@3.3.1: {}
3167 |
3168 | for-each@0.3.3:
3169 | dependencies:
3170 | is-callable: 1.2.7
3171 |
3172 | foreground-child@3.1.1:
3173 | dependencies:
3174 | cross-spawn: 7.0.3
3175 | signal-exit: 4.1.0
3176 |
3177 | fs.realpath@1.0.0: {}
3178 |
3179 | fsevents@2.3.3:
3180 | optional: true
3181 |
3182 | function-bind@1.1.2: {}
3183 |
3184 | function.prototype.name@1.1.6:
3185 | dependencies:
3186 | call-bind: 1.0.7
3187 | define-properties: 1.2.1
3188 | es-abstract: 1.23.3
3189 | functions-have-names: 1.2.3
3190 |
3191 | functions-have-names@1.2.3: {}
3192 |
3193 | get-intrinsic@1.2.4:
3194 | dependencies:
3195 | es-errors: 1.3.0
3196 | function-bind: 1.1.2
3197 | has-proto: 1.0.3
3198 | has-symbols: 1.0.3
3199 | hasown: 2.0.2
3200 |
3201 | get-stdin@8.0.0: {}
3202 |
3203 | get-symbol-description@1.0.2:
3204 | dependencies:
3205 | call-bind: 1.0.7
3206 | es-errors: 1.3.0
3207 | get-intrinsic: 1.2.4
3208 |
3209 | get-tsconfig@4.7.4:
3210 | dependencies:
3211 | resolve-pkg-maps: 1.0.0
3212 |
3213 | glob-parent@5.1.2:
3214 | dependencies:
3215 | is-glob: 4.0.3
3216 |
3217 | glob-parent@6.0.2:
3218 | dependencies:
3219 | is-glob: 4.0.3
3220 |
3221 | glob@10.3.10:
3222 | dependencies:
3223 | foreground-child: 3.1.1
3224 | jackspeak: 2.3.6
3225 | minimatch: 9.0.4
3226 | minipass: 7.1.0
3227 | path-scurry: 1.10.2
3228 |
3229 | glob@10.3.12:
3230 | dependencies:
3231 | foreground-child: 3.1.1
3232 | jackspeak: 2.3.6
3233 | minimatch: 9.0.4
3234 | minipass: 7.1.0
3235 | path-scurry: 1.10.2
3236 |
3237 | glob@7.2.3:
3238 | dependencies:
3239 | fs.realpath: 1.0.0
3240 | inflight: 1.0.6
3241 | inherits: 2.0.4
3242 | minimatch: 3.1.2
3243 | once: 1.4.0
3244 | path-is-absolute: 1.0.1
3245 |
3246 | globals@13.24.0:
3247 | dependencies:
3248 | type-fest: 0.20.2
3249 |
3250 | globalthis@1.0.4:
3251 | dependencies:
3252 | define-properties: 1.2.1
3253 | gopd: 1.0.1
3254 |
3255 | globby@11.1.0:
3256 | dependencies:
3257 | array-union: 2.1.0
3258 | dir-glob: 3.0.1
3259 | fast-glob: 3.3.2
3260 | ignore: 5.3.1
3261 | merge2: 1.4.1
3262 | slash: 3.0.0
3263 |
3264 | gopd@1.0.1:
3265 | dependencies:
3266 | get-intrinsic: 1.2.4
3267 |
3268 | graceful-fs@4.2.11: {}
3269 |
3270 | graphemer@1.4.0: {}
3271 |
3272 | has-bigints@1.0.2: {}
3273 |
3274 | has-flag@4.0.0: {}
3275 |
3276 | has-property-descriptors@1.0.2:
3277 | dependencies:
3278 | es-define-property: 1.0.0
3279 |
3280 | has-proto@1.0.3: {}
3281 |
3282 | has-symbols@1.0.3: {}
3283 |
3284 | has-tostringtag@1.0.2:
3285 | dependencies:
3286 | has-symbols: 1.0.3
3287 |
3288 | hasown@2.0.2:
3289 | dependencies:
3290 | function-bind: 1.1.2
3291 |
3292 | ignore@5.3.1: {}
3293 |
3294 | import-fresh@3.3.0:
3295 | dependencies:
3296 | parent-module: 1.0.1
3297 | resolve-from: 4.0.0
3298 |
3299 | imurmurhash@0.1.4: {}
3300 |
3301 | inflight@1.0.6:
3302 | dependencies:
3303 | once: 1.4.0
3304 | wrappy: 1.0.2
3305 |
3306 | inherits@2.0.4: {}
3307 |
3308 | internal-slot@1.0.7:
3309 | dependencies:
3310 | es-errors: 1.3.0
3311 | hasown: 2.0.2
3312 | side-channel: 1.0.6
3313 |
3314 | is-array-buffer@3.0.4:
3315 | dependencies:
3316 | call-bind: 1.0.7
3317 | get-intrinsic: 1.2.4
3318 |
3319 | is-arrayish@0.2.1: {}
3320 |
3321 | is-async-function@2.0.0:
3322 | dependencies:
3323 | has-tostringtag: 1.0.2
3324 |
3325 | is-bigint@1.0.4:
3326 | dependencies:
3327 | has-bigints: 1.0.2
3328 |
3329 | is-binary-path@2.1.0:
3330 | dependencies:
3331 | binary-extensions: 2.3.0
3332 |
3333 | is-boolean-object@1.1.2:
3334 | dependencies:
3335 | call-bind: 1.0.7
3336 | has-tostringtag: 1.0.2
3337 |
3338 | is-callable@1.2.7: {}
3339 |
3340 | is-core-module@2.13.1:
3341 | dependencies:
3342 | hasown: 2.0.2
3343 |
3344 | is-data-view@1.0.1:
3345 | dependencies:
3346 | is-typed-array: 1.1.13
3347 |
3348 | is-date-object@1.0.5:
3349 | dependencies:
3350 | has-tostringtag: 1.0.2
3351 |
3352 | is-extglob@2.1.1: {}
3353 |
3354 | is-finalizationregistry@1.0.2:
3355 | dependencies:
3356 | call-bind: 1.0.7
3357 |
3358 | is-fullwidth-code-point@3.0.0: {}
3359 |
3360 | is-generator-function@1.0.10:
3361 | dependencies:
3362 | has-tostringtag: 1.0.2
3363 |
3364 | is-glob@4.0.3:
3365 | dependencies:
3366 | is-extglob: 2.1.1
3367 |
3368 | is-map@2.0.3: {}
3369 |
3370 | is-negative-zero@2.0.3: {}
3371 |
3372 | is-number-object@1.0.7:
3373 | dependencies:
3374 | has-tostringtag: 1.0.2
3375 |
3376 | is-number@7.0.0: {}
3377 |
3378 | is-path-inside@3.0.3: {}
3379 |
3380 | is-reference@3.0.2:
3381 | dependencies:
3382 | '@types/estree': 1.0.5
3383 |
3384 | is-regex@1.1.4:
3385 | dependencies:
3386 | call-bind: 1.0.7
3387 | has-tostringtag: 1.0.2
3388 |
3389 | is-set@2.0.3: {}
3390 |
3391 | is-shared-array-buffer@1.0.3:
3392 | dependencies:
3393 | call-bind: 1.0.7
3394 |
3395 | is-string@1.0.7:
3396 | dependencies:
3397 | has-tostringtag: 1.0.2
3398 |
3399 | is-symbol@1.0.4:
3400 | dependencies:
3401 | has-symbols: 1.0.3
3402 |
3403 | is-typed-array@1.1.13:
3404 | dependencies:
3405 | which-typed-array: 1.1.15
3406 |
3407 | is-weakmap@2.0.2: {}
3408 |
3409 | is-weakref@1.0.2:
3410 | dependencies:
3411 | call-bind: 1.0.7
3412 |
3413 | is-weakset@2.0.3:
3414 | dependencies:
3415 | call-bind: 1.0.7
3416 | get-intrinsic: 1.2.4
3417 |
3418 | isarray@2.0.5: {}
3419 |
3420 | isexe@2.0.0: {}
3421 |
3422 | iterator.prototype@1.1.2:
3423 | dependencies:
3424 | define-properties: 1.2.1
3425 | get-intrinsic: 1.2.4
3426 | has-symbols: 1.0.3
3427 | reflect.getprototypeof: 1.0.6
3428 | set-function-name: 2.0.2
3429 |
3430 | jackspeak@2.3.6:
3431 | dependencies:
3432 | '@isaacs/cliui': 8.0.2
3433 | optionalDependencies:
3434 | '@pkgjs/parseargs': 0.11.0
3435 |
3436 | jiti@1.21.0: {}
3437 |
3438 | js-tokens@4.0.0: {}
3439 |
3440 | js-yaml@4.1.0:
3441 | dependencies:
3442 | argparse: 2.0.1
3443 |
3444 | json-buffer@3.0.1: {}
3445 |
3446 | json-parse-better-errors@1.0.2: {}
3447 |
3448 | json-schema-traverse@0.4.1: {}
3449 |
3450 | json-schema@0.4.0: {}
3451 |
3452 | json-stable-stringify-without-jsonify@1.0.1: {}
3453 |
3454 | json5@1.0.2:
3455 | dependencies:
3456 | minimist: 1.2.8
3457 |
3458 | jsondiffpatch@0.6.0:
3459 | dependencies:
3460 | '@types/diff-match-patch': 1.0.36
3461 | chalk: 5.3.0
3462 | diff-match-patch: 1.0.5
3463 |
3464 | jsx-ast-utils@3.3.5:
3465 | dependencies:
3466 | array-includes: 3.1.8
3467 | array.prototype.flat: 1.3.2
3468 | object.assign: 4.1.5
3469 | object.values: 1.2.0
3470 |
3471 | keyv@4.5.4:
3472 | dependencies:
3473 | json-buffer: 3.0.1
3474 |
3475 | language-subtag-registry@0.3.22: {}
3476 |
3477 | language-tags@1.0.9:
3478 | dependencies:
3479 | language-subtag-registry: 0.3.22
3480 |
3481 | levn@0.4.1:
3482 | dependencies:
3483 | prelude-ls: 1.2.1
3484 | type-check: 0.4.0
3485 |
3486 | lilconfig@2.1.0: {}
3487 |
3488 | lilconfig@3.1.1: {}
3489 |
3490 | lines-and-columns@1.2.4: {}
3491 |
3492 | load-json-file@5.3.0:
3493 | dependencies:
3494 | graceful-fs: 4.2.11
3495 | parse-json: 4.0.0
3496 | pify: 4.0.1
3497 | strip-bom: 3.0.0
3498 | type-fest: 0.3.1
3499 |
3500 | load-json-file@7.0.1: {}
3501 |
3502 | locate-character@3.0.0: {}
3503 |
3504 | locate-path@3.0.0:
3505 | dependencies:
3506 | p-locate: 3.0.0
3507 | path-exists: 3.0.0
3508 |
3509 | locate-path@6.0.0:
3510 | dependencies:
3511 | p-locate: 5.0.0
3512 |
3513 | locate-path@7.2.0:
3514 | dependencies:
3515 | p-locate: 6.0.0
3516 |
3517 | lodash.merge@4.6.2: {}
3518 |
3519 | loose-envify@1.4.0:
3520 | dependencies:
3521 | js-tokens: 4.0.0
3522 |
3523 | lru-cache@10.2.2: {}
3524 |
3525 | lru-cache@6.0.0:
3526 | dependencies:
3527 | yallist: 4.0.0
3528 |
3529 | magic-string@0.30.10:
3530 | dependencies:
3531 | '@jridgewell/sourcemap-codec': 1.4.15
3532 |
3533 | mdn-data@2.0.30: {}
3534 |
3535 | merge2@1.4.1: {}
3536 |
3537 | micromatch@4.0.5:
3538 | dependencies:
3539 | braces: 3.0.2
3540 | picomatch: 2.3.1
3541 |
3542 | minimatch@3.1.2:
3543 | dependencies:
3544 | brace-expansion: 1.1.11
3545 |
3546 | minimatch@9.0.3:
3547 | dependencies:
3548 | brace-expansion: 2.0.1
3549 |
3550 | minimatch@9.0.4:
3551 | dependencies:
3552 | brace-expansion: 2.0.1
3553 |
3554 | minimist@1.2.8: {}
3555 |
3556 | minipass@7.1.0: {}
3557 |
3558 | ms@2.1.2: {}
3559 |
3560 | ms@2.1.3: {}
3561 |
3562 | mz@2.7.0:
3563 | dependencies:
3564 | any-promise: 1.3.0
3565 | object-assign: 4.1.1
3566 | thenify-all: 1.6.0
3567 |
3568 | nanoid@3.3.6: {}
3569 |
3570 | nanoid@3.3.7: {}
3571 |
3572 | natural-compare-lite@1.4.0: {}
3573 |
3574 | natural-compare@1.4.0: {}
3575 |
3576 | next@14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
3577 | dependencies:
3578 | '@next/env': 14.2.3
3579 | '@swc/helpers': 0.5.5
3580 | busboy: 1.6.0
3581 | caniuse-lite: 1.0.30001616
3582 | graceful-fs: 4.2.11
3583 | postcss: 8.4.31
3584 | react: 18.3.1
3585 | react-dom: 18.3.1(react@18.3.1)
3586 | styled-jsx: 5.1.1(react@18.3.1)
3587 | optionalDependencies:
3588 | '@next/swc-darwin-arm64': 14.2.3
3589 | '@next/swc-darwin-x64': 14.2.3
3590 | '@next/swc-linux-arm64-gnu': 14.2.3
3591 | '@next/swc-linux-arm64-musl': 14.2.3
3592 | '@next/swc-linux-x64-gnu': 14.2.3
3593 | '@next/swc-linux-x64-musl': 14.2.3
3594 | '@next/swc-win32-arm64-msvc': 14.2.3
3595 | '@next/swc-win32-ia32-msvc': 14.2.3
3596 | '@next/swc-win32-x64-msvc': 14.2.3
3597 | transitivePeerDependencies:
3598 | - '@babel/core'
3599 | - babel-plugin-macros
3600 |
3601 | normalize-path@3.0.0: {}
3602 |
3603 | object-assign@4.1.1: {}
3604 |
3605 | object-hash@3.0.0: {}
3606 |
3607 | object-inspect@1.13.1: {}
3608 |
3609 | object-keys@1.1.1: {}
3610 |
3611 | object.assign@4.1.5:
3612 | dependencies:
3613 | call-bind: 1.0.7
3614 | define-properties: 1.2.1
3615 | has-symbols: 1.0.3
3616 | object-keys: 1.1.1
3617 |
3618 | object.entries@1.1.8:
3619 | dependencies:
3620 | call-bind: 1.0.7
3621 | define-properties: 1.2.1
3622 | es-object-atoms: 1.0.0
3623 |
3624 | object.fromentries@2.0.8:
3625 | dependencies:
3626 | call-bind: 1.0.7
3627 | define-properties: 1.2.1
3628 | es-abstract: 1.23.3
3629 | es-object-atoms: 1.0.0
3630 |
3631 | object.groupby@1.0.3:
3632 | dependencies:
3633 | call-bind: 1.0.7
3634 | define-properties: 1.2.1
3635 | es-abstract: 1.23.3
3636 |
3637 | object.hasown@1.1.4:
3638 | dependencies:
3639 | define-properties: 1.2.1
3640 | es-abstract: 1.23.3
3641 | es-object-atoms: 1.0.0
3642 |
3643 | object.values@1.2.0:
3644 | dependencies:
3645 | call-bind: 1.0.7
3646 | define-properties: 1.2.1
3647 | es-object-atoms: 1.0.0
3648 |
3649 | once@1.4.0:
3650 | dependencies:
3651 | wrappy: 1.0.2
3652 |
3653 | optionator@0.9.4:
3654 | dependencies:
3655 | deep-is: 0.1.4
3656 | fast-levenshtein: 2.0.6
3657 | levn: 0.4.1
3658 | prelude-ls: 1.2.1
3659 | type-check: 0.4.0
3660 | word-wrap: 1.2.5
3661 |
3662 | p-limit@2.3.0:
3663 | dependencies:
3664 | p-try: 2.2.0
3665 |
3666 | p-limit@3.1.0:
3667 | dependencies:
3668 | yocto-queue: 0.1.0
3669 |
3670 | p-limit@4.0.0:
3671 | dependencies:
3672 | yocto-queue: 1.0.0
3673 |
3674 | p-locate@3.0.0:
3675 | dependencies:
3676 | p-limit: 2.3.0
3677 |
3678 | p-locate@5.0.0:
3679 | dependencies:
3680 | p-limit: 3.1.0
3681 |
3682 | p-locate@6.0.0:
3683 | dependencies:
3684 | p-limit: 4.0.0
3685 |
3686 | p-try@2.2.0: {}
3687 |
3688 | parent-module@1.0.1:
3689 | dependencies:
3690 | callsites: 3.1.0
3691 |
3692 | parse-json@4.0.0:
3693 | dependencies:
3694 | error-ex: 1.3.2
3695 | json-parse-better-errors: 1.0.2
3696 |
3697 | path-exists@3.0.0: {}
3698 |
3699 | path-exists@4.0.0: {}
3700 |
3701 | path-exists@5.0.0: {}
3702 |
3703 | path-is-absolute@1.0.1: {}
3704 |
3705 | path-key@3.1.1: {}
3706 |
3707 | path-parse@1.0.7: {}
3708 |
3709 | path-scurry@1.10.2:
3710 | dependencies:
3711 | lru-cache: 10.2.2
3712 | minipass: 7.1.0
3713 |
3714 | path-type@4.0.0: {}
3715 |
3716 | periscopic@3.1.0:
3717 | dependencies:
3718 | '@types/estree': 1.0.5
3719 | estree-walker: 3.0.3
3720 | is-reference: 3.0.2
3721 |
3722 | picocolors@1.0.0: {}
3723 |
3724 | picomatch@2.3.1: {}
3725 |
3726 | pify@2.3.0: {}
3727 |
3728 | pify@4.0.1: {}
3729 |
3730 | pirates@4.0.6: {}
3731 |
3732 | pkg-conf@3.1.0:
3733 | dependencies:
3734 | find-up: 3.0.0
3735 | load-json-file: 5.3.0
3736 |
3737 | pkg-conf@4.0.0:
3738 | dependencies:
3739 | find-up: 6.3.0
3740 | load-json-file: 7.0.1
3741 |
3742 | possible-typed-array-names@1.0.0: {}
3743 |
3744 | postcss-import@15.1.0(postcss@8.4.38):
3745 | dependencies:
3746 | postcss: 8.4.38
3747 | postcss-value-parser: 4.2.0
3748 | read-cache: 1.0.0
3749 | resolve: 1.22.8
3750 |
3751 | postcss-js@4.0.1(postcss@8.4.38):
3752 | dependencies:
3753 | camelcase-css: 2.0.1
3754 | postcss: 8.4.38
3755 |
3756 | postcss-load-config@4.0.2(postcss@8.4.38):
3757 | dependencies:
3758 | lilconfig: 3.1.1
3759 | yaml: 2.4.2
3760 | optionalDependencies:
3761 | postcss: 8.4.38
3762 |
3763 | postcss-nested@6.0.1(postcss@8.4.38):
3764 | dependencies:
3765 | postcss: 8.4.38
3766 | postcss-selector-parser: 6.0.16
3767 |
3768 | postcss-selector-parser@6.0.16:
3769 | dependencies:
3770 | cssesc: 3.0.0
3771 | util-deprecate: 1.0.2
3772 |
3773 | postcss-value-parser@4.2.0: {}
3774 |
3775 | postcss@8.4.31:
3776 | dependencies:
3777 | nanoid: 3.3.7
3778 | picocolors: 1.0.0
3779 | source-map-js: 1.2.0
3780 |
3781 | postcss@8.4.38:
3782 | dependencies:
3783 | nanoid: 3.3.7
3784 | picocolors: 1.0.0
3785 | source-map-js: 1.2.0
3786 |
3787 | prelude-ls@1.2.1: {}
3788 |
3789 | prop-types@15.8.1:
3790 | dependencies:
3791 | loose-envify: 1.4.0
3792 | object-assign: 4.1.1
3793 | react-is: 16.13.1
3794 |
3795 | punycode@2.3.1: {}
3796 |
3797 | queue-microtask@1.2.3: {}
3798 |
3799 | react-dom@18.3.1(react@18.3.1):
3800 | dependencies:
3801 | loose-envify: 1.4.0
3802 | react: 18.3.1
3803 | scheduler: 0.23.2
3804 |
3805 | react-dropzone@14.2.3(react@18.3.1):
3806 | dependencies:
3807 | attr-accept: 2.2.2
3808 | file-selector: 0.6.0
3809 | prop-types: 15.8.1
3810 | react: 18.3.1
3811 |
3812 | react-icons@5.2.1(react@18.3.1):
3813 | dependencies:
3814 | react: 18.3.1
3815 |
3816 | react-is@16.13.1: {}
3817 |
3818 | react@18.3.1:
3819 | dependencies:
3820 | loose-envify: 1.4.0
3821 |
3822 | read-cache@1.0.0:
3823 | dependencies:
3824 | pify: 2.3.0
3825 |
3826 | readdirp@3.6.0:
3827 | dependencies:
3828 | picomatch: 2.3.1
3829 |
3830 | reflect.getprototypeof@1.0.6:
3831 | dependencies:
3832 | call-bind: 1.0.7
3833 | define-properties: 1.2.1
3834 | es-abstract: 1.23.3
3835 | es-errors: 1.3.0
3836 | get-intrinsic: 1.2.4
3837 | globalthis: 1.0.4
3838 | which-builtin-type: 1.1.3
3839 |
3840 | regenerator-runtime@0.14.1: {}
3841 |
3842 | regexp.prototype.flags@1.5.2:
3843 | dependencies:
3844 | call-bind: 1.0.7
3845 | define-properties: 1.2.1
3846 | es-errors: 1.3.0
3847 | set-function-name: 2.0.2
3848 |
3849 | regexpp@3.2.0: {}
3850 |
3851 | resolve-from@4.0.0: {}
3852 |
3853 | resolve-pkg-maps@1.0.0: {}
3854 |
3855 | resolve@1.22.8:
3856 | dependencies:
3857 | is-core-module: 2.13.1
3858 | path-parse: 1.0.7
3859 | supports-preserve-symlinks-flag: 1.0.0
3860 |
3861 | resolve@2.0.0-next.5:
3862 | dependencies:
3863 | is-core-module: 2.13.1
3864 | path-parse: 1.0.7
3865 | supports-preserve-symlinks-flag: 1.0.0
3866 |
3867 | reusify@1.0.4: {}
3868 |
3869 | rimraf@3.0.2:
3870 | dependencies:
3871 | glob: 7.2.3
3872 |
3873 | run-parallel@1.2.0:
3874 | dependencies:
3875 | queue-microtask: 1.2.3
3876 |
3877 | safe-array-concat@1.1.2:
3878 | dependencies:
3879 | call-bind: 1.0.7
3880 | get-intrinsic: 1.2.4
3881 | has-symbols: 1.0.3
3882 | isarray: 2.0.5
3883 |
3884 | safe-regex-test@1.0.3:
3885 | dependencies:
3886 | call-bind: 1.0.7
3887 | es-errors: 1.3.0
3888 | is-regex: 1.1.4
3889 |
3890 | scheduler@0.23.2:
3891 | dependencies:
3892 | loose-envify: 1.4.0
3893 |
3894 | secure-json-parse@2.7.0: {}
3895 |
3896 | semver@6.3.1: {}
3897 |
3898 | semver@7.6.0:
3899 | dependencies:
3900 | lru-cache: 6.0.0
3901 |
3902 | seroval-plugins@1.0.5(seroval@1.0.5):
3903 | dependencies:
3904 | seroval: 1.0.5
3905 |
3906 | seroval@1.0.5: {}
3907 |
3908 | set-function-length@1.2.2:
3909 | dependencies:
3910 | define-data-property: 1.1.4
3911 | es-errors: 1.3.0
3912 | function-bind: 1.1.2
3913 | get-intrinsic: 1.2.4
3914 | gopd: 1.0.1
3915 | has-property-descriptors: 1.0.2
3916 |
3917 | set-function-name@2.0.2:
3918 | dependencies:
3919 | define-data-property: 1.1.4
3920 | es-errors: 1.3.0
3921 | functions-have-names: 1.2.3
3922 | has-property-descriptors: 1.0.2
3923 |
3924 | shebang-command@2.0.0:
3925 | dependencies:
3926 | shebang-regex: 3.0.0
3927 |
3928 | shebang-regex@3.0.0: {}
3929 |
3930 | side-channel@1.0.6:
3931 | dependencies:
3932 | call-bind: 1.0.7
3933 | es-errors: 1.3.0
3934 | get-intrinsic: 1.2.4
3935 | object-inspect: 1.13.1
3936 |
3937 | signal-exit@4.1.0: {}
3938 |
3939 | slash@3.0.0: {}
3940 |
3941 | solid-js@1.8.17:
3942 | dependencies:
3943 | csstype: 3.1.3
3944 | seroval: 1.0.5
3945 | seroval-plugins: 1.0.5(seroval@1.0.5)
3946 |
3947 | solid-swr-store@0.10.7(solid-js@1.8.17)(swr-store@0.10.6):
3948 | dependencies:
3949 | solid-js: 1.8.17
3950 | swr-store: 0.10.6
3951 |
3952 | source-map-js@1.2.0: {}
3953 |
3954 | sswr@2.0.0(svelte@4.2.15):
3955 | dependencies:
3956 | svelte: 4.2.15
3957 | swrev: 4.0.0
3958 |
3959 | standard-engine@15.1.0:
3960 | dependencies:
3961 | get-stdin: 8.0.0
3962 | minimist: 1.2.8
3963 | pkg-conf: 3.1.0
3964 | xdg-basedir: 4.0.0
3965 |
3966 | streamsearch@1.1.0: {}
3967 |
3968 | string-width@4.2.3:
3969 | dependencies:
3970 | emoji-regex: 8.0.0
3971 | is-fullwidth-code-point: 3.0.0
3972 | strip-ansi: 6.0.1
3973 |
3974 | string-width@5.1.2:
3975 | dependencies:
3976 | eastasianwidth: 0.2.0
3977 | emoji-regex: 9.2.2
3978 | strip-ansi: 7.1.0
3979 |
3980 | string.prototype.matchall@4.0.11:
3981 | dependencies:
3982 | call-bind: 1.0.7
3983 | define-properties: 1.2.1
3984 | es-abstract: 1.23.3
3985 | es-errors: 1.3.0
3986 | es-object-atoms: 1.0.0
3987 | get-intrinsic: 1.2.4
3988 | gopd: 1.0.1
3989 | has-symbols: 1.0.3
3990 | internal-slot: 1.0.7
3991 | regexp.prototype.flags: 1.5.2
3992 | set-function-name: 2.0.2
3993 | side-channel: 1.0.6
3994 |
3995 | string.prototype.trim@1.2.9:
3996 | dependencies:
3997 | call-bind: 1.0.7
3998 | define-properties: 1.2.1
3999 | es-abstract: 1.23.3
4000 | es-object-atoms: 1.0.0
4001 |
4002 | string.prototype.trimend@1.0.8:
4003 | dependencies:
4004 | call-bind: 1.0.7
4005 | define-properties: 1.2.1
4006 | es-object-atoms: 1.0.0
4007 |
4008 | string.prototype.trimstart@1.0.8:
4009 | dependencies:
4010 | call-bind: 1.0.7
4011 | define-properties: 1.2.1
4012 | es-object-atoms: 1.0.0
4013 |
4014 | strip-ansi@6.0.1:
4015 | dependencies:
4016 | ansi-regex: 5.0.1
4017 |
4018 | strip-ansi@7.1.0:
4019 | dependencies:
4020 | ansi-regex: 6.0.1
4021 |
4022 | strip-bom@3.0.0: {}
4023 |
4024 | strip-json-comments@3.1.1: {}
4025 |
4026 | styled-jsx@5.1.1(react@18.3.1):
4027 | dependencies:
4028 | client-only: 0.0.1
4029 | react: 18.3.1
4030 |
4031 | sucrase@3.35.0:
4032 | dependencies:
4033 | '@jridgewell/gen-mapping': 0.3.5
4034 | commander: 4.1.1
4035 | glob: 10.3.12
4036 | lines-and-columns: 1.2.4
4037 | mz: 2.7.0
4038 | pirates: 4.0.6
4039 | ts-interface-checker: 0.1.13
4040 |
4041 | supports-color@7.2.0:
4042 | dependencies:
4043 | has-flag: 4.0.0
4044 |
4045 | supports-preserve-symlinks-flag@1.0.0: {}
4046 |
4047 | svelte@4.2.15:
4048 | dependencies:
4049 | '@ampproject/remapping': 2.3.0
4050 | '@jridgewell/sourcemap-codec': 1.4.15
4051 | '@jridgewell/trace-mapping': 0.3.25
4052 | '@types/estree': 1.0.5
4053 | acorn: 8.11.3
4054 | aria-query: 5.3.0
4055 | axobject-query: 4.0.0
4056 | code-red: 1.0.4
4057 | css-tree: 2.3.1
4058 | estree-walker: 3.0.3
4059 | is-reference: 3.0.2
4060 | locate-character: 3.0.0
4061 | magic-string: 0.30.10
4062 | periscopic: 3.1.0
4063 |
4064 | swr-store@0.10.6:
4065 | dependencies:
4066 | dequal: 2.0.3
4067 |
4068 | swr@2.2.0(react@18.3.1):
4069 | dependencies:
4070 | react: 18.3.1
4071 | use-sync-external-store: 1.2.2(react@18.3.1)
4072 |
4073 | swrev@4.0.0: {}
4074 |
4075 | swrv@1.0.4(vue@3.4.27(typescript@5.4.5)):
4076 | dependencies:
4077 | vue: 3.4.27(typescript@5.4.5)
4078 |
4079 | tailwindcss@3.4.3:
4080 | dependencies:
4081 | '@alloc/quick-lru': 5.2.0
4082 | arg: 5.0.2
4083 | chokidar: 3.6.0
4084 | didyoumean: 1.2.2
4085 | dlv: 1.1.3
4086 | fast-glob: 3.3.2
4087 | glob-parent: 6.0.2
4088 | is-glob: 4.0.3
4089 | jiti: 1.21.0
4090 | lilconfig: 2.1.0
4091 | micromatch: 4.0.5
4092 | normalize-path: 3.0.0
4093 | object-hash: 3.0.0
4094 | picocolors: 1.0.0
4095 | postcss: 8.4.38
4096 | postcss-import: 15.1.0(postcss@8.4.38)
4097 | postcss-js: 4.0.1(postcss@8.4.38)
4098 | postcss-load-config: 4.0.2(postcss@8.4.38)
4099 | postcss-nested: 6.0.1(postcss@8.4.38)
4100 | postcss-selector-parser: 6.0.16
4101 | resolve: 1.22.8
4102 | sucrase: 3.35.0
4103 | transitivePeerDependencies:
4104 | - ts-node
4105 |
4106 | tapable@2.2.1: {}
4107 |
4108 | text-table@0.2.0: {}
4109 |
4110 | thenify-all@1.6.0:
4111 | dependencies:
4112 | thenify: 3.3.1
4113 |
4114 | thenify@3.3.1:
4115 | dependencies:
4116 | any-promise: 1.3.0
4117 |
4118 | to-fast-properties@2.0.0: {}
4119 |
4120 | to-regex-range@5.0.1:
4121 | dependencies:
4122 | is-number: 7.0.0
4123 |
4124 | ts-api-utils@1.3.0(typescript@5.4.5):
4125 | dependencies:
4126 | typescript: 5.4.5
4127 |
4128 | ts-interface-checker@0.1.13: {}
4129 |
4130 | ts-standard@12.0.2(typescript@5.4.5):
4131 | dependencies:
4132 | '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
4133 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
4134 | eslint: 8.57.0
4135 | eslint-config-standard-jsx: 11.0.0(eslint-plugin-react@7.34.1(eslint@8.57.0))(eslint@8.57.0)
4136 | eslint-config-standard-with-typescript: 23.0.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0))(eslint-plugin-n@15.7.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0))(eslint@8.57.0)(typescript@5.4.5)
4137 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)
4138 | eslint-plugin-n: 15.7.0(eslint@8.57.0)
4139 | eslint-plugin-promise: 6.1.1(eslint@8.57.0)
4140 | eslint-plugin-react: 7.34.1(eslint@8.57.0)
4141 | minimist: 1.2.8
4142 | pkg-conf: 4.0.0
4143 | standard-engine: 15.1.0
4144 | typescript: 5.4.5
4145 | transitivePeerDependencies:
4146 | - eslint-import-resolver-typescript
4147 | - eslint-import-resolver-webpack
4148 | - supports-color
4149 |
4150 | tsconfig-paths@3.15.0:
4151 | dependencies:
4152 | '@types/json5': 0.0.29
4153 | json5: 1.0.2
4154 | minimist: 1.2.8
4155 | strip-bom: 3.0.0
4156 |
4157 | tslib@1.14.1: {}
4158 |
4159 | tslib@2.6.2: {}
4160 |
4161 | tsutils@3.21.0(typescript@5.4.5):
4162 | dependencies:
4163 | tslib: 1.14.1
4164 | typescript: 5.4.5
4165 |
4166 | type-check@0.4.0:
4167 | dependencies:
4168 | prelude-ls: 1.2.1
4169 |
4170 | type-fest@0.20.2: {}
4171 |
4172 | type-fest@0.3.1: {}
4173 |
4174 | typed-array-buffer@1.0.2:
4175 | dependencies:
4176 | call-bind: 1.0.7
4177 | es-errors: 1.3.0
4178 | is-typed-array: 1.1.13
4179 |
4180 | typed-array-byte-length@1.0.1:
4181 | dependencies:
4182 | call-bind: 1.0.7
4183 | for-each: 0.3.3
4184 | gopd: 1.0.1
4185 | has-proto: 1.0.3
4186 | is-typed-array: 1.1.13
4187 |
4188 | typed-array-byte-offset@1.0.2:
4189 | dependencies:
4190 | available-typed-arrays: 1.0.7
4191 | call-bind: 1.0.7
4192 | for-each: 0.3.3
4193 | gopd: 1.0.1
4194 | has-proto: 1.0.3
4195 | is-typed-array: 1.1.13
4196 |
4197 | typed-array-length@1.0.6:
4198 | dependencies:
4199 | call-bind: 1.0.7
4200 | for-each: 0.3.3
4201 | gopd: 1.0.1
4202 | has-proto: 1.0.3
4203 | is-typed-array: 1.1.13
4204 | possible-typed-array-names: 1.0.0
4205 |
4206 | typescript@5.4.5: {}
4207 |
4208 | unbox-primitive@1.0.2:
4209 | dependencies:
4210 | call-bind: 1.0.7
4211 | has-bigints: 1.0.2
4212 | has-symbols: 1.0.3
4213 | which-boxed-primitive: 1.0.2
4214 |
4215 | undici-types@5.26.5: {}
4216 |
4217 | uri-js@4.4.1:
4218 | dependencies:
4219 | punycode: 2.3.1
4220 |
4221 | use-sync-external-store@1.2.2(react@18.3.1):
4222 | dependencies:
4223 | react: 18.3.1
4224 |
4225 | util-deprecate@1.0.2: {}
4226 |
4227 | valibot@0.30.0: {}
4228 |
4229 | vue@3.4.27(typescript@5.4.5):
4230 | dependencies:
4231 | '@vue/compiler-dom': 3.4.27
4232 | '@vue/compiler-sfc': 3.4.27
4233 | '@vue/runtime-dom': 3.4.27
4234 | '@vue/server-renderer': 3.4.27(vue@3.4.27(typescript@5.4.5))
4235 | '@vue/shared': 3.4.27
4236 | optionalDependencies:
4237 | typescript: 5.4.5
4238 |
4239 | which-boxed-primitive@1.0.2:
4240 | dependencies:
4241 | is-bigint: 1.0.4
4242 | is-boolean-object: 1.1.2
4243 | is-number-object: 1.0.7
4244 | is-string: 1.0.7
4245 | is-symbol: 1.0.4
4246 |
4247 | which-builtin-type@1.1.3:
4248 | dependencies:
4249 | function.prototype.name: 1.1.6
4250 | has-tostringtag: 1.0.2
4251 | is-async-function: 2.0.0
4252 | is-date-object: 1.0.5
4253 | is-finalizationregistry: 1.0.2
4254 | is-generator-function: 1.0.10
4255 | is-regex: 1.1.4
4256 | is-weakref: 1.0.2
4257 | isarray: 2.0.5
4258 | which-boxed-primitive: 1.0.2
4259 | which-collection: 1.0.2
4260 | which-typed-array: 1.1.15
4261 |
4262 | which-collection@1.0.2:
4263 | dependencies:
4264 | is-map: 2.0.3
4265 | is-set: 2.0.3
4266 | is-weakmap: 2.0.2
4267 | is-weakset: 2.0.3
4268 |
4269 | which-typed-array@1.1.15:
4270 | dependencies:
4271 | available-typed-arrays: 1.0.7
4272 | call-bind: 1.0.7
4273 | for-each: 0.3.3
4274 | gopd: 1.0.1
4275 | has-tostringtag: 1.0.2
4276 |
4277 | which@2.0.2:
4278 | dependencies:
4279 | isexe: 2.0.0
4280 |
4281 | word-wrap@1.2.5: {}
4282 |
4283 | wrap-ansi@7.0.0:
4284 | dependencies:
4285 | ansi-styles: 4.3.0
4286 | string-width: 4.2.3
4287 | strip-ansi: 6.0.1
4288 |
4289 | wrap-ansi@8.1.0:
4290 | dependencies:
4291 | ansi-styles: 6.2.1
4292 | string-width: 5.1.2
4293 | strip-ansi: 7.1.0
4294 |
4295 | wrappy@1.0.2: {}
4296 |
4297 | xdg-basedir@4.0.0: {}
4298 |
4299 | yallist@4.0.0: {}
4300 |
4301 | yaml@2.4.2: {}
4302 |
4303 | yocto-queue@0.1.0: {}
4304 |
4305 | yocto-queue@1.0.0: {}
4306 |
4307 | zod-to-json-schema@3.22.5(zod@3.23.6):
4308 | dependencies:
4309 | zod: 3.23.6
4310 |
4311 | zod@3.23.6: {}
4312 |
--------------------------------------------------------------------------------
/postcss.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('postcss-load-config').Config} */
2 | const config = {
3 | plugins: {
4 | tailwindcss: {},
5 | },
6 | };
7 |
8 | export default config;
9 |
--------------------------------------------------------------------------------
/public/drag_and_drop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/midudev/midu-translate-gemini/880746de97ce34eaa12c90d472a9bbf898cf26d7/public/drag_and_drop.png
--------------------------------------------------------------------------------
/public/next.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import type { Config } from "tailwindcss";
2 |
3 | const config: Config = {
4 | content: [
5 | "./pages/**/*.{js,ts,jsx,tsx,mdx}",
6 | "./components/**/*.{js,ts,jsx,tsx,mdx}",
7 | "./app/**/*.{js,ts,jsx,tsx,mdx}",
8 | ],
9 | theme: {
10 | extend: {
11 | backgroundImage: {
12 | "gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
13 | "gradient-conic":
14 | "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
15 | },
16 | },
17 | },
18 | plugins: [],
19 | };
20 | export default config;
21 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "lib": ["dom", "dom.iterable", "esnext"],
4 | "allowJs": true,
5 | "skipLibCheck": true,
6 | "strict": true,
7 | "noEmit": true,
8 | "esModuleInterop": true,
9 | "module": "esnext",
10 | "moduleResolution": "bundler",
11 | "resolveJsonModule": true,
12 | "isolatedModules": true,
13 | "jsx": "preserve",
14 | "incremental": true,
15 | "plugins": [
16 | {
17 | "name": "next"
18 | }
19 | ],
20 | "paths": {
21 | "@/*": ["./*"]
22 | }
23 | },
24 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
25 | "exclude": ["node_modules"]
26 | }
27 |
--------------------------------------------------------------------------------