├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .vscode ├── talk - albums component.code-snippets ├── talk - client tags.code-snippets ├── talk - component map set.code-snippets ├── talk - esbuild client config.code-snippets ├── talk - esbuild plugin return.code-snippets ├── talk - esbuild plugin.code-snippets ├── talk - esbuild server config.code-snippets ├── talk - hono.code-snippets ├── talk - html template.code-snippets ├── talk - import ReactServerDom.code-snippets ├── talk - import es-module-lexer.code-snippets ├── talk - import esbuild.code-snippets ├── talk - import react client.code-snippets ├── talk - import renderToString.code-snippets ├── talk - import serveStatic.code-snippets ├── talk - like button.code-snippets ├── talk - react client reference.code-snippets ├── talk - styledpage.code-snippets ├── talk - utils.code-snippets └── talk - webpack hack.code-snippets ├── README.md ├── app ├── Like.jsx ├── _client.jsx └── page.jsx ├── data ├── bjork-post.json ├── db.js ├── glass-animals-how-to-be.json └── lady-gaga-the-fame.json ├── package-lock.json ├── package.json ├── server.js ├── tailwind.config.cjs └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "es2022": true 4 | }, 5 | "parserOptions": { 6 | "ecmaVersion": "latest", 7 | "sourceType": "module" 8 | }, 9 | "plugins": ["unicorn"], 10 | "extends": ["plugin:react/recommended", "plugin:react/jsx-runtime"], 11 | "root": true, 12 | "ignorePatterns": ["dist/"], 13 | "rules": { 14 | "unicorn/prefer-node-protocol": "error", 15 | "react/prop-types": "off" 16 | }, 17 | "settings": { 18 | "react": { 19 | "version": "detect" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | build/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "overrides": [ 7 | { 8 | "files": ["README.md"], 9 | "options": { 10 | "useTabs": false, 11 | "tabWidth": 2 12 | } 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /.vscode/talk - albums component.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - albums component": { 3 | "scope": "", 4 | "prefix": "t:albumscomponent", 5 | "body": [ 6 | "import { Suspense } from 'react';\nimport { getAll } from '../data/db.js';\n\nasync function Albums() {\n const albums = await getAll();\n return (\n \n );\n}" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - client tags.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - client tags": { 3 | "scope": "", 4 | "prefix": "t:clienttags", 5 | "body": ["${exp.ln}.$$id = $1;\n${exp.ln}.$$typeof = $2;"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - component map set.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - component map set": { 3 | "scope": "", 4 | "prefix": "t:componentmapset", 5 | "body": [ 6 | "const key = file.path + exp.n;\n\nclientComponentMap[key] = {\n\tid: `/build/\\${relative(resolveBuild(), file.path)}`,\n\tname: exp.n,\n\tchunks: [],\n\tasync: true\n};" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - esbuild client config.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - esbuild client config": { 3 | "scope": "", 4 | "prefix": "t:esbuildclientconfig", 5 | "body": [ 6 | "bundle: true,\nformat: 'esm',\nlogLevel: 'error',\nentryPoints: [resolveApp('_client.jsx')],\noutdir: resolveBuild(),\nsplitting: true,\nplugins: []," 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - esbuild plugin return.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - esbuild plugin return": { 3 | "scope": "", 4 | "prefix": "t:esbuildpluginreturn", 5 | "body": ["return {\n\tpath: relativePath.replace(/\\.jsx\\$/, '.js'),\n\texternal: true\n};"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - esbuild plugin.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - esbuild plugin": { 3 | "scope": "", 4 | "prefix": "t:esbuildplugin", 5 | "body": [ 6 | "{\n\tname: 'resolve-client-imports',\n\tsetup(build) {\n\t\t// Intercept component imports to find client entry points\n\t\tbuild.onResolve({ filter: /\\.jsx\\$/ }, async ({ path: relativePath }) => {\n\t\t\tconst path = resolveApp(relativePath);\n\t\t\t$1\n\t\t});\n\t}\n}" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - esbuild server config.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - esbuild server config": { 3 | "scope": "", 4 | "prefix": "t:esbuildserverconfig", 5 | "body": [ 6 | "bundle: true,\nformat: 'esm',\nlogLevel: 'error',\nentryPoints: [resolveApp('page.jsx')],\noutdir: resolveBuild(),\n// avoid bundling npm packages\npackages: 'external'" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - hono.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - hono": { 3 | "scope": "", 4 | "prefix": "t:hono", 5 | "body": [ 6 | "import { serve } from '@hono/node-server';\nimport { Hono } from 'hono';\n\nconst app = new Hono();\napp.get('/', async (c) => c.text('Hello Server Comps ⚛️'));\n\nserve(app, async (info) => {\n\tconsole.log(`Listening on http://localhost:\\${info.port}`);\n});" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - html template.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - html template": { 3 | "scope": "", 4 | "prefix": "t:htmltemplate", 5 | "body": [ 6 | "\n\n\n\tReact Server Components from Scratch\n\t\n\n\n\t
\n\t\n\n" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - import ReactServerDom.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - import ReactServerDom": { 3 | "scope": "", 4 | "prefix": "t:impreactserverdom", 5 | "body": ["import * as ReactServerDom from 'react-server-dom-webpack/server.browser';"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - import es-module-lexer.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - import es-module-lexer": { 3 | "scope": "", 4 | "prefix": "t:importes-module-lexur", 5 | "body": ["import { parse } from 'es-module-lexer';"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - import esbuild.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - import esbuild": { 3 | "scope": "", 4 | "prefix": "t:impesbuild", 5 | "body": ["import { build as esbuild } from 'esbuild';"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - import react client.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - import react client": { 3 | "scope": "", 4 | "prefix": "t:impreactclient", 5 | "body": [ 6 | "import { createRoot } from 'react-dom/client';\nimport { createFromFetch } from 'react-server-dom-webpack/client';" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - import renderToString.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - import renderToString": { 3 | "scope": "", 4 | "prefix": "t:imprendertostring", 5 | "body": ["import { renderToString } from 'react-dom/server';"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - import serveStatic.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - import serveStatic": { 3 | "scope": "", 4 | "prefix": "t:impserveStatic", 5 | "body": ["import { serveStatic } from '@hono/node-server/serve-static';"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - like button.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - like button": { 3 | "scope": "", 4 | "prefix": "t:likebutton", 5 | "body": [ 6 | "'use client';\n\nimport { useState } from 'react';\n\nexport default function Like() {\n\tconst [likes, setLikes] = useState(0);\n\treturn ;\n}" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - react client reference.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - react client reference": { 3 | "scope": "", 4 | "prefix": "t:reactclientreference", 5 | "body": ["Symbol.for(\"react.client.reference\");"], 6 | "description": "" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/talk - styledpage.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - styledpage": { 3 | "scope": "", 4 | "prefix": "t:styledpage", 5 | "body": [ 6 | "import { Suspense } from 'react';\nimport { getAll } from '../data/db.js';\n\nasync function Albums() {\n\tconst albums = await getAll();\n\treturn (\n\t\t\n\t);\n}\n\nexport default async function Page() {\n\treturn (\n\t\t<>\n\t\t\t

Spotifn’t

\n\t\t\t\n\t\t\t\t\n\t\t\t\n\t\t\n\t);\n}\n" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - utils.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - utils": { 3 | "scope": "", 4 | "prefix": "t:utils", 5 | "body": [ 6 | "const appDir = new URL('./app/', import.meta.url);\nconst buildDir = new URL('./build/', import.meta.url);\n\nfunction resolveApp(path = '') {\n\treturn fileURLToPath(new URL(path, appDir));\n}\n\nfunction resolveBuild(path = '') {\n\treturn fileURLToPath(new URL(path, buildDir));\n}\n" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/talk - webpack hack.code-snippets: -------------------------------------------------------------------------------- 1 | { 2 | "talk - webpack hack": { 3 | "scope": "", 4 | "prefix": "t:webpackhack", 5 | "body": [ 6 | "// HACK: map webpack resolution to native ESM\n// @ts-expect-error Property '__webpack_require__' does not exist on type 'Window & typeof globalThis'.\nwindow.__webpack_require__ = async (id) => {\n\treturn import(id);\n};" 7 | ], 8 | "description": "" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Simple RSC ⚛️ 2 | 3 | > A simple React Server Components implementation that you can build yourself. 4 | 5 | [Watch the "build from scratch" code-along video](https://www.youtube.com/watch?v=MaebEqhZR84) to learn how all of the pieces fit together. Or... just read the in-line documentation in this codebase :) 6 | 7 | ## Goals 8 | 9 | - 🌊 Show how React server components are streamed to the browser with a simple Node server. 10 | - ⚙️ Demo a build process to bundle server components and handle client components with the `"use client"` directive. 11 | 12 | ## Getting started 13 | 14 | Install dependencies using `npm` and start the Node development server: 15 | 16 | ```bash 17 | npm i 18 | npm run dev 19 | ``` 20 | 21 | This should trigger a build and start your server at http://localhost:3000. 22 | 23 | ### Developer note on the `dev` script 24 | 25 | You'll notice the `dev` script maps to the following command in the `package.json`: 26 | 27 | ```bash 28 | node --conditions react-server server.js 29 | ``` 30 | 31 | The `--conditions` flag is part of the [Node.js conditional exports system](https://nodejs.org/api/cli.html#-c-condition---conditionscondition). This allows packages to export different versions of a module depending on your environment. 32 | 33 | When passed `react-server`, `react-server-dom-esm` will expose a server-only module that omits React's client-side or browser-specific APIs, ensuring compatibility with the server-rendered environment. 34 | 35 | ## Project structure 36 | 37 | This project is broken up into the `app/` and `server/` directories. The most important entrypoints are listed below: 38 | 39 | ```sh 40 | # Your full-stack application 41 | app/ 42 | page.jsx # server entrypoint. 43 | _client.jsx # client script that requests and renders your `page.jsx`. 44 | 45 | # Your backend that builds and renders the `app/` 46 | server.js 47 | ``` 48 | 49 | ## What is _not_ included? 50 | 51 | - **File-based routing conventions.** This repo includes a _single_ index route, with support for processing query params. If you need multiple routes, you can try [NextJS' new `app/` directory.](https://beta.nextjs.org/docs/routing/defining-routes) 52 | - **Advance bundling for CSS-in-JS.** [A Tailwind script](https://tailwindcss.com/docs/installation/play-cdn) is included for playing with styles. 53 | - **Advice on production deploys.** This is a learning tool to show how React Server Components are used, not the bedrock for your next side project. See [React's updated "Start a New React Project" guide](https://react.dev/learn/start-a-new-react-project) for advice on building production-ready apps. 54 | -------------------------------------------------------------------------------- /app/Like.jsx: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | 3 | import { useState } from 'react'; 4 | 5 | export default function Like() { 6 | const [likes, setLikes] = useState(0); 7 | return ; 8 | } 9 | -------------------------------------------------------------------------------- /app/_client.jsx: -------------------------------------------------------------------------------- 1 | import { createRoot } from 'react-dom/client'; 2 | import { createFromFetch } from 'react-server-dom-esm/client'; 3 | 4 | // @ts-expect-error `root` might be null 5 | const root = createRoot(document.getElementById('root')); 6 | 7 | /** 8 | * Fetch your server component stream from `/rsc` 9 | * and render results into the root element as they come in. 10 | */ 11 | createFromFetch(fetch('/rsc')).then((comp) => { 12 | root.render(comp); 13 | }); 14 | -------------------------------------------------------------------------------- /app/page.jsx: -------------------------------------------------------------------------------- 1 | import { Suspense } from 'react'; 2 | import { getAll } from '../data/db.js'; 3 | import Like from './Like.jsx'; 4 | 5 | async function Albums() { 6 | const albums = await getAll(); 7 | return ( 8 | 20 | ); 21 | } 22 | 23 | export default async function Page() { 24 | return ( 25 | <> 26 |

Spotifn’t

27 | 28 | 29 | 30 | 31 | ); 32 | } 33 | -------------------------------------------------------------------------------- /data/bjork-post.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "bjork-post", 3 | "artist": "Björk", 4 | "title": "Post", 5 | "cover": "https://i.discogs.com/nKIGMO-FhgjIZAxpTKIx__vLsrg6XTEUEbeMXtgnJMs/rs:fit/g:sm/q:90/h:581/w:588/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTEwMjQ4/MS0xMjMyMTQ2Nzgy/LmpwZWc.jpeg", 6 | "songs": [ 7 | { 8 | "title": "Army of Me", 9 | "duration": "4:00" 10 | }, 11 | { 12 | "title": "Hyperballad", 13 | "duration": "5:21" 14 | }, 15 | { 16 | "title": "The Modern Things", 17 | "duration": "4:00" 18 | }, 19 | { 20 | "title": "It's Oh So Quiet", 21 | "duration": "4:00" 22 | }, 23 | { 24 | "title": "Enjoy", 25 | "duration": "4:00" 26 | }, 27 | { 28 | "title": "You've Been Flirting Again", 29 | "duration": "4:00" 30 | }, 31 | { 32 | "title": "Isobel", 33 | "duration": "4:00" 34 | }, 35 | { 36 | "title": "Possibly Maybe", 37 | "duration": "4:00" 38 | }, 39 | { 40 | "title": "I Miss You", 41 | "duration": "4:00" 42 | }, 43 | { 44 | "title": "Cover Me", 45 | "duration": "4:00" 46 | }, 47 | { 48 | "title": "Headphones", 49 | "duration": "4:00" 50 | } 51 | ] 52 | } 53 | -------------------------------------------------------------------------------- /data/db.js: -------------------------------------------------------------------------------- 1 | import bjorkPost from './bjork-post.json'; 2 | import ladyGagaTheFame from './lady-gaga-the-fame.json'; 3 | import glassAnimalsHowToBeAMHumanBeing from './glass-animals-how-to-be.json'; 4 | 5 | /** 6 | * @typedef Song 7 | * @property {string} title 8 | * @property {string} duration 9 | * 10 | * @typedef Album 11 | * @property {string} id 12 | * @property {string} artist 13 | * @property {string} title 14 | * @property {string} cover 15 | * @property {Song[]} songs 16 | */ 17 | const albums = [bjorkPost, ladyGagaTheFame, glassAnimalsHowToBeAMHumanBeing]; 18 | 19 | const artificialWait = (ms = 1500) => new Promise((resolve) => setTimeout(resolve, ms)); 20 | 21 | /** @returns {Promise} */ 22 | export async function getAll() { 23 | await artificialWait(); 24 | return albums; 25 | } 26 | 27 | /** @returns {Promise} */ 28 | export async function getById(id) { 29 | await artificialWait(); 30 | return albums.find((album) => album.id === id); 31 | } 32 | -------------------------------------------------------------------------------- /data/glass-animals-how-to-be.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "glass-animals-how-to-be", 3 | "title": "How To Be A Human Being", 4 | "artist": "Glass Animals", 5 | "cover": "https://i.discogs.com/H-kC9IIS7dglokcAXmfrRHji0roeA3SMxrNFr9MtBzQ/rs:fit/g:sm/q:90/h:300/w:300/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTg5NTM0/NzAtMTQ3MjE0NTUx/My03NjA2LmpwZWc.jpeg", 6 | "songs": [ 7 | { 8 | "title": "Life Itself", 9 | "duration": "4:41" 10 | }, 11 | { 12 | "title": "Youth", 13 | "duration": "3:50" 14 | }, 15 | { 16 | "title": "Season 2 Episode 3", 17 | "duration": "3:52" 18 | }, 19 | { 20 | "title": "Pork Soda", 21 | "duration": "4:13" 22 | }, 23 | { 24 | "title": "Mama's Gun", 25 | "duration": "3:52" 26 | }, 27 | { 28 | "title": "Cane Shuga", 29 | "duration": "3:52" 30 | }, 31 | { 32 | "title": "[Premade Sandwiches]", 33 | "duration": "0:36" 34 | }, 35 | { 36 | "title": "The Other Side Of Paradise", 37 | "duration": "3:52" 38 | }, 39 | { 40 | "title": "Take A Slice", 41 | "duration": "3:52" 42 | }, 43 | { 44 | "title": "Poplar St", 45 | "duration": "3:52" 46 | }, 47 | { 48 | "title": "Agnes", 49 | "duration": "3:52" 50 | } 51 | ] 52 | } 53 | -------------------------------------------------------------------------------- /data/lady-gaga-the-fame.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "lady-gaga-the-fame", 3 | "artist": "Lady Gaga", 4 | "title": "The Fame", 5 | "cover": "https://i.discogs.com/0MgbgSVEqOrRtLwARinYwVPQHVqIq-pR0csL19pdmTg/rs:fit/g:sm/q:90/h:396/w:400/czM6Ly9kaXNjb2dz/LWRhdGFiYXNlLWlt/YWdlcy9SLTE0MzI5/OTEtMTIxOTI4Njg0/MS5qcGVn.jpeg", 6 | "songs": [ 7 | { 8 | "title": "Just Dance", 9 | "duration": "4:01" 10 | }, 11 | { 12 | "title": "LoveGame", 13 | "duration": "3:48" 14 | }, 15 | { 16 | "title": "Paparazzi", 17 | "duration": "3:48" 18 | }, 19 | { 20 | "title": "Poker Face", 21 | "duration": "3:58" 22 | }, 23 | { 24 | "title": "Eh, Eh (Nothing Else I Can Say)", 25 | "duration": "3:47" 26 | }, 27 | { 28 | "title": "Beautiful, Dirty, Rich", 29 | "duration": "3:47" 30 | }, 31 | { 32 | "title": "The Fame", 33 | "duration": "3:47" 34 | }, 35 | { 36 | "title": "Money Honey", 37 | "duration": "3:47" 38 | }, 39 | { 40 | "title": "Starstruck", 41 | "duration": "3:47" 42 | }, 43 | { 44 | "title": "Boys Boys Boys", 45 | "duration": "3:47" 46 | }, 47 | { 48 | "title": "Paper Gangsta", 49 | "duration": "3:47" 50 | }, 51 | { 52 | "title": "Brown Eyes", 53 | "duration": "3:47" 54 | }, 55 | { 56 | "title": "I Like It Rough", 57 | "duration": "3:47" 58 | }, 59 | { 60 | "title": "Summerboy", 61 | "duration": "3:47" 62 | }, 63 | { 64 | "title": "Disco Heaven", 65 | "duration": "3:47" 66 | } 67 | ] 68 | } 69 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "simple-rsc", 3 | "version": "0.0.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "simple-rsc", 9 | "version": "0.0.1", 10 | "license": "ISC", 11 | "dependencies": { 12 | "@hono/node-server": "^1.14.0", 13 | "es-module-lexer": "^1.3.1", 14 | "esbuild": "^0.25.1", 15 | "hono": "^4.7.5", 16 | "react": "^19.0.0", 17 | "react-dom": "^19.0.0", 18 | "react-server-dom-esm": "npm:@kentcdodds/tmp-react-server-dom-esm@19.0.1" 19 | }, 20 | "devDependencies": { 21 | "@types/node": "^18.15.11", 22 | "@types/react": "^19.0.12", 23 | "@types/react-dom": "^19.0.4", 24 | "@typescript-eslint/eslint-plugin": "^5.57.0", 25 | "eslint": "^8.37.0", 26 | "eslint-plugin-react": "^7.32.2", 27 | "eslint-plugin-unicorn": "^46.0.0", 28 | "prettier": "^2.8.7" 29 | } 30 | }, 31 | "node_modules/@babel/code-frame": { 32 | "version": "7.21.4", 33 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz", 34 | "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==", 35 | "dev": true, 36 | "dependencies": { 37 | "@babel/highlight": "^7.18.6" 38 | }, 39 | "engines": { 40 | "node": ">=6.9.0" 41 | } 42 | }, 43 | "node_modules/@babel/helper-validator-identifier": { 44 | "version": "7.19.1", 45 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", 46 | "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", 47 | "dev": true, 48 | "engines": { 49 | "node": ">=6.9.0" 50 | } 51 | }, 52 | "node_modules/@babel/highlight": { 53 | "version": "7.18.6", 54 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", 55 | "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", 56 | "dev": true, 57 | "dependencies": { 58 | "@babel/helper-validator-identifier": "^7.18.6", 59 | "chalk": "^2.0.0", 60 | "js-tokens": "^4.0.0" 61 | }, 62 | "engines": { 63 | "node": ">=6.9.0" 64 | } 65 | }, 66 | "node_modules/@babel/highlight/node_modules/ansi-styles": { 67 | "version": "3.2.1", 68 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 69 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 70 | "dev": true, 71 | "dependencies": { 72 | "color-convert": "^1.9.0" 73 | }, 74 | "engines": { 75 | "node": ">=4" 76 | } 77 | }, 78 | "node_modules/@babel/highlight/node_modules/chalk": { 79 | "version": "2.4.2", 80 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 81 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 82 | "dev": true, 83 | "dependencies": { 84 | "ansi-styles": "^3.2.1", 85 | "escape-string-regexp": "^1.0.5", 86 | "supports-color": "^5.3.0" 87 | }, 88 | "engines": { 89 | "node": ">=4" 90 | } 91 | }, 92 | "node_modules/@babel/highlight/node_modules/color-convert": { 93 | "version": "1.9.3", 94 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 95 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 96 | "dev": true, 97 | "dependencies": { 98 | "color-name": "1.1.3" 99 | } 100 | }, 101 | "node_modules/@babel/highlight/node_modules/color-name": { 102 | "version": "1.1.3", 103 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 104 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 105 | "dev": true 106 | }, 107 | "node_modules/@babel/highlight/node_modules/escape-string-regexp": { 108 | "version": "1.0.5", 109 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 110 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 111 | "dev": true, 112 | "engines": { 113 | "node": ">=0.8.0" 114 | } 115 | }, 116 | "node_modules/@babel/highlight/node_modules/has-flag": { 117 | "version": "3.0.0", 118 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 119 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 120 | "dev": true, 121 | "engines": { 122 | "node": ">=4" 123 | } 124 | }, 125 | "node_modules/@babel/highlight/node_modules/supports-color": { 126 | "version": "5.5.0", 127 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 128 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 129 | "dev": true, 130 | "dependencies": { 131 | "has-flag": "^3.0.0" 132 | }, 133 | "engines": { 134 | "node": ">=4" 135 | } 136 | }, 137 | "node_modules/@esbuild/aix-ppc64": { 138 | "version": "0.25.1", 139 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz", 140 | "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==", 141 | "cpu": [ 142 | "ppc64" 143 | ], 144 | "license": "MIT", 145 | "optional": true, 146 | "os": [ 147 | "aix" 148 | ], 149 | "engines": { 150 | "node": ">=18" 151 | } 152 | }, 153 | "node_modules/@esbuild/android-arm": { 154 | "version": "0.25.1", 155 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz", 156 | "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==", 157 | "cpu": [ 158 | "arm" 159 | ], 160 | "license": "MIT", 161 | "optional": true, 162 | "os": [ 163 | "android" 164 | ], 165 | "engines": { 166 | "node": ">=18" 167 | } 168 | }, 169 | "node_modules/@esbuild/android-arm64": { 170 | "version": "0.25.1", 171 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz", 172 | "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==", 173 | "cpu": [ 174 | "arm64" 175 | ], 176 | "license": "MIT", 177 | "optional": true, 178 | "os": [ 179 | "android" 180 | ], 181 | "engines": { 182 | "node": ">=18" 183 | } 184 | }, 185 | "node_modules/@esbuild/android-x64": { 186 | "version": "0.25.1", 187 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz", 188 | "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==", 189 | "cpu": [ 190 | "x64" 191 | ], 192 | "license": "MIT", 193 | "optional": true, 194 | "os": [ 195 | "android" 196 | ], 197 | "engines": { 198 | "node": ">=18" 199 | } 200 | }, 201 | "node_modules/@esbuild/darwin-arm64": { 202 | "version": "0.25.1", 203 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz", 204 | "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==", 205 | "cpu": [ 206 | "arm64" 207 | ], 208 | "license": "MIT", 209 | "optional": true, 210 | "os": [ 211 | "darwin" 212 | ], 213 | "engines": { 214 | "node": ">=18" 215 | } 216 | }, 217 | "node_modules/@esbuild/darwin-x64": { 218 | "version": "0.25.1", 219 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz", 220 | "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==", 221 | "cpu": [ 222 | "x64" 223 | ], 224 | "license": "MIT", 225 | "optional": true, 226 | "os": [ 227 | "darwin" 228 | ], 229 | "engines": { 230 | "node": ">=18" 231 | } 232 | }, 233 | "node_modules/@esbuild/freebsd-arm64": { 234 | "version": "0.25.1", 235 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz", 236 | "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==", 237 | "cpu": [ 238 | "arm64" 239 | ], 240 | "license": "MIT", 241 | "optional": true, 242 | "os": [ 243 | "freebsd" 244 | ], 245 | "engines": { 246 | "node": ">=18" 247 | } 248 | }, 249 | "node_modules/@esbuild/freebsd-x64": { 250 | "version": "0.25.1", 251 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz", 252 | "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==", 253 | "cpu": [ 254 | "x64" 255 | ], 256 | "license": "MIT", 257 | "optional": true, 258 | "os": [ 259 | "freebsd" 260 | ], 261 | "engines": { 262 | "node": ">=18" 263 | } 264 | }, 265 | "node_modules/@esbuild/linux-arm": { 266 | "version": "0.25.1", 267 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz", 268 | "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==", 269 | "cpu": [ 270 | "arm" 271 | ], 272 | "license": "MIT", 273 | "optional": true, 274 | "os": [ 275 | "linux" 276 | ], 277 | "engines": { 278 | "node": ">=18" 279 | } 280 | }, 281 | "node_modules/@esbuild/linux-arm64": { 282 | "version": "0.25.1", 283 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz", 284 | "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==", 285 | "cpu": [ 286 | "arm64" 287 | ], 288 | "license": "MIT", 289 | "optional": true, 290 | "os": [ 291 | "linux" 292 | ], 293 | "engines": { 294 | "node": ">=18" 295 | } 296 | }, 297 | "node_modules/@esbuild/linux-ia32": { 298 | "version": "0.25.1", 299 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz", 300 | "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==", 301 | "cpu": [ 302 | "ia32" 303 | ], 304 | "license": "MIT", 305 | "optional": true, 306 | "os": [ 307 | "linux" 308 | ], 309 | "engines": { 310 | "node": ">=18" 311 | } 312 | }, 313 | "node_modules/@esbuild/linux-loong64": { 314 | "version": "0.25.1", 315 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz", 316 | "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==", 317 | "cpu": [ 318 | "loong64" 319 | ], 320 | "license": "MIT", 321 | "optional": true, 322 | "os": [ 323 | "linux" 324 | ], 325 | "engines": { 326 | "node": ">=18" 327 | } 328 | }, 329 | "node_modules/@esbuild/linux-mips64el": { 330 | "version": "0.25.1", 331 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz", 332 | "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==", 333 | "cpu": [ 334 | "mips64el" 335 | ], 336 | "license": "MIT", 337 | "optional": true, 338 | "os": [ 339 | "linux" 340 | ], 341 | "engines": { 342 | "node": ">=18" 343 | } 344 | }, 345 | "node_modules/@esbuild/linux-ppc64": { 346 | "version": "0.25.1", 347 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz", 348 | "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==", 349 | "cpu": [ 350 | "ppc64" 351 | ], 352 | "license": "MIT", 353 | "optional": true, 354 | "os": [ 355 | "linux" 356 | ], 357 | "engines": { 358 | "node": ">=18" 359 | } 360 | }, 361 | "node_modules/@esbuild/linux-riscv64": { 362 | "version": "0.25.1", 363 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz", 364 | "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==", 365 | "cpu": [ 366 | "riscv64" 367 | ], 368 | "license": "MIT", 369 | "optional": true, 370 | "os": [ 371 | "linux" 372 | ], 373 | "engines": { 374 | "node": ">=18" 375 | } 376 | }, 377 | "node_modules/@esbuild/linux-s390x": { 378 | "version": "0.25.1", 379 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz", 380 | "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==", 381 | "cpu": [ 382 | "s390x" 383 | ], 384 | "license": "MIT", 385 | "optional": true, 386 | "os": [ 387 | "linux" 388 | ], 389 | "engines": { 390 | "node": ">=18" 391 | } 392 | }, 393 | "node_modules/@esbuild/linux-x64": { 394 | "version": "0.25.1", 395 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz", 396 | "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==", 397 | "cpu": [ 398 | "x64" 399 | ], 400 | "license": "MIT", 401 | "optional": true, 402 | "os": [ 403 | "linux" 404 | ], 405 | "engines": { 406 | "node": ">=18" 407 | } 408 | }, 409 | "node_modules/@esbuild/netbsd-arm64": { 410 | "version": "0.25.1", 411 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz", 412 | "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==", 413 | "cpu": [ 414 | "arm64" 415 | ], 416 | "license": "MIT", 417 | "optional": true, 418 | "os": [ 419 | "netbsd" 420 | ], 421 | "engines": { 422 | "node": ">=18" 423 | } 424 | }, 425 | "node_modules/@esbuild/netbsd-x64": { 426 | "version": "0.25.1", 427 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz", 428 | "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==", 429 | "cpu": [ 430 | "x64" 431 | ], 432 | "license": "MIT", 433 | "optional": true, 434 | "os": [ 435 | "netbsd" 436 | ], 437 | "engines": { 438 | "node": ">=18" 439 | } 440 | }, 441 | "node_modules/@esbuild/openbsd-arm64": { 442 | "version": "0.25.1", 443 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz", 444 | "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==", 445 | "cpu": [ 446 | "arm64" 447 | ], 448 | "license": "MIT", 449 | "optional": true, 450 | "os": [ 451 | "openbsd" 452 | ], 453 | "engines": { 454 | "node": ">=18" 455 | } 456 | }, 457 | "node_modules/@esbuild/openbsd-x64": { 458 | "version": "0.25.1", 459 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz", 460 | "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==", 461 | "cpu": [ 462 | "x64" 463 | ], 464 | "license": "MIT", 465 | "optional": true, 466 | "os": [ 467 | "openbsd" 468 | ], 469 | "engines": { 470 | "node": ">=18" 471 | } 472 | }, 473 | "node_modules/@esbuild/sunos-x64": { 474 | "version": "0.25.1", 475 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz", 476 | "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==", 477 | "cpu": [ 478 | "x64" 479 | ], 480 | "license": "MIT", 481 | "optional": true, 482 | "os": [ 483 | "sunos" 484 | ], 485 | "engines": { 486 | "node": ">=18" 487 | } 488 | }, 489 | "node_modules/@esbuild/win32-arm64": { 490 | "version": "0.25.1", 491 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz", 492 | "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==", 493 | "cpu": [ 494 | "arm64" 495 | ], 496 | "license": "MIT", 497 | "optional": true, 498 | "os": [ 499 | "win32" 500 | ], 501 | "engines": { 502 | "node": ">=18" 503 | } 504 | }, 505 | "node_modules/@esbuild/win32-ia32": { 506 | "version": "0.25.1", 507 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz", 508 | "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==", 509 | "cpu": [ 510 | "ia32" 511 | ], 512 | "license": "MIT", 513 | "optional": true, 514 | "os": [ 515 | "win32" 516 | ], 517 | "engines": { 518 | "node": ">=18" 519 | } 520 | }, 521 | "node_modules/@esbuild/win32-x64": { 522 | "version": "0.25.1", 523 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz", 524 | "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==", 525 | "cpu": [ 526 | "x64" 527 | ], 528 | "license": "MIT", 529 | "optional": true, 530 | "os": [ 531 | "win32" 532 | ], 533 | "engines": { 534 | "node": ">=18" 535 | } 536 | }, 537 | "node_modules/@eslint-community/eslint-utils": { 538 | "version": "4.4.0", 539 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 540 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 541 | "dev": true, 542 | "dependencies": { 543 | "eslint-visitor-keys": "^3.3.0" 544 | }, 545 | "engines": { 546 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 547 | }, 548 | "peerDependencies": { 549 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 550 | } 551 | }, 552 | "node_modules/@eslint-community/regexpp": { 553 | "version": "4.5.0", 554 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.0.tgz", 555 | "integrity": "sha512-vITaYzIcNmjn5tF5uxcZ/ft7/RXGrMUIS9HalWckEOF6ESiwXKoMzAQf2UW0aVd6rnOeExTJVd5hmWXucBKGXQ==", 556 | "dev": true, 557 | "engines": { 558 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 559 | } 560 | }, 561 | "node_modules/@eslint/eslintrc": { 562 | "version": "2.0.2", 563 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", 564 | "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", 565 | "dev": true, 566 | "dependencies": { 567 | "ajv": "^6.12.4", 568 | "debug": "^4.3.2", 569 | "espree": "^9.5.1", 570 | "globals": "^13.19.0", 571 | "ignore": "^5.2.0", 572 | "import-fresh": "^3.2.1", 573 | "js-yaml": "^4.1.0", 574 | "minimatch": "^3.1.2", 575 | "strip-json-comments": "^3.1.1" 576 | }, 577 | "engines": { 578 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 579 | }, 580 | "funding": { 581 | "url": "https://opencollective.com/eslint" 582 | } 583 | }, 584 | "node_modules/@eslint/js": { 585 | "version": "8.37.0", 586 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.37.0.tgz", 587 | "integrity": "sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==", 588 | "dev": true, 589 | "engines": { 590 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 591 | } 592 | }, 593 | "node_modules/@hono/node-server": { 594 | "version": "1.14.0", 595 | "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.14.0.tgz", 596 | "integrity": "sha512-YUCxJwgHRKSqjrdTk9e4VMGKN27MK5r4+MGPyZTgKH+IYbK+KtYbHeOcPGJ91KGGD6RIQiz2dAHxvjauNhOS8g==", 597 | "license": "MIT", 598 | "engines": { 599 | "node": ">=18.14.1" 600 | }, 601 | "peerDependencies": { 602 | "hono": "^4" 603 | } 604 | }, 605 | "node_modules/@humanwhocodes/config-array": { 606 | "version": "0.11.8", 607 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", 608 | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", 609 | "dev": true, 610 | "dependencies": { 611 | "@humanwhocodes/object-schema": "^1.2.1", 612 | "debug": "^4.1.1", 613 | "minimatch": "^3.0.5" 614 | }, 615 | "engines": { 616 | "node": ">=10.10.0" 617 | } 618 | }, 619 | "node_modules/@humanwhocodes/module-importer": { 620 | "version": "1.0.1", 621 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 622 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 623 | "dev": true, 624 | "engines": { 625 | "node": ">=12.22" 626 | }, 627 | "funding": { 628 | "type": "github", 629 | "url": "https://github.com/sponsors/nzakas" 630 | } 631 | }, 632 | "node_modules/@humanwhocodes/object-schema": { 633 | "version": "1.2.1", 634 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 635 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 636 | "dev": true 637 | }, 638 | "node_modules/@nodelib/fs.scandir": { 639 | "version": "2.1.5", 640 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 641 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 642 | "dev": true, 643 | "dependencies": { 644 | "@nodelib/fs.stat": "2.0.5", 645 | "run-parallel": "^1.1.9" 646 | }, 647 | "engines": { 648 | "node": ">= 8" 649 | } 650 | }, 651 | "node_modules/@nodelib/fs.stat": { 652 | "version": "2.0.5", 653 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 654 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 655 | "dev": true, 656 | "engines": { 657 | "node": ">= 8" 658 | } 659 | }, 660 | "node_modules/@nodelib/fs.walk": { 661 | "version": "1.2.8", 662 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 663 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 664 | "dev": true, 665 | "dependencies": { 666 | "@nodelib/fs.scandir": "2.1.5", 667 | "fastq": "^1.6.0" 668 | }, 669 | "engines": { 670 | "node": ">= 8" 671 | } 672 | }, 673 | "node_modules/@types/json-schema": { 674 | "version": "7.0.11", 675 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", 676 | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", 677 | "dev": true 678 | }, 679 | "node_modules/@types/node": { 680 | "version": "18.15.11", 681 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.11.tgz", 682 | "integrity": "sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==", 683 | "dev": true 684 | }, 685 | "node_modules/@types/normalize-package-data": { 686 | "version": "2.4.1", 687 | "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", 688 | "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", 689 | "dev": true 690 | }, 691 | "node_modules/@types/react": { 692 | "version": "19.0.12", 693 | "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.12.tgz", 694 | "integrity": "sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA==", 695 | "dev": true, 696 | "license": "MIT", 697 | "dependencies": { 698 | "csstype": "^3.0.2" 699 | } 700 | }, 701 | "node_modules/@types/react-dom": { 702 | "version": "19.0.4", 703 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.4.tgz", 704 | "integrity": "sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==", 705 | "dev": true, 706 | "license": "MIT", 707 | "peerDependencies": { 708 | "@types/react": "^19.0.0" 709 | } 710 | }, 711 | "node_modules/@types/semver": { 712 | "version": "7.3.13", 713 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", 714 | "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", 715 | "dev": true 716 | }, 717 | "node_modules/@typescript-eslint/eslint-plugin": { 718 | "version": "5.57.0", 719 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.57.0.tgz", 720 | "integrity": "sha512-itag0qpN6q2UMM6Xgk6xoHa0D0/P+M17THnr4SVgqn9Rgam5k/He33MA7/D7QoJcdMxHFyX7U9imaBonAX/6qA==", 721 | "dev": true, 722 | "dependencies": { 723 | "@eslint-community/regexpp": "^4.4.0", 724 | "@typescript-eslint/scope-manager": "5.57.0", 725 | "@typescript-eslint/type-utils": "5.57.0", 726 | "@typescript-eslint/utils": "5.57.0", 727 | "debug": "^4.3.4", 728 | "grapheme-splitter": "^1.0.4", 729 | "ignore": "^5.2.0", 730 | "natural-compare-lite": "^1.4.0", 731 | "semver": "^7.3.7", 732 | "tsutils": "^3.21.0" 733 | }, 734 | "engines": { 735 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 736 | }, 737 | "funding": { 738 | "type": "opencollective", 739 | "url": "https://opencollective.com/typescript-eslint" 740 | }, 741 | "peerDependencies": { 742 | "@typescript-eslint/parser": "^5.0.0", 743 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 744 | }, 745 | "peerDependenciesMeta": { 746 | "typescript": { 747 | "optional": true 748 | } 749 | } 750 | }, 751 | "node_modules/@typescript-eslint/parser": { 752 | "version": "5.62.0", 753 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", 754 | "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", 755 | "dev": true, 756 | "license": "BSD-2-Clause", 757 | "peer": true, 758 | "dependencies": { 759 | "@typescript-eslint/scope-manager": "5.62.0", 760 | "@typescript-eslint/types": "5.62.0", 761 | "@typescript-eslint/typescript-estree": "5.62.0", 762 | "debug": "^4.3.4" 763 | }, 764 | "engines": { 765 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 766 | }, 767 | "funding": { 768 | "type": "opencollective", 769 | "url": "https://opencollective.com/typescript-eslint" 770 | }, 771 | "peerDependencies": { 772 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 773 | }, 774 | "peerDependenciesMeta": { 775 | "typescript": { 776 | "optional": true 777 | } 778 | } 779 | }, 780 | "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": { 781 | "version": "5.62.0", 782 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", 783 | "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", 784 | "dev": true, 785 | "license": "MIT", 786 | "peer": true, 787 | "dependencies": { 788 | "@typescript-eslint/types": "5.62.0", 789 | "@typescript-eslint/visitor-keys": "5.62.0" 790 | }, 791 | "engines": { 792 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 793 | }, 794 | "funding": { 795 | "type": "opencollective", 796 | "url": "https://opencollective.com/typescript-eslint" 797 | } 798 | }, 799 | "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { 800 | "version": "5.62.0", 801 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", 802 | "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", 803 | "dev": true, 804 | "license": "MIT", 805 | "peer": true, 806 | "engines": { 807 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 808 | }, 809 | "funding": { 810 | "type": "opencollective", 811 | "url": "https://opencollective.com/typescript-eslint" 812 | } 813 | }, 814 | "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { 815 | "version": "5.62.0", 816 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", 817 | "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", 818 | "dev": true, 819 | "license": "BSD-2-Clause", 820 | "peer": true, 821 | "dependencies": { 822 | "@typescript-eslint/types": "5.62.0", 823 | "@typescript-eslint/visitor-keys": "5.62.0", 824 | "debug": "^4.3.4", 825 | "globby": "^11.1.0", 826 | "is-glob": "^4.0.3", 827 | "semver": "^7.3.7", 828 | "tsutils": "^3.21.0" 829 | }, 830 | "engines": { 831 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 832 | }, 833 | "funding": { 834 | "type": "opencollective", 835 | "url": "https://opencollective.com/typescript-eslint" 836 | }, 837 | "peerDependenciesMeta": { 838 | "typescript": { 839 | "optional": true 840 | } 841 | } 842 | }, 843 | "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": { 844 | "version": "5.62.0", 845 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", 846 | "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", 847 | "dev": true, 848 | "license": "MIT", 849 | "peer": true, 850 | "dependencies": { 851 | "@typescript-eslint/types": "5.62.0", 852 | "eslint-visitor-keys": "^3.3.0" 853 | }, 854 | "engines": { 855 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 856 | }, 857 | "funding": { 858 | "type": "opencollective", 859 | "url": "https://opencollective.com/typescript-eslint" 860 | } 861 | }, 862 | "node_modules/@typescript-eslint/scope-manager": { 863 | "version": "5.57.0", 864 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.57.0.tgz", 865 | "integrity": "sha512-NANBNOQvllPlizl9LatX8+MHi7bx7WGIWYjPHDmQe5Si/0YEYfxSljJpoTyTWFTgRy3X8gLYSE4xQ2U+aCozSw==", 866 | "dev": true, 867 | "dependencies": { 868 | "@typescript-eslint/types": "5.57.0", 869 | "@typescript-eslint/visitor-keys": "5.57.0" 870 | }, 871 | "engines": { 872 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 873 | }, 874 | "funding": { 875 | "type": "opencollective", 876 | "url": "https://opencollective.com/typescript-eslint" 877 | } 878 | }, 879 | "node_modules/@typescript-eslint/type-utils": { 880 | "version": "5.57.0", 881 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.57.0.tgz", 882 | "integrity": "sha512-kxXoq9zOTbvqzLbdNKy1yFrxLC6GDJFE2Yuo3KqSwTmDOFjUGeWSakgoXT864WcK5/NAJkkONCiKb1ddsqhLXQ==", 883 | "dev": true, 884 | "dependencies": { 885 | "@typescript-eslint/typescript-estree": "5.57.0", 886 | "@typescript-eslint/utils": "5.57.0", 887 | "debug": "^4.3.4", 888 | "tsutils": "^3.21.0" 889 | }, 890 | "engines": { 891 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 892 | }, 893 | "funding": { 894 | "type": "opencollective", 895 | "url": "https://opencollective.com/typescript-eslint" 896 | }, 897 | "peerDependencies": { 898 | "eslint": "*" 899 | }, 900 | "peerDependenciesMeta": { 901 | "typescript": { 902 | "optional": true 903 | } 904 | } 905 | }, 906 | "node_modules/@typescript-eslint/types": { 907 | "version": "5.57.0", 908 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.57.0.tgz", 909 | "integrity": "sha512-mxsod+aZRSyLT+jiqHw1KK6xrANm19/+VFALVFP5qa/aiJnlP38qpyaTd0fEKhWvQk6YeNZ5LGwI1pDpBRBhtQ==", 910 | "dev": true, 911 | "engines": { 912 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 913 | }, 914 | "funding": { 915 | "type": "opencollective", 916 | "url": "https://opencollective.com/typescript-eslint" 917 | } 918 | }, 919 | "node_modules/@typescript-eslint/typescript-estree": { 920 | "version": "5.57.0", 921 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.57.0.tgz", 922 | "integrity": "sha512-LTzQ23TV82KpO8HPnWuxM2V7ieXW8O142I7hQTxWIHDcCEIjtkat6H96PFkYBQqGFLW/G/eVVOB9Z8rcvdY/Vw==", 923 | "dev": true, 924 | "dependencies": { 925 | "@typescript-eslint/types": "5.57.0", 926 | "@typescript-eslint/visitor-keys": "5.57.0", 927 | "debug": "^4.3.4", 928 | "globby": "^11.1.0", 929 | "is-glob": "^4.0.3", 930 | "semver": "^7.3.7", 931 | "tsutils": "^3.21.0" 932 | }, 933 | "engines": { 934 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 935 | }, 936 | "funding": { 937 | "type": "opencollective", 938 | "url": "https://opencollective.com/typescript-eslint" 939 | }, 940 | "peerDependenciesMeta": { 941 | "typescript": { 942 | "optional": true 943 | } 944 | } 945 | }, 946 | "node_modules/@typescript-eslint/utils": { 947 | "version": "5.57.0", 948 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.57.0.tgz", 949 | "integrity": "sha512-ps/4WohXV7C+LTSgAL5CApxvxbMkl9B9AUZRtnEFonpIxZDIT7wC1xfvuJONMidrkB9scs4zhtRyIwHh4+18kw==", 950 | "dev": true, 951 | "dependencies": { 952 | "@eslint-community/eslint-utils": "^4.2.0", 953 | "@types/json-schema": "^7.0.9", 954 | "@types/semver": "^7.3.12", 955 | "@typescript-eslint/scope-manager": "5.57.0", 956 | "@typescript-eslint/types": "5.57.0", 957 | "@typescript-eslint/typescript-estree": "5.57.0", 958 | "eslint-scope": "^5.1.1", 959 | "semver": "^7.3.7" 960 | }, 961 | "engines": { 962 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 963 | }, 964 | "funding": { 965 | "type": "opencollective", 966 | "url": "https://opencollective.com/typescript-eslint" 967 | }, 968 | "peerDependencies": { 969 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 970 | } 971 | }, 972 | "node_modules/@typescript-eslint/visitor-keys": { 973 | "version": "5.57.0", 974 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.57.0.tgz", 975 | "integrity": "sha512-ery2g3k0hv5BLiKpPuwYt9KBkAp2ugT6VvyShXdLOkax895EC55sP0Tx5L0fZaQueiK3fBLvHVvEl3jFS5ia+g==", 976 | "dev": true, 977 | "dependencies": { 978 | "@typescript-eslint/types": "5.57.0", 979 | "eslint-visitor-keys": "^3.3.0" 980 | }, 981 | "engines": { 982 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 983 | }, 984 | "funding": { 985 | "type": "opencollective", 986 | "url": "https://opencollective.com/typescript-eslint" 987 | } 988 | }, 989 | "node_modules/acorn": { 990 | "version": "8.14.1", 991 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 992 | "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 993 | "license": "MIT", 994 | "bin": { 995 | "acorn": "bin/acorn" 996 | }, 997 | "engines": { 998 | "node": ">=0.4.0" 999 | } 1000 | }, 1001 | "node_modules/acorn-jsx": { 1002 | "version": "5.3.2", 1003 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1004 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1005 | "dev": true, 1006 | "peerDependencies": { 1007 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1008 | } 1009 | }, 1010 | "node_modules/acorn-loose": { 1011 | "version": "8.4.0", 1012 | "resolved": "https://registry.npmjs.org/acorn-loose/-/acorn-loose-8.4.0.tgz", 1013 | "integrity": "sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==", 1014 | "license": "MIT", 1015 | "dependencies": { 1016 | "acorn": "^8.11.0" 1017 | }, 1018 | "engines": { 1019 | "node": ">=0.4.0" 1020 | } 1021 | }, 1022 | "node_modules/ajv": { 1023 | "version": "6.12.6", 1024 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1025 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1026 | "dev": true, 1027 | "dependencies": { 1028 | "fast-deep-equal": "^3.1.1", 1029 | "fast-json-stable-stringify": "^2.0.0", 1030 | "json-schema-traverse": "^0.4.1", 1031 | "uri-js": "^4.2.2" 1032 | }, 1033 | "funding": { 1034 | "type": "github", 1035 | "url": "https://github.com/sponsors/epoberezkin" 1036 | } 1037 | }, 1038 | "node_modules/ansi-regex": { 1039 | "version": "5.0.1", 1040 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1041 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1042 | "dev": true, 1043 | "engines": { 1044 | "node": ">=8" 1045 | } 1046 | }, 1047 | "node_modules/ansi-styles": { 1048 | "version": "4.3.0", 1049 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1050 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1051 | "dev": true, 1052 | "dependencies": { 1053 | "color-convert": "^2.0.1" 1054 | }, 1055 | "engines": { 1056 | "node": ">=8" 1057 | }, 1058 | "funding": { 1059 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1060 | } 1061 | }, 1062 | "node_modules/argparse": { 1063 | "version": "2.0.1", 1064 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1065 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1066 | "dev": true 1067 | }, 1068 | "node_modules/array-buffer-byte-length": { 1069 | "version": "1.0.0", 1070 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 1071 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 1072 | "dev": true, 1073 | "dependencies": { 1074 | "call-bind": "^1.0.2", 1075 | "is-array-buffer": "^3.0.1" 1076 | }, 1077 | "funding": { 1078 | "url": "https://github.com/sponsors/ljharb" 1079 | } 1080 | }, 1081 | "node_modules/array-includes": { 1082 | "version": "3.1.6", 1083 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 1084 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 1085 | "dev": true, 1086 | "dependencies": { 1087 | "call-bind": "^1.0.2", 1088 | "define-properties": "^1.1.4", 1089 | "es-abstract": "^1.20.4", 1090 | "get-intrinsic": "^1.1.3", 1091 | "is-string": "^1.0.7" 1092 | }, 1093 | "engines": { 1094 | "node": ">= 0.4" 1095 | }, 1096 | "funding": { 1097 | "url": "https://github.com/sponsors/ljharb" 1098 | } 1099 | }, 1100 | "node_modules/array-union": { 1101 | "version": "2.1.0", 1102 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 1103 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 1104 | "dev": true, 1105 | "engines": { 1106 | "node": ">=8" 1107 | } 1108 | }, 1109 | "node_modules/array.prototype.flatmap": { 1110 | "version": "1.3.1", 1111 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 1112 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 1113 | "dev": true, 1114 | "dependencies": { 1115 | "call-bind": "^1.0.2", 1116 | "define-properties": "^1.1.4", 1117 | "es-abstract": "^1.20.4", 1118 | "es-shim-unscopables": "^1.0.0" 1119 | }, 1120 | "engines": { 1121 | "node": ">= 0.4" 1122 | }, 1123 | "funding": { 1124 | "url": "https://github.com/sponsors/ljharb" 1125 | } 1126 | }, 1127 | "node_modules/array.prototype.tosorted": { 1128 | "version": "1.1.1", 1129 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 1130 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 1131 | "dev": true, 1132 | "dependencies": { 1133 | "call-bind": "^1.0.2", 1134 | "define-properties": "^1.1.4", 1135 | "es-abstract": "^1.20.4", 1136 | "es-shim-unscopables": "^1.0.0", 1137 | "get-intrinsic": "^1.1.3" 1138 | } 1139 | }, 1140 | "node_modules/available-typed-arrays": { 1141 | "version": "1.0.5", 1142 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 1143 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 1144 | "dev": true, 1145 | "engines": { 1146 | "node": ">= 0.4" 1147 | }, 1148 | "funding": { 1149 | "url": "https://github.com/sponsors/ljharb" 1150 | } 1151 | }, 1152 | "node_modules/balanced-match": { 1153 | "version": "1.0.2", 1154 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1155 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1156 | "dev": true 1157 | }, 1158 | "node_modules/brace-expansion": { 1159 | "version": "1.1.11", 1160 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1161 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1162 | "dev": true, 1163 | "dependencies": { 1164 | "balanced-match": "^1.0.0", 1165 | "concat-map": "0.0.1" 1166 | } 1167 | }, 1168 | "node_modules/braces": { 1169 | "version": "3.0.3", 1170 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1171 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1172 | "dev": true, 1173 | "license": "MIT", 1174 | "dependencies": { 1175 | "fill-range": "^7.1.1" 1176 | }, 1177 | "engines": { 1178 | "node": ">=8" 1179 | } 1180 | }, 1181 | "node_modules/builtin-modules": { 1182 | "version": "3.3.0", 1183 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", 1184 | "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", 1185 | "dev": true, 1186 | "engines": { 1187 | "node": ">=6" 1188 | }, 1189 | "funding": { 1190 | "url": "https://github.com/sponsors/sindresorhus" 1191 | } 1192 | }, 1193 | "node_modules/call-bind": { 1194 | "version": "1.0.2", 1195 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 1196 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 1197 | "dev": true, 1198 | "dependencies": { 1199 | "function-bind": "^1.1.1", 1200 | "get-intrinsic": "^1.0.2" 1201 | }, 1202 | "funding": { 1203 | "url": "https://github.com/sponsors/ljharb" 1204 | } 1205 | }, 1206 | "node_modules/call-bind-apply-helpers": { 1207 | "version": "1.0.2", 1208 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 1209 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 1210 | "dev": true, 1211 | "license": "MIT", 1212 | "dependencies": { 1213 | "es-errors": "^1.3.0", 1214 | "function-bind": "^1.1.2" 1215 | }, 1216 | "engines": { 1217 | "node": ">= 0.4" 1218 | } 1219 | }, 1220 | "node_modules/call-bound": { 1221 | "version": "1.0.4", 1222 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 1223 | "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 1224 | "dev": true, 1225 | "license": "MIT", 1226 | "dependencies": { 1227 | "call-bind-apply-helpers": "^1.0.2", 1228 | "get-intrinsic": "^1.3.0" 1229 | }, 1230 | "engines": { 1231 | "node": ">= 0.4" 1232 | }, 1233 | "funding": { 1234 | "url": "https://github.com/sponsors/ljharb" 1235 | } 1236 | }, 1237 | "node_modules/callsites": { 1238 | "version": "3.1.0", 1239 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1240 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1241 | "dev": true, 1242 | "engines": { 1243 | "node": ">=6" 1244 | } 1245 | }, 1246 | "node_modules/chalk": { 1247 | "version": "4.1.2", 1248 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1249 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1250 | "dev": true, 1251 | "dependencies": { 1252 | "ansi-styles": "^4.1.0", 1253 | "supports-color": "^7.1.0" 1254 | }, 1255 | "engines": { 1256 | "node": ">=10" 1257 | }, 1258 | "funding": { 1259 | "url": "https://github.com/chalk/chalk?sponsor=1" 1260 | } 1261 | }, 1262 | "node_modules/ci-info": { 1263 | "version": "3.8.0", 1264 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", 1265 | "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", 1266 | "dev": true, 1267 | "funding": [ 1268 | { 1269 | "type": "github", 1270 | "url": "https://github.com/sponsors/sibiraj-s" 1271 | } 1272 | ], 1273 | "engines": { 1274 | "node": ">=8" 1275 | } 1276 | }, 1277 | "node_modules/clean-regexp": { 1278 | "version": "1.0.0", 1279 | "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", 1280 | "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", 1281 | "dev": true, 1282 | "dependencies": { 1283 | "escape-string-regexp": "^1.0.5" 1284 | }, 1285 | "engines": { 1286 | "node": ">=4" 1287 | } 1288 | }, 1289 | "node_modules/clean-regexp/node_modules/escape-string-regexp": { 1290 | "version": "1.0.5", 1291 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1292 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 1293 | "dev": true, 1294 | "engines": { 1295 | "node": ">=0.8.0" 1296 | } 1297 | }, 1298 | "node_modules/color-convert": { 1299 | "version": "2.0.1", 1300 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1301 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1302 | "dev": true, 1303 | "dependencies": { 1304 | "color-name": "~1.1.4" 1305 | }, 1306 | "engines": { 1307 | "node": ">=7.0.0" 1308 | } 1309 | }, 1310 | "node_modules/color-name": { 1311 | "version": "1.1.4", 1312 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1313 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1314 | "dev": true 1315 | }, 1316 | "node_modules/concat-map": { 1317 | "version": "0.0.1", 1318 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1319 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1320 | "dev": true 1321 | }, 1322 | "node_modules/cross-spawn": { 1323 | "version": "7.0.6", 1324 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1325 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1326 | "dev": true, 1327 | "license": "MIT", 1328 | "dependencies": { 1329 | "path-key": "^3.1.0", 1330 | "shebang-command": "^2.0.0", 1331 | "which": "^2.0.1" 1332 | }, 1333 | "engines": { 1334 | "node": ">= 8" 1335 | } 1336 | }, 1337 | "node_modules/csstype": { 1338 | "version": "3.1.3", 1339 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1340 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1341 | "dev": true, 1342 | "license": "MIT" 1343 | }, 1344 | "node_modules/debug": { 1345 | "version": "4.3.4", 1346 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1347 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1348 | "dev": true, 1349 | "dependencies": { 1350 | "ms": "2.1.2" 1351 | }, 1352 | "engines": { 1353 | "node": ">=6.0" 1354 | }, 1355 | "peerDependenciesMeta": { 1356 | "supports-color": { 1357 | "optional": true 1358 | } 1359 | } 1360 | }, 1361 | "node_modules/deep-is": { 1362 | "version": "0.1.4", 1363 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1364 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1365 | "dev": true 1366 | }, 1367 | "node_modules/define-properties": { 1368 | "version": "1.2.0", 1369 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 1370 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 1371 | "dev": true, 1372 | "dependencies": { 1373 | "has-property-descriptors": "^1.0.0", 1374 | "object-keys": "^1.1.1" 1375 | }, 1376 | "engines": { 1377 | "node": ">= 0.4" 1378 | }, 1379 | "funding": { 1380 | "url": "https://github.com/sponsors/ljharb" 1381 | } 1382 | }, 1383 | "node_modules/dir-glob": { 1384 | "version": "3.0.1", 1385 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1386 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1387 | "dev": true, 1388 | "dependencies": { 1389 | "path-type": "^4.0.0" 1390 | }, 1391 | "engines": { 1392 | "node": ">=8" 1393 | } 1394 | }, 1395 | "node_modules/doctrine": { 1396 | "version": "3.0.0", 1397 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1398 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1399 | "dev": true, 1400 | "dependencies": { 1401 | "esutils": "^2.0.2" 1402 | }, 1403 | "engines": { 1404 | "node": ">=6.0.0" 1405 | } 1406 | }, 1407 | "node_modules/dunder-proto": { 1408 | "version": "1.0.1", 1409 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 1410 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 1411 | "dev": true, 1412 | "license": "MIT", 1413 | "dependencies": { 1414 | "call-bind-apply-helpers": "^1.0.1", 1415 | "es-errors": "^1.3.0", 1416 | "gopd": "^1.2.0" 1417 | }, 1418 | "engines": { 1419 | "node": ">= 0.4" 1420 | } 1421 | }, 1422 | "node_modules/error-ex": { 1423 | "version": "1.3.2", 1424 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1425 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1426 | "dev": true, 1427 | "dependencies": { 1428 | "is-arrayish": "^0.2.1" 1429 | } 1430 | }, 1431 | "node_modules/es-abstract": { 1432 | "version": "1.21.2", 1433 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1434 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1435 | "dev": true, 1436 | "dependencies": { 1437 | "array-buffer-byte-length": "^1.0.0", 1438 | "available-typed-arrays": "^1.0.5", 1439 | "call-bind": "^1.0.2", 1440 | "es-set-tostringtag": "^2.0.1", 1441 | "es-to-primitive": "^1.2.1", 1442 | "function.prototype.name": "^1.1.5", 1443 | "get-intrinsic": "^1.2.0", 1444 | "get-symbol-description": "^1.0.0", 1445 | "globalthis": "^1.0.3", 1446 | "gopd": "^1.0.1", 1447 | "has": "^1.0.3", 1448 | "has-property-descriptors": "^1.0.0", 1449 | "has-proto": "^1.0.1", 1450 | "has-symbols": "^1.0.3", 1451 | "internal-slot": "^1.0.5", 1452 | "is-array-buffer": "^3.0.2", 1453 | "is-callable": "^1.2.7", 1454 | "is-negative-zero": "^2.0.2", 1455 | "is-regex": "^1.1.4", 1456 | "is-shared-array-buffer": "^1.0.2", 1457 | "is-string": "^1.0.7", 1458 | "is-typed-array": "^1.1.10", 1459 | "is-weakref": "^1.0.2", 1460 | "object-inspect": "^1.12.3", 1461 | "object-keys": "^1.1.1", 1462 | "object.assign": "^4.1.4", 1463 | "regexp.prototype.flags": "^1.4.3", 1464 | "safe-regex-test": "^1.0.0", 1465 | "string.prototype.trim": "^1.2.7", 1466 | "string.prototype.trimend": "^1.0.6", 1467 | "string.prototype.trimstart": "^1.0.6", 1468 | "typed-array-length": "^1.0.4", 1469 | "unbox-primitive": "^1.0.2", 1470 | "which-typed-array": "^1.1.9" 1471 | }, 1472 | "engines": { 1473 | "node": ">= 0.4" 1474 | }, 1475 | "funding": { 1476 | "url": "https://github.com/sponsors/ljharb" 1477 | } 1478 | }, 1479 | "node_modules/es-define-property": { 1480 | "version": "1.0.1", 1481 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 1482 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 1483 | "dev": true, 1484 | "license": "MIT", 1485 | "engines": { 1486 | "node": ">= 0.4" 1487 | } 1488 | }, 1489 | "node_modules/es-errors": { 1490 | "version": "1.3.0", 1491 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1492 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1493 | "dev": true, 1494 | "license": "MIT", 1495 | "engines": { 1496 | "node": ">= 0.4" 1497 | } 1498 | }, 1499 | "node_modules/es-module-lexer": { 1500 | "version": "1.4.1", 1501 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", 1502 | "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" 1503 | }, 1504 | "node_modules/es-object-atoms": { 1505 | "version": "1.1.1", 1506 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 1507 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 1508 | "dev": true, 1509 | "license": "MIT", 1510 | "dependencies": { 1511 | "es-errors": "^1.3.0" 1512 | }, 1513 | "engines": { 1514 | "node": ">= 0.4" 1515 | } 1516 | }, 1517 | "node_modules/es-set-tostringtag": { 1518 | "version": "2.0.1", 1519 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1520 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1521 | "dev": true, 1522 | "dependencies": { 1523 | "get-intrinsic": "^1.1.3", 1524 | "has": "^1.0.3", 1525 | "has-tostringtag": "^1.0.0" 1526 | }, 1527 | "engines": { 1528 | "node": ">= 0.4" 1529 | } 1530 | }, 1531 | "node_modules/es-shim-unscopables": { 1532 | "version": "1.0.0", 1533 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1534 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1535 | "dev": true, 1536 | "dependencies": { 1537 | "has": "^1.0.3" 1538 | } 1539 | }, 1540 | "node_modules/es-to-primitive": { 1541 | "version": "1.2.1", 1542 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1543 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1544 | "dev": true, 1545 | "dependencies": { 1546 | "is-callable": "^1.1.4", 1547 | "is-date-object": "^1.0.1", 1548 | "is-symbol": "^1.0.2" 1549 | }, 1550 | "engines": { 1551 | "node": ">= 0.4" 1552 | }, 1553 | "funding": { 1554 | "url": "https://github.com/sponsors/ljharb" 1555 | } 1556 | }, 1557 | "node_modules/esbuild": { 1558 | "version": "0.25.1", 1559 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz", 1560 | "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==", 1561 | "hasInstallScript": true, 1562 | "license": "MIT", 1563 | "bin": { 1564 | "esbuild": "bin/esbuild" 1565 | }, 1566 | "engines": { 1567 | "node": ">=18" 1568 | }, 1569 | "optionalDependencies": { 1570 | "@esbuild/aix-ppc64": "0.25.1", 1571 | "@esbuild/android-arm": "0.25.1", 1572 | "@esbuild/android-arm64": "0.25.1", 1573 | "@esbuild/android-x64": "0.25.1", 1574 | "@esbuild/darwin-arm64": "0.25.1", 1575 | "@esbuild/darwin-x64": "0.25.1", 1576 | "@esbuild/freebsd-arm64": "0.25.1", 1577 | "@esbuild/freebsd-x64": "0.25.1", 1578 | "@esbuild/linux-arm": "0.25.1", 1579 | "@esbuild/linux-arm64": "0.25.1", 1580 | "@esbuild/linux-ia32": "0.25.1", 1581 | "@esbuild/linux-loong64": "0.25.1", 1582 | "@esbuild/linux-mips64el": "0.25.1", 1583 | "@esbuild/linux-ppc64": "0.25.1", 1584 | "@esbuild/linux-riscv64": "0.25.1", 1585 | "@esbuild/linux-s390x": "0.25.1", 1586 | "@esbuild/linux-x64": "0.25.1", 1587 | "@esbuild/netbsd-arm64": "0.25.1", 1588 | "@esbuild/netbsd-x64": "0.25.1", 1589 | "@esbuild/openbsd-arm64": "0.25.1", 1590 | "@esbuild/openbsd-x64": "0.25.1", 1591 | "@esbuild/sunos-x64": "0.25.1", 1592 | "@esbuild/win32-arm64": "0.25.1", 1593 | "@esbuild/win32-ia32": "0.25.1", 1594 | "@esbuild/win32-x64": "0.25.1" 1595 | } 1596 | }, 1597 | "node_modules/escape-string-regexp": { 1598 | "version": "4.0.0", 1599 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1600 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1601 | "dev": true, 1602 | "engines": { 1603 | "node": ">=10" 1604 | }, 1605 | "funding": { 1606 | "url": "https://github.com/sponsors/sindresorhus" 1607 | } 1608 | }, 1609 | "node_modules/eslint": { 1610 | "version": "8.37.0", 1611 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.37.0.tgz", 1612 | "integrity": "sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==", 1613 | "dev": true, 1614 | "dependencies": { 1615 | "@eslint-community/eslint-utils": "^4.2.0", 1616 | "@eslint-community/regexpp": "^4.4.0", 1617 | "@eslint/eslintrc": "^2.0.2", 1618 | "@eslint/js": "8.37.0", 1619 | "@humanwhocodes/config-array": "^0.11.8", 1620 | "@humanwhocodes/module-importer": "^1.0.1", 1621 | "@nodelib/fs.walk": "^1.2.8", 1622 | "ajv": "^6.10.0", 1623 | "chalk": "^4.0.0", 1624 | "cross-spawn": "^7.0.2", 1625 | "debug": "^4.3.2", 1626 | "doctrine": "^3.0.0", 1627 | "escape-string-regexp": "^4.0.0", 1628 | "eslint-scope": "^7.1.1", 1629 | "eslint-visitor-keys": "^3.4.0", 1630 | "espree": "^9.5.1", 1631 | "esquery": "^1.4.2", 1632 | "esutils": "^2.0.2", 1633 | "fast-deep-equal": "^3.1.3", 1634 | "file-entry-cache": "^6.0.1", 1635 | "find-up": "^5.0.0", 1636 | "glob-parent": "^6.0.2", 1637 | "globals": "^13.19.0", 1638 | "grapheme-splitter": "^1.0.4", 1639 | "ignore": "^5.2.0", 1640 | "import-fresh": "^3.0.0", 1641 | "imurmurhash": "^0.1.4", 1642 | "is-glob": "^4.0.0", 1643 | "is-path-inside": "^3.0.3", 1644 | "js-sdsl": "^4.1.4", 1645 | "js-yaml": "^4.1.0", 1646 | "json-stable-stringify-without-jsonify": "^1.0.1", 1647 | "levn": "^0.4.1", 1648 | "lodash.merge": "^4.6.2", 1649 | "minimatch": "^3.1.2", 1650 | "natural-compare": "^1.4.0", 1651 | "optionator": "^0.9.1", 1652 | "strip-ansi": "^6.0.1", 1653 | "strip-json-comments": "^3.1.0", 1654 | "text-table": "^0.2.0" 1655 | }, 1656 | "bin": { 1657 | "eslint": "bin/eslint.js" 1658 | }, 1659 | "engines": { 1660 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1661 | }, 1662 | "funding": { 1663 | "url": "https://opencollective.com/eslint" 1664 | } 1665 | }, 1666 | "node_modules/eslint-plugin-react": { 1667 | "version": "7.32.2", 1668 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1669 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1670 | "dev": true, 1671 | "dependencies": { 1672 | "array-includes": "^3.1.6", 1673 | "array.prototype.flatmap": "^1.3.1", 1674 | "array.prototype.tosorted": "^1.1.1", 1675 | "doctrine": "^2.1.0", 1676 | "estraverse": "^5.3.0", 1677 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1678 | "minimatch": "^3.1.2", 1679 | "object.entries": "^1.1.6", 1680 | "object.fromentries": "^2.0.6", 1681 | "object.hasown": "^1.1.2", 1682 | "object.values": "^1.1.6", 1683 | "prop-types": "^15.8.1", 1684 | "resolve": "^2.0.0-next.4", 1685 | "semver": "^6.3.0", 1686 | "string.prototype.matchall": "^4.0.8" 1687 | }, 1688 | "engines": { 1689 | "node": ">=4" 1690 | }, 1691 | "peerDependencies": { 1692 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1693 | } 1694 | }, 1695 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1696 | "version": "2.1.0", 1697 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1698 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1699 | "dev": true, 1700 | "dependencies": { 1701 | "esutils": "^2.0.2" 1702 | }, 1703 | "engines": { 1704 | "node": ">=0.10.0" 1705 | } 1706 | }, 1707 | "node_modules/eslint-plugin-react/node_modules/semver": { 1708 | "version": "6.3.1", 1709 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 1710 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 1711 | "dev": true, 1712 | "license": "ISC", 1713 | "bin": { 1714 | "semver": "bin/semver.js" 1715 | } 1716 | }, 1717 | "node_modules/eslint-plugin-unicorn": { 1718 | "version": "46.0.0", 1719 | "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.0.tgz", 1720 | "integrity": "sha512-j07WkC+PFZwk8J33LYp6JMoHa1lXc1u6R45pbSAipjpfpb7KIGr17VE2D685zCxR5VL4cjrl65kTJflziQWMDA==", 1721 | "dev": true, 1722 | "dependencies": { 1723 | "@babel/helper-validator-identifier": "^7.19.1", 1724 | "@eslint-community/eslint-utils": "^4.1.2", 1725 | "ci-info": "^3.6.1", 1726 | "clean-regexp": "^1.0.0", 1727 | "esquery": "^1.4.0", 1728 | "indent-string": "^4.0.0", 1729 | "is-builtin-module": "^3.2.0", 1730 | "jsesc": "^3.0.2", 1731 | "lodash": "^4.17.21", 1732 | "pluralize": "^8.0.0", 1733 | "read-pkg-up": "^7.0.1", 1734 | "regexp-tree": "^0.1.24", 1735 | "regjsparser": "^0.9.1", 1736 | "safe-regex": "^2.1.1", 1737 | "semver": "^7.3.8", 1738 | "strip-indent": "^3.0.0" 1739 | }, 1740 | "engines": { 1741 | "node": ">=14.18" 1742 | }, 1743 | "funding": { 1744 | "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" 1745 | }, 1746 | "peerDependencies": { 1747 | "eslint": ">=8.28.0" 1748 | } 1749 | }, 1750 | "node_modules/eslint-scope": { 1751 | "version": "5.1.1", 1752 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1753 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1754 | "dev": true, 1755 | "dependencies": { 1756 | "esrecurse": "^4.3.0", 1757 | "estraverse": "^4.1.1" 1758 | }, 1759 | "engines": { 1760 | "node": ">=8.0.0" 1761 | } 1762 | }, 1763 | "node_modules/eslint-scope/node_modules/estraverse": { 1764 | "version": "4.3.0", 1765 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1766 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1767 | "dev": true, 1768 | "engines": { 1769 | "node": ">=4.0" 1770 | } 1771 | }, 1772 | "node_modules/eslint-visitor-keys": { 1773 | "version": "3.4.0", 1774 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", 1775 | "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", 1776 | "dev": true, 1777 | "engines": { 1778 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1779 | }, 1780 | "funding": { 1781 | "url": "https://opencollective.com/eslint" 1782 | } 1783 | }, 1784 | "node_modules/eslint/node_modules/eslint-scope": { 1785 | "version": "7.1.1", 1786 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", 1787 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", 1788 | "dev": true, 1789 | "dependencies": { 1790 | "esrecurse": "^4.3.0", 1791 | "estraverse": "^5.2.0" 1792 | }, 1793 | "engines": { 1794 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1795 | } 1796 | }, 1797 | "node_modules/eslint/node_modules/glob-parent": { 1798 | "version": "6.0.2", 1799 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1800 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1801 | "dev": true, 1802 | "dependencies": { 1803 | "is-glob": "^4.0.3" 1804 | }, 1805 | "engines": { 1806 | "node": ">=10.13.0" 1807 | } 1808 | }, 1809 | "node_modules/espree": { 1810 | "version": "9.5.1", 1811 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", 1812 | "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", 1813 | "dev": true, 1814 | "dependencies": { 1815 | "acorn": "^8.8.0", 1816 | "acorn-jsx": "^5.3.2", 1817 | "eslint-visitor-keys": "^3.4.0" 1818 | }, 1819 | "engines": { 1820 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1821 | }, 1822 | "funding": { 1823 | "url": "https://opencollective.com/eslint" 1824 | } 1825 | }, 1826 | "node_modules/esquery": { 1827 | "version": "1.5.0", 1828 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1829 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1830 | "dev": true, 1831 | "dependencies": { 1832 | "estraverse": "^5.1.0" 1833 | }, 1834 | "engines": { 1835 | "node": ">=0.10" 1836 | } 1837 | }, 1838 | "node_modules/esrecurse": { 1839 | "version": "4.3.0", 1840 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1841 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1842 | "dev": true, 1843 | "dependencies": { 1844 | "estraverse": "^5.2.0" 1845 | }, 1846 | "engines": { 1847 | "node": ">=4.0" 1848 | } 1849 | }, 1850 | "node_modules/estraverse": { 1851 | "version": "5.3.0", 1852 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1853 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1854 | "dev": true, 1855 | "engines": { 1856 | "node": ">=4.0" 1857 | } 1858 | }, 1859 | "node_modules/esutils": { 1860 | "version": "2.0.3", 1861 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1862 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1863 | "dev": true, 1864 | "engines": { 1865 | "node": ">=0.10.0" 1866 | } 1867 | }, 1868 | "node_modules/fast-deep-equal": { 1869 | "version": "3.1.3", 1870 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1871 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1872 | "dev": true 1873 | }, 1874 | "node_modules/fast-glob": { 1875 | "version": "3.2.12", 1876 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1877 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1878 | "dev": true, 1879 | "dependencies": { 1880 | "@nodelib/fs.stat": "^2.0.2", 1881 | "@nodelib/fs.walk": "^1.2.3", 1882 | "glob-parent": "^5.1.2", 1883 | "merge2": "^1.3.0", 1884 | "micromatch": "^4.0.4" 1885 | }, 1886 | "engines": { 1887 | "node": ">=8.6.0" 1888 | } 1889 | }, 1890 | "node_modules/fast-json-stable-stringify": { 1891 | "version": "2.1.0", 1892 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1893 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1894 | "dev": true 1895 | }, 1896 | "node_modules/fast-levenshtein": { 1897 | "version": "2.0.6", 1898 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1899 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1900 | "dev": true 1901 | }, 1902 | "node_modules/fastq": { 1903 | "version": "1.15.0", 1904 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1905 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1906 | "dev": true, 1907 | "dependencies": { 1908 | "reusify": "^1.0.4" 1909 | } 1910 | }, 1911 | "node_modules/file-entry-cache": { 1912 | "version": "6.0.1", 1913 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1914 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1915 | "dev": true, 1916 | "dependencies": { 1917 | "flat-cache": "^3.0.4" 1918 | }, 1919 | "engines": { 1920 | "node": "^10.12.0 || >=12.0.0" 1921 | } 1922 | }, 1923 | "node_modules/fill-range": { 1924 | "version": "7.1.1", 1925 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1926 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1927 | "dev": true, 1928 | "license": "MIT", 1929 | "dependencies": { 1930 | "to-regex-range": "^5.0.1" 1931 | }, 1932 | "engines": { 1933 | "node": ">=8" 1934 | } 1935 | }, 1936 | "node_modules/find-up": { 1937 | "version": "5.0.0", 1938 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1939 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1940 | "dev": true, 1941 | "dependencies": { 1942 | "locate-path": "^6.0.0", 1943 | "path-exists": "^4.0.0" 1944 | }, 1945 | "engines": { 1946 | "node": ">=10" 1947 | }, 1948 | "funding": { 1949 | "url": "https://github.com/sponsors/sindresorhus" 1950 | } 1951 | }, 1952 | "node_modules/flat-cache": { 1953 | "version": "3.0.4", 1954 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1955 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1956 | "dev": true, 1957 | "dependencies": { 1958 | "flatted": "^3.1.0", 1959 | "rimraf": "^3.0.2" 1960 | }, 1961 | "engines": { 1962 | "node": "^10.12.0 || >=12.0.0" 1963 | } 1964 | }, 1965 | "node_modules/flatted": { 1966 | "version": "3.2.7", 1967 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1968 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", 1969 | "dev": true 1970 | }, 1971 | "node_modules/for-each": { 1972 | "version": "0.3.3", 1973 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1974 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1975 | "dev": true, 1976 | "dependencies": { 1977 | "is-callable": "^1.1.3" 1978 | } 1979 | }, 1980 | "node_modules/fs.realpath": { 1981 | "version": "1.0.0", 1982 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1983 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1984 | "dev": true 1985 | }, 1986 | "node_modules/function-bind": { 1987 | "version": "1.1.2", 1988 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1989 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1990 | "dev": true, 1991 | "license": "MIT", 1992 | "funding": { 1993 | "url": "https://github.com/sponsors/ljharb" 1994 | } 1995 | }, 1996 | "node_modules/function.prototype.name": { 1997 | "version": "1.1.5", 1998 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 1999 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 2000 | "dev": true, 2001 | "dependencies": { 2002 | "call-bind": "^1.0.2", 2003 | "define-properties": "^1.1.3", 2004 | "es-abstract": "^1.19.0", 2005 | "functions-have-names": "^1.2.2" 2006 | }, 2007 | "engines": { 2008 | "node": ">= 0.4" 2009 | }, 2010 | "funding": { 2011 | "url": "https://github.com/sponsors/ljharb" 2012 | } 2013 | }, 2014 | "node_modules/functions-have-names": { 2015 | "version": "1.2.3", 2016 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 2017 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 2018 | "dev": true, 2019 | "funding": { 2020 | "url": "https://github.com/sponsors/ljharb" 2021 | } 2022 | }, 2023 | "node_modules/get-intrinsic": { 2024 | "version": "1.3.0", 2025 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 2026 | "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 2027 | "dev": true, 2028 | "license": "MIT", 2029 | "dependencies": { 2030 | "call-bind-apply-helpers": "^1.0.2", 2031 | "es-define-property": "^1.0.1", 2032 | "es-errors": "^1.3.0", 2033 | "es-object-atoms": "^1.1.1", 2034 | "function-bind": "^1.1.2", 2035 | "get-proto": "^1.0.1", 2036 | "gopd": "^1.2.0", 2037 | "has-symbols": "^1.1.0", 2038 | "hasown": "^2.0.2", 2039 | "math-intrinsics": "^1.1.0" 2040 | }, 2041 | "engines": { 2042 | "node": ">= 0.4" 2043 | }, 2044 | "funding": { 2045 | "url": "https://github.com/sponsors/ljharb" 2046 | } 2047 | }, 2048 | "node_modules/get-proto": { 2049 | "version": "1.0.1", 2050 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 2051 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 2052 | "dev": true, 2053 | "license": "MIT", 2054 | "dependencies": { 2055 | "dunder-proto": "^1.0.1", 2056 | "es-object-atoms": "^1.0.0" 2057 | }, 2058 | "engines": { 2059 | "node": ">= 0.4" 2060 | } 2061 | }, 2062 | "node_modules/get-symbol-description": { 2063 | "version": "1.0.0", 2064 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 2065 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 2066 | "dev": true, 2067 | "dependencies": { 2068 | "call-bind": "^1.0.2", 2069 | "get-intrinsic": "^1.1.1" 2070 | }, 2071 | "engines": { 2072 | "node": ">= 0.4" 2073 | }, 2074 | "funding": { 2075 | "url": "https://github.com/sponsors/ljharb" 2076 | } 2077 | }, 2078 | "node_modules/glob": { 2079 | "version": "7.2.3", 2080 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2081 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2082 | "dev": true, 2083 | "dependencies": { 2084 | "fs.realpath": "^1.0.0", 2085 | "inflight": "^1.0.4", 2086 | "inherits": "2", 2087 | "minimatch": "^3.1.1", 2088 | "once": "^1.3.0", 2089 | "path-is-absolute": "^1.0.0" 2090 | }, 2091 | "engines": { 2092 | "node": "*" 2093 | }, 2094 | "funding": { 2095 | "url": "https://github.com/sponsors/isaacs" 2096 | } 2097 | }, 2098 | "node_modules/glob-parent": { 2099 | "version": "5.1.2", 2100 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2101 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2102 | "dev": true, 2103 | "dependencies": { 2104 | "is-glob": "^4.0.1" 2105 | }, 2106 | "engines": { 2107 | "node": ">= 6" 2108 | } 2109 | }, 2110 | "node_modules/globals": { 2111 | "version": "13.20.0", 2112 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 2113 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 2114 | "dev": true, 2115 | "dependencies": { 2116 | "type-fest": "^0.20.2" 2117 | }, 2118 | "engines": { 2119 | "node": ">=8" 2120 | }, 2121 | "funding": { 2122 | "url": "https://github.com/sponsors/sindresorhus" 2123 | } 2124 | }, 2125 | "node_modules/globalthis": { 2126 | "version": "1.0.3", 2127 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 2128 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 2129 | "dev": true, 2130 | "dependencies": { 2131 | "define-properties": "^1.1.3" 2132 | }, 2133 | "engines": { 2134 | "node": ">= 0.4" 2135 | }, 2136 | "funding": { 2137 | "url": "https://github.com/sponsors/ljharb" 2138 | } 2139 | }, 2140 | "node_modules/globby": { 2141 | "version": "11.1.0", 2142 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2143 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2144 | "dev": true, 2145 | "dependencies": { 2146 | "array-union": "^2.1.0", 2147 | "dir-glob": "^3.0.1", 2148 | "fast-glob": "^3.2.9", 2149 | "ignore": "^5.2.0", 2150 | "merge2": "^1.4.1", 2151 | "slash": "^3.0.0" 2152 | }, 2153 | "engines": { 2154 | "node": ">=10" 2155 | }, 2156 | "funding": { 2157 | "url": "https://github.com/sponsors/sindresorhus" 2158 | } 2159 | }, 2160 | "node_modules/gopd": { 2161 | "version": "1.2.0", 2162 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 2163 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 2164 | "dev": true, 2165 | "license": "MIT", 2166 | "engines": { 2167 | "node": ">= 0.4" 2168 | }, 2169 | "funding": { 2170 | "url": "https://github.com/sponsors/ljharb" 2171 | } 2172 | }, 2173 | "node_modules/grapheme-splitter": { 2174 | "version": "1.0.4", 2175 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 2176 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", 2177 | "dev": true 2178 | }, 2179 | "node_modules/has": { 2180 | "version": "1.0.3", 2181 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2182 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2183 | "dev": true, 2184 | "dependencies": { 2185 | "function-bind": "^1.1.1" 2186 | }, 2187 | "engines": { 2188 | "node": ">= 0.4.0" 2189 | } 2190 | }, 2191 | "node_modules/has-bigints": { 2192 | "version": "1.0.2", 2193 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2194 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2195 | "dev": true, 2196 | "funding": { 2197 | "url": "https://github.com/sponsors/ljharb" 2198 | } 2199 | }, 2200 | "node_modules/has-flag": { 2201 | "version": "4.0.0", 2202 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2203 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2204 | "dev": true, 2205 | "engines": { 2206 | "node": ">=8" 2207 | } 2208 | }, 2209 | "node_modules/has-property-descriptors": { 2210 | "version": "1.0.0", 2211 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 2212 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 2213 | "dev": true, 2214 | "dependencies": { 2215 | "get-intrinsic": "^1.1.1" 2216 | }, 2217 | "funding": { 2218 | "url": "https://github.com/sponsors/ljharb" 2219 | } 2220 | }, 2221 | "node_modules/has-proto": { 2222 | "version": "1.0.1", 2223 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2224 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2225 | "dev": true, 2226 | "engines": { 2227 | "node": ">= 0.4" 2228 | }, 2229 | "funding": { 2230 | "url": "https://github.com/sponsors/ljharb" 2231 | } 2232 | }, 2233 | "node_modules/has-symbols": { 2234 | "version": "1.1.0", 2235 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 2236 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 2237 | "dev": true, 2238 | "license": "MIT", 2239 | "engines": { 2240 | "node": ">= 0.4" 2241 | }, 2242 | "funding": { 2243 | "url": "https://github.com/sponsors/ljharb" 2244 | } 2245 | }, 2246 | "node_modules/has-tostringtag": { 2247 | "version": "1.0.0", 2248 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2249 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2250 | "dev": true, 2251 | "dependencies": { 2252 | "has-symbols": "^1.0.2" 2253 | }, 2254 | "engines": { 2255 | "node": ">= 0.4" 2256 | }, 2257 | "funding": { 2258 | "url": "https://github.com/sponsors/ljharb" 2259 | } 2260 | }, 2261 | "node_modules/hasown": { 2262 | "version": "2.0.2", 2263 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2264 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2265 | "dev": true, 2266 | "license": "MIT", 2267 | "dependencies": { 2268 | "function-bind": "^1.1.2" 2269 | }, 2270 | "engines": { 2271 | "node": ">= 0.4" 2272 | } 2273 | }, 2274 | "node_modules/hono": { 2275 | "version": "4.7.5", 2276 | "resolved": "https://registry.npmjs.org/hono/-/hono-4.7.5.tgz", 2277 | "integrity": "sha512-fDOK5W2C1vZACsgLONigdZTRZxuBqFtcKh7bUQ5cVSbwI2RWjloJDcgFOVzbQrlI6pCmhlTsVYZ7zpLj4m4qMQ==", 2278 | "license": "MIT", 2279 | "engines": { 2280 | "node": ">=16.9.0" 2281 | } 2282 | }, 2283 | "node_modules/hosted-git-info": { 2284 | "version": "2.8.9", 2285 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", 2286 | "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", 2287 | "dev": true 2288 | }, 2289 | "node_modules/ignore": { 2290 | "version": "5.2.4", 2291 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2292 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2293 | "dev": true, 2294 | "engines": { 2295 | "node": ">= 4" 2296 | } 2297 | }, 2298 | "node_modules/import-fresh": { 2299 | "version": "3.3.0", 2300 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2301 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2302 | "dev": true, 2303 | "dependencies": { 2304 | "parent-module": "^1.0.0", 2305 | "resolve-from": "^4.0.0" 2306 | }, 2307 | "engines": { 2308 | "node": ">=6" 2309 | }, 2310 | "funding": { 2311 | "url": "https://github.com/sponsors/sindresorhus" 2312 | } 2313 | }, 2314 | "node_modules/imurmurhash": { 2315 | "version": "0.1.4", 2316 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2317 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2318 | "dev": true, 2319 | "engines": { 2320 | "node": ">=0.8.19" 2321 | } 2322 | }, 2323 | "node_modules/indent-string": { 2324 | "version": "4.0.0", 2325 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", 2326 | "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", 2327 | "dev": true, 2328 | "engines": { 2329 | "node": ">=8" 2330 | } 2331 | }, 2332 | "node_modules/inflight": { 2333 | "version": "1.0.6", 2334 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2335 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2336 | "dev": true, 2337 | "dependencies": { 2338 | "once": "^1.3.0", 2339 | "wrappy": "1" 2340 | } 2341 | }, 2342 | "node_modules/inherits": { 2343 | "version": "2.0.4", 2344 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2345 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2346 | "dev": true 2347 | }, 2348 | "node_modules/internal-slot": { 2349 | "version": "1.0.5", 2350 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2351 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2352 | "dev": true, 2353 | "dependencies": { 2354 | "get-intrinsic": "^1.2.0", 2355 | "has": "^1.0.3", 2356 | "side-channel": "^1.0.4" 2357 | }, 2358 | "engines": { 2359 | "node": ">= 0.4" 2360 | } 2361 | }, 2362 | "node_modules/is-array-buffer": { 2363 | "version": "3.0.2", 2364 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2365 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2366 | "dev": true, 2367 | "dependencies": { 2368 | "call-bind": "^1.0.2", 2369 | "get-intrinsic": "^1.2.0", 2370 | "is-typed-array": "^1.1.10" 2371 | }, 2372 | "funding": { 2373 | "url": "https://github.com/sponsors/ljharb" 2374 | } 2375 | }, 2376 | "node_modules/is-arrayish": { 2377 | "version": "0.2.1", 2378 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2379 | "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", 2380 | "dev": true 2381 | }, 2382 | "node_modules/is-bigint": { 2383 | "version": "1.0.4", 2384 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2385 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2386 | "dev": true, 2387 | "dependencies": { 2388 | "has-bigints": "^1.0.1" 2389 | }, 2390 | "funding": { 2391 | "url": "https://github.com/sponsors/ljharb" 2392 | } 2393 | }, 2394 | "node_modules/is-boolean-object": { 2395 | "version": "1.1.2", 2396 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2397 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2398 | "dev": true, 2399 | "dependencies": { 2400 | "call-bind": "^1.0.2", 2401 | "has-tostringtag": "^1.0.0" 2402 | }, 2403 | "engines": { 2404 | "node": ">= 0.4" 2405 | }, 2406 | "funding": { 2407 | "url": "https://github.com/sponsors/ljharb" 2408 | } 2409 | }, 2410 | "node_modules/is-builtin-module": { 2411 | "version": "3.2.1", 2412 | "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", 2413 | "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", 2414 | "dev": true, 2415 | "dependencies": { 2416 | "builtin-modules": "^3.3.0" 2417 | }, 2418 | "engines": { 2419 | "node": ">=6" 2420 | }, 2421 | "funding": { 2422 | "url": "https://github.com/sponsors/sindresorhus" 2423 | } 2424 | }, 2425 | "node_modules/is-callable": { 2426 | "version": "1.2.7", 2427 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2428 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2429 | "dev": true, 2430 | "engines": { 2431 | "node": ">= 0.4" 2432 | }, 2433 | "funding": { 2434 | "url": "https://github.com/sponsors/ljharb" 2435 | } 2436 | }, 2437 | "node_modules/is-core-module": { 2438 | "version": "2.11.0", 2439 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", 2440 | "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", 2441 | "dev": true, 2442 | "dependencies": { 2443 | "has": "^1.0.3" 2444 | }, 2445 | "funding": { 2446 | "url": "https://github.com/sponsors/ljharb" 2447 | } 2448 | }, 2449 | "node_modules/is-date-object": { 2450 | "version": "1.0.5", 2451 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2452 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2453 | "dev": true, 2454 | "dependencies": { 2455 | "has-tostringtag": "^1.0.0" 2456 | }, 2457 | "engines": { 2458 | "node": ">= 0.4" 2459 | }, 2460 | "funding": { 2461 | "url": "https://github.com/sponsors/ljharb" 2462 | } 2463 | }, 2464 | "node_modules/is-extglob": { 2465 | "version": "2.1.1", 2466 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2467 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2468 | "dev": true, 2469 | "engines": { 2470 | "node": ">=0.10.0" 2471 | } 2472 | }, 2473 | "node_modules/is-glob": { 2474 | "version": "4.0.3", 2475 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2476 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2477 | "dev": true, 2478 | "dependencies": { 2479 | "is-extglob": "^2.1.1" 2480 | }, 2481 | "engines": { 2482 | "node": ">=0.10.0" 2483 | } 2484 | }, 2485 | "node_modules/is-negative-zero": { 2486 | "version": "2.0.2", 2487 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2488 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2489 | "dev": true, 2490 | "engines": { 2491 | "node": ">= 0.4" 2492 | }, 2493 | "funding": { 2494 | "url": "https://github.com/sponsors/ljharb" 2495 | } 2496 | }, 2497 | "node_modules/is-number": { 2498 | "version": "7.0.0", 2499 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2500 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2501 | "dev": true, 2502 | "license": "MIT", 2503 | "engines": { 2504 | "node": ">=0.12.0" 2505 | } 2506 | }, 2507 | "node_modules/is-number-object": { 2508 | "version": "1.0.7", 2509 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2510 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2511 | "dev": true, 2512 | "dependencies": { 2513 | "has-tostringtag": "^1.0.0" 2514 | }, 2515 | "engines": { 2516 | "node": ">= 0.4" 2517 | }, 2518 | "funding": { 2519 | "url": "https://github.com/sponsors/ljharb" 2520 | } 2521 | }, 2522 | "node_modules/is-path-inside": { 2523 | "version": "3.0.3", 2524 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2525 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2526 | "dev": true, 2527 | "engines": { 2528 | "node": ">=8" 2529 | } 2530 | }, 2531 | "node_modules/is-regex": { 2532 | "version": "1.1.4", 2533 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2534 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2535 | "dev": true, 2536 | "dependencies": { 2537 | "call-bind": "^1.0.2", 2538 | "has-tostringtag": "^1.0.0" 2539 | }, 2540 | "engines": { 2541 | "node": ">= 0.4" 2542 | }, 2543 | "funding": { 2544 | "url": "https://github.com/sponsors/ljharb" 2545 | } 2546 | }, 2547 | "node_modules/is-shared-array-buffer": { 2548 | "version": "1.0.2", 2549 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2550 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2551 | "dev": true, 2552 | "dependencies": { 2553 | "call-bind": "^1.0.2" 2554 | }, 2555 | "funding": { 2556 | "url": "https://github.com/sponsors/ljharb" 2557 | } 2558 | }, 2559 | "node_modules/is-string": { 2560 | "version": "1.0.7", 2561 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2562 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2563 | "dev": true, 2564 | "dependencies": { 2565 | "has-tostringtag": "^1.0.0" 2566 | }, 2567 | "engines": { 2568 | "node": ">= 0.4" 2569 | }, 2570 | "funding": { 2571 | "url": "https://github.com/sponsors/ljharb" 2572 | } 2573 | }, 2574 | "node_modules/is-symbol": { 2575 | "version": "1.0.4", 2576 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2577 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2578 | "dev": true, 2579 | "dependencies": { 2580 | "has-symbols": "^1.0.2" 2581 | }, 2582 | "engines": { 2583 | "node": ">= 0.4" 2584 | }, 2585 | "funding": { 2586 | "url": "https://github.com/sponsors/ljharb" 2587 | } 2588 | }, 2589 | "node_modules/is-typed-array": { 2590 | "version": "1.1.10", 2591 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2592 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2593 | "dev": true, 2594 | "dependencies": { 2595 | "available-typed-arrays": "^1.0.5", 2596 | "call-bind": "^1.0.2", 2597 | "for-each": "^0.3.3", 2598 | "gopd": "^1.0.1", 2599 | "has-tostringtag": "^1.0.0" 2600 | }, 2601 | "engines": { 2602 | "node": ">= 0.4" 2603 | }, 2604 | "funding": { 2605 | "url": "https://github.com/sponsors/ljharb" 2606 | } 2607 | }, 2608 | "node_modules/is-weakref": { 2609 | "version": "1.0.2", 2610 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2611 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2612 | "dev": true, 2613 | "dependencies": { 2614 | "call-bind": "^1.0.2" 2615 | }, 2616 | "funding": { 2617 | "url": "https://github.com/sponsors/ljharb" 2618 | } 2619 | }, 2620 | "node_modules/isexe": { 2621 | "version": "2.0.0", 2622 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2623 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2624 | "dev": true 2625 | }, 2626 | "node_modules/js-sdsl": { 2627 | "version": "4.4.0", 2628 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", 2629 | "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", 2630 | "dev": true, 2631 | "funding": { 2632 | "type": "opencollective", 2633 | "url": "https://opencollective.com/js-sdsl" 2634 | } 2635 | }, 2636 | "node_modules/js-tokens": { 2637 | "version": "4.0.0", 2638 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2639 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2640 | "dev": true 2641 | }, 2642 | "node_modules/js-yaml": { 2643 | "version": "4.1.0", 2644 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2645 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2646 | "dev": true, 2647 | "dependencies": { 2648 | "argparse": "^2.0.1" 2649 | }, 2650 | "bin": { 2651 | "js-yaml": "bin/js-yaml.js" 2652 | } 2653 | }, 2654 | "node_modules/jsesc": { 2655 | "version": "3.0.2", 2656 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", 2657 | "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", 2658 | "dev": true, 2659 | "bin": { 2660 | "jsesc": "bin/jsesc" 2661 | }, 2662 | "engines": { 2663 | "node": ">=6" 2664 | } 2665 | }, 2666 | "node_modules/json-parse-even-better-errors": { 2667 | "version": "2.3.1", 2668 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2669 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2670 | "dev": true 2671 | }, 2672 | "node_modules/json-schema-traverse": { 2673 | "version": "0.4.1", 2674 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2675 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2676 | "dev": true 2677 | }, 2678 | "node_modules/json-stable-stringify-without-jsonify": { 2679 | "version": "1.0.1", 2680 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2681 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2682 | "dev": true 2683 | }, 2684 | "node_modules/jsx-ast-utils": { 2685 | "version": "3.3.3", 2686 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2687 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2688 | "dev": true, 2689 | "dependencies": { 2690 | "array-includes": "^3.1.5", 2691 | "object.assign": "^4.1.3" 2692 | }, 2693 | "engines": { 2694 | "node": ">=4.0" 2695 | } 2696 | }, 2697 | "node_modules/levn": { 2698 | "version": "0.4.1", 2699 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2700 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2701 | "dev": true, 2702 | "dependencies": { 2703 | "prelude-ls": "^1.2.1", 2704 | "type-check": "~0.4.0" 2705 | }, 2706 | "engines": { 2707 | "node": ">= 0.8.0" 2708 | } 2709 | }, 2710 | "node_modules/lines-and-columns": { 2711 | "version": "1.2.4", 2712 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2713 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2714 | "dev": true 2715 | }, 2716 | "node_modules/locate-path": { 2717 | "version": "6.0.0", 2718 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2719 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2720 | "dev": true, 2721 | "dependencies": { 2722 | "p-locate": "^5.0.0" 2723 | }, 2724 | "engines": { 2725 | "node": ">=10" 2726 | }, 2727 | "funding": { 2728 | "url": "https://github.com/sponsors/sindresorhus" 2729 | } 2730 | }, 2731 | "node_modules/lodash": { 2732 | "version": "4.17.21", 2733 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2734 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2735 | "dev": true 2736 | }, 2737 | "node_modules/lodash.merge": { 2738 | "version": "4.6.2", 2739 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2740 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2741 | "dev": true 2742 | }, 2743 | "node_modules/loose-envify": { 2744 | "version": "1.4.0", 2745 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2746 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2747 | "dev": true, 2748 | "dependencies": { 2749 | "js-tokens": "^3.0.0 || ^4.0.0" 2750 | }, 2751 | "bin": { 2752 | "loose-envify": "cli.js" 2753 | } 2754 | }, 2755 | "node_modules/math-intrinsics": { 2756 | "version": "1.1.0", 2757 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 2758 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 2759 | "dev": true, 2760 | "license": "MIT", 2761 | "engines": { 2762 | "node": ">= 0.4" 2763 | } 2764 | }, 2765 | "node_modules/merge2": { 2766 | "version": "1.4.1", 2767 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2768 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2769 | "dev": true, 2770 | "engines": { 2771 | "node": ">= 8" 2772 | } 2773 | }, 2774 | "node_modules/micromatch": { 2775 | "version": "4.0.8", 2776 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2777 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2778 | "dev": true, 2779 | "license": "MIT", 2780 | "dependencies": { 2781 | "braces": "^3.0.3", 2782 | "picomatch": "^2.3.1" 2783 | }, 2784 | "engines": { 2785 | "node": ">=8.6" 2786 | } 2787 | }, 2788 | "node_modules/min-indent": { 2789 | "version": "1.0.1", 2790 | "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", 2791 | "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", 2792 | "dev": true, 2793 | "engines": { 2794 | "node": ">=4" 2795 | } 2796 | }, 2797 | "node_modules/minimatch": { 2798 | "version": "3.1.2", 2799 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2800 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2801 | "dev": true, 2802 | "dependencies": { 2803 | "brace-expansion": "^1.1.7" 2804 | }, 2805 | "engines": { 2806 | "node": "*" 2807 | } 2808 | }, 2809 | "node_modules/ms": { 2810 | "version": "2.1.2", 2811 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2812 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2813 | "dev": true 2814 | }, 2815 | "node_modules/natural-compare": { 2816 | "version": "1.4.0", 2817 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2818 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2819 | "dev": true 2820 | }, 2821 | "node_modules/natural-compare-lite": { 2822 | "version": "1.4.0", 2823 | "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", 2824 | "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", 2825 | "dev": true 2826 | }, 2827 | "node_modules/normalize-package-data": { 2828 | "version": "2.5.0", 2829 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", 2830 | "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", 2831 | "dev": true, 2832 | "dependencies": { 2833 | "hosted-git-info": "^2.1.4", 2834 | "resolve": "^1.10.0", 2835 | "semver": "2 || 3 || 4 || 5", 2836 | "validate-npm-package-license": "^3.0.1" 2837 | } 2838 | }, 2839 | "node_modules/normalize-package-data/node_modules/resolve": { 2840 | "version": "1.22.1", 2841 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", 2842 | "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", 2843 | "dev": true, 2844 | "dependencies": { 2845 | "is-core-module": "^2.9.0", 2846 | "path-parse": "^1.0.7", 2847 | "supports-preserve-symlinks-flag": "^1.0.0" 2848 | }, 2849 | "bin": { 2850 | "resolve": "bin/resolve" 2851 | }, 2852 | "funding": { 2853 | "url": "https://github.com/sponsors/ljharb" 2854 | } 2855 | }, 2856 | "node_modules/normalize-package-data/node_modules/semver": { 2857 | "version": "5.7.2", 2858 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", 2859 | "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", 2860 | "dev": true, 2861 | "license": "ISC", 2862 | "bin": { 2863 | "semver": "bin/semver" 2864 | } 2865 | }, 2866 | "node_modules/object-assign": { 2867 | "version": "4.1.1", 2868 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2869 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2870 | "dev": true, 2871 | "engines": { 2872 | "node": ">=0.10.0" 2873 | } 2874 | }, 2875 | "node_modules/object-inspect": { 2876 | "version": "1.13.4", 2877 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 2878 | "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 2879 | "dev": true, 2880 | "license": "MIT", 2881 | "engines": { 2882 | "node": ">= 0.4" 2883 | }, 2884 | "funding": { 2885 | "url": "https://github.com/sponsors/ljharb" 2886 | } 2887 | }, 2888 | "node_modules/object-keys": { 2889 | "version": "1.1.1", 2890 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2891 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2892 | "dev": true, 2893 | "engines": { 2894 | "node": ">= 0.4" 2895 | } 2896 | }, 2897 | "node_modules/object.assign": { 2898 | "version": "4.1.4", 2899 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 2900 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 2901 | "dev": true, 2902 | "dependencies": { 2903 | "call-bind": "^1.0.2", 2904 | "define-properties": "^1.1.4", 2905 | "has-symbols": "^1.0.3", 2906 | "object-keys": "^1.1.1" 2907 | }, 2908 | "engines": { 2909 | "node": ">= 0.4" 2910 | }, 2911 | "funding": { 2912 | "url": "https://github.com/sponsors/ljharb" 2913 | } 2914 | }, 2915 | "node_modules/object.entries": { 2916 | "version": "1.1.6", 2917 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 2918 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 2919 | "dev": true, 2920 | "dependencies": { 2921 | "call-bind": "^1.0.2", 2922 | "define-properties": "^1.1.4", 2923 | "es-abstract": "^1.20.4" 2924 | }, 2925 | "engines": { 2926 | "node": ">= 0.4" 2927 | } 2928 | }, 2929 | "node_modules/object.fromentries": { 2930 | "version": "2.0.6", 2931 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 2932 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 2933 | "dev": true, 2934 | "dependencies": { 2935 | "call-bind": "^1.0.2", 2936 | "define-properties": "^1.1.4", 2937 | "es-abstract": "^1.20.4" 2938 | }, 2939 | "engines": { 2940 | "node": ">= 0.4" 2941 | }, 2942 | "funding": { 2943 | "url": "https://github.com/sponsors/ljharb" 2944 | } 2945 | }, 2946 | "node_modules/object.hasown": { 2947 | "version": "1.1.2", 2948 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 2949 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 2950 | "dev": true, 2951 | "dependencies": { 2952 | "define-properties": "^1.1.4", 2953 | "es-abstract": "^1.20.4" 2954 | }, 2955 | "funding": { 2956 | "url": "https://github.com/sponsors/ljharb" 2957 | } 2958 | }, 2959 | "node_modules/object.values": { 2960 | "version": "1.1.6", 2961 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 2962 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 2963 | "dev": true, 2964 | "dependencies": { 2965 | "call-bind": "^1.0.2", 2966 | "define-properties": "^1.1.4", 2967 | "es-abstract": "^1.20.4" 2968 | }, 2969 | "engines": { 2970 | "node": ">= 0.4" 2971 | }, 2972 | "funding": { 2973 | "url": "https://github.com/sponsors/ljharb" 2974 | } 2975 | }, 2976 | "node_modules/once": { 2977 | "version": "1.4.0", 2978 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2979 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2980 | "dev": true, 2981 | "dependencies": { 2982 | "wrappy": "1" 2983 | } 2984 | }, 2985 | "node_modules/optionator": { 2986 | "version": "0.9.1", 2987 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 2988 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 2989 | "dev": true, 2990 | "dependencies": { 2991 | "deep-is": "^0.1.3", 2992 | "fast-levenshtein": "^2.0.6", 2993 | "levn": "^0.4.1", 2994 | "prelude-ls": "^1.2.1", 2995 | "type-check": "^0.4.0", 2996 | "word-wrap": "^1.2.3" 2997 | }, 2998 | "engines": { 2999 | "node": ">= 0.8.0" 3000 | } 3001 | }, 3002 | "node_modules/p-limit": { 3003 | "version": "3.1.0", 3004 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3005 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3006 | "dev": true, 3007 | "dependencies": { 3008 | "yocto-queue": "^0.1.0" 3009 | }, 3010 | "engines": { 3011 | "node": ">=10" 3012 | }, 3013 | "funding": { 3014 | "url": "https://github.com/sponsors/sindresorhus" 3015 | } 3016 | }, 3017 | "node_modules/p-locate": { 3018 | "version": "5.0.0", 3019 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3020 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3021 | "dev": true, 3022 | "dependencies": { 3023 | "p-limit": "^3.0.2" 3024 | }, 3025 | "engines": { 3026 | "node": ">=10" 3027 | }, 3028 | "funding": { 3029 | "url": "https://github.com/sponsors/sindresorhus" 3030 | } 3031 | }, 3032 | "node_modules/p-try": { 3033 | "version": "2.2.0", 3034 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 3035 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 3036 | "dev": true, 3037 | "engines": { 3038 | "node": ">=6" 3039 | } 3040 | }, 3041 | "node_modules/parent-module": { 3042 | "version": "1.0.1", 3043 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3044 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3045 | "dev": true, 3046 | "dependencies": { 3047 | "callsites": "^3.0.0" 3048 | }, 3049 | "engines": { 3050 | "node": ">=6" 3051 | } 3052 | }, 3053 | "node_modules/parse-json": { 3054 | "version": "5.2.0", 3055 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 3056 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 3057 | "dev": true, 3058 | "dependencies": { 3059 | "@babel/code-frame": "^7.0.0", 3060 | "error-ex": "^1.3.1", 3061 | "json-parse-even-better-errors": "^2.3.0", 3062 | "lines-and-columns": "^1.1.6" 3063 | }, 3064 | "engines": { 3065 | "node": ">=8" 3066 | }, 3067 | "funding": { 3068 | "url": "https://github.com/sponsors/sindresorhus" 3069 | } 3070 | }, 3071 | "node_modules/path-exists": { 3072 | "version": "4.0.0", 3073 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3074 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3075 | "dev": true, 3076 | "engines": { 3077 | "node": ">=8" 3078 | } 3079 | }, 3080 | "node_modules/path-is-absolute": { 3081 | "version": "1.0.1", 3082 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3083 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3084 | "dev": true, 3085 | "engines": { 3086 | "node": ">=0.10.0" 3087 | } 3088 | }, 3089 | "node_modules/path-key": { 3090 | "version": "3.1.1", 3091 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3092 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3093 | "dev": true, 3094 | "engines": { 3095 | "node": ">=8" 3096 | } 3097 | }, 3098 | "node_modules/path-parse": { 3099 | "version": "1.0.7", 3100 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3101 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3102 | "dev": true 3103 | }, 3104 | "node_modules/path-type": { 3105 | "version": "4.0.0", 3106 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3107 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3108 | "dev": true, 3109 | "engines": { 3110 | "node": ">=8" 3111 | } 3112 | }, 3113 | "node_modules/picomatch": { 3114 | "version": "2.3.1", 3115 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3116 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3117 | "dev": true, 3118 | "engines": { 3119 | "node": ">=8.6" 3120 | }, 3121 | "funding": { 3122 | "url": "https://github.com/sponsors/jonschlinkert" 3123 | } 3124 | }, 3125 | "node_modules/pluralize": { 3126 | "version": "8.0.0", 3127 | "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", 3128 | "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", 3129 | "dev": true, 3130 | "engines": { 3131 | "node": ">=4" 3132 | } 3133 | }, 3134 | "node_modules/prelude-ls": { 3135 | "version": "1.2.1", 3136 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3137 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3138 | "dev": true, 3139 | "engines": { 3140 | "node": ">= 0.8.0" 3141 | } 3142 | }, 3143 | "node_modules/prettier": { 3144 | "version": "2.8.7", 3145 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz", 3146 | "integrity": "sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==", 3147 | "dev": true, 3148 | "bin": { 3149 | "prettier": "bin-prettier.js" 3150 | }, 3151 | "engines": { 3152 | "node": ">=10.13.0" 3153 | }, 3154 | "funding": { 3155 | "url": "https://github.com/prettier/prettier?sponsor=1" 3156 | } 3157 | }, 3158 | "node_modules/prop-types": { 3159 | "version": "15.8.1", 3160 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3161 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3162 | "dev": true, 3163 | "dependencies": { 3164 | "loose-envify": "^1.4.0", 3165 | "object-assign": "^4.1.1", 3166 | "react-is": "^16.13.1" 3167 | } 3168 | }, 3169 | "node_modules/punycode": { 3170 | "version": "2.3.0", 3171 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3172 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3173 | "dev": true, 3174 | "engines": { 3175 | "node": ">=6" 3176 | } 3177 | }, 3178 | "node_modules/queue-microtask": { 3179 | "version": "1.2.3", 3180 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3181 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3182 | "dev": true, 3183 | "funding": [ 3184 | { 3185 | "type": "github", 3186 | "url": "https://github.com/sponsors/feross" 3187 | }, 3188 | { 3189 | "type": "patreon", 3190 | "url": "https://www.patreon.com/feross" 3191 | }, 3192 | { 3193 | "type": "consulting", 3194 | "url": "https://feross.org/support" 3195 | } 3196 | ] 3197 | }, 3198 | "node_modules/react": { 3199 | "version": "19.0.0", 3200 | "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", 3201 | "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", 3202 | "license": "MIT", 3203 | "engines": { 3204 | "node": ">=0.10.0" 3205 | } 3206 | }, 3207 | "node_modules/react-dom": { 3208 | "version": "19.0.0", 3209 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", 3210 | "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", 3211 | "license": "MIT", 3212 | "dependencies": { 3213 | "scheduler": "^0.25.0" 3214 | }, 3215 | "peerDependencies": { 3216 | "react": "^19.0.0" 3217 | } 3218 | }, 3219 | "node_modules/react-is": { 3220 | "version": "16.13.1", 3221 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3222 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", 3223 | "dev": true 3224 | }, 3225 | "node_modules/react-server-dom-esm": { 3226 | "name": "@kentcdodds/tmp-react-server-dom-esm", 3227 | "version": "19.0.1", 3228 | "resolved": "https://registry.npmjs.org/@kentcdodds/tmp-react-server-dom-esm/-/tmp-react-server-dom-esm-19.0.1.tgz", 3229 | "integrity": "sha512-yg59PoC5BuF71Kx8kTH0qMt30dKG/uz2Gkn5U6OTKw+S3yVnY50Djf4z772cbLSZxAP/tdIh6r5rUWRxlVdRoQ==", 3230 | "license": "MIT", 3231 | "dependencies": { 3232 | "acorn-loose": "^8.3.0" 3233 | }, 3234 | "engines": { 3235 | "node": ">=0.10.0" 3236 | }, 3237 | "peerDependencies": { 3238 | "react": "^19.0.0", 3239 | "react-dom": "^19.0.0" 3240 | } 3241 | }, 3242 | "node_modules/read-pkg": { 3243 | "version": "5.2.0", 3244 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", 3245 | "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", 3246 | "dev": true, 3247 | "dependencies": { 3248 | "@types/normalize-package-data": "^2.4.0", 3249 | "normalize-package-data": "^2.5.0", 3250 | "parse-json": "^5.0.0", 3251 | "type-fest": "^0.6.0" 3252 | }, 3253 | "engines": { 3254 | "node": ">=8" 3255 | } 3256 | }, 3257 | "node_modules/read-pkg-up": { 3258 | "version": "7.0.1", 3259 | "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", 3260 | "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", 3261 | "dev": true, 3262 | "dependencies": { 3263 | "find-up": "^4.1.0", 3264 | "read-pkg": "^5.2.0", 3265 | "type-fest": "^0.8.1" 3266 | }, 3267 | "engines": { 3268 | "node": ">=8" 3269 | }, 3270 | "funding": { 3271 | "url": "https://github.com/sponsors/sindresorhus" 3272 | } 3273 | }, 3274 | "node_modules/read-pkg-up/node_modules/find-up": { 3275 | "version": "4.1.0", 3276 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 3277 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 3278 | "dev": true, 3279 | "dependencies": { 3280 | "locate-path": "^5.0.0", 3281 | "path-exists": "^4.0.0" 3282 | }, 3283 | "engines": { 3284 | "node": ">=8" 3285 | } 3286 | }, 3287 | "node_modules/read-pkg-up/node_modules/locate-path": { 3288 | "version": "5.0.0", 3289 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 3290 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 3291 | "dev": true, 3292 | "dependencies": { 3293 | "p-locate": "^4.1.0" 3294 | }, 3295 | "engines": { 3296 | "node": ">=8" 3297 | } 3298 | }, 3299 | "node_modules/read-pkg-up/node_modules/p-limit": { 3300 | "version": "2.3.0", 3301 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 3302 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 3303 | "dev": true, 3304 | "dependencies": { 3305 | "p-try": "^2.0.0" 3306 | }, 3307 | "engines": { 3308 | "node": ">=6" 3309 | }, 3310 | "funding": { 3311 | "url": "https://github.com/sponsors/sindresorhus" 3312 | } 3313 | }, 3314 | "node_modules/read-pkg-up/node_modules/p-locate": { 3315 | "version": "4.1.0", 3316 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 3317 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 3318 | "dev": true, 3319 | "dependencies": { 3320 | "p-limit": "^2.2.0" 3321 | }, 3322 | "engines": { 3323 | "node": ">=8" 3324 | } 3325 | }, 3326 | "node_modules/read-pkg-up/node_modules/type-fest": { 3327 | "version": "0.8.1", 3328 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", 3329 | "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", 3330 | "dev": true, 3331 | "engines": { 3332 | "node": ">=8" 3333 | } 3334 | }, 3335 | "node_modules/read-pkg/node_modules/type-fest": { 3336 | "version": "0.6.0", 3337 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", 3338 | "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", 3339 | "dev": true, 3340 | "engines": { 3341 | "node": ">=8" 3342 | } 3343 | }, 3344 | "node_modules/regexp-tree": { 3345 | "version": "0.1.24", 3346 | "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.24.tgz", 3347 | "integrity": "sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==", 3348 | "dev": true, 3349 | "bin": { 3350 | "regexp-tree": "bin/regexp-tree" 3351 | } 3352 | }, 3353 | "node_modules/regexp.prototype.flags": { 3354 | "version": "1.4.3", 3355 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", 3356 | "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", 3357 | "dev": true, 3358 | "dependencies": { 3359 | "call-bind": "^1.0.2", 3360 | "define-properties": "^1.1.3", 3361 | "functions-have-names": "^1.2.2" 3362 | }, 3363 | "engines": { 3364 | "node": ">= 0.4" 3365 | }, 3366 | "funding": { 3367 | "url": "https://github.com/sponsors/ljharb" 3368 | } 3369 | }, 3370 | "node_modules/regjsparser": { 3371 | "version": "0.9.1", 3372 | "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", 3373 | "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", 3374 | "dev": true, 3375 | "dependencies": { 3376 | "jsesc": "~0.5.0" 3377 | }, 3378 | "bin": { 3379 | "regjsparser": "bin/parser" 3380 | } 3381 | }, 3382 | "node_modules/regjsparser/node_modules/jsesc": { 3383 | "version": "0.5.0", 3384 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", 3385 | "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", 3386 | "dev": true, 3387 | "bin": { 3388 | "jsesc": "bin/jsesc" 3389 | } 3390 | }, 3391 | "node_modules/resolve": { 3392 | "version": "2.0.0-next.4", 3393 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 3394 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 3395 | "dev": true, 3396 | "dependencies": { 3397 | "is-core-module": "^2.9.0", 3398 | "path-parse": "^1.0.7", 3399 | "supports-preserve-symlinks-flag": "^1.0.0" 3400 | }, 3401 | "bin": { 3402 | "resolve": "bin/resolve" 3403 | }, 3404 | "funding": { 3405 | "url": "https://github.com/sponsors/ljharb" 3406 | } 3407 | }, 3408 | "node_modules/resolve-from": { 3409 | "version": "4.0.0", 3410 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3411 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3412 | "dev": true, 3413 | "engines": { 3414 | "node": ">=4" 3415 | } 3416 | }, 3417 | "node_modules/reusify": { 3418 | "version": "1.0.4", 3419 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3420 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3421 | "dev": true, 3422 | "engines": { 3423 | "iojs": ">=1.0.0", 3424 | "node": ">=0.10.0" 3425 | } 3426 | }, 3427 | "node_modules/rimraf": { 3428 | "version": "3.0.2", 3429 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3430 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3431 | "dev": true, 3432 | "dependencies": { 3433 | "glob": "^7.1.3" 3434 | }, 3435 | "bin": { 3436 | "rimraf": "bin.js" 3437 | }, 3438 | "funding": { 3439 | "url": "https://github.com/sponsors/isaacs" 3440 | } 3441 | }, 3442 | "node_modules/run-parallel": { 3443 | "version": "1.2.0", 3444 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3445 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3446 | "dev": true, 3447 | "funding": [ 3448 | { 3449 | "type": "github", 3450 | "url": "https://github.com/sponsors/feross" 3451 | }, 3452 | { 3453 | "type": "patreon", 3454 | "url": "https://www.patreon.com/feross" 3455 | }, 3456 | { 3457 | "type": "consulting", 3458 | "url": "https://feross.org/support" 3459 | } 3460 | ], 3461 | "dependencies": { 3462 | "queue-microtask": "^1.2.2" 3463 | } 3464 | }, 3465 | "node_modules/safe-regex": { 3466 | "version": "2.1.1", 3467 | "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", 3468 | "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", 3469 | "dev": true, 3470 | "dependencies": { 3471 | "regexp-tree": "~0.1.1" 3472 | } 3473 | }, 3474 | "node_modules/safe-regex-test": { 3475 | "version": "1.0.0", 3476 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3477 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3478 | "dev": true, 3479 | "dependencies": { 3480 | "call-bind": "^1.0.2", 3481 | "get-intrinsic": "^1.1.3", 3482 | "is-regex": "^1.1.4" 3483 | }, 3484 | "funding": { 3485 | "url": "https://github.com/sponsors/ljharb" 3486 | } 3487 | }, 3488 | "node_modules/scheduler": { 3489 | "version": "0.25.0", 3490 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", 3491 | "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", 3492 | "license": "MIT" 3493 | }, 3494 | "node_modules/semver": { 3495 | "version": "7.7.1", 3496 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 3497 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 3498 | "dev": true, 3499 | "license": "ISC", 3500 | "bin": { 3501 | "semver": "bin/semver.js" 3502 | }, 3503 | "engines": { 3504 | "node": ">=10" 3505 | } 3506 | }, 3507 | "node_modules/shebang-command": { 3508 | "version": "2.0.0", 3509 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3510 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3511 | "dev": true, 3512 | "dependencies": { 3513 | "shebang-regex": "^3.0.0" 3514 | }, 3515 | "engines": { 3516 | "node": ">=8" 3517 | } 3518 | }, 3519 | "node_modules/shebang-regex": { 3520 | "version": "3.0.0", 3521 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3522 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3523 | "dev": true, 3524 | "engines": { 3525 | "node": ">=8" 3526 | } 3527 | }, 3528 | "node_modules/side-channel": { 3529 | "version": "1.1.0", 3530 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 3531 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 3532 | "dev": true, 3533 | "license": "MIT", 3534 | "dependencies": { 3535 | "es-errors": "^1.3.0", 3536 | "object-inspect": "^1.13.3", 3537 | "side-channel-list": "^1.0.0", 3538 | "side-channel-map": "^1.0.1", 3539 | "side-channel-weakmap": "^1.0.2" 3540 | }, 3541 | "engines": { 3542 | "node": ">= 0.4" 3543 | }, 3544 | "funding": { 3545 | "url": "https://github.com/sponsors/ljharb" 3546 | } 3547 | }, 3548 | "node_modules/side-channel-list": { 3549 | "version": "1.0.0", 3550 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 3551 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 3552 | "dev": true, 3553 | "license": "MIT", 3554 | "dependencies": { 3555 | "es-errors": "^1.3.0", 3556 | "object-inspect": "^1.13.3" 3557 | }, 3558 | "engines": { 3559 | "node": ">= 0.4" 3560 | }, 3561 | "funding": { 3562 | "url": "https://github.com/sponsors/ljharb" 3563 | } 3564 | }, 3565 | "node_modules/side-channel-map": { 3566 | "version": "1.0.1", 3567 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 3568 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 3569 | "dev": true, 3570 | "license": "MIT", 3571 | "dependencies": { 3572 | "call-bound": "^1.0.2", 3573 | "es-errors": "^1.3.0", 3574 | "get-intrinsic": "^1.2.5", 3575 | "object-inspect": "^1.13.3" 3576 | }, 3577 | "engines": { 3578 | "node": ">= 0.4" 3579 | }, 3580 | "funding": { 3581 | "url": "https://github.com/sponsors/ljharb" 3582 | } 3583 | }, 3584 | "node_modules/side-channel-weakmap": { 3585 | "version": "1.0.2", 3586 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 3587 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 3588 | "dev": true, 3589 | "license": "MIT", 3590 | "dependencies": { 3591 | "call-bound": "^1.0.2", 3592 | "es-errors": "^1.3.0", 3593 | "get-intrinsic": "^1.2.5", 3594 | "object-inspect": "^1.13.3", 3595 | "side-channel-map": "^1.0.1" 3596 | }, 3597 | "engines": { 3598 | "node": ">= 0.4" 3599 | }, 3600 | "funding": { 3601 | "url": "https://github.com/sponsors/ljharb" 3602 | } 3603 | }, 3604 | "node_modules/slash": { 3605 | "version": "3.0.0", 3606 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3607 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3608 | "dev": true, 3609 | "engines": { 3610 | "node": ">=8" 3611 | } 3612 | }, 3613 | "node_modules/spdx-correct": { 3614 | "version": "3.2.0", 3615 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", 3616 | "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", 3617 | "dev": true, 3618 | "dependencies": { 3619 | "spdx-expression-parse": "^3.0.0", 3620 | "spdx-license-ids": "^3.0.0" 3621 | } 3622 | }, 3623 | "node_modules/spdx-exceptions": { 3624 | "version": "2.3.0", 3625 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", 3626 | "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", 3627 | "dev": true 3628 | }, 3629 | "node_modules/spdx-expression-parse": { 3630 | "version": "3.0.1", 3631 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", 3632 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", 3633 | "dev": true, 3634 | "dependencies": { 3635 | "spdx-exceptions": "^2.1.0", 3636 | "spdx-license-ids": "^3.0.0" 3637 | } 3638 | }, 3639 | "node_modules/spdx-license-ids": { 3640 | "version": "3.0.13", 3641 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", 3642 | "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", 3643 | "dev": true 3644 | }, 3645 | "node_modules/string.prototype.matchall": { 3646 | "version": "4.0.8", 3647 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3648 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3649 | "dev": true, 3650 | "dependencies": { 3651 | "call-bind": "^1.0.2", 3652 | "define-properties": "^1.1.4", 3653 | "es-abstract": "^1.20.4", 3654 | "get-intrinsic": "^1.1.3", 3655 | "has-symbols": "^1.0.3", 3656 | "internal-slot": "^1.0.3", 3657 | "regexp.prototype.flags": "^1.4.3", 3658 | "side-channel": "^1.0.4" 3659 | }, 3660 | "funding": { 3661 | "url": "https://github.com/sponsors/ljharb" 3662 | } 3663 | }, 3664 | "node_modules/string.prototype.trim": { 3665 | "version": "1.2.7", 3666 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3667 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3668 | "dev": true, 3669 | "dependencies": { 3670 | "call-bind": "^1.0.2", 3671 | "define-properties": "^1.1.4", 3672 | "es-abstract": "^1.20.4" 3673 | }, 3674 | "engines": { 3675 | "node": ">= 0.4" 3676 | }, 3677 | "funding": { 3678 | "url": "https://github.com/sponsors/ljharb" 3679 | } 3680 | }, 3681 | "node_modules/string.prototype.trimend": { 3682 | "version": "1.0.6", 3683 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3684 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3685 | "dev": true, 3686 | "dependencies": { 3687 | "call-bind": "^1.0.2", 3688 | "define-properties": "^1.1.4", 3689 | "es-abstract": "^1.20.4" 3690 | }, 3691 | "funding": { 3692 | "url": "https://github.com/sponsors/ljharb" 3693 | } 3694 | }, 3695 | "node_modules/string.prototype.trimstart": { 3696 | "version": "1.0.6", 3697 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3698 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3699 | "dev": true, 3700 | "dependencies": { 3701 | "call-bind": "^1.0.2", 3702 | "define-properties": "^1.1.4", 3703 | "es-abstract": "^1.20.4" 3704 | }, 3705 | "funding": { 3706 | "url": "https://github.com/sponsors/ljharb" 3707 | } 3708 | }, 3709 | "node_modules/strip-ansi": { 3710 | "version": "6.0.1", 3711 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3712 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3713 | "dev": true, 3714 | "dependencies": { 3715 | "ansi-regex": "^5.0.1" 3716 | }, 3717 | "engines": { 3718 | "node": ">=8" 3719 | } 3720 | }, 3721 | "node_modules/strip-indent": { 3722 | "version": "3.0.0", 3723 | "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", 3724 | "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", 3725 | "dev": true, 3726 | "dependencies": { 3727 | "min-indent": "^1.0.0" 3728 | }, 3729 | "engines": { 3730 | "node": ">=8" 3731 | } 3732 | }, 3733 | "node_modules/strip-json-comments": { 3734 | "version": "3.1.1", 3735 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3736 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3737 | "dev": true, 3738 | "engines": { 3739 | "node": ">=8" 3740 | }, 3741 | "funding": { 3742 | "url": "https://github.com/sponsors/sindresorhus" 3743 | } 3744 | }, 3745 | "node_modules/supports-color": { 3746 | "version": "7.2.0", 3747 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3748 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3749 | "dev": true, 3750 | "dependencies": { 3751 | "has-flag": "^4.0.0" 3752 | }, 3753 | "engines": { 3754 | "node": ">=8" 3755 | } 3756 | }, 3757 | "node_modules/supports-preserve-symlinks-flag": { 3758 | "version": "1.0.0", 3759 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3760 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3761 | "dev": true, 3762 | "engines": { 3763 | "node": ">= 0.4" 3764 | }, 3765 | "funding": { 3766 | "url": "https://github.com/sponsors/ljharb" 3767 | } 3768 | }, 3769 | "node_modules/text-table": { 3770 | "version": "0.2.0", 3771 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3772 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3773 | "dev": true 3774 | }, 3775 | "node_modules/to-regex-range": { 3776 | "version": "5.0.1", 3777 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3778 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3779 | "dev": true, 3780 | "license": "MIT", 3781 | "dependencies": { 3782 | "is-number": "^7.0.0" 3783 | }, 3784 | "engines": { 3785 | "node": ">=8.0" 3786 | } 3787 | }, 3788 | "node_modules/tslib": { 3789 | "version": "1.14.1", 3790 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 3791 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 3792 | "dev": true 3793 | }, 3794 | "node_modules/tsutils": { 3795 | "version": "3.21.0", 3796 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 3797 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 3798 | "dev": true, 3799 | "dependencies": { 3800 | "tslib": "^1.8.1" 3801 | }, 3802 | "engines": { 3803 | "node": ">= 6" 3804 | }, 3805 | "peerDependencies": { 3806 | "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" 3807 | } 3808 | }, 3809 | "node_modules/type-check": { 3810 | "version": "0.4.0", 3811 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3812 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3813 | "dev": true, 3814 | "dependencies": { 3815 | "prelude-ls": "^1.2.1" 3816 | }, 3817 | "engines": { 3818 | "node": ">= 0.8.0" 3819 | } 3820 | }, 3821 | "node_modules/type-fest": { 3822 | "version": "0.20.2", 3823 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3824 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3825 | "dev": true, 3826 | "engines": { 3827 | "node": ">=10" 3828 | }, 3829 | "funding": { 3830 | "url": "https://github.com/sponsors/sindresorhus" 3831 | } 3832 | }, 3833 | "node_modules/typed-array-length": { 3834 | "version": "1.0.4", 3835 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 3836 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 3837 | "dev": true, 3838 | "dependencies": { 3839 | "call-bind": "^1.0.2", 3840 | "for-each": "^0.3.3", 3841 | "is-typed-array": "^1.1.9" 3842 | }, 3843 | "funding": { 3844 | "url": "https://github.com/sponsors/ljharb" 3845 | } 3846 | }, 3847 | "node_modules/typescript": { 3848 | "version": "5.8.2", 3849 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", 3850 | "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", 3851 | "dev": true, 3852 | "license": "Apache-2.0", 3853 | "peer": true, 3854 | "bin": { 3855 | "tsc": "bin/tsc", 3856 | "tsserver": "bin/tsserver" 3857 | }, 3858 | "engines": { 3859 | "node": ">=14.17" 3860 | } 3861 | }, 3862 | "node_modules/unbox-primitive": { 3863 | "version": "1.0.2", 3864 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3865 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3866 | "dev": true, 3867 | "dependencies": { 3868 | "call-bind": "^1.0.2", 3869 | "has-bigints": "^1.0.2", 3870 | "has-symbols": "^1.0.3", 3871 | "which-boxed-primitive": "^1.0.2" 3872 | }, 3873 | "funding": { 3874 | "url": "https://github.com/sponsors/ljharb" 3875 | } 3876 | }, 3877 | "node_modules/uri-js": { 3878 | "version": "4.4.1", 3879 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3880 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3881 | "dev": true, 3882 | "dependencies": { 3883 | "punycode": "^2.1.0" 3884 | } 3885 | }, 3886 | "node_modules/validate-npm-package-license": { 3887 | "version": "3.0.4", 3888 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", 3889 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", 3890 | "dev": true, 3891 | "dependencies": { 3892 | "spdx-correct": "^3.0.0", 3893 | "spdx-expression-parse": "^3.0.0" 3894 | } 3895 | }, 3896 | "node_modules/which": { 3897 | "version": "2.0.2", 3898 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3899 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3900 | "dev": true, 3901 | "dependencies": { 3902 | "isexe": "^2.0.0" 3903 | }, 3904 | "bin": { 3905 | "node-which": "bin/node-which" 3906 | }, 3907 | "engines": { 3908 | "node": ">= 8" 3909 | } 3910 | }, 3911 | "node_modules/which-boxed-primitive": { 3912 | "version": "1.0.2", 3913 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 3914 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 3915 | "dev": true, 3916 | "dependencies": { 3917 | "is-bigint": "^1.0.1", 3918 | "is-boolean-object": "^1.1.0", 3919 | "is-number-object": "^1.0.4", 3920 | "is-string": "^1.0.5", 3921 | "is-symbol": "^1.0.3" 3922 | }, 3923 | "funding": { 3924 | "url": "https://github.com/sponsors/ljharb" 3925 | } 3926 | }, 3927 | "node_modules/which-typed-array": { 3928 | "version": "1.1.9", 3929 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 3930 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 3931 | "dev": true, 3932 | "dependencies": { 3933 | "available-typed-arrays": "^1.0.5", 3934 | "call-bind": "^1.0.2", 3935 | "for-each": "^0.3.3", 3936 | "gopd": "^1.0.1", 3937 | "has-tostringtag": "^1.0.0", 3938 | "is-typed-array": "^1.1.10" 3939 | }, 3940 | "engines": { 3941 | "node": ">= 0.4" 3942 | }, 3943 | "funding": { 3944 | "url": "https://github.com/sponsors/ljharb" 3945 | } 3946 | }, 3947 | "node_modules/word-wrap": { 3948 | "version": "1.2.5", 3949 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3950 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3951 | "dev": true, 3952 | "license": "MIT", 3953 | "engines": { 3954 | "node": ">=0.10.0" 3955 | } 3956 | }, 3957 | "node_modules/wrappy": { 3958 | "version": "1.0.2", 3959 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3960 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3961 | "dev": true 3962 | }, 3963 | "node_modules/yocto-queue": { 3964 | "version": "0.1.0", 3965 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3966 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3967 | "dev": true, 3968 | "engines": { 3969 | "node": ">=10" 3970 | }, 3971 | "funding": { 3972 | "url": "https://github.com/sponsors/sindresorhus" 3973 | } 3974 | } 3975 | } 3976 | } 3977 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "simple-rsc", 3 | "version": "0.0.1", 4 | "description": "A simple React Server Components implementation that you can build yourself.", 5 | "main": "server/index.js", 6 | "type": "module", 7 | "scripts": { 8 | "start": "node --conditions react-server server.js", 9 | "dev": "node --conditions react-server server.js", 10 | "lint": "eslint '**/*.{js,jsx,ts,tsx}'", 11 | "lint:fix": "eslint --fix '**/*.{js,jsx,ts,tsx}'", 12 | "format": "prettier --check '**/*.{js,jsx,ts,tsx}' 'README.md'", 13 | "format:fix": "prettier --write '**/*.{js,jsx,ts,tsx}' 'README.md'" 14 | }, 15 | "browserslist": "defaults", 16 | "keywords": [], 17 | "author": "", 18 | "license": "ISC", 19 | "dependencies": { 20 | "@hono/node-server": "^1.14.0", 21 | "es-module-lexer": "^1.3.1", 22 | "esbuild": "^0.25.1", 23 | "hono": "^4.7.5", 24 | "react": "^19.0.0", 25 | "react-dom": "^19.0.0", 26 | "react-server-dom-esm": "npm:@kentcdodds/tmp-react-server-dom-esm@19.0.1" 27 | }, 28 | "devDependencies": { 29 | "@types/node": "^18.15.11", 30 | "@types/react": "^19.0.12", 31 | "@types/react-dom": "^19.0.4", 32 | "@typescript-eslint/eslint-plugin": "^5.57.0", 33 | "eslint": "^8.37.0", 34 | "eslint-plugin-react": "^7.32.2", 35 | "eslint-plugin-unicorn": "^46.0.0", 36 | "prettier": "^2.8.7" 37 | } 38 | } -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | import { serve } from '@hono/node-server'; 2 | import { Hono } from 'hono'; 3 | import { RESPONSE_ALREADY_SENT } from '@hono/node-server/utils/response'; 4 | import { build as esbuild } from 'esbuild'; 5 | import { fileURLToPath } from 'node:url'; 6 | import { createElement } from 'react'; 7 | import { serveStatic } from '@hono/node-server/serve-static'; 8 | import { renderToPipeableStream } from 'react-server-dom-esm/server'; 9 | import { readFile, writeFile } from 'node:fs/promises'; 10 | import { parse } from 'es-module-lexer'; 11 | import { relative, resolve } from 'node:path'; 12 | 13 | const app = new Hono(); 14 | 15 | /** 16 | * Endpoint to serve your index route. 17 | * Includes the loader `/build/_client.js` to request your server component 18 | * and stream results into `
` 19 | */ 20 | app.get('/', async (c) => { 21 | return c.html(` 22 | 23 | 24 | 25 | React Server Components from Scratch 26 | 27 | 28 | 29 |
30 | 31 | 32 | 33 | `); 34 | }); 35 | 36 | /** 37 | * Endpoint to render your server component to a stream. 38 | * This uses `react-server-dom-webpack` to parse React elements 39 | * into encoded virtual DOM elements for the client to read. 40 | */ 41 | app.get('/rsc', async (c) => { 42 | // Note This will raise a type error until you build with `npm run dev` 43 | const Page = await import('./build/page.js'); 44 | const Comp = createElement(Page.default); 45 | 46 | const stream = renderToPipeableStream(Comp, ''); 47 | // @ts-expect-error type of env is 'unknown' 48 | stream.pipe(c.env.outgoing); 49 | 50 | return RESPONSE_ALREADY_SENT; 51 | }); 52 | 53 | /** 54 | * Serve your `build/` folder as static assets. 55 | * Allows you to serve built client components 56 | * to import from your browser. 57 | */ 58 | app.use('/build/*', serveStatic()); 59 | 60 | /** 61 | * Build both server and client components with esbuild 62 | */ 63 | async function build() { 64 | const clientEntryPoints = new Set(); 65 | 66 | /** Build the server component tree */ 67 | await esbuild({ 68 | bundle: true, 69 | format: 'esm', 70 | logLevel: 'error', 71 | entryPoints: [resolveApp('page.jsx')], 72 | outdir: resolveBuild(), 73 | // avoid bundling npm packages for server-side components 74 | packages: 'external', 75 | plugins: [ 76 | { 77 | name: 'resolve-client-imports', 78 | setup(build) { 79 | // Intercept component imports to check for 'use client' 80 | build.onResolve( 81 | { filter: reactComponentRegex }, 82 | async ({ path: relativePath, resolveDir }) => { 83 | const path = resolveApp(resolve(resolveDir, relativePath)); 84 | 85 | const contents = await readFile(path, 'utf-8'); 86 | 87 | if (contents.startsWith("'use client'")) { 88 | clientEntryPoints.add(path); 89 | return { 90 | // Avoid bundling client components into the server build. 91 | external: true, 92 | // Resolve the client import to the built `.js` file 93 | // created by the client `esbuild` process below. 94 | path: relativePath.replace(reactComponentRegex, '.js') 95 | }; 96 | } 97 | } 98 | ); 99 | } 100 | } 101 | ] 102 | }); 103 | 104 | /** Build client components */ 105 | const { outputFiles } = await esbuild({ 106 | bundle: true, 107 | format: 'esm', 108 | logLevel: 'error', 109 | entryPoints: [resolveApp('_client.jsx'), ...clientEntryPoints], 110 | outdir: resolveBuild(), 111 | splitting: true, 112 | write: false 113 | }); 114 | 115 | outputFiles.forEach(async (file) => { 116 | // Parse file export names 117 | const [, exports] = parse(file.text); 118 | let newContents = file.text; 119 | 120 | for (const exp of exports) { 121 | // Create the id for each exported component 122 | // React needs this in the format # 123 | 124 | const relativeBuildPath = `/build/${relative(resolveBuild(), file.path)}`; 125 | const key = `${relativeBuildPath}#${exp.n}`; 126 | 127 | // Tag each component export with a special `react.client.reference` type 128 | // and the map key to look up import information. 129 | // This tells your stream renderer to avoid rendering the 130 | // client component server-side. Instead, import the built component 131 | // client-side at `clientComponentMap[key].id` 132 | newContents += ` 133 | ${exp.ln}.$$id = ${JSON.stringify(key)}; 134 | ${exp.ln}.$$typeof = Symbol.for("react.client.reference"); 135 | `; 136 | } 137 | await writeFile(file.path, newContents); 138 | }); 139 | } 140 | 141 | serve(app, async (info) => { 142 | await build(); 143 | console.log(`Listening on http://localhost:${info.port}`); 144 | }); 145 | 146 | /** UTILS */ 147 | 148 | const appDir = new URL('./app/', import.meta.url); 149 | const buildDir = new URL('./build/', import.meta.url); 150 | 151 | function resolveApp(path = '') { 152 | return fileURLToPath(new URL(path, appDir)); 153 | } 154 | 155 | function resolveBuild(path = '') { 156 | return fileURLToPath(new URL(path, buildDir)); 157 | } 158 | 159 | const reactComponentRegex = /\.jsx$/; 160 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bholmesdev/simple-rsc/ecf68b59937ed215a79be414d602df8b1b5538c2/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "checkJs": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "target": "ESNext", 7 | "jsx": "react-jsx", 8 | "noEmit": true, 9 | "strict": true, 10 | "noImplicitAny": false, 11 | "allowSyntheticDefaultImports": true, 12 | "resolveJsonModule": true 13 | } 14 | } 15 | --------------------------------------------------------------------------------