= (e) => e.preventDefault()
7 |
--------------------------------------------------------------------------------
/src/component.tsx:
--------------------------------------------------------------------------------
1 | import type { PropsWithChildren } from 'react'
2 |
3 | export const Button = ({ children }: PropsWithChildren) => (
4 |
5 | {children}
6 |
7 | )
8 |
--------------------------------------------------------------------------------
/src/global.d.ts:
--------------------------------------------------------------------------------
1 | import type { FC, PropsWithChildren } from 'react'
2 |
3 | declare global {
4 | export type Component = FC
5 | export type ComponentType = {
6 | className?: string
7 | } & PropsWithChildren &
8 | P
9 | }
10 | export {}
11 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import type { Config } from 'tailwindcss'
2 |
3 | const twConfig: Config = {
4 | content: ['./src/**/*.{js,jsx,ts,tsx}'],
5 | darkMode: ['class', '[data-theme="dark"]'],
6 | corePlugins: {
7 | preflight: false,
8 | },
9 | }
10 | export default twConfig
11 |
--------------------------------------------------------------------------------
/demo/lib/fonts.ts:
--------------------------------------------------------------------------------
1 | import { JetBrains_Mono as FontMono, Inter as FontSans } from "next/font/google"
2 |
3 | export const fontSans = FontSans({
4 | subsets: ["latin"],
5 | variable: "--font-sans",
6 | })
7 |
8 | export const fontMono = FontMono({
9 | subsets: ["latin"],
10 | variable: "--font-mono",
11 | })
12 |
--------------------------------------------------------------------------------
/demo/app/index.css:
--------------------------------------------------------------------------------
1 | .prose {
2 | @apply !w-full !max-w-full;
3 |
4 | h1 {
5 | @apply text-2xl font-bold;
6 | }
7 |
8 | h2 {
9 | @apply text-xl font-semibold;
10 | }
11 |
12 | h3,
13 | h4 {
14 | @apply text-lg font-medium;
15 | }
16 |
17 | code {
18 | @apply !font-mono font-bold;
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/demo/app/(mdx)/layout.tsx:
--------------------------------------------------------------------------------
1 | /* eslint-disable react/display-name */
2 | /* eslint-disable import/no-anonymous-default-export */
3 |
4 | import type { PropsWithChildren } from "react"
5 |
6 | export default ({ children }: PropsWithChildren) => (
7 | <>
8 |
{children}
9 | >
10 | )
11 |
--------------------------------------------------------------------------------
/demo/components.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://ui.shadcn.com/schema.json",
3 | "style": "default",
4 | "tailwind": {
5 | "config": "tailwind.config.js",
6 | "css": "app/globals.css",
7 | "baseColor": "slate",
8 | "cssVariables": true
9 | },
10 | "rsc": false,
11 | "aliases": {
12 | "utils": "@/lib/utils",
13 | "components": "@/components"
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/demo/components/theme-provider.tsx:
--------------------------------------------------------------------------------
1 | "use client"
2 |
3 | import * as React from "react"
4 | import { ThemeProvider as NextThemesProvider } from "next-themes"
5 | import { type ThemeProviderProps } from "next-themes/dist/types"
6 |
7 | export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
8 | return {children}
9 | }
10 |
--------------------------------------------------------------------------------
/demo/config/site.ts:
--------------------------------------------------------------------------------
1 | export type SiteConfig = typeof siteConfig
2 |
3 | export const siteConfig = {
4 | name: "React Tw Component",
5 | description:
6 | "Beautifully designed React Component built with Radix UI and Tailwind CSS.",
7 | mainNav: [],
8 | links: {
9 | twitter: "https://twitter.com/__oQuery",
10 | github: "https://github.com/innei-template/rc-library-template",
11 | docs: "https://ui.shadcn.com",
12 | },
13 | }
14 |
--------------------------------------------------------------------------------
/renovate.json:
--------------------------------------------------------------------------------
1 | {
2 | "enabled": false,
3 | "extends": [
4 | "config:base",
5 | ":semanticCommits",
6 | ":automergePatch",
7 | ":automergeTypes",
8 | ":automergeTesters",
9 | ":automergeLinters",
10 | ":automergeMinor",
11 | ":rebaseStalePrs"
12 | ],
13 | "packageRules": [
14 | {
15 | "updateTypes": [
16 | "major"
17 | ],
18 | "labels": [
19 | "UPDATE-MAJOR"
20 | ]
21 | }
22 | ]
23 | }
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: Release
2 |
3 | on:
4 | push:
5 | tags:
6 | - 'v*'
7 |
8 | jobs:
9 | release:
10 | runs-on: ubuntu-latest
11 | steps:
12 | - uses: actions/checkout@v3
13 | with:
14 | fetch-depth: 0
15 |
16 | - uses: actions/setup-node@v3
17 | with:
18 | node-version: 18.x
19 |
20 | - run: npx changelogithub # or changelogithub@0.12 if ensure the stable result
21 | env:
22 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
23 |
--------------------------------------------------------------------------------
/demo/next.config.mjs:
--------------------------------------------------------------------------------
1 | import withMDX from "@next/mdx"
2 | import remarkFrontmatter from "remark-frontmatter"
3 | import remarkGfm from "remark-gfm"
4 | import remarkMdxFrontmatter from "remark-mdx-frontmatter"
5 |
6 | /** @type {import('next').NextConfig} */
7 | const nextConfig = {
8 | reactStrictMode: false,
9 | pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
10 | }
11 |
12 | export default withMDX({
13 | options: {
14 | remarkPlugins: [remarkFrontmatter, remarkMdxFrontmatter, remarkGfm],
15 | },
16 | })(nextConfig)
17 |
--------------------------------------------------------------------------------
/demo/.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 |
8 | # testing
9 | coverage
10 |
11 | # next.js
12 | .next/
13 | out/
14 | build
15 |
16 | # misc
17 | .DS_Store
18 | *.pem
19 |
20 | # debug
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 | .pnpm-debug.log*
25 |
26 | # local env files
27 | .env.local
28 | .env.development.local
29 | .env.test.local
30 | .env.production.local
31 |
32 | # turbo
33 | .turbo
34 |
35 | .contentlayer
36 | .env
--------------------------------------------------------------------------------
/demo/README.md:
--------------------------------------------------------------------------------
1 | # next-template
2 |
3 | A Next.js 13 template for building apps with Radix UI and Tailwind CSS.
4 |
5 | ## Usage
6 |
7 | ```bash
8 | npx create-next-app -e https://github.com/shadcn/next-template
9 | ```
10 |
11 | ## Features
12 |
13 | - Next.js 13 App Directory
14 | - Radix UI Primitives
15 | - Tailwind CSS
16 | - Icons from [Lucide](https://lucide.dev)
17 | - Dark mode with `next-themes`
18 | - Tailwind CSS class sorting, merging and linting.
19 |
20 | ## License
21 |
22 | Licensed under the [MIT license](https://github.com/shadcn/ui/blob/main/LICENSE.md).
23 |
--------------------------------------------------------------------------------
/demo/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/demo/components/layout/sidebar.tsx:
--------------------------------------------------------------------------------
1 | import { buildFsTree } from "@/lib/fs"
2 |
3 | import { LeftAsideLink } from "./LeftAsideLink"
4 |
5 | export const LeftAside = async ({ asWeight }: { asWeight?: boolean }) => {
6 | const tree = buildFsTree()
7 |
8 | return (
9 |
20 | )
21 | }
22 |
--------------------------------------------------------------------------------
/demo/components/theme-toggle.tsx:
--------------------------------------------------------------------------------
1 | "use client"
2 |
3 | import * as React from "react"
4 | import { Moon, Sun } from "lucide-react"
5 | import { useTheme } from "next-themes"
6 |
7 | import { Button } from "@/components/ui/button"
8 |
9 | export function ThemeToggle() {
10 | const { setTheme, theme } = useTheme()
11 |
12 | return (
13 |
22 | )
23 | }
24 |
--------------------------------------------------------------------------------
/demo/components/layout/LeftAsideLink.tsx:
--------------------------------------------------------------------------------
1 | "use client"
2 |
3 | import { memo } from "react"
4 | import Link from "next/link"
5 | import { usePathname } from "next/navigation"
6 | import { clsxm } from "~/lib/helper"
7 |
8 | export const LeftAsideLink = memo(
9 | ({ title, path }: { title: string; path: string }) => {
10 | const pathname = usePathname()
11 |
12 | return (
13 |
21 | {title}
22 |
23 | )
24 | }
25 | )
26 |
27 | LeftAsideLink.displayName = "LeftAsideLink"
28 |
--------------------------------------------------------------------------------
/demo/mdx-components.tsx:
--------------------------------------------------------------------------------
1 | import type { MDXComponents } from "mdx/types"
2 | import { getHighlighter } from "shiki"
3 |
4 | const highlighter = await getHighlighter({
5 | themes: ["github-dark"],
6 | langs: ["javascript", "typescript", "json", "jsx", "tsx", "shell"],
7 | })
8 |
9 | export function useMDXComponents(components: MDXComponents): MDXComponents {
10 | return {
11 | ...components,
12 | pre: (props) => {
13 | const language =
14 | (props.children as any).props.className?.replace(/language-/, "") ||
15 | "text"
16 |
17 | const rawCode = (props.children as any).props.children
18 | return (
19 |
27 | )
28 | },
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/demo/app/hero.tsx:
--------------------------------------------------------------------------------
1 | import { Button, buttonVariants } from "@/components/ui/button"
2 |
3 | export const Hero = () => {
4 | return (
5 |
6 |
7 |
8 |
9 | Beautifully designed React Component{" "}
10 |
11 | built with Radix UI and Tailwind CSS.
12 |
13 |
14 | A demo page.
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | )
23 | }
24 |
--------------------------------------------------------------------------------
/demo/prettier.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('prettier').Config} */
2 | module.exports = {
3 | endOfLine: "lf",
4 | semi: false,
5 | singleQuote: false,
6 | tabWidth: 2,
7 | trailingComma: "es5",
8 | importOrder: [
9 | "^(react/(.*)$)|^(react$)",
10 | "^(next/(.*)$)|^(next$)",
11 | "",
12 | "",
13 | "^types$",
14 | "^@/types/(.*)$",
15 | "^@/config/(.*)$",
16 | "^@/lib/(.*)$",
17 | "^@/hooks/(.*)$",
18 | "^@/components/ui/(.*)$",
19 | "^@/components/(.*)$",
20 | "^@/styles/(.*)$",
21 | "^@/app/(.*)$",
22 | "",
23 | "^[./]",
24 | ],
25 | importOrderSeparation: false,
26 | importOrderSortSpecifiers: true,
27 | importOrderBuiltinModulesToTop: true,
28 | importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"],
29 | importOrderMergeDuplicateImports: true,
30 | importOrderCombineTypeAndValueImports: true,
31 | plugins: ["@ianvs/prettier-plugin-sort-imports"],
32 | }
33 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "declaration": true,
4 | "baseUrl": "./src",
5 | "rootDir": "./src",
6 | "outDir": "/tmp",
7 | "jsx": "preserve",
8 | "target": "ES2020",
9 | "lib": [
10 | "ESNext",
11 | "DOM",
12 | "DOM.Iterable"
13 | ],
14 | "module": "ES2022",
15 | "moduleResolution": "Bundler",
16 | "strict": true,
17 | "resolveJsonModule": true,
18 | "esModuleInterop": true,
19 | "skipLibCheck": true,
20 | "forceConsistentCasingInFileNames": true,
21 | "sourceMap": true,
22 | "types": [
23 | "vite/client",
24 | "vitest/globals"
25 | ],
26 | "paths": {
27 | "~/*": [
28 | "*"
29 | ]
30 | }
31 | },
32 | "exclude": [
33 | "esm/*",
34 | "build/*",
35 | "node_modules/*",
36 | "lib/*",
37 | "example/*",
38 | "vitest.config.ts",
39 | "vite.config.ts",
40 | "tailwind.config.ts",
41 | "demo/*"
42 | ]
43 | }
--------------------------------------------------------------------------------
/demo/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/eslintrc",
3 | "root": true,
4 | "extends": [
5 | "next/core-web-vitals",
6 | "prettier",
7 | "plugin:tailwindcss/recommended"
8 | ],
9 | "plugins": [
10 | "tailwindcss"
11 | ],
12 | "rules": {
13 | "@next/next/no-html-link-for-pages": "off",
14 | "react/jsx-key": "off",
15 | "tailwindcss/no-custom-classname": "off",
16 | "@next/next/google-font-display": 0,
17 | "@next/next/google-font-preconnect": 0,
18 | "@next/next/no-page-custom-font": 0
19 | },
20 | "settings": {
21 | "tailwindcss": {
22 | "callees": [
23 | "cn"
24 | ],
25 | "config": "tailwind.config.js"
26 | },
27 | "next": {
28 | "rootDir": [
29 | "./"
30 | ]
31 | }
32 | },
33 | "overrides": [
34 | {
35 | "files": [
36 | "*.ts",
37 | "*.tsx"
38 | ],
39 | "parser": "@typescript-eslint/parser"
40 | }
41 | ]
42 | }
--------------------------------------------------------------------------------
/demo/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "lib": [
4 | "dom",
5 | "dom.iterable",
6 | "esnext"
7 | ],
8 | "allowJs": true,
9 | "skipLibCheck": true,
10 | "strict": true,
11 | "forceConsistentCasingInFileNames": true,
12 | "noEmit": true,
13 | "incremental": true,
14 | "esModuleInterop": true,
15 | "module": "esnext",
16 | "moduleResolution": "Bundler",
17 | "resolveJsonModule": true,
18 | "target": "ES2022",
19 | "isolatedModules": true,
20 | "jsx": "preserve",
21 | "baseUrl": ".",
22 | "paths": {
23 | "@/*": [
24 | "./*"
25 | ],
26 | "~/*": [
27 | "../src/*"
28 | ],
29 | "~": [
30 | "../src"
31 | ]
32 | },
33 | "plugins": [
34 | {
35 | "name": "next"
36 | }
37 | ],
38 | "strictNullChecks": true
39 | },
40 | "include": [
41 | "next-env.d.ts",
42 | "**/*.ts",
43 | "**/*.tsx",
44 | ".next/types/**/*.ts"
45 | ],
46 | "exclude": [
47 | "node_modules"
48 | ]
49 | }
--------------------------------------------------------------------------------
/readme.zh.md:
--------------------------------------------------------------------------------
1 | # React Component TailwindCSS + Next.js Template
2 |
3 | 这是一个用于快速搭建 React 组件的模板,使用了 TailwindCSS 描述组件 和 Next.js 搭建示例站点。
4 |
5 | ## 快速开始
6 |
7 | 你可以直接 Fork 或者 使用此模板。
8 |
9 | 然后,你需要更换 包的名称,这个取决你的组件是什么。
10 |
11 | **你需要在项目中全局的替换 `rc-template` 到 你的更换的包名。**
12 |
13 | 在 `demo` 目录中,这是一个示例站点,你可以在这个站点中测试你的组件并且编写组件的文档。
14 |
15 | ## 使用 TailwindCSS
16 |
17 | 组件使用 TailwindCSS 去描述,那么在使用你开发的组件时会存在两种情况。
18 |
19 | 第一种,项目使用了 TailwindCSS,那么,你需要告诉使用方,在 `tailwind.config.js` 中添加组件库的文件目录。
20 |
21 | ```js
22 | // tailwind.config.js
23 |
24 | module.exports = {
25 | content: [
26 | 'app/**/*.{ts,tsx}',
27 | 'components/**/*.{ts,tsx}',
28 | './node_modules//dist/*.js', // 添加这里
29 | ],
30 | }
31 | ```
32 |
33 | 第二种,项目没有使用 TailwindCSS,那么你需要告诉使用方,需要在项目中引入打包后的 css 文件。
34 |
35 | ```js
36 | import '/dist/index.css'
37 | ```
38 |
39 | 或者
40 |
41 | ```css
42 | @import '/dist/index.css';
43 | ```
44 |
45 | ## License
46 |
47 | 2024 © Innei, Released under the MIT License.
48 |
49 | > [Personal Website](https://innei.ren/) · GitHub [@Innei](https://github.com/innei/)
50 |
--------------------------------------------------------------------------------
/demo/public/thirteen.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/demo/lib/fs.ts:
--------------------------------------------------------------------------------
1 | import { readFileSync } from "fs"
2 | import { resolve } from "path"
3 |
4 | import { extractFirstHeadingText, parseYamlFrontMatterSync } from "@/lib/remark"
5 |
6 | interface Tree {
7 | to: string
8 | title: string
9 | order: number
10 | }
11 |
12 | export const buildFsTree = () => {
13 | const filePaths = (
14 | require
15 | // @ts-expect-error
16 | .context("../app/(mdx)/", true, /\.mdx$/)
17 | .keys() as string[]
18 | ).filter((path) => path.startsWith("./"))
19 |
20 | // [ './guide/install/page.mdx', 'app/(mdx)/guide/install/page.mdx' ]
21 |
22 | const tree = [] as Tree[]
23 | for (let filePath of filePaths) {
24 | const path = filePath
25 | .split("/")
26 | .slice(1, -1)
27 | .join("/")
28 | .replace(/\.mdx$/, "")
29 | // const depth = path.split("/").length
30 |
31 | const fileContent = readFileSync(
32 | resolve(process.cwd(), `app/(mdx)/${filePath}`),
33 | "utf-8"
34 | )
35 | const yaml = parseYamlFrontMatterSync(fileContent)
36 | const title = extractFirstHeadingText(fileContent)
37 |
38 | // console.log({ path: `/${path}`, title, depth })
39 | tree.push({ to: `/${path}`, title: title || "", order: yaml.order })
40 | }
41 |
42 | return tree.sort((a, b) => a.order - b.order)
43 | }
44 |
--------------------------------------------------------------------------------
/demo/components/main-nav.tsx:
--------------------------------------------------------------------------------
1 | import * as React from "react"
2 | import Link from "next/link"
3 |
4 | import { NavItem } from "@/types/nav"
5 | import { siteConfig } from "@/config/site"
6 | import { cn } from "@/lib/utils"
7 | import { Icons } from "@/components/icons"
8 |
9 | interface MainNavProps {
10 | items?: NavItem[]
11 | }
12 |
13 | export function MainNav({ items }: MainNavProps) {
14 | return (
15 |
16 |
17 |
18 | {siteConfig.name}
19 |
20 | {items?.length ? (
21 |
38 | ) : null}
39 |
40 | )
41 | }
42 |
--------------------------------------------------------------------------------
/demo/public/next.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.github/workflows/build.yml:
--------------------------------------------------------------------------------
1 | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3 |
4 | name: Node.js CI
5 |
6 | on:
7 | push:
8 | branches:
9 | - '**'
10 | pull_request:
11 | branches: [master, main]
12 |
13 | jobs:
14 | build:
15 | runs-on: ubuntu-latest
16 |
17 | strategy:
18 | matrix:
19 | node-version: [18.x]
20 |
21 | steps:
22 | - uses: actions/checkout@v2
23 | - name: Use Node.js ${{ matrix.node-version }}
24 | uses: actions/setup-node@v2
25 | with:
26 | node-version: ${{ matrix.node-version }}
27 | - name: Cache pnpm modules
28 | uses: actions/cache@v2
29 | env:
30 | cache-name: cache-pnpm-modules
31 | with:
32 | path: ~/.pnpm-store
33 | key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
34 | restore-keys: |
35 | ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
36 |
37 | - uses: pnpm/action-setup@v2.0.1
38 | with:
39 | version: 8.x.x
40 | run_install: true
41 | - run: pnpm run build
42 | env:
43 | CI: true
44 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { readFileSync, writeFileSync } from 'fs'
2 | import { resolve } from 'path'
3 | import react from '@vitejs/plugin-react'
4 | import { preserveDirectives } from 'rollup-plugin-preserve-directives'
5 | import { defineConfig } from 'vite'
6 | import dts from 'vite-plugin-dts'
7 |
8 | const packageJson = JSON.parse(
9 | readFileSync('./package.json', { encoding: 'utf-8' }),
10 | )
11 |
12 | const globals = {
13 | // @ts-ignore
14 | ...(packageJson?.dependencies || {}),
15 | }
16 | export default defineConfig({
17 | plugins: [
18 | react(),
19 | dts({
20 | // rollupTypes: true,
21 | beforeWriteFile: (filePath, content) => {
22 | writeFileSync(filePath.replace('.d.ts', '.d.cts'), content)
23 | return { filePath, content }
24 | },
25 | }),
26 | ],
27 | resolve: {
28 | alias: {
29 | '~': resolve(__dirname, './src'),
30 | },
31 | },
32 | build: {
33 | lib: {
34 | entry: [
35 | resolve(__dirname, 'src/index.ts'),
36 | resolve(__dirname, 'src/helper.ts'),
37 | ],
38 | formats: ['cjs', 'es'],
39 | },
40 |
41 | rollupOptions: {
42 | external: [
43 | 'react',
44 | 'react-dom',
45 | 'lodash',
46 | 'lodash-es',
47 | 'react/jsx-runtime',
48 | ...Object.keys(globals),
49 | ],
50 | output: {
51 | preserveModules: true,
52 | },
53 | plugins: [preserveDirectives({})],
54 | },
55 | },
56 | })
57 |
--------------------------------------------------------------------------------
/demo/lib/remark.ts:
--------------------------------------------------------------------------------
1 | import yaml from "js-yaml"
2 | import remarkParse from "remark-parse"
3 | import { unified } from "unified"
4 | import { EXIT, visit } from "unist-util-visit"
5 |
6 | // 定义函数以提取第一个一级标题的纯文字内容
7 | export function extractFirstHeadingText(markdown: string): string | null {
8 | const processor = unified().use(remarkParse)
9 | const file = processor.parse(markdown)
10 |
11 | let headingText: string | null = null
12 |
13 | // 遍历 AST,寻找第一个一级标题
14 | visit(file, "heading", (node) => {
15 | if (node.depth === 1 && headingText === null) {
16 | // 提取纯文字内容
17 | headingText = node.children
18 | .map((child) => ("value" in child ? child.value : ""))
19 | .join("")
20 | return EXIT
21 | }
22 | })
23 |
24 | return headingText
25 | }
26 |
27 | // 定义函数以同步解析 Markdown 文件顶部的 YAML Front Matter
28 | const yamlFrontMatterRegex = /^---\s*\n([\s\S]+?)\n?---\s*\n?/m
29 | export function parseYamlFrontMatterSync(
30 | markdown: string
31 | ): Record {
32 | // 尝试查找 Markdown 中的第一个 YAML Front Matter 区块
33 | const match = yamlFrontMatterRegex.exec(markdown)
34 |
35 | if (match) {
36 | // 尝试解析找到的 YAML 内容
37 | try {
38 | const yamlContent = yaml.load(match[1].replace(/---/g, "")) as object
39 | // console.log('match', match[1].replace(/---/g, ''), yamlContent)
40 | return yamlContent
41 | } catch (error) {
42 | console.error("YAML parsing error:", error, match)
43 | return {}
44 | }
45 | }
46 |
47 | return {}
48 | }
49 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # React Component TailwindCSS + Next.js Template
2 |
3 | This is a template for quickly building React components library, using TailwindCSS to describe components UI and Next.js to build example sites.
4 |
5 | ## Quick Start
6 |
7 | You can directly Fork or use this template.
8 |
9 | Then, you need to change the package name, depending on what your component is.
10 |
11 | **You need to globally replace `rc-template` with your new package name in the project.**
12 |
13 | In the `demo` directory, there is an example site where you can test your component and write documentation for it.
14 |
15 | ## Using TailwindCSS
16 |
17 | The component uses TailwindCSS for description, so there are two scenarios when using the component you developed.
18 |
19 | First, if the project uses TailwindCSS, then you need to tell the user to add the component library's file directory in `tailwind.config.js`.
20 |
21 | ```js
22 | // tailwind.config.js
23 |
24 | module.exports = {
25 | content: [
26 | 'app/**/*.{ts,tsx}',
27 | 'components/**/*.{ts,tsx}',
28 | './node_modules//dist/*.js', // Add here
29 | ],
30 | }
31 | ```
32 |
33 | Second, if the project does not use TailwindCSS, then you need to tell the user that they need to import the compiled css file into the project.
34 |
35 | ```js
36 | import '/dist/index.css'
37 | ```
38 |
39 | or
40 |
41 | ```css
42 | @import '/dist/index.css';
43 | ```
44 |
45 | ## License
46 |
47 | 2024 © Innei, Released under the MIT License.
48 |
49 | > [Personal Website](https://innei.ren/) · GitHub [@Innei](https://github.com/innei/)
--------------------------------------------------------------------------------
/demo/components/site-header.tsx:
--------------------------------------------------------------------------------
1 | import Link from "next/link"
2 |
3 | import { siteConfig } from "@/config/site"
4 | import { buttonVariants } from "@/components/ui/button"
5 | import { Icons } from "@/components/icons"
6 | import { MainNav } from "@/components/main-nav"
7 | import { ThemeToggle } from "@/components/theme-toggle"
8 |
9 | export function SiteHeader() {
10 | return (
11 |
12 |
13 |
14 |
15 |
48 |
49 |
50 |
51 | )
52 | }
53 |
--------------------------------------------------------------------------------
/demo/styles/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | @layer base {
6 | :root {
7 | --background: 0 0% 100%;
8 | --foreground: 222.2 47.4% 11.2%;
9 |
10 | --muted: 210 40% 96.1%;
11 | --muted-foreground: 215.4 16.3% 46.9%;
12 |
13 | --popover: 0 0% 100%;
14 | --popover-foreground: 222.2 47.4% 11.2%;
15 |
16 | --border: 214.3 31.8% 91.4%;
17 | --input: 214.3 31.8% 91.4%;
18 |
19 | --card: 0 0% 100%;
20 | --card-foreground: 222.2 47.4% 11.2%;
21 |
22 | --primary: 222.2 47.4% 11.2%;
23 | --primary-foreground: 210 40% 98%;
24 |
25 | --secondary: 210 40% 96.1%;
26 | --secondary-foreground: 222.2 47.4% 11.2%;
27 |
28 | --accent: 210 40% 96.1%;
29 | --accent-foreground: 222.2 47.4% 11.2%;
30 |
31 | --destructive: 0 100% 50%;
32 | --destructive-foreground: 210 40% 98%;
33 |
34 | --ring: 215 20.2% 65.1%;
35 |
36 | --radius: 0.5rem;
37 | }
38 |
39 | [data-theme="dark"] {
40 | --background: 224 71% 4%;
41 | --foreground: 213 31% 91%;
42 |
43 | --muted: 223 47% 11%;
44 | --muted-foreground: 215.4 16.3% 56.9%;
45 |
46 | --accent: 216 34% 17%;
47 | --accent-foreground: 210 40% 98%;
48 |
49 | --popover: 224 71% 4%;
50 | --popover-foreground: 215 20.2% 65.1%;
51 |
52 | --border: 216 34% 17%;
53 | --input: 216 34% 17%;
54 |
55 | --card: 224 71% 4%;
56 | --card-foreground: 213 31% 91%;
57 |
58 | --primary: 210 40% 98%;
59 | --primary-foreground: 222.2 47.4% 1.2%;
60 |
61 | --secondary: 222.2 47.4% 11.2%;
62 | --secondary-foreground: 210 40% 98%;
63 |
64 | --destructive: 0 63% 31%;
65 | --destructive-foreground: 210 40% 98%;
66 |
67 | --ring: 216 34% 17%;
68 |
69 | --radius: 0.5rem;
70 | }
71 | }
72 |
73 | @layer base {
74 | * {
75 | @apply border-border;
76 | }
77 | body {
78 | @apply bg-background text-foreground;
79 | font-feature-settings: "rlig" 1, "calt" 1;
80 | }
81 | }
82 |
--------------------------------------------------------------------------------
/demo/components/ui/button.tsx:
--------------------------------------------------------------------------------
1 | import * as React from "react"
2 | import { Slot } from "@radix-ui/react-slot"
3 | import { cva, type VariantProps } from "class-variance-authority"
4 |
5 | import { cn } from "@/lib/utils"
6 |
7 | const buttonVariants = cva(
8 | "inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background",
9 | {
10 | variants: {
11 | variant: {
12 | default: "bg-primary text-primary-foreground hover:bg-primary/90",
13 | destructive:
14 | "bg-destructive text-destructive-foreground hover:bg-destructive/90",
15 | outline:
16 | "border border-input hover:bg-accent hover:text-accent-foreground",
17 | secondary:
18 | "bg-secondary text-secondary-foreground hover:bg-secondary/80",
19 | ghost: "hover:bg-accent hover:text-accent-foreground",
20 | link: "underline-offset-4 hover:underline text-primary",
21 | },
22 | size: {
23 | default: "h-10 py-2 px-4",
24 | sm: "h-9 px-3 rounded-md",
25 | lg: "h-11 px-8 rounded-md",
26 | icon: "h-10 w-10",
27 | },
28 | },
29 | defaultVariants: {
30 | variant: "default",
31 | size: "default",
32 | },
33 | }
34 | )
35 |
36 | export interface ButtonProps
37 | extends React.ButtonHTMLAttributes,
38 | VariantProps {
39 | asChild?: boolean
40 | }
41 |
42 | const Button = React.forwardRef(
43 | ({ className, variant, size, asChild = false, ...props }, ref) => {
44 | const Comp = asChild ? Slot : "button"
45 | return (
46 |
51 | )
52 | }
53 | )
54 | Button.displayName = "Button"
55 |
56 | export { Button, buttonVariants }
57 |
--------------------------------------------------------------------------------
/demo/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "next-template",
3 | "version": "0.0.2",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint",
10 | "lint:fix": "next lint --fix",
11 | "preview": "next build && next start",
12 | "typecheck": "tsc --noEmit",
13 | "format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
14 | "format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache"
15 | },
16 | "dependencies": {
17 | "@mdx-js/loader": "3.0.1",
18 | "@mdx-js/react": "3.0.1",
19 | "@next/mdx": "14.1.3",
20 | "@radix-ui/react-dialog": "^1",
21 | "@radix-ui/react-slot": "^1.0.2",
22 | "@types/mdx": "2.0.11",
23 | "class-variance-authority": "^0.7.0",
24 | "clsx": "^2.1.0",
25 | "framer-motion": "^11.0.14",
26 | "js-yaml": "4.1.0",
27 | "lucide-react": "0.358.0",
28 | "next": "^14",
29 | "next-themes": "^0.3.0",
30 | "rc-modal-sheet": "0.2.0-alpha.2",
31 | "rc-template": "workspace:*",
32 | "react": "^18.2.0",
33 | "react-dom": "^18.2.0",
34 | "remark-frontmatter": "5.0.0",
35 | "remark-mdx-frontmatter": "4.0.0",
36 | "sharp": "^0.33.2",
37 | "shiki": "1.2.0",
38 | "tailwind-merge": "^2.2.1",
39 | "tailwindcss-animate": "^1.0.6",
40 | "vaul": "^0.9.0"
41 | },
42 | "devDependencies": {
43 | "@ianvs/prettier-plugin-sort-imports": "^4.2.0",
44 | "@tailwindcss/typography": "0.5.10",
45 | "@types/node": "^20.11.28",
46 | "@types/react": "^18.2.66",
47 | "@types/react-dom": "^18.2.6",
48 | "@typescript-eslint/parser": "^7.2.0",
49 | "autoprefixer": "^10.4.14",
50 | "eslint": "^8.44.0",
51 | "eslint-config-next": "14.1.3",
52 | "eslint-config-prettier": "^9.1.0",
53 | "eslint-plugin-react": "^7.34.1",
54 | "eslint-plugin-tailwindcss": "^3.13.0",
55 | "postcss": "^8.4.24",
56 | "prettier": "^3.2.5",
57 | "remark-gfm": "4.0.0",
58 | "remark-parse": "11.0.0",
59 | "tailwindcss": "^3.3.2",
60 | "typescript": "^5.4.2",
61 | "unified": "11.0.4",
62 | "unist-util-visit": "5.0.0"
63 | }
64 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | tags
2 | node_modules
3 | /node_modules
4 | .DS_Store
5 | # Logs
6 | logs
7 | *.log
8 | npm-debug.log*
9 | yarn-debug.log*
10 | yarn-error.log*
11 | lerna-debug.log*
12 |
13 | # Diagnostic reports (https://nodejs.org/api/report.html)
14 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15 |
16 | # Runtime data
17 | pids
18 | *.pid
19 | *.seed
20 | *.pid.lock
21 |
22 | # Directory for instrumented libs generated by jscoverage/JSCover
23 | lib-cov
24 |
25 | # Coverage directory used by tools like istanbul
26 | coverage
27 | *.lcov
28 |
29 | # nyc test coverage
30 | .nyc_output
31 |
32 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33 | .grunt
34 |
35 | # Bower dependency directory (https://bower.io/)
36 | bower_components
37 |
38 | # node-waf configuration
39 | .lock-wscript
40 |
41 | # Compiled binary addons (https://nodejs.org/api/addons.html)
42 | build/Release
43 |
44 | # Dependency directories
45 | node_modules/
46 | jspm_packages/
47 |
48 | # Snowpack dependency directory (https://snowpack.dev/)
49 | web_modules/
50 |
51 | # TypeScript cache
52 | *.tsbuildinfo
53 |
54 | # Optional npm cache directory
55 | .npm
56 |
57 | # Optional eslint cache
58 | .eslintcache
59 |
60 | # Microbundle cache
61 | .rpt2_cache/
62 | .rts2_cache_cjs/
63 | .rts2_cache_es/
64 | .rts2_cache_umd/
65 |
66 | # Optional REPL history
67 | .node_repl_history
68 |
69 | # Output of 'npm pack'
70 | *.tgz
71 |
72 | # Yarn Integrity file
73 | .yarn-integrity
74 |
75 | # parcel-bundler cache (https://parceljs.org/)
76 | .cache
77 | .parcel-cache
78 |
79 | # Next.js build output
80 | .next
81 |
82 | # Nuxt.js build / generate output
83 | .nuxt
84 |
85 | # Gatsby files
86 | .cache/
87 |
88 | # vuepress build output
89 | .vuepress/dist
90 |
91 | # Serverless directories
92 | .serverless/
93 |
94 | # FuseBox cache
95 | .fusebox/
96 |
97 | # DynamoDB Local files
98 | .dynamodb/
99 |
100 | # TernJS port file
101 | .tern-port
102 |
103 | # Stores VSCode versions used for testing VSCode extensions
104 | .vscode-test
105 |
106 | # yarn v2
107 |
108 | .yarn/cache
109 | .yarn/unplugged
110 | .yarn/build-state.yml
111 | .pnp.*
112 |
113 | # vim
114 | ctag
115 | /tags
116 | .undodir
117 |
118 | # idea
119 | # .idea/*
120 |
121 | /dist
122 | /publish
123 | /build
124 | /lib
125 | /esm
126 | /types
127 |
128 | example/dist
129 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "rc-template",
3 | "version": "0.0.3",
4 | "description": "TODO",
5 | "author": "Innei",
6 | "license": "MIT",
7 | "repository": {
8 | "type": "git",
9 | "url": "https://github.com/innei-template/rc-library-template"
10 | },
11 | "type": "module",
12 | "main": "./src/index.ts",
13 | "exports": {
14 | ".": {
15 | "import": "./src/index.ts"
16 | },
17 | "./src/*": {
18 | "import": "./src/*"
19 | }
20 | },
21 | "files": [
22 | "dist",
23 | "readme.md",
24 | "tsconfig.json",
25 | "src"
26 | ],
27 | "publishConfig": {
28 | "main": "dist/index.cjs",
29 | "module": "dist/index.js",
30 | "types": "dist/index.d.ts",
31 | "exports": {
32 | ".": {
33 | "import": "./dist/index.js",
34 | "require": "./dist/index.cjs"
35 | },
36 | "./helper": {
37 | "import": "./dist/helper.js",
38 | "require": "./dist/helper.cjs"
39 | },
40 | "./*": [
41 | "./*",
42 | "./*.d.ts"
43 | ]
44 | }
45 | },
46 | "typesVersions": {
47 | "*": {
48 | "*": [
49 | "./dist/*",
50 | "./*"
51 | ]
52 | }
53 | },
54 | "husky": {
55 | "hooks": {
56 | "pre-commit": "lint-staged"
57 | }
58 | },
59 | "lint-staged": {
60 | "*.{js,jsx,ts,tsx}": [
61 | "prettier --ignore-path ./.prettierignore --write ",
62 | "eslint --cache"
63 | ]
64 | },
65 | "bump": {
66 | "before": [
67 | "npm run build"
68 | ],
69 | "publish": true,
70 | "changelog": true
71 | },
72 | "scripts": {
73 | "prebuild": "rm -rf lib && rm -rf esm",
74 | "build": "vite build && tailwindcss -i src/tw.css -o dist/index.css",
75 | "prepare": "husky install",
76 | "release": "bump",
77 | "dev": "vite build --watch"
78 | },
79 | "devDependencies": {
80 | "@innei/bump-version": "1.5.10",
81 | "@innei/eslint-config-react-ts": "0.12.4",
82 | "@innei/eslint-config-ts": "0.12.4",
83 | "@innei/prettier": "0.12.4",
84 | "@types/node": "20.11.28",
85 | "@types/react": "18.2.66",
86 | "@vitejs/plugin-react": "4.2.1",
87 | "husky": "9.0.11",
88 | "lint-staged": "15.2.2",
89 | "postcss": "8.4.35",
90 | "postcss-import": "16.0.1",
91 | "postcss-nested": "6.0.1",
92 | "prettier": "3.2.5",
93 | "react": "18.2.0",
94 | "rollup-plugin-preserve-directives": "0.4.0",
95 | "tailwindcss": "3.4.1",
96 | "tslib": "2.6.2",
97 | "typescript": "5.4.2",
98 | "vite": "5.1.6",
99 | "vite-plugin-dts": "3.7.3",
100 | "vite-tsconfig-paths": "4.3.2",
101 | "vitest": "1.4.0"
102 | },
103 | "peerDependencies": {
104 | "clsx": "*",
105 | "tailwind-merge": "^2"
106 | },
107 | "dependencies": {
108 | "clsx": "^2.1.0",
109 | "tailwind-merge": "^2.2.1"
110 | }
111 | }
--------------------------------------------------------------------------------
/demo/tailwind.config.js:
--------------------------------------------------------------------------------
1 | const { fontFamily } = require("tailwindcss/defaultTheme")
2 |
3 | /** @type {import('tailwindcss').Config} */
4 | module.exports = {
5 | darkMode: ["class", '[data-theme="dark"]'],
6 | content: [
7 | "app/**/*.{ts,tsx}",
8 | "components/**/*.{ts,tsx}",
9 | "./node_modules/rc-modal-sheet/**/*.js",
10 | ],
11 | theme: {
12 | container: {
13 | center: true,
14 | padding: "2rem",
15 | screens: {
16 | "2xl": "1400px",
17 | },
18 | },
19 | extend: {
20 | colors: {
21 | border: "hsl(var(--border))",
22 | input: "hsl(var(--input))",
23 | ring: "hsl(var(--ring))",
24 | background: "hsl(var(--background))",
25 | foreground: "hsl(var(--foreground))",
26 | primary: {
27 | DEFAULT: "hsl(var(--primary))",
28 | foreground: "hsl(var(--primary-foreground))",
29 | },
30 | secondary: {
31 | DEFAULT: "hsl(var(--secondary))",
32 | foreground: "hsl(var(--secondary-foreground))",
33 | },
34 | destructive: {
35 | DEFAULT: "hsl(var(--destructive))",
36 | foreground: "hsl(var(--destructive-foreground))",
37 | },
38 | muted: {
39 | DEFAULT: "hsl(var(--muted))",
40 | foreground: "hsl(var(--muted-foreground))",
41 | },
42 | accent: {
43 | DEFAULT: "hsl(var(--accent))",
44 | foreground: "hsl(var(--accent-foreground))",
45 | },
46 | popover: {
47 | DEFAULT: "hsl(var(--popover))",
48 | foreground: "hsl(var(--popover-foreground))",
49 | },
50 | card: {
51 | DEFAULT: "hsl(var(--card))",
52 | foreground: "hsl(var(--card-foreground))",
53 | },
54 | },
55 | borderRadius: {
56 | lg: `var(--radius)`,
57 | md: `calc(var(--radius) - 2px)`,
58 | sm: "calc(var(--radius) - 4px)",
59 | },
60 | fontFamily: {
61 | sans: ["var(--font-sans)", ...fontFamily.sans],
62 | },
63 | keyframes: {
64 | "accordion-down": {
65 | from: { height: 0 },
66 | to: { height: "var(--radix-accordion-content-height)" },
67 | },
68 | "accordion-up": {
69 | from: { height: "var(--radix-accordion-content-height)" },
70 | to: { height: 0 },
71 | },
72 | },
73 | animation: {
74 | "accordion-down": "accordion-down 0.2s ease-out",
75 | "accordion-up": "accordion-up 0.2s ease-out",
76 | },
77 | fontFamily: {
78 | sans: 'Manrope,system-ui,-apple-system,PingFang SC,"Microsoft YaHei",Segoe UI,Roboto,Helvetica,noto sans sc,hiragino sans gb,"sans-serif",Apple Color Emoji,Segoe UI Emoji,Not Color Emoji',
79 | serif:
80 | '"Noto Serif CJK SC","Noto Serif SC",var(--font-serif),"Source Han Serif SC","Source Han Serif",source-han-serif-sc,SongTi SC,SimSum,"Hiragino Sans GB",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,"Microsoft YaHei","WenQuanYi Micro Hei",sans-serif',
81 | mono: `"OperatorMonoSSmLig Nerd Font","Cascadia Code PL","FantasqueSansMono Nerd Font","operator mono",JetBrainsMono,"Fira code Retina","Fira code","Consolas", Monaco, "Hannotate SC", monospace, -apple-system`,
82 | },
83 | },
84 | },
85 | plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
86 | }
87 |
--------------------------------------------------------------------------------
/demo/components/icons.tsx:
--------------------------------------------------------------------------------
1 | import {
2 | LucideProps,
3 | Moon,
4 | SunMedium,
5 | Twitter,
6 | type Icon as LucideIcon,
7 | } from "lucide-react"
8 |
9 | export type Icon = LucideIcon
10 |
11 | export const Icons = {
12 | sun: SunMedium,
13 | moon: Moon,
14 | twitter: Twitter,
15 | logo: (props: LucideProps) => (
16 |
22 | ),
23 | gitHub: (props: LucideProps) => (
24 |
30 | ),
31 | }
32 |
--------------------------------------------------------------------------------
/demo/app/layout.tsx:
--------------------------------------------------------------------------------
1 | import "@/styles/globals.css"
2 |
3 | import { Metadata } from "next"
4 | import { clsxm } from "~/lib/helper"
5 | import { MobileDetector } from "rc-modal-sheet/mobile-detector"
6 | import { ModalStackContainer } from "rc-modal-sheet/motion"
7 |
8 | import "./index.css"
9 |
10 | import type { SVGProps } from "react"
11 | import Script from "next/script"
12 | import { PresentSheet } from "rc-modal-sheet"
13 |
14 | import { siteConfig } from "@/config/site"
15 | import { LeftAside } from "@/components/layout/sidebar"
16 | import { SiteHeader } from "@/components/site-header"
17 | import { ThemeProvider } from "@/components/theme-provider"
18 |
19 | import { Hero } from "./hero"
20 |
21 | export const metadata: Metadata = {
22 | title: {
23 | default: siteConfig.name,
24 | template: `%s - ${siteConfig.name}`,
25 | },
26 | description: siteConfig.description,
27 | themeColor: [
28 | { media: "(prefers-color-scheme: light)", color: "white" },
29 | { media: "(prefers-color-scheme: dark)", color: "black" },
30 | ],
31 | icons: {
32 | icon: "/favicon.ico",
33 | shortcut: "/favicon-16x16.png",
34 | apple: "/apple-touch-icon.png",
35 | },
36 | }
37 |
38 | interface RootLayoutProps {
39 | children: React.ReactNode
40 | }
41 |
42 | export default function RootLayout({ children }: RootLayoutProps) {
43 | return (
44 | <>
45 |
46 |
47 |
48 |
49 |
54 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
76 |
80 |
81 |
82 |
83 |
84 | {children}
85 |
86 |
87 |
}>
88 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 | >
101 | )
102 | }
103 |
104 | function MaterialSymbolsMenuBookOutlineRounded(props: SVGProps) {
105 | return (
106 |
118 | )
119 | }
120 |
--------------------------------------------------------------------------------
/demo/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '6.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | dependencies:
8 | '@radix-ui/react-dialog':
9 | specifier: ^1
10 | version: 1.0.5(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
11 | '@radix-ui/react-slot':
12 | specifier: ^1.0.2
13 | version: 1.0.2(@types/react@18.2.65)(react@18.2.0)
14 | class-variance-authority:
15 | specifier: ^0.4.0
16 | version: 0.4.0(typescript@4.9.5)
17 | clsx:
18 | specifier: ^1.2.1
19 | version: 1.2.1
20 | framer-motion:
21 | specifier: ^11
22 | version: 11.0.13(react-dom@18.2.0)(react@18.2.0)
23 | lucide-react:
24 | specifier: 0.105.0-alpha.4
25 | version: 0.105.0-alpha.4(react@18.2.0)
26 | next:
27 | specifier: ^14
28 | version: 14.1.3(@babel/core@7.24.0)(react-dom@18.2.0)(react@18.2.0)
29 | next-themes:
30 | specifier: ^0.2.1
31 | version: 0.2.1(next@14.1.3)(react-dom@18.2.0)(react@18.2.0)
32 | react:
33 | specifier: ^18.2.0
34 | version: 18.2.0
35 | react-dom:
36 | specifier: ^18.2.0
37 | version: 18.2.0(react@18.2.0)
38 | sharp:
39 | specifier: ^0.31.3
40 | version: 0.31.3
41 | tailwind-merge:
42 | specifier: ^1.13.2
43 | version: 1.14.0
44 | tailwindcss-animate:
45 | specifier: ^1.0.6
46 | version: 1.0.7(tailwindcss@3.4.1)
47 | vaul:
48 | specifier: ^0.9.0
49 | version: 0.9.0(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
50 |
51 | devDependencies:
52 | '@ianvs/prettier-plugin-sort-imports':
53 | specifier: ^3.7.2
54 | version: 3.7.2(prettier@2.8.8)
55 | '@types/node':
56 | specifier: ^17.0.45
57 | version: 17.0.45
58 | '@types/react':
59 | specifier: ^18.2.14
60 | version: 18.2.65
61 | '@types/react-dom':
62 | specifier: ^18.2.6
63 | version: 18.2.22
64 | '@typescript-eslint/parser':
65 | specifier: ^5.61.0
66 | version: 5.62.0(eslint@8.57.0)(typescript@4.9.5)
67 | autoprefixer:
68 | specifier: ^10.4.14
69 | version: 10.4.18(postcss@8.4.35)
70 | eslint:
71 | specifier: ^8.44.0
72 | version: 8.57.0
73 | eslint-config-next:
74 | specifier: 13.0.0
75 | version: 13.0.0(eslint@8.57.0)(typescript@4.9.5)
76 | eslint-config-prettier:
77 | specifier: ^8.8.0
78 | version: 8.10.0(eslint@8.57.0)
79 | eslint-plugin-react:
80 | specifier: ^7.32.2
81 | version: 7.34.0(eslint@8.57.0)
82 | eslint-plugin-tailwindcss:
83 | specifier: ^3.13.0
84 | version: 3.15.1(tailwindcss@3.4.1)
85 | postcss:
86 | specifier: ^8.4.24
87 | version: 8.4.35
88 | prettier:
89 | specifier: ^2.8.8
90 | version: 2.8.8
91 | tailwindcss:
92 | specifier: ^3.3.2
93 | version: 3.4.1
94 | typescript:
95 | specifier: ^4.9.5
96 | version: 4.9.5
97 |
98 | packages:
99 |
100 | /@aashutoshrathi/word-wrap@1.2.6:
101 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
102 | engines: {node: '>=0.10.0'}
103 | dev: true
104 |
105 | /@alloc/quick-lru@5.2.0:
106 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
107 | engines: {node: '>=10'}
108 |
109 | /@ampproject/remapping@2.3.0:
110 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
111 | engines: {node: '>=6.0.0'}
112 | dependencies:
113 | '@jridgewell/gen-mapping': 0.3.5
114 | '@jridgewell/trace-mapping': 0.3.25
115 |
116 | /@babel/code-frame@7.23.5:
117 | resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
118 | engines: {node: '>=6.9.0'}
119 | dependencies:
120 | '@babel/highlight': 7.23.4
121 | chalk: 2.4.2
122 |
123 | /@babel/compat-data@7.23.5:
124 | resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
125 | engines: {node: '>=6.9.0'}
126 |
127 | /@babel/core@7.24.0:
128 | resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
129 | engines: {node: '>=6.9.0'}
130 | dependencies:
131 | '@ampproject/remapping': 2.3.0
132 | '@babel/code-frame': 7.23.5
133 | '@babel/generator': 7.23.6
134 | '@babel/helper-compilation-targets': 7.23.6
135 | '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.0)
136 | '@babel/helpers': 7.24.0
137 | '@babel/parser': 7.24.0
138 | '@babel/template': 7.24.0
139 | '@babel/traverse': 7.24.0
140 | '@babel/types': 7.24.0
141 | convert-source-map: 2.0.0
142 | debug: 4.3.4
143 | gensync: 1.0.0-beta.2
144 | json5: 2.2.3
145 | semver: 6.3.1
146 | transitivePeerDependencies:
147 | - supports-color
148 |
149 | /@babel/generator@7.23.6:
150 | resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
151 | engines: {node: '>=6.9.0'}
152 | dependencies:
153 | '@babel/types': 7.24.0
154 | '@jridgewell/gen-mapping': 0.3.5
155 | '@jridgewell/trace-mapping': 0.3.25
156 | jsesc: 2.5.2
157 |
158 | /@babel/helper-compilation-targets@7.23.6:
159 | resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
160 | engines: {node: '>=6.9.0'}
161 | dependencies:
162 | '@babel/compat-data': 7.23.5
163 | '@babel/helper-validator-option': 7.23.5
164 | browserslist: 4.23.0
165 | lru-cache: 5.1.1
166 | semver: 6.3.1
167 |
168 | /@babel/helper-environment-visitor@7.22.20:
169 | resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
170 | engines: {node: '>=6.9.0'}
171 |
172 | /@babel/helper-function-name@7.23.0:
173 | resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
174 | engines: {node: '>=6.9.0'}
175 | dependencies:
176 | '@babel/template': 7.24.0
177 | '@babel/types': 7.24.0
178 |
179 | /@babel/helper-hoist-variables@7.22.5:
180 | resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
181 | engines: {node: '>=6.9.0'}
182 | dependencies:
183 | '@babel/types': 7.24.0
184 |
185 | /@babel/helper-module-imports@7.22.15:
186 | resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
187 | engines: {node: '>=6.9.0'}
188 | dependencies:
189 | '@babel/types': 7.24.0
190 |
191 | /@babel/helper-module-transforms@7.23.3(@babel/core@7.24.0):
192 | resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
193 | engines: {node: '>=6.9.0'}
194 | peerDependencies:
195 | '@babel/core': ^7.0.0
196 | dependencies:
197 | '@babel/core': 7.24.0
198 | '@babel/helper-environment-visitor': 7.22.20
199 | '@babel/helper-module-imports': 7.22.15
200 | '@babel/helper-simple-access': 7.22.5
201 | '@babel/helper-split-export-declaration': 7.22.6
202 | '@babel/helper-validator-identifier': 7.22.20
203 |
204 | /@babel/helper-simple-access@7.22.5:
205 | resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
206 | engines: {node: '>=6.9.0'}
207 | dependencies:
208 | '@babel/types': 7.24.0
209 |
210 | /@babel/helper-split-export-declaration@7.22.6:
211 | resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
212 | engines: {node: '>=6.9.0'}
213 | dependencies:
214 | '@babel/types': 7.24.0
215 |
216 | /@babel/helper-string-parser@7.23.4:
217 | resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
218 | engines: {node: '>=6.9.0'}
219 |
220 | /@babel/helper-validator-identifier@7.22.20:
221 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
222 | engines: {node: '>=6.9.0'}
223 |
224 | /@babel/helper-validator-option@7.23.5:
225 | resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
226 | engines: {node: '>=6.9.0'}
227 |
228 | /@babel/helpers@7.24.0:
229 | resolution: {integrity: sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA==}
230 | engines: {node: '>=6.9.0'}
231 | dependencies:
232 | '@babel/template': 7.24.0
233 | '@babel/traverse': 7.24.0
234 | '@babel/types': 7.24.0
235 | transitivePeerDependencies:
236 | - supports-color
237 |
238 | /@babel/highlight@7.23.4:
239 | resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
240 | engines: {node: '>=6.9.0'}
241 | dependencies:
242 | '@babel/helper-validator-identifier': 7.22.20
243 | chalk: 2.4.2
244 | js-tokens: 4.0.0
245 |
246 | /@babel/parser@7.24.0:
247 | resolution: {integrity: sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg==}
248 | engines: {node: '>=6.0.0'}
249 | hasBin: true
250 | dependencies:
251 | '@babel/types': 7.24.0
252 |
253 | /@babel/runtime@7.24.0:
254 | resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==}
255 | engines: {node: '>=6.9.0'}
256 | dependencies:
257 | regenerator-runtime: 0.14.1
258 |
259 | /@babel/template@7.24.0:
260 | resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
261 | engines: {node: '>=6.9.0'}
262 | dependencies:
263 | '@babel/code-frame': 7.23.5
264 | '@babel/parser': 7.24.0
265 | '@babel/types': 7.24.0
266 |
267 | /@babel/traverse@7.24.0:
268 | resolution: {integrity: sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw==}
269 | engines: {node: '>=6.9.0'}
270 | dependencies:
271 | '@babel/code-frame': 7.23.5
272 | '@babel/generator': 7.23.6
273 | '@babel/helper-environment-visitor': 7.22.20
274 | '@babel/helper-function-name': 7.23.0
275 | '@babel/helper-hoist-variables': 7.22.5
276 | '@babel/helper-split-export-declaration': 7.22.6
277 | '@babel/parser': 7.24.0
278 | '@babel/types': 7.24.0
279 | debug: 4.3.4
280 | globals: 11.12.0
281 | transitivePeerDependencies:
282 | - supports-color
283 |
284 | /@babel/types@7.24.0:
285 | resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
286 | engines: {node: '>=6.9.0'}
287 | dependencies:
288 | '@babel/helper-string-parser': 7.23.4
289 | '@babel/helper-validator-identifier': 7.22.20
290 | to-fast-properties: 2.0.0
291 |
292 | /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0):
293 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
294 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
295 | peerDependencies:
296 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
297 | dependencies:
298 | eslint: 8.57.0
299 | eslint-visitor-keys: 3.4.3
300 | dev: true
301 |
302 | /@eslint-community/regexpp@4.10.0:
303 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
304 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
305 | dev: true
306 |
307 | /@eslint/eslintrc@2.1.4:
308 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
309 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
310 | dependencies:
311 | ajv: 6.12.6
312 | debug: 4.3.4
313 | espree: 9.6.1
314 | globals: 13.24.0
315 | ignore: 5.3.1
316 | import-fresh: 3.3.0
317 | js-yaml: 4.1.0
318 | minimatch: 3.1.2
319 | strip-json-comments: 3.1.1
320 | transitivePeerDependencies:
321 | - supports-color
322 | dev: true
323 |
324 | /@eslint/js@8.57.0:
325 | resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
326 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
327 | dev: true
328 |
329 | /@humanwhocodes/config-array@0.11.14:
330 | resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
331 | engines: {node: '>=10.10.0'}
332 | dependencies:
333 | '@humanwhocodes/object-schema': 2.0.2
334 | debug: 4.3.4
335 | minimatch: 3.1.2
336 | transitivePeerDependencies:
337 | - supports-color
338 | dev: true
339 |
340 | /@humanwhocodes/module-importer@1.0.1:
341 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
342 | engines: {node: '>=12.22'}
343 | dev: true
344 |
345 | /@humanwhocodes/object-schema@2.0.2:
346 | resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
347 | dev: true
348 |
349 | /@ianvs/prettier-plugin-sort-imports@3.7.2(prettier@2.8.8):
350 | resolution: {integrity: sha512-bVckKToJM8XV2wTOG1VpeXrSmfAG49esVrikbxeFbY51RJdNke9AdMANJtGuACB59uo+pGlz0wBdWFrRzWyO1A==}
351 | peerDependencies:
352 | '@vue/compiler-sfc': '>=3.0.0'
353 | prettier: 2.x
354 | peerDependenciesMeta:
355 | '@vue/compiler-sfc':
356 | optional: true
357 | dependencies:
358 | '@babel/core': 7.24.0
359 | '@babel/generator': 7.23.6
360 | '@babel/parser': 7.24.0
361 | '@babel/traverse': 7.24.0
362 | '@babel/types': 7.24.0
363 | javascript-natural-sort: 0.7.1
364 | lodash.clone: 4.5.0
365 | lodash.isequal: 4.5.0
366 | prettier: 2.8.8
367 | transitivePeerDependencies:
368 | - supports-color
369 | dev: true
370 |
371 | /@isaacs/cliui@8.0.2:
372 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
373 | engines: {node: '>=12'}
374 | dependencies:
375 | string-width: 5.1.2
376 | string-width-cjs: /string-width@4.2.3
377 | strip-ansi: 7.1.0
378 | strip-ansi-cjs: /strip-ansi@6.0.1
379 | wrap-ansi: 8.1.0
380 | wrap-ansi-cjs: /wrap-ansi@7.0.0
381 |
382 | /@jridgewell/gen-mapping@0.3.5:
383 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
384 | engines: {node: '>=6.0.0'}
385 | dependencies:
386 | '@jridgewell/set-array': 1.2.1
387 | '@jridgewell/sourcemap-codec': 1.4.15
388 | '@jridgewell/trace-mapping': 0.3.25
389 |
390 | /@jridgewell/resolve-uri@3.1.2:
391 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
392 | engines: {node: '>=6.0.0'}
393 |
394 | /@jridgewell/set-array@1.2.1:
395 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
396 | engines: {node: '>=6.0.0'}
397 |
398 | /@jridgewell/sourcemap-codec@1.4.15:
399 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
400 |
401 | /@jridgewell/trace-mapping@0.3.25:
402 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
403 | dependencies:
404 | '@jridgewell/resolve-uri': 3.1.2
405 | '@jridgewell/sourcemap-codec': 1.4.15
406 |
407 | /@next/env@14.1.3:
408 | resolution: {integrity: sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==}
409 | dev: false
410 |
411 | /@next/eslint-plugin-next@13.0.0:
412 | resolution: {integrity: sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg==}
413 | dependencies:
414 | glob: 7.1.7
415 | dev: true
416 |
417 | /@next/swc-darwin-arm64@14.1.3:
418 | resolution: {integrity: sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==}
419 | engines: {node: '>= 10'}
420 | cpu: [arm64]
421 | os: [darwin]
422 | requiresBuild: true
423 | dev: false
424 | optional: true
425 |
426 | /@next/swc-darwin-x64@14.1.3:
427 | resolution: {integrity: sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==}
428 | engines: {node: '>= 10'}
429 | cpu: [x64]
430 | os: [darwin]
431 | requiresBuild: true
432 | dev: false
433 | optional: true
434 |
435 | /@next/swc-linux-arm64-gnu@14.1.3:
436 | resolution: {integrity: sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==}
437 | engines: {node: '>= 10'}
438 | cpu: [arm64]
439 | os: [linux]
440 | requiresBuild: true
441 | dev: false
442 | optional: true
443 |
444 | /@next/swc-linux-arm64-musl@14.1.3:
445 | resolution: {integrity: sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==}
446 | engines: {node: '>= 10'}
447 | cpu: [arm64]
448 | os: [linux]
449 | requiresBuild: true
450 | dev: false
451 | optional: true
452 |
453 | /@next/swc-linux-x64-gnu@14.1.3:
454 | resolution: {integrity: sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==}
455 | engines: {node: '>= 10'}
456 | cpu: [x64]
457 | os: [linux]
458 | requiresBuild: true
459 | dev: false
460 | optional: true
461 |
462 | /@next/swc-linux-x64-musl@14.1.3:
463 | resolution: {integrity: sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==}
464 | engines: {node: '>= 10'}
465 | cpu: [x64]
466 | os: [linux]
467 | requiresBuild: true
468 | dev: false
469 | optional: true
470 |
471 | /@next/swc-win32-arm64-msvc@14.1.3:
472 | resolution: {integrity: sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==}
473 | engines: {node: '>= 10'}
474 | cpu: [arm64]
475 | os: [win32]
476 | requiresBuild: true
477 | dev: false
478 | optional: true
479 |
480 | /@next/swc-win32-ia32-msvc@14.1.3:
481 | resolution: {integrity: sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==}
482 | engines: {node: '>= 10'}
483 | cpu: [ia32]
484 | os: [win32]
485 | requiresBuild: true
486 | dev: false
487 | optional: true
488 |
489 | /@next/swc-win32-x64-msvc@14.1.3:
490 | resolution: {integrity: sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==}
491 | engines: {node: '>= 10'}
492 | cpu: [x64]
493 | os: [win32]
494 | requiresBuild: true
495 | dev: false
496 | optional: true
497 |
498 | /@nodelib/fs.scandir@2.1.5:
499 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
500 | engines: {node: '>= 8'}
501 | dependencies:
502 | '@nodelib/fs.stat': 2.0.5
503 | run-parallel: 1.2.0
504 |
505 | /@nodelib/fs.stat@2.0.5:
506 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
507 | engines: {node: '>= 8'}
508 |
509 | /@nodelib/fs.walk@1.2.8:
510 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
511 | engines: {node: '>= 8'}
512 | dependencies:
513 | '@nodelib/fs.scandir': 2.1.5
514 | fastq: 1.17.1
515 |
516 | /@pkgjs/parseargs@0.11.0:
517 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
518 | engines: {node: '>=14'}
519 | requiresBuild: true
520 | optional: true
521 |
522 | /@radix-ui/primitive@1.0.1:
523 | resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
524 | dependencies:
525 | '@babel/runtime': 7.24.0
526 | dev: false
527 |
528 | /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.65)(react@18.2.0):
529 | resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
530 | peerDependencies:
531 | '@types/react': '*'
532 | react: ^16.8 || ^17.0 || ^18.0
533 | peerDependenciesMeta:
534 | '@types/react':
535 | optional: true
536 | dependencies:
537 | '@babel/runtime': 7.24.0
538 | '@types/react': 18.2.65
539 | react: 18.2.0
540 | dev: false
541 |
542 | /@radix-ui/react-context@1.0.1(@types/react@18.2.65)(react@18.2.0):
543 | resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
544 | peerDependencies:
545 | '@types/react': '*'
546 | react: ^16.8 || ^17.0 || ^18.0
547 | peerDependenciesMeta:
548 | '@types/react':
549 | optional: true
550 | dependencies:
551 | '@babel/runtime': 7.24.0
552 | '@types/react': 18.2.65
553 | react: 18.2.0
554 | dev: false
555 |
556 | /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0):
557 | resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
558 | peerDependencies:
559 | '@types/react': '*'
560 | '@types/react-dom': '*'
561 | react: ^16.8 || ^17.0 || ^18.0
562 | react-dom: ^16.8 || ^17.0 || ^18.0
563 | peerDependenciesMeta:
564 | '@types/react':
565 | optional: true
566 | '@types/react-dom':
567 | optional: true
568 | dependencies:
569 | '@babel/runtime': 7.24.0
570 | '@radix-ui/primitive': 1.0.1
571 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.65)(react@18.2.0)
572 | '@radix-ui/react-context': 1.0.1(@types/react@18.2.65)(react@18.2.0)
573 | '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
574 | '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.65)(react@18.2.0)
575 | '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
576 | '@radix-ui/react-id': 1.0.1(@types/react@18.2.65)(react@18.2.0)
577 | '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
578 | '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
579 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
580 | '@radix-ui/react-slot': 1.0.2(@types/react@18.2.65)(react@18.2.0)
581 | '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.65)(react@18.2.0)
582 | '@types/react': 18.2.65
583 | '@types/react-dom': 18.2.22
584 | aria-hidden: 1.2.3
585 | react: 18.2.0
586 | react-dom: 18.2.0(react@18.2.0)
587 | react-remove-scroll: 2.5.5(@types/react@18.2.65)(react@18.2.0)
588 | dev: false
589 |
590 | /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0):
591 | resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
592 | peerDependencies:
593 | '@types/react': '*'
594 | '@types/react-dom': '*'
595 | react: ^16.8 || ^17.0 || ^18.0
596 | react-dom: ^16.8 || ^17.0 || ^18.0
597 | peerDependenciesMeta:
598 | '@types/react':
599 | optional: true
600 | '@types/react-dom':
601 | optional: true
602 | dependencies:
603 | '@babel/runtime': 7.24.0
604 | '@radix-ui/primitive': 1.0.1
605 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.65)(react@18.2.0)
606 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
607 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.65)(react@18.2.0)
608 | '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.65)(react@18.2.0)
609 | '@types/react': 18.2.65
610 | '@types/react-dom': 18.2.22
611 | react: 18.2.0
612 | react-dom: 18.2.0(react@18.2.0)
613 | dev: false
614 |
615 | /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.65)(react@18.2.0):
616 | resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
617 | peerDependencies:
618 | '@types/react': '*'
619 | react: ^16.8 || ^17.0 || ^18.0
620 | peerDependenciesMeta:
621 | '@types/react':
622 | optional: true
623 | dependencies:
624 | '@babel/runtime': 7.24.0
625 | '@types/react': 18.2.65
626 | react: 18.2.0
627 | dev: false
628 |
629 | /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0):
630 | resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
631 | peerDependencies:
632 | '@types/react': '*'
633 | '@types/react-dom': '*'
634 | react: ^16.8 || ^17.0 || ^18.0
635 | react-dom: ^16.8 || ^17.0 || ^18.0
636 | peerDependenciesMeta:
637 | '@types/react':
638 | optional: true
639 | '@types/react-dom':
640 | optional: true
641 | dependencies:
642 | '@babel/runtime': 7.24.0
643 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.65)(react@18.2.0)
644 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
645 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.65)(react@18.2.0)
646 | '@types/react': 18.2.65
647 | '@types/react-dom': 18.2.22
648 | react: 18.2.0
649 | react-dom: 18.2.0(react@18.2.0)
650 | dev: false
651 |
652 | /@radix-ui/react-id@1.0.1(@types/react@18.2.65)(react@18.2.0):
653 | resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
654 | peerDependencies:
655 | '@types/react': '*'
656 | react: ^16.8 || ^17.0 || ^18.0
657 | peerDependenciesMeta:
658 | '@types/react':
659 | optional: true
660 | dependencies:
661 | '@babel/runtime': 7.24.0
662 | '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.65)(react@18.2.0)
663 | '@types/react': 18.2.65
664 | react: 18.2.0
665 | dev: false
666 |
667 | /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0):
668 | resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
669 | peerDependencies:
670 | '@types/react': '*'
671 | '@types/react-dom': '*'
672 | react: ^16.8 || ^17.0 || ^18.0
673 | react-dom: ^16.8 || ^17.0 || ^18.0
674 | peerDependenciesMeta:
675 | '@types/react':
676 | optional: true
677 | '@types/react-dom':
678 | optional: true
679 | dependencies:
680 | '@babel/runtime': 7.24.0
681 | '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
682 | '@types/react': 18.2.65
683 | '@types/react-dom': 18.2.22
684 | react: 18.2.0
685 | react-dom: 18.2.0(react@18.2.0)
686 | dev: false
687 |
688 | /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0):
689 | resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
690 | peerDependencies:
691 | '@types/react': '*'
692 | '@types/react-dom': '*'
693 | react: ^16.8 || ^17.0 || ^18.0
694 | react-dom: ^16.8 || ^17.0 || ^18.0
695 | peerDependenciesMeta:
696 | '@types/react':
697 | optional: true
698 | '@types/react-dom':
699 | optional: true
700 | dependencies:
701 | '@babel/runtime': 7.24.0
702 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.65)(react@18.2.0)
703 | '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.65)(react@18.2.0)
704 | '@types/react': 18.2.65
705 | '@types/react-dom': 18.2.22
706 | react: 18.2.0
707 | react-dom: 18.2.0(react@18.2.0)
708 | dev: false
709 |
710 | /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0):
711 | resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
712 | peerDependencies:
713 | '@types/react': '*'
714 | '@types/react-dom': '*'
715 | react: ^16.8 || ^17.0 || ^18.0
716 | react-dom: ^16.8 || ^17.0 || ^18.0
717 | peerDependenciesMeta:
718 | '@types/react':
719 | optional: true
720 | '@types/react-dom':
721 | optional: true
722 | dependencies:
723 | '@babel/runtime': 7.24.0
724 | '@radix-ui/react-slot': 1.0.2(@types/react@18.2.65)(react@18.2.0)
725 | '@types/react': 18.2.65
726 | '@types/react-dom': 18.2.22
727 | react: 18.2.0
728 | react-dom: 18.2.0(react@18.2.0)
729 | dev: false
730 |
731 | /@radix-ui/react-slot@1.0.2(@types/react@18.2.65)(react@18.2.0):
732 | resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
733 | peerDependencies:
734 | '@types/react': '*'
735 | react: ^16.8 || ^17.0 || ^18.0
736 | peerDependenciesMeta:
737 | '@types/react':
738 | optional: true
739 | dependencies:
740 | '@babel/runtime': 7.24.0
741 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.65)(react@18.2.0)
742 | '@types/react': 18.2.65
743 | react: 18.2.0
744 | dev: false
745 |
746 | /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.65)(react@18.2.0):
747 | resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
748 | peerDependencies:
749 | '@types/react': '*'
750 | react: ^16.8 || ^17.0 || ^18.0
751 | peerDependenciesMeta:
752 | '@types/react':
753 | optional: true
754 | dependencies:
755 | '@babel/runtime': 7.24.0
756 | '@types/react': 18.2.65
757 | react: 18.2.0
758 | dev: false
759 |
760 | /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.65)(react@18.2.0):
761 | resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
762 | peerDependencies:
763 | '@types/react': '*'
764 | react: ^16.8 || ^17.0 || ^18.0
765 | peerDependenciesMeta:
766 | '@types/react':
767 | optional: true
768 | dependencies:
769 | '@babel/runtime': 7.24.0
770 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.65)(react@18.2.0)
771 | '@types/react': 18.2.65
772 | react: 18.2.0
773 | dev: false
774 |
775 | /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.65)(react@18.2.0):
776 | resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
777 | peerDependencies:
778 | '@types/react': '*'
779 | react: ^16.8 || ^17.0 || ^18.0
780 | peerDependenciesMeta:
781 | '@types/react':
782 | optional: true
783 | dependencies:
784 | '@babel/runtime': 7.24.0
785 | '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.65)(react@18.2.0)
786 | '@types/react': 18.2.65
787 | react: 18.2.0
788 | dev: false
789 |
790 | /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.65)(react@18.2.0):
791 | resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
792 | peerDependencies:
793 | '@types/react': '*'
794 | react: ^16.8 || ^17.0 || ^18.0
795 | peerDependenciesMeta:
796 | '@types/react':
797 | optional: true
798 | dependencies:
799 | '@babel/runtime': 7.24.0
800 | '@types/react': 18.2.65
801 | react: 18.2.0
802 | dev: false
803 |
804 | /@rushstack/eslint-patch@1.7.2:
805 | resolution: {integrity: sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==}
806 | dev: true
807 |
808 | /@swc/helpers@0.5.2:
809 | resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
810 | dependencies:
811 | tslib: 2.6.2
812 | dev: false
813 |
814 | /@types/json5@0.0.29:
815 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
816 | dev: true
817 |
818 | /@types/node@17.0.45:
819 | resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
820 | dev: true
821 |
822 | /@types/prop-types@15.7.11:
823 | resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
824 |
825 | /@types/react-dom@18.2.22:
826 | resolution: {integrity: sha512-fHkBXPeNtfvri6gdsMYyW+dW7RXFo6Ad09nLFK0VQWR7yGLai/Cyvyj696gbwYvBnhGtevUG9cET0pmUbMtoPQ==}
827 | dependencies:
828 | '@types/react': 18.2.65
829 |
830 | /@types/react@18.2.65:
831 | resolution: {integrity: sha512-98TsY0aW4jqx/3RqsUXwMDZSWR1Z4CUlJNue8ueS2/wcxZOsz4xmW1X8ieaWVRHcmmQM3R8xVA4XWB3dJnWwDQ==}
832 | dependencies:
833 | '@types/prop-types': 15.7.11
834 | '@types/scheduler': 0.16.8
835 | csstype: 3.1.3
836 |
837 | /@types/scheduler@0.16.8:
838 | resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
839 |
840 | /@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5):
841 | resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
842 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
843 | peerDependencies:
844 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
845 | typescript: '*'
846 | peerDependenciesMeta:
847 | typescript:
848 | optional: true
849 | dependencies:
850 | '@typescript-eslint/scope-manager': 5.62.0
851 | '@typescript-eslint/types': 5.62.0
852 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5)
853 | debug: 4.3.4
854 | eslint: 8.57.0
855 | typescript: 4.9.5
856 | transitivePeerDependencies:
857 | - supports-color
858 | dev: true
859 |
860 | /@typescript-eslint/scope-manager@5.62.0:
861 | resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
862 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
863 | dependencies:
864 | '@typescript-eslint/types': 5.62.0
865 | '@typescript-eslint/visitor-keys': 5.62.0
866 | dev: true
867 |
868 | /@typescript-eslint/types@5.62.0:
869 | resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
870 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
871 | dev: true
872 |
873 | /@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5):
874 | resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
875 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
876 | peerDependencies:
877 | typescript: '*'
878 | peerDependenciesMeta:
879 | typescript:
880 | optional: true
881 | dependencies:
882 | '@typescript-eslint/types': 5.62.0
883 | '@typescript-eslint/visitor-keys': 5.62.0
884 | debug: 4.3.4
885 | globby: 11.1.0
886 | is-glob: 4.0.3
887 | semver: 7.6.0
888 | tsutils: 3.21.0(typescript@4.9.5)
889 | typescript: 4.9.5
890 | transitivePeerDependencies:
891 | - supports-color
892 | dev: true
893 |
894 | /@typescript-eslint/visitor-keys@5.62.0:
895 | resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
896 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
897 | dependencies:
898 | '@typescript-eslint/types': 5.62.0
899 | eslint-visitor-keys: 3.4.3
900 | dev: true
901 |
902 | /@ungap/structured-clone@1.2.0:
903 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
904 | dev: true
905 |
906 | /acorn-jsx@5.3.2(acorn@8.11.3):
907 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
908 | peerDependencies:
909 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
910 | dependencies:
911 | acorn: 8.11.3
912 | dev: true
913 |
914 | /acorn@8.11.3:
915 | resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
916 | engines: {node: '>=0.4.0'}
917 | hasBin: true
918 | dev: true
919 |
920 | /ajv@6.12.6:
921 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
922 | dependencies:
923 | fast-deep-equal: 3.1.3
924 | fast-json-stable-stringify: 2.1.0
925 | json-schema-traverse: 0.4.1
926 | uri-js: 4.4.1
927 | dev: true
928 |
929 | /ansi-regex@5.0.1:
930 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
931 | engines: {node: '>=8'}
932 |
933 | /ansi-regex@6.0.1:
934 | resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
935 | engines: {node: '>=12'}
936 |
937 | /ansi-styles@3.2.1:
938 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
939 | engines: {node: '>=4'}
940 | dependencies:
941 | color-convert: 1.9.3
942 |
943 | /ansi-styles@4.3.0:
944 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
945 | engines: {node: '>=8'}
946 | dependencies:
947 | color-convert: 2.0.1
948 |
949 | /ansi-styles@6.2.1:
950 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
951 | engines: {node: '>=12'}
952 |
953 | /any-promise@1.3.0:
954 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
955 |
956 | /anymatch@3.1.3:
957 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
958 | engines: {node: '>= 8'}
959 | dependencies:
960 | normalize-path: 3.0.0
961 | picomatch: 2.3.1
962 |
963 | /arg@5.0.2:
964 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
965 |
966 | /argparse@2.0.1:
967 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
968 | dev: true
969 |
970 | /aria-hidden@1.2.3:
971 | resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
972 | engines: {node: '>=10'}
973 | dependencies:
974 | tslib: 2.6.2
975 | dev: false
976 |
977 | /aria-query@5.3.0:
978 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
979 | dependencies:
980 | dequal: 2.0.3
981 | dev: true
982 |
983 | /array-buffer-byte-length@1.0.1:
984 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
985 | engines: {node: '>= 0.4'}
986 | dependencies:
987 | call-bind: 1.0.7
988 | is-array-buffer: 3.0.4
989 | dev: true
990 |
991 | /array-includes@3.1.7:
992 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
993 | engines: {node: '>= 0.4'}
994 | dependencies:
995 | call-bind: 1.0.7
996 | define-properties: 1.2.1
997 | es-abstract: 1.22.5
998 | get-intrinsic: 1.2.4
999 | is-string: 1.0.7
1000 | dev: true
1001 |
1002 | /array-union@2.1.0:
1003 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
1004 | engines: {node: '>=8'}
1005 | dev: true
1006 |
1007 | /array.prototype.filter@1.0.3:
1008 | resolution: {integrity: sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==}
1009 | engines: {node: '>= 0.4'}
1010 | dependencies:
1011 | call-bind: 1.0.7
1012 | define-properties: 1.2.1
1013 | es-abstract: 1.22.5
1014 | es-array-method-boxes-properly: 1.0.0
1015 | is-string: 1.0.7
1016 | dev: true
1017 |
1018 | /array.prototype.findlast@1.2.4:
1019 | resolution: {integrity: sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw==}
1020 | engines: {node: '>= 0.4'}
1021 | dependencies:
1022 | call-bind: 1.0.7
1023 | define-properties: 1.2.1
1024 | es-abstract: 1.22.5
1025 | es-errors: 1.3.0
1026 | es-shim-unscopables: 1.0.2
1027 | dev: true
1028 |
1029 | /array.prototype.findlastindex@1.2.4:
1030 | resolution: {integrity: sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==}
1031 | engines: {node: '>= 0.4'}
1032 | dependencies:
1033 | call-bind: 1.0.7
1034 | define-properties: 1.2.1
1035 | es-abstract: 1.22.5
1036 | es-errors: 1.3.0
1037 | es-shim-unscopables: 1.0.2
1038 | dev: true
1039 |
1040 | /array.prototype.flat@1.3.2:
1041 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
1042 | engines: {node: '>= 0.4'}
1043 | dependencies:
1044 | call-bind: 1.0.7
1045 | define-properties: 1.2.1
1046 | es-abstract: 1.22.5
1047 | es-shim-unscopables: 1.0.2
1048 | dev: true
1049 |
1050 | /array.prototype.flatmap@1.3.2:
1051 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
1052 | engines: {node: '>= 0.4'}
1053 | dependencies:
1054 | call-bind: 1.0.7
1055 | define-properties: 1.2.1
1056 | es-abstract: 1.22.5
1057 | es-shim-unscopables: 1.0.2
1058 | dev: true
1059 |
1060 | /array.prototype.toreversed@1.1.2:
1061 | resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==}
1062 | dependencies:
1063 | call-bind: 1.0.7
1064 | define-properties: 1.2.1
1065 | es-abstract: 1.22.5
1066 | es-shim-unscopables: 1.0.2
1067 | dev: true
1068 |
1069 | /array.prototype.tosorted@1.1.3:
1070 | resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==}
1071 | dependencies:
1072 | call-bind: 1.0.7
1073 | define-properties: 1.2.1
1074 | es-abstract: 1.22.5
1075 | es-errors: 1.3.0
1076 | es-shim-unscopables: 1.0.2
1077 | dev: true
1078 |
1079 | /arraybuffer.prototype.slice@1.0.3:
1080 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
1081 | engines: {node: '>= 0.4'}
1082 | dependencies:
1083 | array-buffer-byte-length: 1.0.1
1084 | call-bind: 1.0.7
1085 | define-properties: 1.2.1
1086 | es-abstract: 1.22.5
1087 | es-errors: 1.3.0
1088 | get-intrinsic: 1.2.4
1089 | is-array-buffer: 3.0.4
1090 | is-shared-array-buffer: 1.0.3
1091 | dev: true
1092 |
1093 | /ast-types-flow@0.0.8:
1094 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
1095 | dev: true
1096 |
1097 | /asynciterator.prototype@1.0.0:
1098 | resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==}
1099 | dependencies:
1100 | has-symbols: 1.0.3
1101 | dev: true
1102 |
1103 | /autoprefixer@10.4.18(postcss@8.4.35):
1104 | resolution: {integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==}
1105 | engines: {node: ^10 || ^12 || >=14}
1106 | hasBin: true
1107 | peerDependencies:
1108 | postcss: ^8.1.0
1109 | dependencies:
1110 | browserslist: 4.23.0
1111 | caniuse-lite: 1.0.30001597
1112 | fraction.js: 4.3.7
1113 | normalize-range: 0.1.2
1114 | picocolors: 1.0.0
1115 | postcss: 8.4.35
1116 | postcss-value-parser: 4.2.0
1117 | dev: true
1118 |
1119 | /available-typed-arrays@1.0.7:
1120 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
1121 | engines: {node: '>= 0.4'}
1122 | dependencies:
1123 | possible-typed-array-names: 1.0.0
1124 | dev: true
1125 |
1126 | /axe-core@4.7.0:
1127 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
1128 | engines: {node: '>=4'}
1129 | dev: true
1130 |
1131 | /axobject-query@3.2.1:
1132 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
1133 | dependencies:
1134 | dequal: 2.0.3
1135 | dev: true
1136 |
1137 | /balanced-match@1.0.2:
1138 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
1139 |
1140 | /base64-js@1.5.1:
1141 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
1142 | dev: false
1143 |
1144 | /binary-extensions@2.2.0:
1145 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
1146 | engines: {node: '>=8'}
1147 |
1148 | /bl@4.1.0:
1149 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
1150 | dependencies:
1151 | buffer: 5.7.1
1152 | inherits: 2.0.4
1153 | readable-stream: 3.6.2
1154 | dev: false
1155 |
1156 | /brace-expansion@1.1.11:
1157 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
1158 | dependencies:
1159 | balanced-match: 1.0.2
1160 | concat-map: 0.0.1
1161 | dev: true
1162 |
1163 | /brace-expansion@2.0.1:
1164 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
1165 | dependencies:
1166 | balanced-match: 1.0.2
1167 |
1168 | /braces@3.0.2:
1169 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
1170 | engines: {node: '>=8'}
1171 | dependencies:
1172 | fill-range: 7.0.1
1173 |
1174 | /browserslist@4.23.0:
1175 | resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
1176 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1177 | hasBin: true
1178 | dependencies:
1179 | caniuse-lite: 1.0.30001597
1180 | electron-to-chromium: 1.4.705
1181 | node-releases: 2.0.14
1182 | update-browserslist-db: 1.0.13(browserslist@4.23.0)
1183 |
1184 | /buffer@5.7.1:
1185 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
1186 | dependencies:
1187 | base64-js: 1.5.1
1188 | ieee754: 1.2.1
1189 | dev: false
1190 |
1191 | /busboy@1.6.0:
1192 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
1193 | engines: {node: '>=10.16.0'}
1194 | dependencies:
1195 | streamsearch: 1.1.0
1196 | dev: false
1197 |
1198 | /call-bind@1.0.7:
1199 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
1200 | engines: {node: '>= 0.4'}
1201 | dependencies:
1202 | es-define-property: 1.0.0
1203 | es-errors: 1.3.0
1204 | function-bind: 1.1.2
1205 | get-intrinsic: 1.2.4
1206 | set-function-length: 1.2.2
1207 | dev: true
1208 |
1209 | /callsites@3.1.0:
1210 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
1211 | engines: {node: '>=6'}
1212 | dev: true
1213 |
1214 | /camelcase-css@2.0.1:
1215 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
1216 | engines: {node: '>= 6'}
1217 |
1218 | /caniuse-lite@1.0.30001597:
1219 | resolution: {integrity: sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==}
1220 |
1221 | /chalk@2.4.2:
1222 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
1223 | engines: {node: '>=4'}
1224 | dependencies:
1225 | ansi-styles: 3.2.1
1226 | escape-string-regexp: 1.0.5
1227 | supports-color: 5.5.0
1228 |
1229 | /chalk@4.1.2:
1230 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
1231 | engines: {node: '>=10'}
1232 | dependencies:
1233 | ansi-styles: 4.3.0
1234 | supports-color: 7.2.0
1235 | dev: true
1236 |
1237 | /chokidar@3.6.0:
1238 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
1239 | engines: {node: '>= 8.10.0'}
1240 | dependencies:
1241 | anymatch: 3.1.3
1242 | braces: 3.0.2
1243 | glob-parent: 5.1.2
1244 | is-binary-path: 2.1.0
1245 | is-glob: 4.0.3
1246 | normalize-path: 3.0.0
1247 | readdirp: 3.6.0
1248 | optionalDependencies:
1249 | fsevents: 2.3.3
1250 |
1251 | /chownr@1.1.4:
1252 | resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
1253 | dev: false
1254 |
1255 | /class-variance-authority@0.4.0(typescript@4.9.5):
1256 | resolution: {integrity: sha512-74enNN8O9ZNieycac/y8FxqgyzZhZbxmCitAtAeUrLPlxjSd5zA7LfpprmxEcOmQBnaGs5hYhiSGnJ0mqrtBLQ==}
1257 | peerDependencies:
1258 | typescript: '>= 4.5.5 < 5'
1259 | peerDependenciesMeta:
1260 | typescript:
1261 | optional: true
1262 | dependencies:
1263 | typescript: 4.9.5
1264 | dev: false
1265 |
1266 | /client-only@0.0.1:
1267 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
1268 | dev: false
1269 |
1270 | /clsx@1.2.1:
1271 | resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
1272 | engines: {node: '>=6'}
1273 | dev: false
1274 |
1275 | /color-convert@1.9.3:
1276 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
1277 | dependencies:
1278 | color-name: 1.1.3
1279 |
1280 | /color-convert@2.0.1:
1281 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
1282 | engines: {node: '>=7.0.0'}
1283 | dependencies:
1284 | color-name: 1.1.4
1285 |
1286 | /color-name@1.1.3:
1287 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
1288 |
1289 | /color-name@1.1.4:
1290 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
1291 |
1292 | /color-string@1.9.1:
1293 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
1294 | dependencies:
1295 | color-name: 1.1.4
1296 | simple-swizzle: 0.2.2
1297 | dev: false
1298 |
1299 | /color@4.2.3:
1300 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
1301 | engines: {node: '>=12.5.0'}
1302 | dependencies:
1303 | color-convert: 2.0.1
1304 | color-string: 1.9.1
1305 | dev: false
1306 |
1307 | /commander@4.1.1:
1308 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
1309 | engines: {node: '>= 6'}
1310 |
1311 | /concat-map@0.0.1:
1312 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
1313 | dev: true
1314 |
1315 | /convert-source-map@2.0.0:
1316 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
1317 |
1318 | /cross-spawn@7.0.3:
1319 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
1320 | engines: {node: '>= 8'}
1321 | dependencies:
1322 | path-key: 3.1.1
1323 | shebang-command: 2.0.0
1324 | which: 2.0.2
1325 |
1326 | /cssesc@3.0.0:
1327 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
1328 | engines: {node: '>=4'}
1329 | hasBin: true
1330 |
1331 | /csstype@3.1.3:
1332 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
1333 |
1334 | /damerau-levenshtein@1.0.8:
1335 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
1336 | dev: true
1337 |
1338 | /debug@3.2.7:
1339 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
1340 | peerDependencies:
1341 | supports-color: '*'
1342 | peerDependenciesMeta:
1343 | supports-color:
1344 | optional: true
1345 | dependencies:
1346 | ms: 2.1.3
1347 | dev: true
1348 |
1349 | /debug@4.3.4:
1350 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
1351 | engines: {node: '>=6.0'}
1352 | peerDependencies:
1353 | supports-color: '*'
1354 | peerDependenciesMeta:
1355 | supports-color:
1356 | optional: true
1357 | dependencies:
1358 | ms: 2.1.2
1359 |
1360 | /decompress-response@6.0.0:
1361 | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
1362 | engines: {node: '>=10'}
1363 | dependencies:
1364 | mimic-response: 3.1.0
1365 | dev: false
1366 |
1367 | /deep-extend@0.6.0:
1368 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
1369 | engines: {node: '>=4.0.0'}
1370 | dev: false
1371 |
1372 | /deep-is@0.1.4:
1373 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
1374 | dev: true
1375 |
1376 | /define-data-property@1.1.4:
1377 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
1378 | engines: {node: '>= 0.4'}
1379 | dependencies:
1380 | es-define-property: 1.0.0
1381 | es-errors: 1.3.0
1382 | gopd: 1.0.1
1383 | dev: true
1384 |
1385 | /define-properties@1.2.1:
1386 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
1387 | engines: {node: '>= 0.4'}
1388 | dependencies:
1389 | define-data-property: 1.1.4
1390 | has-property-descriptors: 1.0.2
1391 | object-keys: 1.1.1
1392 | dev: true
1393 |
1394 | /dequal@2.0.3:
1395 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
1396 | engines: {node: '>=6'}
1397 | dev: true
1398 |
1399 | /detect-libc@2.0.2:
1400 | resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
1401 | engines: {node: '>=8'}
1402 | dev: false
1403 |
1404 | /detect-node-es@1.1.0:
1405 | resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
1406 | dev: false
1407 |
1408 | /didyoumean@1.2.2:
1409 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
1410 |
1411 | /dir-glob@3.0.1:
1412 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1413 | engines: {node: '>=8'}
1414 | dependencies:
1415 | path-type: 4.0.0
1416 | dev: true
1417 |
1418 | /dlv@1.1.3:
1419 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
1420 |
1421 | /doctrine@2.1.0:
1422 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
1423 | engines: {node: '>=0.10.0'}
1424 | dependencies:
1425 | esutils: 2.0.3
1426 | dev: true
1427 |
1428 | /doctrine@3.0.0:
1429 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
1430 | engines: {node: '>=6.0.0'}
1431 | dependencies:
1432 | esutils: 2.0.3
1433 | dev: true
1434 |
1435 | /eastasianwidth@0.2.0:
1436 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
1437 |
1438 | /electron-to-chromium@1.4.705:
1439 | resolution: {integrity: sha512-LKqhpwJCLhYId2VVwEzFXWrqQI5n5zBppz1W9ehhTlfYU8CUUW6kClbN8LHF/v7flMgRdETS772nqywJ+ckVAw==}
1440 |
1441 | /emoji-regex@8.0.0:
1442 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
1443 |
1444 | /emoji-regex@9.2.2:
1445 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
1446 |
1447 | /end-of-stream@1.4.4:
1448 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
1449 | dependencies:
1450 | once: 1.4.0
1451 | dev: false
1452 |
1453 | /es-abstract@1.22.5:
1454 | resolution: {integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==}
1455 | engines: {node: '>= 0.4'}
1456 | dependencies:
1457 | array-buffer-byte-length: 1.0.1
1458 | arraybuffer.prototype.slice: 1.0.3
1459 | available-typed-arrays: 1.0.7
1460 | call-bind: 1.0.7
1461 | es-define-property: 1.0.0
1462 | es-errors: 1.3.0
1463 | es-set-tostringtag: 2.0.3
1464 | es-to-primitive: 1.2.1
1465 | function.prototype.name: 1.1.6
1466 | get-intrinsic: 1.2.4
1467 | get-symbol-description: 1.0.2
1468 | globalthis: 1.0.3
1469 | gopd: 1.0.1
1470 | has-property-descriptors: 1.0.2
1471 | has-proto: 1.0.3
1472 | has-symbols: 1.0.3
1473 | hasown: 2.0.2
1474 | internal-slot: 1.0.7
1475 | is-array-buffer: 3.0.4
1476 | is-callable: 1.2.7
1477 | is-negative-zero: 2.0.3
1478 | is-regex: 1.1.4
1479 | is-shared-array-buffer: 1.0.3
1480 | is-string: 1.0.7
1481 | is-typed-array: 1.1.13
1482 | is-weakref: 1.0.2
1483 | object-inspect: 1.13.1
1484 | object-keys: 1.1.1
1485 | object.assign: 4.1.5
1486 | regexp.prototype.flags: 1.5.2
1487 | safe-array-concat: 1.1.2
1488 | safe-regex-test: 1.0.3
1489 | string.prototype.trim: 1.2.8
1490 | string.prototype.trimend: 1.0.7
1491 | string.prototype.trimstart: 1.0.7
1492 | typed-array-buffer: 1.0.2
1493 | typed-array-byte-length: 1.0.1
1494 | typed-array-byte-offset: 1.0.2
1495 | typed-array-length: 1.0.5
1496 | unbox-primitive: 1.0.2
1497 | which-typed-array: 1.1.15
1498 | dev: true
1499 |
1500 | /es-array-method-boxes-properly@1.0.0:
1501 | resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
1502 | dev: true
1503 |
1504 | /es-define-property@1.0.0:
1505 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
1506 | engines: {node: '>= 0.4'}
1507 | dependencies:
1508 | get-intrinsic: 1.2.4
1509 | dev: true
1510 |
1511 | /es-errors@1.3.0:
1512 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
1513 | engines: {node: '>= 0.4'}
1514 | dev: true
1515 |
1516 | /es-iterator-helpers@1.0.17:
1517 | resolution: {integrity: sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ==}
1518 | engines: {node: '>= 0.4'}
1519 | dependencies:
1520 | asynciterator.prototype: 1.0.0
1521 | call-bind: 1.0.7
1522 | define-properties: 1.2.1
1523 | es-abstract: 1.22.5
1524 | es-errors: 1.3.0
1525 | es-set-tostringtag: 2.0.3
1526 | function-bind: 1.1.2
1527 | get-intrinsic: 1.2.4
1528 | globalthis: 1.0.3
1529 | has-property-descriptors: 1.0.2
1530 | has-proto: 1.0.3
1531 | has-symbols: 1.0.3
1532 | internal-slot: 1.0.7
1533 | iterator.prototype: 1.1.2
1534 | safe-array-concat: 1.1.2
1535 | dev: true
1536 |
1537 | /es-set-tostringtag@2.0.3:
1538 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
1539 | engines: {node: '>= 0.4'}
1540 | dependencies:
1541 | get-intrinsic: 1.2.4
1542 | has-tostringtag: 1.0.2
1543 | hasown: 2.0.2
1544 | dev: true
1545 |
1546 | /es-shim-unscopables@1.0.2:
1547 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
1548 | dependencies:
1549 | hasown: 2.0.2
1550 | dev: true
1551 |
1552 | /es-to-primitive@1.2.1:
1553 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
1554 | engines: {node: '>= 0.4'}
1555 | dependencies:
1556 | is-callable: 1.2.7
1557 | is-date-object: 1.0.5
1558 | is-symbol: 1.0.4
1559 | dev: true
1560 |
1561 | /escalade@3.1.2:
1562 | resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
1563 | engines: {node: '>=6'}
1564 |
1565 | /escape-string-regexp@1.0.5:
1566 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
1567 | engines: {node: '>=0.8.0'}
1568 |
1569 | /escape-string-regexp@4.0.0:
1570 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1571 | engines: {node: '>=10'}
1572 | dev: true
1573 |
1574 | /eslint-config-next@13.0.0(eslint@8.57.0)(typescript@4.9.5):
1575 | resolution: {integrity: sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg==}
1576 | peerDependencies:
1577 | eslint: ^7.23.0 || ^8.0.0
1578 | typescript: '>=3.3.1'
1579 | peerDependenciesMeta:
1580 | typescript:
1581 | optional: true
1582 | dependencies:
1583 | '@next/eslint-plugin-next': 13.0.0
1584 | '@rushstack/eslint-patch': 1.7.2
1585 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
1586 | eslint: 8.57.0
1587 | eslint-import-resolver-node: 0.3.9
1588 | eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0)
1589 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0)
1590 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
1591 | eslint-plugin-react: 7.34.0(eslint@8.57.0)
1592 | eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0)
1593 | typescript: 4.9.5
1594 | transitivePeerDependencies:
1595 | - eslint-import-resolver-webpack
1596 | - supports-color
1597 | dev: true
1598 |
1599 | /eslint-config-prettier@8.10.0(eslint@8.57.0):
1600 | resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
1601 | hasBin: true
1602 | peerDependencies:
1603 | eslint: '>=7.0.0'
1604 | dependencies:
1605 | eslint: 8.57.0
1606 | dev: true
1607 |
1608 | /eslint-import-resolver-node@0.3.9:
1609 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
1610 | dependencies:
1611 | debug: 3.2.7
1612 | is-core-module: 2.13.1
1613 | resolve: 1.22.8
1614 | transitivePeerDependencies:
1615 | - supports-color
1616 | dev: true
1617 |
1618 | /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0):
1619 | resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==}
1620 | engines: {node: '>=4'}
1621 | peerDependencies:
1622 | eslint: '*'
1623 | eslint-plugin-import: '*'
1624 | dependencies:
1625 | debug: 4.3.4
1626 | eslint: 8.57.0
1627 | eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0)
1628 | glob: 7.2.3
1629 | is-glob: 4.0.3
1630 | resolve: 1.22.8
1631 | tsconfig-paths: 3.15.0
1632 | transitivePeerDependencies:
1633 | - supports-color
1634 | dev: true
1635 |
1636 | /eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0):
1637 | resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==}
1638 | engines: {node: '>=4'}
1639 | peerDependencies:
1640 | '@typescript-eslint/parser': '*'
1641 | eslint: '*'
1642 | eslint-import-resolver-node: '*'
1643 | eslint-import-resolver-typescript: '*'
1644 | eslint-import-resolver-webpack: '*'
1645 | peerDependenciesMeta:
1646 | '@typescript-eslint/parser':
1647 | optional: true
1648 | eslint:
1649 | optional: true
1650 | eslint-import-resolver-node:
1651 | optional: true
1652 | eslint-import-resolver-typescript:
1653 | optional: true
1654 | eslint-import-resolver-webpack:
1655 | optional: true
1656 | dependencies:
1657 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
1658 | debug: 3.2.7
1659 | eslint: 8.57.0
1660 | eslint-import-resolver-node: 0.3.9
1661 | eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0)
1662 | transitivePeerDependencies:
1663 | - supports-color
1664 | dev: true
1665 |
1666 | /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0):
1667 | resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
1668 | engines: {node: '>=4'}
1669 | peerDependencies:
1670 | '@typescript-eslint/parser': '*'
1671 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
1672 | peerDependenciesMeta:
1673 | '@typescript-eslint/parser':
1674 | optional: true
1675 | dependencies:
1676 | '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5)
1677 | array-includes: 3.1.7
1678 | array.prototype.findlastindex: 1.2.4
1679 | array.prototype.flat: 1.3.2
1680 | array.prototype.flatmap: 1.3.2
1681 | debug: 3.2.7
1682 | doctrine: 2.1.0
1683 | eslint: 8.57.0
1684 | eslint-import-resolver-node: 0.3.9
1685 | eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0)
1686 | hasown: 2.0.2
1687 | is-core-module: 2.13.1
1688 | is-glob: 4.0.3
1689 | minimatch: 3.1.2
1690 | object.fromentries: 2.0.7
1691 | object.groupby: 1.0.2
1692 | object.values: 1.1.7
1693 | semver: 6.3.1
1694 | tsconfig-paths: 3.15.0
1695 | transitivePeerDependencies:
1696 | - eslint-import-resolver-typescript
1697 | - eslint-import-resolver-webpack
1698 | - supports-color
1699 | dev: true
1700 |
1701 | /eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0):
1702 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
1703 | engines: {node: '>=4.0'}
1704 | peerDependencies:
1705 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1706 | dependencies:
1707 | '@babel/runtime': 7.24.0
1708 | aria-query: 5.3.0
1709 | array-includes: 3.1.7
1710 | array.prototype.flatmap: 1.3.2
1711 | ast-types-flow: 0.0.8
1712 | axe-core: 4.7.0
1713 | axobject-query: 3.2.1
1714 | damerau-levenshtein: 1.0.8
1715 | emoji-regex: 9.2.2
1716 | es-iterator-helpers: 1.0.17
1717 | eslint: 8.57.0
1718 | hasown: 2.0.2
1719 | jsx-ast-utils: 3.3.5
1720 | language-tags: 1.0.9
1721 | minimatch: 3.1.2
1722 | object.entries: 1.1.7
1723 | object.fromentries: 2.0.7
1724 | dev: true
1725 |
1726 | /eslint-plugin-react-hooks@4.6.0(eslint@8.57.0):
1727 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
1728 | engines: {node: '>=10'}
1729 | peerDependencies:
1730 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
1731 | dependencies:
1732 | eslint: 8.57.0
1733 | dev: true
1734 |
1735 | /eslint-plugin-react@7.34.0(eslint@8.57.0):
1736 | resolution: {integrity: sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ==}
1737 | engines: {node: '>=4'}
1738 | peerDependencies:
1739 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
1740 | dependencies:
1741 | array-includes: 3.1.7
1742 | array.prototype.findlast: 1.2.4
1743 | array.prototype.flatmap: 1.3.2
1744 | array.prototype.toreversed: 1.1.2
1745 | array.prototype.tosorted: 1.1.3
1746 | doctrine: 2.1.0
1747 | es-iterator-helpers: 1.0.17
1748 | eslint: 8.57.0
1749 | estraverse: 5.3.0
1750 | jsx-ast-utils: 3.3.5
1751 | minimatch: 3.1.2
1752 | object.entries: 1.1.7
1753 | object.fromentries: 2.0.7
1754 | object.hasown: 1.1.3
1755 | object.values: 1.1.7
1756 | prop-types: 15.8.1
1757 | resolve: 2.0.0-next.5
1758 | semver: 6.3.1
1759 | string.prototype.matchall: 4.0.10
1760 | dev: true
1761 |
1762 | /eslint-plugin-tailwindcss@3.15.1(tailwindcss@3.4.1):
1763 | resolution: {integrity: sha512-4RXRMIaMG07C2TBEW1k0VM4+dDazz1kxcZhkK4zirvmHGZTA4jnlSO2kq5mamuSPi+Wo17dh2SlC8IyFBuCd7Q==}
1764 | engines: {node: '>=12.13.0'}
1765 | peerDependencies:
1766 | tailwindcss: ^3.4.0
1767 | dependencies:
1768 | fast-glob: 3.3.2
1769 | postcss: 8.4.35
1770 | tailwindcss: 3.4.1
1771 | dev: true
1772 |
1773 | /eslint-scope@7.2.2:
1774 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
1775 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1776 | dependencies:
1777 | esrecurse: 4.3.0
1778 | estraverse: 5.3.0
1779 | dev: true
1780 |
1781 | /eslint-visitor-keys@3.4.3:
1782 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
1783 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1784 | dev: true
1785 |
1786 | /eslint@8.57.0:
1787 | resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
1788 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1789 | hasBin: true
1790 | dependencies:
1791 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
1792 | '@eslint-community/regexpp': 4.10.0
1793 | '@eslint/eslintrc': 2.1.4
1794 | '@eslint/js': 8.57.0
1795 | '@humanwhocodes/config-array': 0.11.14
1796 | '@humanwhocodes/module-importer': 1.0.1
1797 | '@nodelib/fs.walk': 1.2.8
1798 | '@ungap/structured-clone': 1.2.0
1799 | ajv: 6.12.6
1800 | chalk: 4.1.2
1801 | cross-spawn: 7.0.3
1802 | debug: 4.3.4
1803 | doctrine: 3.0.0
1804 | escape-string-regexp: 4.0.0
1805 | eslint-scope: 7.2.2
1806 | eslint-visitor-keys: 3.4.3
1807 | espree: 9.6.1
1808 | esquery: 1.5.0
1809 | esutils: 2.0.3
1810 | fast-deep-equal: 3.1.3
1811 | file-entry-cache: 6.0.1
1812 | find-up: 5.0.0
1813 | glob-parent: 6.0.2
1814 | globals: 13.24.0
1815 | graphemer: 1.4.0
1816 | ignore: 5.3.1
1817 | imurmurhash: 0.1.4
1818 | is-glob: 4.0.3
1819 | is-path-inside: 3.0.3
1820 | js-yaml: 4.1.0
1821 | json-stable-stringify-without-jsonify: 1.0.1
1822 | levn: 0.4.1
1823 | lodash.merge: 4.6.2
1824 | minimatch: 3.1.2
1825 | natural-compare: 1.4.0
1826 | optionator: 0.9.3
1827 | strip-ansi: 6.0.1
1828 | text-table: 0.2.0
1829 | transitivePeerDependencies:
1830 | - supports-color
1831 | dev: true
1832 |
1833 | /espree@9.6.1:
1834 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
1835 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1836 | dependencies:
1837 | acorn: 8.11.3
1838 | acorn-jsx: 5.3.2(acorn@8.11.3)
1839 | eslint-visitor-keys: 3.4.3
1840 | dev: true
1841 |
1842 | /esquery@1.5.0:
1843 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1844 | engines: {node: '>=0.10'}
1845 | dependencies:
1846 | estraverse: 5.3.0
1847 | dev: true
1848 |
1849 | /esrecurse@4.3.0:
1850 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1851 | engines: {node: '>=4.0'}
1852 | dependencies:
1853 | estraverse: 5.3.0
1854 | dev: true
1855 |
1856 | /estraverse@5.3.0:
1857 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1858 | engines: {node: '>=4.0'}
1859 | dev: true
1860 |
1861 | /esutils@2.0.3:
1862 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1863 | engines: {node: '>=0.10.0'}
1864 | dev: true
1865 |
1866 | /expand-template@2.0.3:
1867 | resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
1868 | engines: {node: '>=6'}
1869 | dev: false
1870 |
1871 | /fast-deep-equal@3.1.3:
1872 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1873 | dev: true
1874 |
1875 | /fast-glob@3.3.2:
1876 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
1877 | engines: {node: '>=8.6.0'}
1878 | dependencies:
1879 | '@nodelib/fs.stat': 2.0.5
1880 | '@nodelib/fs.walk': 1.2.8
1881 | glob-parent: 5.1.2
1882 | merge2: 1.4.1
1883 | micromatch: 4.0.5
1884 |
1885 | /fast-json-stable-stringify@2.1.0:
1886 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1887 | dev: true
1888 |
1889 | /fast-levenshtein@2.0.6:
1890 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1891 | dev: true
1892 |
1893 | /fastq@1.17.1:
1894 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
1895 | dependencies:
1896 | reusify: 1.0.4
1897 |
1898 | /file-entry-cache@6.0.1:
1899 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1900 | engines: {node: ^10.12.0 || >=12.0.0}
1901 | dependencies:
1902 | flat-cache: 3.2.0
1903 | dev: true
1904 |
1905 | /fill-range@7.0.1:
1906 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
1907 | engines: {node: '>=8'}
1908 | dependencies:
1909 | to-regex-range: 5.0.1
1910 |
1911 | /find-up@5.0.0:
1912 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1913 | engines: {node: '>=10'}
1914 | dependencies:
1915 | locate-path: 6.0.0
1916 | path-exists: 4.0.0
1917 | dev: true
1918 |
1919 | /flat-cache@3.2.0:
1920 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
1921 | engines: {node: ^10.12.0 || >=12.0.0}
1922 | dependencies:
1923 | flatted: 3.3.1
1924 | keyv: 4.5.4
1925 | rimraf: 3.0.2
1926 | dev: true
1927 |
1928 | /flatted@3.3.1:
1929 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
1930 | dev: true
1931 |
1932 | /for-each@0.3.3:
1933 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
1934 | dependencies:
1935 | is-callable: 1.2.7
1936 | dev: true
1937 |
1938 | /foreground-child@3.1.1:
1939 | resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
1940 | engines: {node: '>=14'}
1941 | dependencies:
1942 | cross-spawn: 7.0.3
1943 | signal-exit: 4.1.0
1944 |
1945 | /fraction.js@4.3.7:
1946 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
1947 | dev: true
1948 |
1949 | /framer-motion@11.0.13(react-dom@18.2.0)(react@18.2.0):
1950 | resolution: {integrity: sha512-zDjUj7dBiB6WklCvklKH06mwbYO0hzWrq5Rdz/DgeBFsCVQRmb9Zv7I9dPM7lX5c8eMxxba5D6sEVIv1kj/Ttg==}
1951 | peerDependencies:
1952 | '@emotion/is-prop-valid': '*'
1953 | react: ^18.0.0
1954 | react-dom: ^18.0.0
1955 | peerDependenciesMeta:
1956 | '@emotion/is-prop-valid':
1957 | optional: true
1958 | react:
1959 | optional: true
1960 | react-dom:
1961 | optional: true
1962 | dependencies:
1963 | react: 18.2.0
1964 | react-dom: 18.2.0(react@18.2.0)
1965 | tslib: 2.6.2
1966 | dev: false
1967 |
1968 | /fs-constants@1.0.0:
1969 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
1970 | dev: false
1971 |
1972 | /fs.realpath@1.0.0:
1973 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1974 | dev: true
1975 |
1976 | /fsevents@2.3.3:
1977 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1978 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1979 | os: [darwin]
1980 | requiresBuild: true
1981 | optional: true
1982 |
1983 | /function-bind@1.1.2:
1984 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
1985 |
1986 | /function.prototype.name@1.1.6:
1987 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
1988 | engines: {node: '>= 0.4'}
1989 | dependencies:
1990 | call-bind: 1.0.7
1991 | define-properties: 1.2.1
1992 | es-abstract: 1.22.5
1993 | functions-have-names: 1.2.3
1994 | dev: true
1995 |
1996 | /functions-have-names@1.2.3:
1997 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
1998 | dev: true
1999 |
2000 | /gensync@1.0.0-beta.2:
2001 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
2002 | engines: {node: '>=6.9.0'}
2003 |
2004 | /get-intrinsic@1.2.4:
2005 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
2006 | engines: {node: '>= 0.4'}
2007 | dependencies:
2008 | es-errors: 1.3.0
2009 | function-bind: 1.1.2
2010 | has-proto: 1.0.3
2011 | has-symbols: 1.0.3
2012 | hasown: 2.0.2
2013 | dev: true
2014 |
2015 | /get-nonce@1.0.1:
2016 | resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
2017 | engines: {node: '>=6'}
2018 | dev: false
2019 |
2020 | /get-symbol-description@1.0.2:
2021 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
2022 | engines: {node: '>= 0.4'}
2023 | dependencies:
2024 | call-bind: 1.0.7
2025 | es-errors: 1.3.0
2026 | get-intrinsic: 1.2.4
2027 | dev: true
2028 |
2029 | /github-from-package@0.0.0:
2030 | resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
2031 | dev: false
2032 |
2033 | /glob-parent@5.1.2:
2034 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
2035 | engines: {node: '>= 6'}
2036 | dependencies:
2037 | is-glob: 4.0.3
2038 |
2039 | /glob-parent@6.0.2:
2040 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
2041 | engines: {node: '>=10.13.0'}
2042 | dependencies:
2043 | is-glob: 4.0.3
2044 |
2045 | /glob@10.3.10:
2046 | resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
2047 | engines: {node: '>=16 || 14 >=14.17'}
2048 | hasBin: true
2049 | dependencies:
2050 | foreground-child: 3.1.1
2051 | jackspeak: 2.3.6
2052 | minimatch: 9.0.3
2053 | minipass: 7.0.4
2054 | path-scurry: 1.10.1
2055 |
2056 | /glob@7.1.7:
2057 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
2058 | dependencies:
2059 | fs.realpath: 1.0.0
2060 | inflight: 1.0.6
2061 | inherits: 2.0.4
2062 | minimatch: 3.1.2
2063 | once: 1.4.0
2064 | path-is-absolute: 1.0.1
2065 | dev: true
2066 |
2067 | /glob@7.2.3:
2068 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
2069 | dependencies:
2070 | fs.realpath: 1.0.0
2071 | inflight: 1.0.6
2072 | inherits: 2.0.4
2073 | minimatch: 3.1.2
2074 | once: 1.4.0
2075 | path-is-absolute: 1.0.1
2076 | dev: true
2077 |
2078 | /globals@11.12.0:
2079 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
2080 | engines: {node: '>=4'}
2081 |
2082 | /globals@13.24.0:
2083 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
2084 | engines: {node: '>=8'}
2085 | dependencies:
2086 | type-fest: 0.20.2
2087 | dev: true
2088 |
2089 | /globalthis@1.0.3:
2090 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
2091 | engines: {node: '>= 0.4'}
2092 | dependencies:
2093 | define-properties: 1.2.1
2094 | dev: true
2095 |
2096 | /globby@11.1.0:
2097 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
2098 | engines: {node: '>=10'}
2099 | dependencies:
2100 | array-union: 2.1.0
2101 | dir-glob: 3.0.1
2102 | fast-glob: 3.3.2
2103 | ignore: 5.3.1
2104 | merge2: 1.4.1
2105 | slash: 3.0.0
2106 | dev: true
2107 |
2108 | /gopd@1.0.1:
2109 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
2110 | dependencies:
2111 | get-intrinsic: 1.2.4
2112 | dev: true
2113 |
2114 | /graceful-fs@4.2.11:
2115 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
2116 | dev: false
2117 |
2118 | /graphemer@1.4.0:
2119 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
2120 | dev: true
2121 |
2122 | /has-bigints@1.0.2:
2123 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
2124 | dev: true
2125 |
2126 | /has-flag@3.0.0:
2127 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
2128 | engines: {node: '>=4'}
2129 |
2130 | /has-flag@4.0.0:
2131 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
2132 | engines: {node: '>=8'}
2133 | dev: true
2134 |
2135 | /has-property-descriptors@1.0.2:
2136 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
2137 | dependencies:
2138 | es-define-property: 1.0.0
2139 | dev: true
2140 |
2141 | /has-proto@1.0.3:
2142 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
2143 | engines: {node: '>= 0.4'}
2144 | dev: true
2145 |
2146 | /has-symbols@1.0.3:
2147 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
2148 | engines: {node: '>= 0.4'}
2149 | dev: true
2150 |
2151 | /has-tostringtag@1.0.2:
2152 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
2153 | engines: {node: '>= 0.4'}
2154 | dependencies:
2155 | has-symbols: 1.0.3
2156 | dev: true
2157 |
2158 | /hasown@2.0.2:
2159 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
2160 | engines: {node: '>= 0.4'}
2161 | dependencies:
2162 | function-bind: 1.1.2
2163 |
2164 | /ieee754@1.2.1:
2165 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
2166 | dev: false
2167 |
2168 | /ignore@5.3.1:
2169 | resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
2170 | engines: {node: '>= 4'}
2171 | dev: true
2172 |
2173 | /import-fresh@3.3.0:
2174 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
2175 | engines: {node: '>=6'}
2176 | dependencies:
2177 | parent-module: 1.0.1
2178 | resolve-from: 4.0.0
2179 | dev: true
2180 |
2181 | /imurmurhash@0.1.4:
2182 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
2183 | engines: {node: '>=0.8.19'}
2184 | dev: true
2185 |
2186 | /inflight@1.0.6:
2187 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
2188 | dependencies:
2189 | once: 1.4.0
2190 | wrappy: 1.0.2
2191 | dev: true
2192 |
2193 | /inherits@2.0.4:
2194 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
2195 |
2196 | /ini@1.3.8:
2197 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
2198 | dev: false
2199 |
2200 | /internal-slot@1.0.7:
2201 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
2202 | engines: {node: '>= 0.4'}
2203 | dependencies:
2204 | es-errors: 1.3.0
2205 | hasown: 2.0.2
2206 | side-channel: 1.0.6
2207 | dev: true
2208 |
2209 | /invariant@2.2.4:
2210 | resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
2211 | dependencies:
2212 | loose-envify: 1.4.0
2213 | dev: false
2214 |
2215 | /is-array-buffer@3.0.4:
2216 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
2217 | engines: {node: '>= 0.4'}
2218 | dependencies:
2219 | call-bind: 1.0.7
2220 | get-intrinsic: 1.2.4
2221 | dev: true
2222 |
2223 | /is-arrayish@0.3.2:
2224 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
2225 | dev: false
2226 |
2227 | /is-async-function@2.0.0:
2228 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
2229 | engines: {node: '>= 0.4'}
2230 | dependencies:
2231 | has-tostringtag: 1.0.2
2232 | dev: true
2233 |
2234 | /is-bigint@1.0.4:
2235 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
2236 | dependencies:
2237 | has-bigints: 1.0.2
2238 | dev: true
2239 |
2240 | /is-binary-path@2.1.0:
2241 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
2242 | engines: {node: '>=8'}
2243 | dependencies:
2244 | binary-extensions: 2.2.0
2245 |
2246 | /is-boolean-object@1.1.2:
2247 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
2248 | engines: {node: '>= 0.4'}
2249 | dependencies:
2250 | call-bind: 1.0.7
2251 | has-tostringtag: 1.0.2
2252 | dev: true
2253 |
2254 | /is-callable@1.2.7:
2255 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
2256 | engines: {node: '>= 0.4'}
2257 | dev: true
2258 |
2259 | /is-core-module@2.13.1:
2260 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
2261 | dependencies:
2262 | hasown: 2.0.2
2263 |
2264 | /is-date-object@1.0.5:
2265 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
2266 | engines: {node: '>= 0.4'}
2267 | dependencies:
2268 | has-tostringtag: 1.0.2
2269 | dev: true
2270 |
2271 | /is-extglob@2.1.1:
2272 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
2273 | engines: {node: '>=0.10.0'}
2274 |
2275 | /is-finalizationregistry@1.0.2:
2276 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
2277 | dependencies:
2278 | call-bind: 1.0.7
2279 | dev: true
2280 |
2281 | /is-fullwidth-code-point@3.0.0:
2282 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
2283 | engines: {node: '>=8'}
2284 |
2285 | /is-generator-function@1.0.10:
2286 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
2287 | engines: {node: '>= 0.4'}
2288 | dependencies:
2289 | has-tostringtag: 1.0.2
2290 | dev: true
2291 |
2292 | /is-glob@4.0.3:
2293 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
2294 | engines: {node: '>=0.10.0'}
2295 | dependencies:
2296 | is-extglob: 2.1.1
2297 |
2298 | /is-map@2.0.3:
2299 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
2300 | engines: {node: '>= 0.4'}
2301 | dev: true
2302 |
2303 | /is-negative-zero@2.0.3:
2304 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
2305 | engines: {node: '>= 0.4'}
2306 | dev: true
2307 |
2308 | /is-number-object@1.0.7:
2309 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
2310 | engines: {node: '>= 0.4'}
2311 | dependencies:
2312 | has-tostringtag: 1.0.2
2313 | dev: true
2314 |
2315 | /is-number@7.0.0:
2316 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
2317 | engines: {node: '>=0.12.0'}
2318 |
2319 | /is-path-inside@3.0.3:
2320 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
2321 | engines: {node: '>=8'}
2322 | dev: true
2323 |
2324 | /is-regex@1.1.4:
2325 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
2326 | engines: {node: '>= 0.4'}
2327 | dependencies:
2328 | call-bind: 1.0.7
2329 | has-tostringtag: 1.0.2
2330 | dev: true
2331 |
2332 | /is-set@2.0.3:
2333 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
2334 | engines: {node: '>= 0.4'}
2335 | dev: true
2336 |
2337 | /is-shared-array-buffer@1.0.3:
2338 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
2339 | engines: {node: '>= 0.4'}
2340 | dependencies:
2341 | call-bind: 1.0.7
2342 | dev: true
2343 |
2344 | /is-string@1.0.7:
2345 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
2346 | engines: {node: '>= 0.4'}
2347 | dependencies:
2348 | has-tostringtag: 1.0.2
2349 | dev: true
2350 |
2351 | /is-symbol@1.0.4:
2352 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
2353 | engines: {node: '>= 0.4'}
2354 | dependencies:
2355 | has-symbols: 1.0.3
2356 | dev: true
2357 |
2358 | /is-typed-array@1.1.13:
2359 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
2360 | engines: {node: '>= 0.4'}
2361 | dependencies:
2362 | which-typed-array: 1.1.15
2363 | dev: true
2364 |
2365 | /is-weakmap@2.0.2:
2366 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
2367 | engines: {node: '>= 0.4'}
2368 | dev: true
2369 |
2370 | /is-weakref@1.0.2:
2371 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
2372 | dependencies:
2373 | call-bind: 1.0.7
2374 | dev: true
2375 |
2376 | /is-weakset@2.0.3:
2377 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
2378 | engines: {node: '>= 0.4'}
2379 | dependencies:
2380 | call-bind: 1.0.7
2381 | get-intrinsic: 1.2.4
2382 | dev: true
2383 |
2384 | /isarray@2.0.5:
2385 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
2386 | dev: true
2387 |
2388 | /isexe@2.0.0:
2389 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
2390 |
2391 | /iterator.prototype@1.1.2:
2392 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
2393 | dependencies:
2394 | define-properties: 1.2.1
2395 | get-intrinsic: 1.2.4
2396 | has-symbols: 1.0.3
2397 | reflect.getprototypeof: 1.0.5
2398 | set-function-name: 2.0.2
2399 | dev: true
2400 |
2401 | /jackspeak@2.3.6:
2402 | resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
2403 | engines: {node: '>=14'}
2404 | dependencies:
2405 | '@isaacs/cliui': 8.0.2
2406 | optionalDependencies:
2407 | '@pkgjs/parseargs': 0.11.0
2408 |
2409 | /javascript-natural-sort@0.7.1:
2410 | resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==}
2411 | dev: true
2412 |
2413 | /jiti@1.21.0:
2414 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
2415 | hasBin: true
2416 |
2417 | /js-tokens@4.0.0:
2418 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
2419 |
2420 | /js-yaml@4.1.0:
2421 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
2422 | hasBin: true
2423 | dependencies:
2424 | argparse: 2.0.1
2425 | dev: true
2426 |
2427 | /jsesc@2.5.2:
2428 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
2429 | engines: {node: '>=4'}
2430 | hasBin: true
2431 |
2432 | /json-buffer@3.0.1:
2433 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
2434 | dev: true
2435 |
2436 | /json-schema-traverse@0.4.1:
2437 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
2438 | dev: true
2439 |
2440 | /json-stable-stringify-without-jsonify@1.0.1:
2441 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
2442 | dev: true
2443 |
2444 | /json5@1.0.2:
2445 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
2446 | hasBin: true
2447 | dependencies:
2448 | minimist: 1.2.8
2449 | dev: true
2450 |
2451 | /json5@2.2.3:
2452 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
2453 | engines: {node: '>=6'}
2454 | hasBin: true
2455 |
2456 | /jsx-ast-utils@3.3.5:
2457 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
2458 | engines: {node: '>=4.0'}
2459 | dependencies:
2460 | array-includes: 3.1.7
2461 | array.prototype.flat: 1.3.2
2462 | object.assign: 4.1.5
2463 | object.values: 1.1.7
2464 | dev: true
2465 |
2466 | /keyv@4.5.4:
2467 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
2468 | dependencies:
2469 | json-buffer: 3.0.1
2470 | dev: true
2471 |
2472 | /language-subtag-registry@0.3.22:
2473 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
2474 | dev: true
2475 |
2476 | /language-tags@1.0.9:
2477 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
2478 | engines: {node: '>=0.10'}
2479 | dependencies:
2480 | language-subtag-registry: 0.3.22
2481 | dev: true
2482 |
2483 | /levn@0.4.1:
2484 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
2485 | engines: {node: '>= 0.8.0'}
2486 | dependencies:
2487 | prelude-ls: 1.2.1
2488 | type-check: 0.4.0
2489 | dev: true
2490 |
2491 | /lilconfig@2.1.0:
2492 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
2493 | engines: {node: '>=10'}
2494 |
2495 | /lilconfig@3.1.1:
2496 | resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
2497 | engines: {node: '>=14'}
2498 |
2499 | /lines-and-columns@1.2.4:
2500 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
2501 |
2502 | /locate-path@6.0.0:
2503 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
2504 | engines: {node: '>=10'}
2505 | dependencies:
2506 | p-locate: 5.0.0
2507 | dev: true
2508 |
2509 | /lodash.clone@4.5.0:
2510 | resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==}
2511 | dev: true
2512 |
2513 | /lodash.isequal@4.5.0:
2514 | resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
2515 | dev: true
2516 |
2517 | /lodash.merge@4.6.2:
2518 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
2519 | dev: true
2520 |
2521 | /loose-envify@1.4.0:
2522 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
2523 | hasBin: true
2524 | dependencies:
2525 | js-tokens: 4.0.0
2526 |
2527 | /lru-cache@10.2.0:
2528 | resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
2529 | engines: {node: 14 || >=16.14}
2530 |
2531 | /lru-cache@5.1.1:
2532 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
2533 | dependencies:
2534 | yallist: 3.1.1
2535 |
2536 | /lru-cache@6.0.0:
2537 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
2538 | engines: {node: '>=10'}
2539 | dependencies:
2540 | yallist: 4.0.0
2541 |
2542 | /lucide-react@0.105.0-alpha.4(react@18.2.0):
2543 | resolution: {integrity: sha512-QclWOzKYj7sDW33jTQK4enmxL1LmI2SHFqEEP56EWhvs4mmlbbFe6ALYcdcdGysNISNovEbH5WBHg8tN5DLn0w==}
2544 | peerDependencies:
2545 | react: ^16.5.1 || ^17.0.0 || ^18.0.0
2546 | dependencies:
2547 | react: 18.2.0
2548 | dev: false
2549 |
2550 | /merge2@1.4.1:
2551 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
2552 | engines: {node: '>= 8'}
2553 |
2554 | /micromatch@4.0.5:
2555 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
2556 | engines: {node: '>=8.6'}
2557 | dependencies:
2558 | braces: 3.0.2
2559 | picomatch: 2.3.1
2560 |
2561 | /mimic-response@3.1.0:
2562 | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
2563 | engines: {node: '>=10'}
2564 | dev: false
2565 |
2566 | /minimatch@3.1.2:
2567 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
2568 | dependencies:
2569 | brace-expansion: 1.1.11
2570 | dev: true
2571 |
2572 | /minimatch@9.0.3:
2573 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
2574 | engines: {node: '>=16 || 14 >=14.17'}
2575 | dependencies:
2576 | brace-expansion: 2.0.1
2577 |
2578 | /minimist@1.2.8:
2579 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
2580 |
2581 | /minipass@7.0.4:
2582 | resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
2583 | engines: {node: '>=16 || 14 >=14.17'}
2584 |
2585 | /mkdirp-classic@0.5.3:
2586 | resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
2587 | dev: false
2588 |
2589 | /ms@2.1.2:
2590 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
2591 |
2592 | /ms@2.1.3:
2593 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
2594 | dev: true
2595 |
2596 | /mz@2.7.0:
2597 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
2598 | dependencies:
2599 | any-promise: 1.3.0
2600 | object-assign: 4.1.1
2601 | thenify-all: 1.6.0
2602 |
2603 | /nanoid@3.3.7:
2604 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
2605 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2606 | hasBin: true
2607 |
2608 | /napi-build-utils@1.0.2:
2609 | resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
2610 | dev: false
2611 |
2612 | /natural-compare@1.4.0:
2613 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
2614 | dev: true
2615 |
2616 | /next-themes@0.2.1(next@14.1.3)(react-dom@18.2.0)(react@18.2.0):
2617 | resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
2618 | peerDependencies:
2619 | next: '*'
2620 | react: '*'
2621 | react-dom: '*'
2622 | dependencies:
2623 | next: 14.1.3(@babel/core@7.24.0)(react-dom@18.2.0)(react@18.2.0)
2624 | react: 18.2.0
2625 | react-dom: 18.2.0(react@18.2.0)
2626 | dev: false
2627 |
2628 | /next@14.1.3(@babel/core@7.24.0)(react-dom@18.2.0)(react@18.2.0):
2629 | resolution: {integrity: sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==}
2630 | engines: {node: '>=18.17.0'}
2631 | hasBin: true
2632 | peerDependencies:
2633 | '@opentelemetry/api': ^1.1.0
2634 | react: ^18.2.0
2635 | react-dom: ^18.2.0
2636 | sass: ^1.3.0
2637 | peerDependenciesMeta:
2638 | '@opentelemetry/api':
2639 | optional: true
2640 | sass:
2641 | optional: true
2642 | dependencies:
2643 | '@next/env': 14.1.3
2644 | '@swc/helpers': 0.5.2
2645 | busboy: 1.6.0
2646 | caniuse-lite: 1.0.30001597
2647 | graceful-fs: 4.2.11
2648 | postcss: 8.4.31
2649 | react: 18.2.0
2650 | react-dom: 18.2.0(react@18.2.0)
2651 | styled-jsx: 5.1.1(@babel/core@7.24.0)(react@18.2.0)
2652 | optionalDependencies:
2653 | '@next/swc-darwin-arm64': 14.1.3
2654 | '@next/swc-darwin-x64': 14.1.3
2655 | '@next/swc-linux-arm64-gnu': 14.1.3
2656 | '@next/swc-linux-arm64-musl': 14.1.3
2657 | '@next/swc-linux-x64-gnu': 14.1.3
2658 | '@next/swc-linux-x64-musl': 14.1.3
2659 | '@next/swc-win32-arm64-msvc': 14.1.3
2660 | '@next/swc-win32-ia32-msvc': 14.1.3
2661 | '@next/swc-win32-x64-msvc': 14.1.3
2662 | transitivePeerDependencies:
2663 | - '@babel/core'
2664 | - babel-plugin-macros
2665 | dev: false
2666 |
2667 | /node-abi@3.56.0:
2668 | resolution: {integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==}
2669 | engines: {node: '>=10'}
2670 | dependencies:
2671 | semver: 7.6.0
2672 | dev: false
2673 |
2674 | /node-addon-api@5.1.0:
2675 | resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==}
2676 | dev: false
2677 |
2678 | /node-releases@2.0.14:
2679 | resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
2680 |
2681 | /normalize-path@3.0.0:
2682 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
2683 | engines: {node: '>=0.10.0'}
2684 |
2685 | /normalize-range@0.1.2:
2686 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
2687 | engines: {node: '>=0.10.0'}
2688 | dev: true
2689 |
2690 | /object-assign@4.1.1:
2691 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
2692 | engines: {node: '>=0.10.0'}
2693 |
2694 | /object-hash@3.0.0:
2695 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
2696 | engines: {node: '>= 6'}
2697 |
2698 | /object-inspect@1.13.1:
2699 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
2700 | dev: true
2701 |
2702 | /object-keys@1.1.1:
2703 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
2704 | engines: {node: '>= 0.4'}
2705 | dev: true
2706 |
2707 | /object.assign@4.1.5:
2708 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
2709 | engines: {node: '>= 0.4'}
2710 | dependencies:
2711 | call-bind: 1.0.7
2712 | define-properties: 1.2.1
2713 | has-symbols: 1.0.3
2714 | object-keys: 1.1.1
2715 | dev: true
2716 |
2717 | /object.entries@1.1.7:
2718 | resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
2719 | engines: {node: '>= 0.4'}
2720 | dependencies:
2721 | call-bind: 1.0.7
2722 | define-properties: 1.2.1
2723 | es-abstract: 1.22.5
2724 | dev: true
2725 |
2726 | /object.fromentries@2.0.7:
2727 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
2728 | engines: {node: '>= 0.4'}
2729 | dependencies:
2730 | call-bind: 1.0.7
2731 | define-properties: 1.2.1
2732 | es-abstract: 1.22.5
2733 | dev: true
2734 |
2735 | /object.groupby@1.0.2:
2736 | resolution: {integrity: sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==}
2737 | dependencies:
2738 | array.prototype.filter: 1.0.3
2739 | call-bind: 1.0.7
2740 | define-properties: 1.2.1
2741 | es-abstract: 1.22.5
2742 | es-errors: 1.3.0
2743 | dev: true
2744 |
2745 | /object.hasown@1.1.3:
2746 | resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==}
2747 | dependencies:
2748 | define-properties: 1.2.1
2749 | es-abstract: 1.22.5
2750 | dev: true
2751 |
2752 | /object.values@1.1.7:
2753 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
2754 | engines: {node: '>= 0.4'}
2755 | dependencies:
2756 | call-bind: 1.0.7
2757 | define-properties: 1.2.1
2758 | es-abstract: 1.22.5
2759 | dev: true
2760 |
2761 | /once@1.4.0:
2762 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
2763 | dependencies:
2764 | wrappy: 1.0.2
2765 |
2766 | /optionator@0.9.3:
2767 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
2768 | engines: {node: '>= 0.8.0'}
2769 | dependencies:
2770 | '@aashutoshrathi/word-wrap': 1.2.6
2771 | deep-is: 0.1.4
2772 | fast-levenshtein: 2.0.6
2773 | levn: 0.4.1
2774 | prelude-ls: 1.2.1
2775 | type-check: 0.4.0
2776 | dev: true
2777 |
2778 | /p-limit@3.1.0:
2779 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
2780 | engines: {node: '>=10'}
2781 | dependencies:
2782 | yocto-queue: 0.1.0
2783 | dev: true
2784 |
2785 | /p-locate@5.0.0:
2786 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
2787 | engines: {node: '>=10'}
2788 | dependencies:
2789 | p-limit: 3.1.0
2790 | dev: true
2791 |
2792 | /parent-module@1.0.1:
2793 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
2794 | engines: {node: '>=6'}
2795 | dependencies:
2796 | callsites: 3.1.0
2797 | dev: true
2798 |
2799 | /path-exists@4.0.0:
2800 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
2801 | engines: {node: '>=8'}
2802 | dev: true
2803 |
2804 | /path-is-absolute@1.0.1:
2805 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
2806 | engines: {node: '>=0.10.0'}
2807 | dev: true
2808 |
2809 | /path-key@3.1.1:
2810 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
2811 | engines: {node: '>=8'}
2812 |
2813 | /path-parse@1.0.7:
2814 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
2815 |
2816 | /path-scurry@1.10.1:
2817 | resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
2818 | engines: {node: '>=16 || 14 >=14.17'}
2819 | dependencies:
2820 | lru-cache: 10.2.0
2821 | minipass: 7.0.4
2822 |
2823 | /path-type@4.0.0:
2824 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
2825 | engines: {node: '>=8'}
2826 | dev: true
2827 |
2828 | /picocolors@1.0.0:
2829 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
2830 |
2831 | /picomatch@2.3.1:
2832 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
2833 | engines: {node: '>=8.6'}
2834 |
2835 | /pify@2.3.0:
2836 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
2837 | engines: {node: '>=0.10.0'}
2838 |
2839 | /pirates@4.0.6:
2840 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
2841 | engines: {node: '>= 6'}
2842 |
2843 | /possible-typed-array-names@1.0.0:
2844 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
2845 | engines: {node: '>= 0.4'}
2846 | dev: true
2847 |
2848 | /postcss-import@15.1.0(postcss@8.4.35):
2849 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
2850 | engines: {node: '>=14.0.0'}
2851 | peerDependencies:
2852 | postcss: ^8.0.0
2853 | dependencies:
2854 | postcss: 8.4.35
2855 | postcss-value-parser: 4.2.0
2856 | read-cache: 1.0.0
2857 | resolve: 1.22.8
2858 |
2859 | /postcss-js@4.0.1(postcss@8.4.35):
2860 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
2861 | engines: {node: ^12 || ^14 || >= 16}
2862 | peerDependencies:
2863 | postcss: ^8.4.21
2864 | dependencies:
2865 | camelcase-css: 2.0.1
2866 | postcss: 8.4.35
2867 |
2868 | /postcss-load-config@4.0.2(postcss@8.4.35):
2869 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
2870 | engines: {node: '>= 14'}
2871 | peerDependencies:
2872 | postcss: '>=8.0.9'
2873 | ts-node: '>=9.0.0'
2874 | peerDependenciesMeta:
2875 | postcss:
2876 | optional: true
2877 | ts-node:
2878 | optional: true
2879 | dependencies:
2880 | lilconfig: 3.1.1
2881 | postcss: 8.4.35
2882 | yaml: 2.4.1
2883 |
2884 | /postcss-nested@6.0.1(postcss@8.4.35):
2885 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
2886 | engines: {node: '>=12.0'}
2887 | peerDependencies:
2888 | postcss: ^8.2.14
2889 | dependencies:
2890 | postcss: 8.4.35
2891 | postcss-selector-parser: 6.0.16
2892 |
2893 | /postcss-selector-parser@6.0.16:
2894 | resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
2895 | engines: {node: '>=4'}
2896 | dependencies:
2897 | cssesc: 3.0.0
2898 | util-deprecate: 1.0.2
2899 |
2900 | /postcss-value-parser@4.2.0:
2901 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
2902 |
2903 | /postcss@8.4.31:
2904 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
2905 | engines: {node: ^10 || ^12 || >=14}
2906 | dependencies:
2907 | nanoid: 3.3.7
2908 | picocolors: 1.0.0
2909 | source-map-js: 1.0.2
2910 | dev: false
2911 |
2912 | /postcss@8.4.35:
2913 | resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
2914 | engines: {node: ^10 || ^12 || >=14}
2915 | dependencies:
2916 | nanoid: 3.3.7
2917 | picocolors: 1.0.0
2918 | source-map-js: 1.0.2
2919 |
2920 | /prebuild-install@7.1.2:
2921 | resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
2922 | engines: {node: '>=10'}
2923 | hasBin: true
2924 | dependencies:
2925 | detect-libc: 2.0.2
2926 | expand-template: 2.0.3
2927 | github-from-package: 0.0.0
2928 | minimist: 1.2.8
2929 | mkdirp-classic: 0.5.3
2930 | napi-build-utils: 1.0.2
2931 | node-abi: 3.56.0
2932 | pump: 3.0.0
2933 | rc: 1.2.8
2934 | simple-get: 4.0.1
2935 | tar-fs: 2.1.1
2936 | tunnel-agent: 0.6.0
2937 | dev: false
2938 |
2939 | /prelude-ls@1.2.1:
2940 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2941 | engines: {node: '>= 0.8.0'}
2942 | dev: true
2943 |
2944 | /prettier@2.8.8:
2945 | resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
2946 | engines: {node: '>=10.13.0'}
2947 | hasBin: true
2948 | dev: true
2949 |
2950 | /prop-types@15.8.1:
2951 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
2952 | dependencies:
2953 | loose-envify: 1.4.0
2954 | object-assign: 4.1.1
2955 | react-is: 16.13.1
2956 | dev: true
2957 |
2958 | /pump@3.0.0:
2959 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
2960 | dependencies:
2961 | end-of-stream: 1.4.4
2962 | once: 1.4.0
2963 | dev: false
2964 |
2965 | /punycode@2.3.1:
2966 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
2967 | engines: {node: '>=6'}
2968 | dev: true
2969 |
2970 | /queue-microtask@1.2.3:
2971 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
2972 |
2973 | /rc@1.2.8:
2974 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
2975 | hasBin: true
2976 | dependencies:
2977 | deep-extend: 0.6.0
2978 | ini: 1.3.8
2979 | minimist: 1.2.8
2980 | strip-json-comments: 2.0.1
2981 | dev: false
2982 |
2983 | /react-dom@18.2.0(react@18.2.0):
2984 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
2985 | peerDependencies:
2986 | react: ^18.2.0
2987 | dependencies:
2988 | loose-envify: 1.4.0
2989 | react: 18.2.0
2990 | scheduler: 0.23.0
2991 | dev: false
2992 |
2993 | /react-is@16.13.1:
2994 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
2995 | dev: true
2996 |
2997 | /react-remove-scroll-bar@2.3.6(@types/react@18.2.65)(react@18.2.0):
2998 | resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
2999 | engines: {node: '>=10'}
3000 | peerDependencies:
3001 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
3002 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3003 | peerDependenciesMeta:
3004 | '@types/react':
3005 | optional: true
3006 | dependencies:
3007 | '@types/react': 18.2.65
3008 | react: 18.2.0
3009 | react-style-singleton: 2.2.1(@types/react@18.2.65)(react@18.2.0)
3010 | tslib: 2.6.2
3011 | dev: false
3012 |
3013 | /react-remove-scroll@2.5.5(@types/react@18.2.65)(react@18.2.0):
3014 | resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
3015 | engines: {node: '>=10'}
3016 | peerDependencies:
3017 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
3018 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3019 | peerDependenciesMeta:
3020 | '@types/react':
3021 | optional: true
3022 | dependencies:
3023 | '@types/react': 18.2.65
3024 | react: 18.2.0
3025 | react-remove-scroll-bar: 2.3.6(@types/react@18.2.65)(react@18.2.0)
3026 | react-style-singleton: 2.2.1(@types/react@18.2.65)(react@18.2.0)
3027 | tslib: 2.6.2
3028 | use-callback-ref: 1.3.1(@types/react@18.2.65)(react@18.2.0)
3029 | use-sidecar: 1.1.2(@types/react@18.2.65)(react@18.2.0)
3030 | dev: false
3031 |
3032 | /react-style-singleton@2.2.1(@types/react@18.2.65)(react@18.2.0):
3033 | resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
3034 | engines: {node: '>=10'}
3035 | peerDependencies:
3036 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
3037 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3038 | peerDependenciesMeta:
3039 | '@types/react':
3040 | optional: true
3041 | dependencies:
3042 | '@types/react': 18.2.65
3043 | get-nonce: 1.0.1
3044 | invariant: 2.2.4
3045 | react: 18.2.0
3046 | tslib: 2.6.2
3047 | dev: false
3048 |
3049 | /react@18.2.0:
3050 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
3051 | engines: {node: '>=0.10.0'}
3052 | dependencies:
3053 | loose-envify: 1.4.0
3054 | dev: false
3055 |
3056 | /read-cache@1.0.0:
3057 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
3058 | dependencies:
3059 | pify: 2.3.0
3060 |
3061 | /readable-stream@3.6.2:
3062 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
3063 | engines: {node: '>= 6'}
3064 | dependencies:
3065 | inherits: 2.0.4
3066 | string_decoder: 1.3.0
3067 | util-deprecate: 1.0.2
3068 | dev: false
3069 |
3070 | /readdirp@3.6.0:
3071 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
3072 | engines: {node: '>=8.10.0'}
3073 | dependencies:
3074 | picomatch: 2.3.1
3075 |
3076 | /reflect.getprototypeof@1.0.5:
3077 | resolution: {integrity: sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==}
3078 | engines: {node: '>= 0.4'}
3079 | dependencies:
3080 | call-bind: 1.0.7
3081 | define-properties: 1.2.1
3082 | es-abstract: 1.22.5
3083 | es-errors: 1.3.0
3084 | get-intrinsic: 1.2.4
3085 | globalthis: 1.0.3
3086 | which-builtin-type: 1.1.3
3087 | dev: true
3088 |
3089 | /regenerator-runtime@0.14.1:
3090 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
3091 |
3092 | /regexp.prototype.flags@1.5.2:
3093 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
3094 | engines: {node: '>= 0.4'}
3095 | dependencies:
3096 | call-bind: 1.0.7
3097 | define-properties: 1.2.1
3098 | es-errors: 1.3.0
3099 | set-function-name: 2.0.2
3100 | dev: true
3101 |
3102 | /resolve-from@4.0.0:
3103 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
3104 | engines: {node: '>=4'}
3105 | dev: true
3106 |
3107 | /resolve@1.22.8:
3108 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
3109 | hasBin: true
3110 | dependencies:
3111 | is-core-module: 2.13.1
3112 | path-parse: 1.0.7
3113 | supports-preserve-symlinks-flag: 1.0.0
3114 |
3115 | /resolve@2.0.0-next.5:
3116 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
3117 | hasBin: true
3118 | dependencies:
3119 | is-core-module: 2.13.1
3120 | path-parse: 1.0.7
3121 | supports-preserve-symlinks-flag: 1.0.0
3122 | dev: true
3123 |
3124 | /reusify@1.0.4:
3125 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
3126 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
3127 |
3128 | /rimraf@3.0.2:
3129 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
3130 | hasBin: true
3131 | dependencies:
3132 | glob: 7.2.3
3133 | dev: true
3134 |
3135 | /run-parallel@1.2.0:
3136 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
3137 | dependencies:
3138 | queue-microtask: 1.2.3
3139 |
3140 | /safe-array-concat@1.1.2:
3141 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
3142 | engines: {node: '>=0.4'}
3143 | dependencies:
3144 | call-bind: 1.0.7
3145 | get-intrinsic: 1.2.4
3146 | has-symbols: 1.0.3
3147 | isarray: 2.0.5
3148 | dev: true
3149 |
3150 | /safe-buffer@5.2.1:
3151 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
3152 | dev: false
3153 |
3154 | /safe-regex-test@1.0.3:
3155 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
3156 | engines: {node: '>= 0.4'}
3157 | dependencies:
3158 | call-bind: 1.0.7
3159 | es-errors: 1.3.0
3160 | is-regex: 1.1.4
3161 | dev: true
3162 |
3163 | /scheduler@0.23.0:
3164 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
3165 | dependencies:
3166 | loose-envify: 1.4.0
3167 | dev: false
3168 |
3169 | /semver@6.3.1:
3170 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
3171 | hasBin: true
3172 |
3173 | /semver@7.6.0:
3174 | resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}
3175 | engines: {node: '>=10'}
3176 | hasBin: true
3177 | dependencies:
3178 | lru-cache: 6.0.0
3179 |
3180 | /set-function-length@1.2.2:
3181 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
3182 | engines: {node: '>= 0.4'}
3183 | dependencies:
3184 | define-data-property: 1.1.4
3185 | es-errors: 1.3.0
3186 | function-bind: 1.1.2
3187 | get-intrinsic: 1.2.4
3188 | gopd: 1.0.1
3189 | has-property-descriptors: 1.0.2
3190 | dev: true
3191 |
3192 | /set-function-name@2.0.2:
3193 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
3194 | engines: {node: '>= 0.4'}
3195 | dependencies:
3196 | define-data-property: 1.1.4
3197 | es-errors: 1.3.0
3198 | functions-have-names: 1.2.3
3199 | has-property-descriptors: 1.0.2
3200 | dev: true
3201 |
3202 | /sharp@0.31.3:
3203 | resolution: {integrity: sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==}
3204 | engines: {node: '>=14.15.0'}
3205 | requiresBuild: true
3206 | dependencies:
3207 | color: 4.2.3
3208 | detect-libc: 2.0.2
3209 | node-addon-api: 5.1.0
3210 | prebuild-install: 7.1.2
3211 | semver: 7.6.0
3212 | simple-get: 4.0.1
3213 | tar-fs: 2.1.1
3214 | tunnel-agent: 0.6.0
3215 | dev: false
3216 |
3217 | /shebang-command@2.0.0:
3218 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
3219 | engines: {node: '>=8'}
3220 | dependencies:
3221 | shebang-regex: 3.0.0
3222 |
3223 | /shebang-regex@3.0.0:
3224 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
3225 | engines: {node: '>=8'}
3226 |
3227 | /side-channel@1.0.6:
3228 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
3229 | engines: {node: '>= 0.4'}
3230 | dependencies:
3231 | call-bind: 1.0.7
3232 | es-errors: 1.3.0
3233 | get-intrinsic: 1.2.4
3234 | object-inspect: 1.13.1
3235 | dev: true
3236 |
3237 | /signal-exit@4.1.0:
3238 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
3239 | engines: {node: '>=14'}
3240 |
3241 | /simple-concat@1.0.1:
3242 | resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
3243 | dev: false
3244 |
3245 | /simple-get@4.0.1:
3246 | resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
3247 | dependencies:
3248 | decompress-response: 6.0.0
3249 | once: 1.4.0
3250 | simple-concat: 1.0.1
3251 | dev: false
3252 |
3253 | /simple-swizzle@0.2.2:
3254 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
3255 | dependencies:
3256 | is-arrayish: 0.3.2
3257 | dev: false
3258 |
3259 | /slash@3.0.0:
3260 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
3261 | engines: {node: '>=8'}
3262 | dev: true
3263 |
3264 | /source-map-js@1.0.2:
3265 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
3266 | engines: {node: '>=0.10.0'}
3267 |
3268 | /streamsearch@1.1.0:
3269 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
3270 | engines: {node: '>=10.0.0'}
3271 | dev: false
3272 |
3273 | /string-width@4.2.3:
3274 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
3275 | engines: {node: '>=8'}
3276 | dependencies:
3277 | emoji-regex: 8.0.0
3278 | is-fullwidth-code-point: 3.0.0
3279 | strip-ansi: 6.0.1
3280 |
3281 | /string-width@5.1.2:
3282 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
3283 | engines: {node: '>=12'}
3284 | dependencies:
3285 | eastasianwidth: 0.2.0
3286 | emoji-regex: 9.2.2
3287 | strip-ansi: 7.1.0
3288 |
3289 | /string.prototype.matchall@4.0.10:
3290 | resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==}
3291 | dependencies:
3292 | call-bind: 1.0.7
3293 | define-properties: 1.2.1
3294 | es-abstract: 1.22.5
3295 | get-intrinsic: 1.2.4
3296 | has-symbols: 1.0.3
3297 | internal-slot: 1.0.7
3298 | regexp.prototype.flags: 1.5.2
3299 | set-function-name: 2.0.2
3300 | side-channel: 1.0.6
3301 | dev: true
3302 |
3303 | /string.prototype.trim@1.2.8:
3304 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
3305 | engines: {node: '>= 0.4'}
3306 | dependencies:
3307 | call-bind: 1.0.7
3308 | define-properties: 1.2.1
3309 | es-abstract: 1.22.5
3310 | dev: true
3311 |
3312 | /string.prototype.trimend@1.0.7:
3313 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
3314 | dependencies:
3315 | call-bind: 1.0.7
3316 | define-properties: 1.2.1
3317 | es-abstract: 1.22.5
3318 | dev: true
3319 |
3320 | /string.prototype.trimstart@1.0.7:
3321 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
3322 | dependencies:
3323 | call-bind: 1.0.7
3324 | define-properties: 1.2.1
3325 | es-abstract: 1.22.5
3326 | dev: true
3327 |
3328 | /string_decoder@1.3.0:
3329 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
3330 | dependencies:
3331 | safe-buffer: 5.2.1
3332 | dev: false
3333 |
3334 | /strip-ansi@6.0.1:
3335 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
3336 | engines: {node: '>=8'}
3337 | dependencies:
3338 | ansi-regex: 5.0.1
3339 |
3340 | /strip-ansi@7.1.0:
3341 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
3342 | engines: {node: '>=12'}
3343 | dependencies:
3344 | ansi-regex: 6.0.1
3345 |
3346 | /strip-bom@3.0.0:
3347 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
3348 | engines: {node: '>=4'}
3349 | dev: true
3350 |
3351 | /strip-json-comments@2.0.1:
3352 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
3353 | engines: {node: '>=0.10.0'}
3354 | dev: false
3355 |
3356 | /strip-json-comments@3.1.1:
3357 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
3358 | engines: {node: '>=8'}
3359 | dev: true
3360 |
3361 | /styled-jsx@5.1.1(@babel/core@7.24.0)(react@18.2.0):
3362 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
3363 | engines: {node: '>= 12.0.0'}
3364 | peerDependencies:
3365 | '@babel/core': '*'
3366 | babel-plugin-macros: '*'
3367 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0'
3368 | peerDependenciesMeta:
3369 | '@babel/core':
3370 | optional: true
3371 | babel-plugin-macros:
3372 | optional: true
3373 | dependencies:
3374 | '@babel/core': 7.24.0
3375 | client-only: 0.0.1
3376 | react: 18.2.0
3377 | dev: false
3378 |
3379 | /sucrase@3.35.0:
3380 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
3381 | engines: {node: '>=16 || 14 >=14.17'}
3382 | hasBin: true
3383 | dependencies:
3384 | '@jridgewell/gen-mapping': 0.3.5
3385 | commander: 4.1.1
3386 | glob: 10.3.10
3387 | lines-and-columns: 1.2.4
3388 | mz: 2.7.0
3389 | pirates: 4.0.6
3390 | ts-interface-checker: 0.1.13
3391 |
3392 | /supports-color@5.5.0:
3393 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
3394 | engines: {node: '>=4'}
3395 | dependencies:
3396 | has-flag: 3.0.0
3397 |
3398 | /supports-color@7.2.0:
3399 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
3400 | engines: {node: '>=8'}
3401 | dependencies:
3402 | has-flag: 4.0.0
3403 | dev: true
3404 |
3405 | /supports-preserve-symlinks-flag@1.0.0:
3406 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
3407 | engines: {node: '>= 0.4'}
3408 |
3409 | /tailwind-merge@1.14.0:
3410 | resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
3411 | dev: false
3412 |
3413 | /tailwindcss-animate@1.0.7(tailwindcss@3.4.1):
3414 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
3415 | peerDependencies:
3416 | tailwindcss: '>=3.0.0 || insiders'
3417 | dependencies:
3418 | tailwindcss: 3.4.1
3419 | dev: false
3420 |
3421 | /tailwindcss@3.4.1:
3422 | resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==}
3423 | engines: {node: '>=14.0.0'}
3424 | hasBin: true
3425 | dependencies:
3426 | '@alloc/quick-lru': 5.2.0
3427 | arg: 5.0.2
3428 | chokidar: 3.6.0
3429 | didyoumean: 1.2.2
3430 | dlv: 1.1.3
3431 | fast-glob: 3.3.2
3432 | glob-parent: 6.0.2
3433 | is-glob: 4.0.3
3434 | jiti: 1.21.0
3435 | lilconfig: 2.1.0
3436 | micromatch: 4.0.5
3437 | normalize-path: 3.0.0
3438 | object-hash: 3.0.0
3439 | picocolors: 1.0.0
3440 | postcss: 8.4.35
3441 | postcss-import: 15.1.0(postcss@8.4.35)
3442 | postcss-js: 4.0.1(postcss@8.4.35)
3443 | postcss-load-config: 4.0.2(postcss@8.4.35)
3444 | postcss-nested: 6.0.1(postcss@8.4.35)
3445 | postcss-selector-parser: 6.0.16
3446 | resolve: 1.22.8
3447 | sucrase: 3.35.0
3448 | transitivePeerDependencies:
3449 | - ts-node
3450 |
3451 | /tar-fs@2.1.1:
3452 | resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
3453 | dependencies:
3454 | chownr: 1.1.4
3455 | mkdirp-classic: 0.5.3
3456 | pump: 3.0.0
3457 | tar-stream: 2.2.0
3458 | dev: false
3459 |
3460 | /tar-stream@2.2.0:
3461 | resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
3462 | engines: {node: '>=6'}
3463 | dependencies:
3464 | bl: 4.1.0
3465 | end-of-stream: 1.4.4
3466 | fs-constants: 1.0.0
3467 | inherits: 2.0.4
3468 | readable-stream: 3.6.2
3469 | dev: false
3470 |
3471 | /text-table@0.2.0:
3472 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
3473 | dev: true
3474 |
3475 | /thenify-all@1.6.0:
3476 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
3477 | engines: {node: '>=0.8'}
3478 | dependencies:
3479 | thenify: 3.3.1
3480 |
3481 | /thenify@3.3.1:
3482 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
3483 | dependencies:
3484 | any-promise: 1.3.0
3485 |
3486 | /to-fast-properties@2.0.0:
3487 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
3488 | engines: {node: '>=4'}
3489 |
3490 | /to-regex-range@5.0.1:
3491 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
3492 | engines: {node: '>=8.0'}
3493 | dependencies:
3494 | is-number: 7.0.0
3495 |
3496 | /ts-interface-checker@0.1.13:
3497 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
3498 |
3499 | /tsconfig-paths@3.15.0:
3500 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
3501 | dependencies:
3502 | '@types/json5': 0.0.29
3503 | json5: 1.0.2
3504 | minimist: 1.2.8
3505 | strip-bom: 3.0.0
3506 | dev: true
3507 |
3508 | /tslib@1.14.1:
3509 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
3510 | dev: true
3511 |
3512 | /tslib@2.6.2:
3513 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
3514 | dev: false
3515 |
3516 | /tsutils@3.21.0(typescript@4.9.5):
3517 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
3518 | engines: {node: '>= 6'}
3519 | peerDependencies:
3520 | 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'
3521 | dependencies:
3522 | tslib: 1.14.1
3523 | typescript: 4.9.5
3524 | dev: true
3525 |
3526 | /tunnel-agent@0.6.0:
3527 | resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
3528 | dependencies:
3529 | safe-buffer: 5.2.1
3530 | dev: false
3531 |
3532 | /type-check@0.4.0:
3533 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
3534 | engines: {node: '>= 0.8.0'}
3535 | dependencies:
3536 | prelude-ls: 1.2.1
3537 | dev: true
3538 |
3539 | /type-fest@0.20.2:
3540 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
3541 | engines: {node: '>=10'}
3542 | dev: true
3543 |
3544 | /typed-array-buffer@1.0.2:
3545 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
3546 | engines: {node: '>= 0.4'}
3547 | dependencies:
3548 | call-bind: 1.0.7
3549 | es-errors: 1.3.0
3550 | is-typed-array: 1.1.13
3551 | dev: true
3552 |
3553 | /typed-array-byte-length@1.0.1:
3554 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
3555 | engines: {node: '>= 0.4'}
3556 | dependencies:
3557 | call-bind: 1.0.7
3558 | for-each: 0.3.3
3559 | gopd: 1.0.1
3560 | has-proto: 1.0.3
3561 | is-typed-array: 1.1.13
3562 | dev: true
3563 |
3564 | /typed-array-byte-offset@1.0.2:
3565 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
3566 | engines: {node: '>= 0.4'}
3567 | dependencies:
3568 | available-typed-arrays: 1.0.7
3569 | call-bind: 1.0.7
3570 | for-each: 0.3.3
3571 | gopd: 1.0.1
3572 | has-proto: 1.0.3
3573 | is-typed-array: 1.1.13
3574 | dev: true
3575 |
3576 | /typed-array-length@1.0.5:
3577 | resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==}
3578 | engines: {node: '>= 0.4'}
3579 | dependencies:
3580 | call-bind: 1.0.7
3581 | for-each: 0.3.3
3582 | gopd: 1.0.1
3583 | has-proto: 1.0.3
3584 | is-typed-array: 1.1.13
3585 | possible-typed-array-names: 1.0.0
3586 | dev: true
3587 |
3588 | /typescript@4.9.5:
3589 | resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
3590 | engines: {node: '>=4.2.0'}
3591 | hasBin: true
3592 |
3593 | /unbox-primitive@1.0.2:
3594 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
3595 | dependencies:
3596 | call-bind: 1.0.7
3597 | has-bigints: 1.0.2
3598 | has-symbols: 1.0.3
3599 | which-boxed-primitive: 1.0.2
3600 | dev: true
3601 |
3602 | /update-browserslist-db@1.0.13(browserslist@4.23.0):
3603 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
3604 | hasBin: true
3605 | peerDependencies:
3606 | browserslist: '>= 4.21.0'
3607 | dependencies:
3608 | browserslist: 4.23.0
3609 | escalade: 3.1.2
3610 | picocolors: 1.0.0
3611 |
3612 | /uri-js@4.4.1:
3613 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
3614 | dependencies:
3615 | punycode: 2.3.1
3616 | dev: true
3617 |
3618 | /use-callback-ref@1.3.1(@types/react@18.2.65)(react@18.2.0):
3619 | resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
3620 | engines: {node: '>=10'}
3621 | peerDependencies:
3622 | '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
3623 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3624 | peerDependenciesMeta:
3625 | '@types/react':
3626 | optional: true
3627 | dependencies:
3628 | '@types/react': 18.2.65
3629 | react: 18.2.0
3630 | tslib: 2.6.2
3631 | dev: false
3632 |
3633 | /use-sidecar@1.1.2(@types/react@18.2.65)(react@18.2.0):
3634 | resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
3635 | engines: {node: '>=10'}
3636 | peerDependencies:
3637 | '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
3638 | react: ^16.8.0 || ^17.0.0 || ^18.0.0
3639 | peerDependenciesMeta:
3640 | '@types/react':
3641 | optional: true
3642 | dependencies:
3643 | '@types/react': 18.2.65
3644 | detect-node-es: 1.1.0
3645 | react: 18.2.0
3646 | tslib: 2.6.2
3647 | dev: false
3648 |
3649 | /util-deprecate@1.0.2:
3650 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
3651 |
3652 | /vaul@0.9.0(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0):
3653 | resolution: {integrity: sha512-bZSySGbAHiTXmZychprnX/dE0EsSige88xtyyL3/MCRbrFotRPQZo7UdydGXZWw+CKbNOw5Ow8gwAo93/nB/Cg==}
3654 | peerDependencies:
3655 | react: ^16.8 || ^17.0 || ^18.0
3656 | react-dom: ^16.8 || ^17.0 || ^18.0
3657 | dependencies:
3658 | '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.22)(@types/react@18.2.65)(react-dom@18.2.0)(react@18.2.0)
3659 | react: 18.2.0
3660 | react-dom: 18.2.0(react@18.2.0)
3661 | transitivePeerDependencies:
3662 | - '@types/react'
3663 | - '@types/react-dom'
3664 | dev: false
3665 |
3666 | /which-boxed-primitive@1.0.2:
3667 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
3668 | dependencies:
3669 | is-bigint: 1.0.4
3670 | is-boolean-object: 1.1.2
3671 | is-number-object: 1.0.7
3672 | is-string: 1.0.7
3673 | is-symbol: 1.0.4
3674 | dev: true
3675 |
3676 | /which-builtin-type@1.1.3:
3677 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
3678 | engines: {node: '>= 0.4'}
3679 | dependencies:
3680 | function.prototype.name: 1.1.6
3681 | has-tostringtag: 1.0.2
3682 | is-async-function: 2.0.0
3683 | is-date-object: 1.0.5
3684 | is-finalizationregistry: 1.0.2
3685 | is-generator-function: 1.0.10
3686 | is-regex: 1.1.4
3687 | is-weakref: 1.0.2
3688 | isarray: 2.0.5
3689 | which-boxed-primitive: 1.0.2
3690 | which-collection: 1.0.2
3691 | which-typed-array: 1.1.15
3692 | dev: true
3693 |
3694 | /which-collection@1.0.2:
3695 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
3696 | engines: {node: '>= 0.4'}
3697 | dependencies:
3698 | is-map: 2.0.3
3699 | is-set: 2.0.3
3700 | is-weakmap: 2.0.2
3701 | is-weakset: 2.0.3
3702 | dev: true
3703 |
3704 | /which-typed-array@1.1.15:
3705 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
3706 | engines: {node: '>= 0.4'}
3707 | dependencies:
3708 | available-typed-arrays: 1.0.7
3709 | call-bind: 1.0.7
3710 | for-each: 0.3.3
3711 | gopd: 1.0.1
3712 | has-tostringtag: 1.0.2
3713 | dev: true
3714 |
3715 | /which@2.0.2:
3716 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
3717 | engines: {node: '>= 8'}
3718 | hasBin: true
3719 | dependencies:
3720 | isexe: 2.0.0
3721 |
3722 | /wrap-ansi@7.0.0:
3723 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
3724 | engines: {node: '>=10'}
3725 | dependencies:
3726 | ansi-styles: 4.3.0
3727 | string-width: 4.2.3
3728 | strip-ansi: 6.0.1
3729 |
3730 | /wrap-ansi@8.1.0:
3731 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
3732 | engines: {node: '>=12'}
3733 | dependencies:
3734 | ansi-styles: 6.2.1
3735 | string-width: 5.1.2
3736 | strip-ansi: 7.1.0
3737 |
3738 | /wrappy@1.0.2:
3739 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
3740 |
3741 | /yallist@3.1.1:
3742 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
3743 |
3744 | /yallist@4.0.0:
3745 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
3746 |
3747 | /yaml@2.4.1:
3748 | resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==}
3749 | engines: {node: '>= 14'}
3750 | hasBin: true
3751 |
3752 | /yocto-queue@0.1.0:
3753 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
3754 | engines: {node: '>=10'}
3755 | dev: true
3756 |
--------------------------------------------------------------------------------