├── postcss.config.js ├── src ├── assets │ ├── icon-down.svg │ ├── icon-up.svg │ ├── favicon-32x32.png │ ├── Fonts │ │ └── Inter-VariableFont_slnt_wght.ttf │ ├── icon-facebook.svg │ ├── icon-youtube.svg │ ├── icon-twitter.svg │ └── icon-instagram.svg ├── index.css ├── main.jsx ├── App.jsx └── components │ ├── OverviewContainers.jsx │ ├── Header.jsx │ └── OverviewCards.jsx ├── design ├── desktop-preview.jpg ├── active-states-dark.jpg ├── active-states-light.jpg ├── desktop-design-dark.jpg ├── mobile-design-dark.jpg ├── mobile-design-light.jpg └── desktop-design-light.jpg ├── vite.config.js ├── .gitignore ├── index.html ├── .eslintrc.cjs ├── README.md ├── package.json ├── tailwind.config.js ├── style-guide.md ├── public └── vite.svg ├── texto.html ├── data └── data.json └── yarn.lock /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /src/assets/icon-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icon-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/design/desktop-preview.jpg -------------------------------------------------------------------------------- /design/active-states-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/design/active-states-dark.jpg -------------------------------------------------------------------------------- /design/active-states-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/design/active-states-light.jpg -------------------------------------------------------------------------------- /design/desktop-design-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/design/desktop-design-dark.jpg -------------------------------------------------------------------------------- /design/mobile-design-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/design/mobile-design-dark.jpg -------------------------------------------------------------------------------- /design/mobile-design-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/design/mobile-design-light.jpg -------------------------------------------------------------------------------- /src/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/src/assets/favicon-32x32.png -------------------------------------------------------------------------------- /design/desktop-design-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/design/desktop-design-light.jpg -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | @font-face { 6 | font-family: 'Inter'; 7 | src: url(./assets/Fonts/Inter-VariableFont_slnt_wght.ttf); 8 | } -------------------------------------------------------------------------------- /src/assets/Fonts/Inter-VariableFont_slnt_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davichobits/Challenge-31-social-media-dashboard-with-theme-switcher/HEAD/src/assets/Fonts/Inter-VariableFont_slnt_wght.ttf -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import ReactDOM from 'react-dom/client' 3 | import App from './App.jsx' 4 | import './index.css' 5 | 6 | ReactDOM.createRoot(document.getElementById('root')).render( 7 | 8 | 9 | , 10 | ) 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | import { Header } from "./components/Header" 2 | import { OverviewContainer, OverviewTodayContainer } from "./components/OverviewContainers" 3 | 4 | function App() { 5 | return ( 6 |
7 |
8 | 9 | 10 |
11 | ) 12 | } 13 | 14 | export default App -------------------------------------------------------------------------------- /src/assets/icon-facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icon-youtube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/assets/icon-twitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { browser: true, es2020: true }, 4 | extends: [ 5 | 'eslint:recommended', 6 | 'plugin:react/recommended', 7 | 'plugin:react/jsx-runtime', 8 | 'plugin:react-hooks/recommended', 9 | ], 10 | ignorePatterns: ['dist', '.eslintrc.cjs'], 11 | parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, 12 | settings: { react: { version: '18.2' } }, 13 | plugins: ['react-refresh'], 14 | rules: { 15 | 'react-refresh/only-export-components': [ 16 | 'warn', 17 | { allowConstantExport: true }, 18 | ], 19 | 'react/prop-types': 'off', // Deshabilita la regla de prop-types 20 | }, 21 | } 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Reto 31 - Social media dashboard with theme switcher using React and Tailwind 2 | 3 | ![Design preview for the Social media dashboard with theme switcher coding challenge](./design/desktop-preview.jpg) 4 | 5 | ## También puedes seguirme en mis redes sociales: 6 | 7 | 8 | ✅YouTube: https://www.youtube.com/CodingTube 9 | 10 | ✅TikTok: https://www.tiktok.com/@codingtube 11 | 12 | ✅Twitter: https://twitter.com/CodingTube 13 | 14 | ✅Discord: https://discord.gg/tasEBrh8Zw 15 | 16 | ✅Facebook: https://www.facebook.com/groups/codingtubers 17 | 18 | ►CURSOS: 19 | 20 | 📕HTML5: https://bit.ly/CodingHTML01 21 | 22 | 📘CSS3: https://bit.ly/CodingCSS01 23 | 24 | 📙Javascript: http://bit.ly/CodingJS01 25 | 26 | 📔 Tailwind: http://bit.ly/Tailwind01 27 | 28 | ►LISTAS DE REPRODUCCIÓN RECOMENDADAS: 29 | 30 | 📒Etiquetas HTML: https://bit.ly/HTMLShorts 31 | 32 | 📗Todos los retos frontend: https://bit.ly/CodingRetos -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "challenge-31-social-media-dashboard-with-theme-switcher", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "vite build", 9 | "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "react": "^18.2.0", 14 | "react-dom": "^18.2.0" 15 | }, 16 | "devDependencies": { 17 | "@types/react": "^18.2.15", 18 | "@types/react-dom": "^18.2.7", 19 | "@vitejs/plugin-react": "^4.0.3", 20 | "autoprefixer": "^10.4.15", 21 | "eslint": "^8.45.0", 22 | "eslint-plugin-react": "^7.32.2", 23 | "eslint-plugin-react-hooks": "^4.6.0", 24 | "eslint-plugin-react-refresh": "^0.4.3", 25 | "postcss": "^8.4.27", 26 | "tailwindcss": "^3.3.3", 27 | "vite": "^4.4.5" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/assets/icon-instagram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | darkMode: 'class', 4 | content: [ 5 | "./index.html", 6 | "./src/**/*.{js,ts,jsx,tsx}", 7 | ], 8 | theme: { 9 | extend: { 10 | colors: { 11 | "Lime-Green": "hsl(163, 72%, 41%)", 12 | "Bright-Red": "hsl(356, 69%, 56%)", 13 | "Facebook": "hsl(208, 92%, 53%)", 14 | "Twitter": "hsl(203, 89%, 53%)", 15 | "YouTube": "hsl(348, 97%, 39%)", 16 | "Toggle": "hsl(230, 22%, 74%)", 17 | "Very-Dark-Blue": "hsl(230, 17%, 14%)", 18 | "Very-Dark-Blue-Top": "hsl(232, 19%, 15%)", 19 | "Dark-Desaturated-Blue": "hsl(228, 28%, 20%)", 20 | "Desaturated-Blue": "hsl(228, 34%, 66%)", 21 | "White": "hsl(0, 0%, 100%)", 22 | "Very-Pale-Blue": "hsl(225, 100%, 98%)", 23 | "Light-Grayish-Blue": "hsl(227, 47%, 96%)", 24 | "Dark-Grayish-Blue": "hsl(228, 12%, 44%)", 25 | }, 26 | backgroundImage:{ 27 | "Toggle-Gradient": "linear-gradient(to right, hsl(210, 78%, 56%), hsl(146, 68%, 55%))", 28 | "Instagram": "linear-gradient(to right, hsl(37, 97%, 70%), hsl(329, 70%, 58%))", 29 | }, 30 | fontFamily:{ 31 | Inter: ['Inter'] 32 | }, 33 | screens:{ 34 | 'tablet':'725px', 35 | 'desktop': '1175px' 36 | } 37 | }, 38 | }, 39 | plugins: [], 40 | } 41 | 42 | -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- 1 | # Front-end Style Guide 2 | 3 | ## Layout 4 | 5 | The designs were created to the following widths: 6 | 7 | - Mobile: 375px 8 | - Desktop: 1440px 9 | 10 | ## Colors 11 | 12 | ### Primary 13 | 14 | - Lime Green: hsl(163, 72%, 41%) 15 | - Bright Red: hsl(356, 69%, 56%) 16 | 17 | - Facebook: hsl(208, 92%, 53%) 18 | - Twitter: hsl(203, 89%, 53%) 19 | - Instagram: linear gradient hsl(37, 97%, 70%) to hsl(329, 70%, 58%) 20 | - YouTube: hsl(348, 97%, 39%) 21 | 22 | #### Dark Theme 23 | 24 | - Toggle: linear gradient hsl(210, 78%, 56%) to hsl(146, 68%, 55%) 25 | 26 | #### Light Theme 27 | 28 | - Toggle: hsl(230, 22%, 74%) 29 | 30 | ### Neutral 31 | 32 | #### Dark Theme 33 | 34 | - Very Dark Blue (BG): hsl(230, 17%, 14%) 35 | - Very Dark Blue (Top BG Pattern): hsl(232, 19%, 15%) 36 | - Dark Desaturated Blue (Card BG): hsl(228, 28%, 20%) 37 | - Desaturated Blue (Text): hsl(228, 34%, 66%) 38 | - White (Text): hsl(0, 0%, 100%) 39 | 40 | #### Light Theme 41 | 42 | - White (BG): hsl(0, 0%, 100%) 43 | - Very Pale Blue (Top BG Pattern): hsl(225, 100%, 98%) 44 | - Light Grayish Blue (Card BG): hsl(227, 47%, 96%) 45 | - Dark Grayish Blue (Text): hsl(228, 12%, 44%) 46 | - Very Dark Blue (Text): hsl(230, 17%, 14%) 47 | 48 | ## Typography 49 | 50 | ### Body Copy 51 | 52 | - Font size (Overview Card Headings): 14px 53 | 54 | ### Font 55 | 56 | - Family: [Inter](https://fonts.google.com/specimen/Inter) 57 | - Weights: 400, 700 58 | -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texto.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Frontend Mentor | [Challenge Name Here] 10 | 11 | 12 | 16 | 17 | 18 | 19 | Social Media Dashboard 20 | Total Followers: 23,004 21 | 22 | Dark Mode 23 | 24 | 25 | 26 | @nathanf 27 | 1987 28 | Followers 29 | 12 Today 30 | 31 | @nathanf 32 | 1044 33 | Followers 34 | 99 Today 35 | 36 | @realnathanf 37 | 11k 38 | Followers 39 | 1099 Today 40 | 41 | Nathan F. 42 | 8239 43 | Subscribers 44 | 144 Today 45 | 46 | 47 | 48 | Overview - Today 49 | 50 | Page Views 51 | 87 52 | 3% 53 | 54 | Likes 55 | 52 56 | 2% 57 | 58 | Likes 59 | 5462 60 | 2257% 61 | 62 | Profile Views 63 | 52k 64 | 1375% 65 | 66 | Retweets 67 | 117 68 | 303% 69 | 70 | Likes 71 | 507 72 | 553% 73 | 74 | Likes 75 | 107 76 | 19% 77 | 78 | Total Views 79 | 1407 80 | 12% 81 | 82 |
83 | Challenge by Frontend Mentor. 84 | Coded by Your Name Here. 85 |
86 | 87 | -------------------------------------------------------------------------------- /src/components/OverviewContainers.jsx: -------------------------------------------------------------------------------- 1 | import { OverviewCard, OverviewTodayCard } from './OverviewCards' 2 | import data from '../../data/data.json' 3 | 4 | const converNumbertoK = (number) => { 5 | if( number >= 10000){ 6 | number = number / 1000 7 | return number + 'k' 8 | } 9 | return number 10 | } 11 | 12 | export const OverviewContainer = () => { 13 | return ( 14 |
15 | { 16 | data.overview.map(object => 17 | 26 | ) 27 | } 28 |
29 | ) 30 | } 31 | 32 | export const OverviewTodayContainer = () => { 33 | return ( 34 |
35 |

Overview - Today

36 |
37 | { 38 | data['overview-today'].map(object => 39 | 47 | ) 48 | } 49 |
50 |
51 | ) 52 | } 53 | -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react" 2 | 3 | 4 | export const Header = () => { 5 | 6 | let initialDarkMode = JSON.parse(localStorage.getItem('dark')) 7 | 8 | if(!initialDarkMode){ 9 | initialDarkMode = false 10 | } 11 | console.log(initialDarkMode) 12 | const [dark, setDark] = useState(initialDarkMode) 13 | 14 | const handleClick = () => { 15 | setDark(!dark) 16 | } 17 | 18 | useEffect(()=>{ 19 | if(dark){ 20 | document.documentElement.classList.add('dark') 21 | localStorage.setItem('dark', true) 22 | }else{ 23 | document.documentElement.classList.remove('dark') 24 | localStorage.setItem('dark', false) 25 | } 26 | },[dark]) 27 | 28 | return ( 29 |
30 |
31 |
32 |

Social Media Dasboard

33 |

Total Followers: 23,004

34 |
35 |
36 |
37 |

Dark Mode

38 | 39 | 44 |
45 |
46 |
47 | ) 48 | } 49 | -------------------------------------------------------------------------------- /data/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "overview": [ 3 | { 4 | "id": "o-001", 5 | "network": "Facebook", 6 | "user": "@nathanf", 7 | "audienceType": "followers", 8 | "audience": 1987, 9 | "today": 12, 10 | "isUp": true 11 | }, 12 | { 13 | "id": "o-002", 14 | "network": "Twitter", 15 | "user": "@nathanf", 16 | "audienceType": "followers", 17 | "audience": 1044, 18 | "today": 99, 19 | "isUp": true 20 | }, 21 | { 22 | "id": "o-003", 23 | "network": "Instagram", 24 | "user": "@realnathanf", 25 | "audienceType": "followers", 26 | "audience": 11000, 27 | "today": 1099, 28 | "isUp": true 29 | }, 30 | { 31 | "id": "o-004", 32 | "network": "YouTube", 33 | "user": "Nathan F.", 34 | "audienceType": "subscribers", 35 | "audience": 8239, 36 | "today": 144, 37 | "isUp": false 38 | } 39 | ], 40 | "overview-today": [ 41 | { 42 | "id": "ot-001", 43 | "network": "Facebook", 44 | "statsType": "Page Views", 45 | "stats": 87, 46 | "porcentage": 3, 47 | "isUp": true 48 | }, 49 | { 50 | "id": "ot-002", 51 | "network": "Facebook", 52 | "statsType": "Likes", 53 | "stats": 52, 54 | "porcentage": 2, 55 | "isUp": false 56 | }, 57 | { 58 | "id": "ot-003", 59 | "network": "Instagram", 60 | "statsType": "Likes", 61 | "stats": 5462, 62 | "porcentage": 2257, 63 | "isUp": true 64 | }, 65 | { 66 | "id": "ot-004", 67 | "network": "Instagram", 68 | "statsType": "Profile Views", 69 | "stats": 52000, 70 | "porcentage": 1357, 71 | "isUp": true 72 | }, 73 | { 74 | "id": "ot-005", 75 | "network": "Twitter", 76 | "statsType": "Retweets", 77 | "stats": 117, 78 | "porcentage": 303, 79 | "isUp": true 80 | }, 81 | { 82 | "id": "ot-006", 83 | "network": "Twitter", 84 | "statsType": "Likes", 85 | "stats": 507, 86 | "porcentage": 553, 87 | "isUp": true 88 | }, 89 | { 90 | "id": "ot-007", 91 | "network": "YouTube", 92 | "statsType": "Likes", 93 | "stats": 107, 94 | "porcentage": 19, 95 | "isUp": false 96 | }, 97 | { 98 | "id": "ot-008", 99 | "network": "YouTube", 100 | "statsType": "Total Views", 101 | "stats": 1407, 102 | "porcentage": 12, 103 | "isUp": false 104 | } 105 | ] 106 | } -------------------------------------------------------------------------------- /src/components/OverviewCards.jsx: -------------------------------------------------------------------------------- 1 | import facebookLogo from '../assets/icon-facebook.svg' 2 | import twitterLogo from '../assets/icon-twitter.svg' 3 | import instagramLogo from '../assets/icon-instagram.svg' 4 | import youtubeLogo from '../assets/icon-youtube.svg' 5 | import iconUp from '../assets/icon-up.svg' 6 | import iconDown from '../assets/icon-down.svg' 7 | 8 | const networkLogos = { 9 | Facebook: facebookLogo, 10 | Twitter: twitterLogo, 11 | Instagram: instagramLogo, 12 | YouTube: youtubeLogo 13 | } 14 | 15 | export const OverviewCard = ({user, network, audienceType, audience, today, isUp}) => { 16 | 17 | const networkColors = { 18 | Facebook: 'bg-Facebook', 19 | Twitter: 'bg-Twitter', 20 | Instagram: 'bg-Instagram', 21 | YouTube: 'bg-YouTube' 22 | } 23 | 24 | return ( 25 |
26 |
27 |
28 | network-logo 29 |

{user}

30 |
31 |

{audience}

32 |

{audienceType}

33 |
34 | icon 35 |

{today} Today

36 |
37 |
38 | ) 39 | } 40 | 41 | export const OverviewTodayCard = ({network, statsType, stats, porcentage, isUp}) => { 42 | 43 | return ( 44 |
45 |
46 |

{statsType}

47 | 48 |
49 |
50 |

{stats}

51 |
52 | icon 53 |

{porcentage}%

54 |
55 |
56 |
57 | ) 58 | } 59 | 60 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@aashutoshrathi/word-wrap@^1.2.3": 6 | version "1.2.6" 7 | resolved "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz" 8 | integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== 9 | 10 | "@alloc/quick-lru@^5.2.0": 11 | version "5.2.0" 12 | resolved "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz" 13 | integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== 14 | 15 | "@ampproject/remapping@^2.2.0": 16 | version "2.2.1" 17 | resolved "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz" 18 | integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== 19 | dependencies: 20 | "@jridgewell/gen-mapping" "^0.3.0" 21 | "@jridgewell/trace-mapping" "^0.3.9" 22 | 23 | "@babel/code-frame@^7.22.10", "@babel/code-frame@^7.22.5": 24 | version "7.22.10" 25 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.10.tgz" 26 | integrity sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA== 27 | dependencies: 28 | "@babel/highlight" "^7.22.10" 29 | chalk "^2.4.2" 30 | 31 | "@babel/compat-data@^7.22.9": 32 | version "7.22.9" 33 | resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz" 34 | integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ== 35 | 36 | "@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.22.9": 37 | version "7.22.10" 38 | resolved "https://registry.npmjs.org/@babel/core/-/core-7.22.10.tgz" 39 | integrity sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw== 40 | dependencies: 41 | "@ampproject/remapping" "^2.2.0" 42 | "@babel/code-frame" "^7.22.10" 43 | "@babel/generator" "^7.22.10" 44 | "@babel/helper-compilation-targets" "^7.22.10" 45 | "@babel/helper-module-transforms" "^7.22.9" 46 | "@babel/helpers" "^7.22.10" 47 | "@babel/parser" "^7.22.10" 48 | "@babel/template" "^7.22.5" 49 | "@babel/traverse" "^7.22.10" 50 | "@babel/types" "^7.22.10" 51 | convert-source-map "^1.7.0" 52 | debug "^4.1.0" 53 | gensync "^1.0.0-beta.2" 54 | json5 "^2.2.2" 55 | semver "^6.3.1" 56 | 57 | "@babel/generator@^7.22.10": 58 | version "7.22.10" 59 | resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.22.10.tgz" 60 | integrity sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A== 61 | dependencies: 62 | "@babel/types" "^7.22.10" 63 | "@jridgewell/gen-mapping" "^0.3.2" 64 | "@jridgewell/trace-mapping" "^0.3.17" 65 | jsesc "^2.5.1" 66 | 67 | "@babel/helper-compilation-targets@^7.22.10": 68 | version "7.22.10" 69 | resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.10.tgz" 70 | integrity sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q== 71 | dependencies: 72 | "@babel/compat-data" "^7.22.9" 73 | "@babel/helper-validator-option" "^7.22.5" 74 | browserslist "^4.21.9" 75 | lru-cache "^5.1.1" 76 | semver "^6.3.1" 77 | 78 | "@babel/helper-environment-visitor@^7.22.5": 79 | version "7.22.5" 80 | resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz" 81 | integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== 82 | 83 | "@babel/helper-function-name@^7.22.5": 84 | version "7.22.5" 85 | resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz" 86 | integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== 87 | dependencies: 88 | "@babel/template" "^7.22.5" 89 | "@babel/types" "^7.22.5" 90 | 91 | "@babel/helper-hoist-variables@^7.22.5": 92 | version "7.22.5" 93 | resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz" 94 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== 95 | dependencies: 96 | "@babel/types" "^7.22.5" 97 | 98 | "@babel/helper-module-imports@^7.22.5": 99 | version "7.22.5" 100 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz" 101 | integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== 102 | dependencies: 103 | "@babel/types" "^7.22.5" 104 | 105 | "@babel/helper-module-transforms@^7.22.9": 106 | version "7.22.9" 107 | resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz" 108 | integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ== 109 | dependencies: 110 | "@babel/helper-environment-visitor" "^7.22.5" 111 | "@babel/helper-module-imports" "^7.22.5" 112 | "@babel/helper-simple-access" "^7.22.5" 113 | "@babel/helper-split-export-declaration" "^7.22.6" 114 | "@babel/helper-validator-identifier" "^7.22.5" 115 | 116 | "@babel/helper-plugin-utils@^7.22.5": 117 | version "7.22.5" 118 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz" 119 | integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== 120 | 121 | "@babel/helper-simple-access@^7.22.5": 122 | version "7.22.5" 123 | resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz" 124 | integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== 125 | dependencies: 126 | "@babel/types" "^7.22.5" 127 | 128 | "@babel/helper-split-export-declaration@^7.22.6": 129 | version "7.22.6" 130 | resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz" 131 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== 132 | dependencies: 133 | "@babel/types" "^7.22.5" 134 | 135 | "@babel/helper-string-parser@^7.22.5": 136 | version "7.22.5" 137 | resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz" 138 | integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== 139 | 140 | "@babel/helper-validator-identifier@^7.22.5": 141 | version "7.22.5" 142 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz" 143 | integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== 144 | 145 | "@babel/helper-validator-option@^7.22.5": 146 | version "7.22.5" 147 | resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz" 148 | integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== 149 | 150 | "@babel/helpers@^7.22.10": 151 | version "7.22.10" 152 | resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.10.tgz" 153 | integrity sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw== 154 | dependencies: 155 | "@babel/template" "^7.22.5" 156 | "@babel/traverse" "^7.22.10" 157 | "@babel/types" "^7.22.10" 158 | 159 | "@babel/highlight@^7.22.10": 160 | version "7.22.10" 161 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.10.tgz" 162 | integrity sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ== 163 | dependencies: 164 | "@babel/helper-validator-identifier" "^7.22.5" 165 | chalk "^2.4.2" 166 | js-tokens "^4.0.0" 167 | 168 | "@babel/parser@^7.22.10", "@babel/parser@^7.22.5": 169 | version "7.22.10" 170 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.22.10.tgz" 171 | integrity sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ== 172 | 173 | "@babel/plugin-transform-react-jsx-self@^7.22.5": 174 | version "7.22.5" 175 | resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.22.5.tgz" 176 | integrity sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g== 177 | dependencies: 178 | "@babel/helper-plugin-utils" "^7.22.5" 179 | 180 | "@babel/plugin-transform-react-jsx-source@^7.22.5": 181 | version "7.22.5" 182 | resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.22.5.tgz" 183 | integrity sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w== 184 | dependencies: 185 | "@babel/helper-plugin-utils" "^7.22.5" 186 | 187 | "@babel/template@^7.22.5": 188 | version "7.22.5" 189 | resolved "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz" 190 | integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== 191 | dependencies: 192 | "@babel/code-frame" "^7.22.5" 193 | "@babel/parser" "^7.22.5" 194 | "@babel/types" "^7.22.5" 195 | 196 | "@babel/traverse@^7.22.10": 197 | version "7.22.10" 198 | resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.10.tgz" 199 | integrity sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig== 200 | dependencies: 201 | "@babel/code-frame" "^7.22.10" 202 | "@babel/generator" "^7.22.10" 203 | "@babel/helper-environment-visitor" "^7.22.5" 204 | "@babel/helper-function-name" "^7.22.5" 205 | "@babel/helper-hoist-variables" "^7.22.5" 206 | "@babel/helper-split-export-declaration" "^7.22.6" 207 | "@babel/parser" "^7.22.10" 208 | "@babel/types" "^7.22.10" 209 | debug "^4.1.0" 210 | globals "^11.1.0" 211 | 212 | "@babel/types@^7.22.10", "@babel/types@^7.22.5": 213 | version "7.22.10" 214 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.22.10.tgz" 215 | integrity sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg== 216 | dependencies: 217 | "@babel/helper-string-parser" "^7.22.5" 218 | "@babel/helper-validator-identifier" "^7.22.5" 219 | to-fast-properties "^2.0.0" 220 | 221 | "@esbuild/win32-x64@0.18.20": 222 | version "0.18.20" 223 | resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz" 224 | integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ== 225 | 226 | "@eslint-community/eslint-utils@^4.2.0": 227 | version "4.4.0" 228 | resolved "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz" 229 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 230 | dependencies: 231 | eslint-visitor-keys "^3.3.0" 232 | 233 | "@eslint-community/regexpp@^4.6.1": 234 | version "4.6.2" 235 | resolved "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz" 236 | integrity sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw== 237 | 238 | "@eslint/eslintrc@^2.1.2": 239 | version "2.1.2" 240 | resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz" 241 | integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== 242 | dependencies: 243 | ajv "^6.12.4" 244 | debug "^4.3.2" 245 | espree "^9.6.0" 246 | globals "^13.19.0" 247 | ignore "^5.2.0" 248 | import-fresh "^3.2.1" 249 | js-yaml "^4.1.0" 250 | minimatch "^3.1.2" 251 | strip-json-comments "^3.1.1" 252 | 253 | "@eslint/js@^8.47.0": 254 | version "8.47.0" 255 | resolved "https://registry.npmjs.org/@eslint/js/-/js-8.47.0.tgz" 256 | integrity sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og== 257 | 258 | "@humanwhocodes/config-array@^0.11.10": 259 | version "0.11.10" 260 | resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz" 261 | integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ== 262 | dependencies: 263 | "@humanwhocodes/object-schema" "^1.2.1" 264 | debug "^4.1.1" 265 | minimatch "^3.0.5" 266 | 267 | "@humanwhocodes/module-importer@^1.0.1": 268 | version "1.0.1" 269 | resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" 270 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 271 | 272 | "@humanwhocodes/object-schema@^1.2.1": 273 | version "1.2.1" 274 | resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz" 275 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 276 | 277 | "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": 278 | version "0.3.3" 279 | resolved "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz" 280 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 281 | dependencies: 282 | "@jridgewell/set-array" "^1.0.1" 283 | "@jridgewell/sourcemap-codec" "^1.4.10" 284 | "@jridgewell/trace-mapping" "^0.3.9" 285 | 286 | "@jridgewell/resolve-uri@^3.1.0": 287 | version "3.1.1" 288 | resolved "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz" 289 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 290 | 291 | "@jridgewell/set-array@^1.0.1": 292 | version "1.1.2" 293 | resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" 294 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 295 | 296 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 297 | version "1.4.15" 298 | resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" 299 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 300 | 301 | "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": 302 | version "0.3.19" 303 | resolved "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz" 304 | integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== 305 | dependencies: 306 | "@jridgewell/resolve-uri" "^3.1.0" 307 | "@jridgewell/sourcemap-codec" "^1.4.14" 308 | 309 | "@nodelib/fs.scandir@2.1.5": 310 | version "2.1.5" 311 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" 312 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 313 | dependencies: 314 | "@nodelib/fs.stat" "2.0.5" 315 | run-parallel "^1.1.9" 316 | 317 | "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": 318 | version "2.0.5" 319 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" 320 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 321 | 322 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 323 | version "1.2.8" 324 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" 325 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 326 | dependencies: 327 | "@nodelib/fs.scandir" "2.1.5" 328 | fastq "^1.6.0" 329 | 330 | "@types/prop-types@*": 331 | version "15.7.5" 332 | resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" 333 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 334 | 335 | "@types/react-dom@^18.2.7": 336 | version "18.2.7" 337 | resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz" 338 | integrity sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA== 339 | dependencies: 340 | "@types/react" "*" 341 | 342 | "@types/react@*", "@types/react@^18.2.15": 343 | version "18.2.20" 344 | resolved "https://registry.npmjs.org/@types/react/-/react-18.2.20.tgz" 345 | integrity sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw== 346 | dependencies: 347 | "@types/prop-types" "*" 348 | "@types/scheduler" "*" 349 | csstype "^3.0.2" 350 | 351 | "@types/scheduler@*": 352 | version "0.16.3" 353 | resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz" 354 | integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ== 355 | 356 | "@vitejs/plugin-react@^4.0.3": 357 | version "4.0.4" 358 | resolved "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.0.4.tgz" 359 | integrity sha512-7wU921ABnNYkETiMaZy7XqpueMnpu5VxvVps13MjmCo+utBdD79sZzrApHawHtVX66cCJQQTXFcjH0y9dSUK8g== 360 | dependencies: 361 | "@babel/core" "^7.22.9" 362 | "@babel/plugin-transform-react-jsx-self" "^7.22.5" 363 | "@babel/plugin-transform-react-jsx-source" "^7.22.5" 364 | react-refresh "^0.14.0" 365 | 366 | acorn-jsx@^5.3.2: 367 | version "5.3.2" 368 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" 369 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 370 | 371 | "acorn@^6.0.0 || ^7.0.0 || ^8.0.0", acorn@^8.9.0: 372 | version "8.10.0" 373 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz" 374 | integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== 375 | 376 | ajv@^6.12.4: 377 | version "6.12.6" 378 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" 379 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 380 | dependencies: 381 | fast-deep-equal "^3.1.1" 382 | fast-json-stable-stringify "^2.0.0" 383 | json-schema-traverse "^0.4.1" 384 | uri-js "^4.2.2" 385 | 386 | ansi-regex@^5.0.1: 387 | version "5.0.1" 388 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 389 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 390 | 391 | ansi-styles@^3.2.1: 392 | version "3.2.1" 393 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 394 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 395 | dependencies: 396 | color-convert "^1.9.0" 397 | 398 | ansi-styles@^4.1.0: 399 | version "4.3.0" 400 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 401 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 402 | dependencies: 403 | color-convert "^2.0.1" 404 | 405 | any-promise@^1.0.0: 406 | version "1.3.0" 407 | resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz" 408 | integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== 409 | 410 | anymatch@~3.1.2: 411 | version "3.1.3" 412 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" 413 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 414 | dependencies: 415 | normalize-path "^3.0.0" 416 | picomatch "^2.0.4" 417 | 418 | arg@^5.0.2: 419 | version "5.0.2" 420 | resolved "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" 421 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== 422 | 423 | argparse@^2.0.1: 424 | version "2.0.1" 425 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 426 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 427 | 428 | array-buffer-byte-length@^1.0.0: 429 | version "1.0.0" 430 | resolved "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz" 431 | integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== 432 | dependencies: 433 | call-bind "^1.0.2" 434 | is-array-buffer "^3.0.1" 435 | 436 | array-includes@^3.1.6: 437 | version "3.1.6" 438 | resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz" 439 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 440 | dependencies: 441 | call-bind "^1.0.2" 442 | define-properties "^1.1.4" 443 | es-abstract "^1.20.4" 444 | get-intrinsic "^1.1.3" 445 | is-string "^1.0.7" 446 | 447 | array.prototype.flat@^1.3.1: 448 | version "1.3.1" 449 | resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz" 450 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 451 | dependencies: 452 | call-bind "^1.0.2" 453 | define-properties "^1.1.4" 454 | es-abstract "^1.20.4" 455 | es-shim-unscopables "^1.0.0" 456 | 457 | array.prototype.flatmap@^1.3.1: 458 | version "1.3.1" 459 | resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz" 460 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 461 | dependencies: 462 | call-bind "^1.0.2" 463 | define-properties "^1.1.4" 464 | es-abstract "^1.20.4" 465 | es-shim-unscopables "^1.0.0" 466 | 467 | array.prototype.tosorted@^1.1.1: 468 | version "1.1.1" 469 | resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz" 470 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 471 | dependencies: 472 | call-bind "^1.0.2" 473 | define-properties "^1.1.4" 474 | es-abstract "^1.20.4" 475 | es-shim-unscopables "^1.0.0" 476 | get-intrinsic "^1.1.3" 477 | 478 | arraybuffer.prototype.slice@^1.0.1: 479 | version "1.0.1" 480 | resolved "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz" 481 | integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== 482 | dependencies: 483 | array-buffer-byte-length "^1.0.0" 484 | call-bind "^1.0.2" 485 | define-properties "^1.2.0" 486 | get-intrinsic "^1.2.1" 487 | is-array-buffer "^3.0.2" 488 | is-shared-array-buffer "^1.0.2" 489 | 490 | autoprefixer@^10.4.15: 491 | version "10.4.15" 492 | resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.15.tgz" 493 | integrity sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew== 494 | dependencies: 495 | browserslist "^4.21.10" 496 | caniuse-lite "^1.0.30001520" 497 | fraction.js "^4.2.0" 498 | normalize-range "^0.1.2" 499 | picocolors "^1.0.0" 500 | postcss-value-parser "^4.2.0" 501 | 502 | available-typed-arrays@^1.0.5: 503 | version "1.0.5" 504 | resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz" 505 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 506 | 507 | balanced-match@^1.0.0: 508 | version "1.0.2" 509 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 510 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 511 | 512 | binary-extensions@^2.0.0: 513 | version "2.2.0" 514 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" 515 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 516 | 517 | brace-expansion@^1.1.7: 518 | version "1.1.11" 519 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 520 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 521 | dependencies: 522 | balanced-match "^1.0.0" 523 | concat-map "0.0.1" 524 | 525 | braces@^3.0.2, braces@~3.0.2: 526 | version "3.0.2" 527 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 528 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 529 | dependencies: 530 | fill-range "^7.0.1" 531 | 532 | browserslist@^4.21.10, browserslist@^4.21.9, "browserslist@>= 4.21.0": 533 | version "4.21.10" 534 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz" 535 | integrity sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ== 536 | dependencies: 537 | caniuse-lite "^1.0.30001517" 538 | electron-to-chromium "^1.4.477" 539 | node-releases "^2.0.13" 540 | update-browserslist-db "^1.0.11" 541 | 542 | call-bind@^1.0.0, call-bind@^1.0.2: 543 | version "1.0.2" 544 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 545 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 546 | dependencies: 547 | function-bind "^1.1.1" 548 | get-intrinsic "^1.0.2" 549 | 550 | callsites@^3.0.0: 551 | version "3.1.0" 552 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 553 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 554 | 555 | camelcase-css@^2.0.1: 556 | version "2.0.1" 557 | resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" 558 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 559 | 560 | caniuse-lite@^1.0.30001517, caniuse-lite@^1.0.30001520: 561 | version "1.0.30001520" 562 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001520.tgz" 563 | integrity sha512-tahF5O9EiiTzwTUqAeFjIZbn4Dnqxzz7ktrgGlMYNLH43Ul26IgTMH/zvL3DG0lZxBYnlT04axvInszUsZULdA== 564 | 565 | chalk@^2.4.2: 566 | version "2.4.2" 567 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 568 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 569 | dependencies: 570 | ansi-styles "^3.2.1" 571 | escape-string-regexp "^1.0.5" 572 | supports-color "^5.3.0" 573 | 574 | chalk@^4.0.0: 575 | version "4.1.2" 576 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 577 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 578 | dependencies: 579 | ansi-styles "^4.1.0" 580 | supports-color "^7.1.0" 581 | 582 | chokidar@^3.5.3: 583 | version "3.5.3" 584 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" 585 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 586 | dependencies: 587 | anymatch "~3.1.2" 588 | braces "~3.0.2" 589 | glob-parent "~5.1.2" 590 | is-binary-path "~2.1.0" 591 | is-glob "~4.0.1" 592 | normalize-path "~3.0.0" 593 | readdirp "~3.6.0" 594 | optionalDependencies: 595 | fsevents "~2.3.2" 596 | 597 | color-convert@^1.9.0: 598 | version "1.9.3" 599 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 600 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 601 | dependencies: 602 | color-name "1.1.3" 603 | 604 | color-convert@^2.0.1: 605 | version "2.0.1" 606 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 607 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 608 | dependencies: 609 | color-name "~1.1.4" 610 | 611 | color-name@~1.1.4: 612 | version "1.1.4" 613 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 614 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 615 | 616 | color-name@1.1.3: 617 | version "1.1.3" 618 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 619 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 620 | 621 | commander@^4.0.0: 622 | version "4.1.1" 623 | resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" 624 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 625 | 626 | concat-map@0.0.1: 627 | version "0.0.1" 628 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 629 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 630 | 631 | convert-source-map@^1.7.0: 632 | version "1.9.0" 633 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz" 634 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== 635 | 636 | cross-spawn@^7.0.2: 637 | version "7.0.3" 638 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 639 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 640 | dependencies: 641 | path-key "^3.1.0" 642 | shebang-command "^2.0.0" 643 | which "^2.0.1" 644 | 645 | cssesc@^3.0.0: 646 | version "3.0.0" 647 | resolved "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" 648 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 649 | 650 | csstype@^3.0.2: 651 | version "3.1.2" 652 | resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz" 653 | integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== 654 | 655 | debug@^4.1.0, debug@^4.1.1, debug@^4.3.2: 656 | version "4.3.4" 657 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" 658 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 659 | dependencies: 660 | ms "2.1.2" 661 | 662 | deep-is@^0.1.3: 663 | version "0.1.4" 664 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 665 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 666 | 667 | define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: 668 | version "1.2.0" 669 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz" 670 | integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== 671 | dependencies: 672 | has-property-descriptors "^1.0.0" 673 | object-keys "^1.1.1" 674 | 675 | didyoumean@^1.2.2: 676 | version "1.2.2" 677 | resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" 678 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 679 | 680 | dlv@^1.1.3: 681 | version "1.1.3" 682 | resolved "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz" 683 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 684 | 685 | doctrine@^2.1.0: 686 | version "2.1.0" 687 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" 688 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 689 | dependencies: 690 | esutils "^2.0.2" 691 | 692 | doctrine@^3.0.0: 693 | version "3.0.0" 694 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" 695 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 696 | dependencies: 697 | esutils "^2.0.2" 698 | 699 | electron-to-chromium@^1.4.477: 700 | version "1.4.491" 701 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.491.tgz" 702 | integrity sha512-ZzPqGKghdVzlQJ+qpfE+r6EB321zed7e5JsvHIlMM4zPFF8okXUkF5Of7h7F3l3cltPL0rG7YVmlp5Qro7RQLA== 703 | 704 | es-abstract@^1.19.0, es-abstract@^1.20.4: 705 | version "1.22.1" 706 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz" 707 | integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== 708 | dependencies: 709 | array-buffer-byte-length "^1.0.0" 710 | arraybuffer.prototype.slice "^1.0.1" 711 | available-typed-arrays "^1.0.5" 712 | call-bind "^1.0.2" 713 | es-set-tostringtag "^2.0.1" 714 | es-to-primitive "^1.2.1" 715 | function.prototype.name "^1.1.5" 716 | get-intrinsic "^1.2.1" 717 | get-symbol-description "^1.0.0" 718 | globalthis "^1.0.3" 719 | gopd "^1.0.1" 720 | has "^1.0.3" 721 | has-property-descriptors "^1.0.0" 722 | has-proto "^1.0.1" 723 | has-symbols "^1.0.3" 724 | internal-slot "^1.0.5" 725 | is-array-buffer "^3.0.2" 726 | is-callable "^1.2.7" 727 | is-negative-zero "^2.0.2" 728 | is-regex "^1.1.4" 729 | is-shared-array-buffer "^1.0.2" 730 | is-string "^1.0.7" 731 | is-typed-array "^1.1.10" 732 | is-weakref "^1.0.2" 733 | object-inspect "^1.12.3" 734 | object-keys "^1.1.1" 735 | object.assign "^4.1.4" 736 | regexp.prototype.flags "^1.5.0" 737 | safe-array-concat "^1.0.0" 738 | safe-regex-test "^1.0.0" 739 | string.prototype.trim "^1.2.7" 740 | string.prototype.trimend "^1.0.6" 741 | string.prototype.trimstart "^1.0.6" 742 | typed-array-buffer "^1.0.0" 743 | typed-array-byte-length "^1.0.0" 744 | typed-array-byte-offset "^1.0.0" 745 | typed-array-length "^1.0.4" 746 | unbox-primitive "^1.0.2" 747 | which-typed-array "^1.1.10" 748 | 749 | es-set-tostringtag@^2.0.1: 750 | version "2.0.1" 751 | resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz" 752 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 753 | dependencies: 754 | get-intrinsic "^1.1.3" 755 | has "^1.0.3" 756 | has-tostringtag "^1.0.0" 757 | 758 | es-shim-unscopables@^1.0.0: 759 | version "1.0.0" 760 | resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz" 761 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 762 | dependencies: 763 | has "^1.0.3" 764 | 765 | es-to-primitive@^1.2.1: 766 | version "1.2.1" 767 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" 768 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 769 | dependencies: 770 | is-callable "^1.1.4" 771 | is-date-object "^1.0.1" 772 | is-symbol "^1.0.2" 773 | 774 | esbuild@^0.18.10: 775 | version "0.18.20" 776 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz" 777 | integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA== 778 | optionalDependencies: 779 | "@esbuild/android-arm" "0.18.20" 780 | "@esbuild/android-arm64" "0.18.20" 781 | "@esbuild/android-x64" "0.18.20" 782 | "@esbuild/darwin-arm64" "0.18.20" 783 | "@esbuild/darwin-x64" "0.18.20" 784 | "@esbuild/freebsd-arm64" "0.18.20" 785 | "@esbuild/freebsd-x64" "0.18.20" 786 | "@esbuild/linux-arm" "0.18.20" 787 | "@esbuild/linux-arm64" "0.18.20" 788 | "@esbuild/linux-ia32" "0.18.20" 789 | "@esbuild/linux-loong64" "0.18.20" 790 | "@esbuild/linux-mips64el" "0.18.20" 791 | "@esbuild/linux-ppc64" "0.18.20" 792 | "@esbuild/linux-riscv64" "0.18.20" 793 | "@esbuild/linux-s390x" "0.18.20" 794 | "@esbuild/linux-x64" "0.18.20" 795 | "@esbuild/netbsd-x64" "0.18.20" 796 | "@esbuild/openbsd-x64" "0.18.20" 797 | "@esbuild/sunos-x64" "0.18.20" 798 | "@esbuild/win32-arm64" "0.18.20" 799 | "@esbuild/win32-ia32" "0.18.20" 800 | "@esbuild/win32-x64" "0.18.20" 801 | 802 | escalade@^3.1.1: 803 | version "3.1.1" 804 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 805 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 806 | 807 | escape-string-regexp@^1.0.5: 808 | version "1.0.5" 809 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 810 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 811 | 812 | escape-string-regexp@^4.0.0: 813 | version "4.0.0" 814 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" 815 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 816 | 817 | eslint-plugin-react-hooks@^4.6.0: 818 | version "4.6.0" 819 | resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz" 820 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 821 | 822 | eslint-plugin-react-refresh@^0.4.3: 823 | version "0.4.3" 824 | resolved "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.3.tgz" 825 | integrity sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA== 826 | 827 | eslint-plugin-react@^7.32.2: 828 | version "7.33.1" 829 | resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.1.tgz" 830 | integrity sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA== 831 | dependencies: 832 | array-includes "^3.1.6" 833 | array.prototype.flatmap "^1.3.1" 834 | array.prototype.tosorted "^1.1.1" 835 | doctrine "^2.1.0" 836 | estraverse "^5.3.0" 837 | jsx-ast-utils "^2.4.1 || ^3.0.0" 838 | minimatch "^3.1.2" 839 | object.entries "^1.1.6" 840 | object.fromentries "^2.0.6" 841 | object.hasown "^1.1.2" 842 | object.values "^1.1.6" 843 | prop-types "^15.8.1" 844 | resolve "^2.0.0-next.4" 845 | semver "^6.3.1" 846 | string.prototype.matchall "^4.0.8" 847 | 848 | eslint-scope@^7.2.2: 849 | version "7.2.2" 850 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz" 851 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== 852 | dependencies: 853 | esrecurse "^4.3.0" 854 | estraverse "^5.2.0" 855 | 856 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: 857 | version "3.4.3" 858 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" 859 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 860 | 861 | "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || >=8.0.0", eslint@^8.45.0, eslint@>=7: 862 | version "8.47.0" 863 | resolved "https://registry.npmjs.org/eslint/-/eslint-8.47.0.tgz" 864 | integrity sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q== 865 | dependencies: 866 | "@eslint-community/eslint-utils" "^4.2.0" 867 | "@eslint-community/regexpp" "^4.6.1" 868 | "@eslint/eslintrc" "^2.1.2" 869 | "@eslint/js" "^8.47.0" 870 | "@humanwhocodes/config-array" "^0.11.10" 871 | "@humanwhocodes/module-importer" "^1.0.1" 872 | "@nodelib/fs.walk" "^1.2.8" 873 | ajv "^6.12.4" 874 | chalk "^4.0.0" 875 | cross-spawn "^7.0.2" 876 | debug "^4.3.2" 877 | doctrine "^3.0.0" 878 | escape-string-regexp "^4.0.0" 879 | eslint-scope "^7.2.2" 880 | eslint-visitor-keys "^3.4.3" 881 | espree "^9.6.1" 882 | esquery "^1.4.2" 883 | esutils "^2.0.2" 884 | fast-deep-equal "^3.1.3" 885 | file-entry-cache "^6.0.1" 886 | find-up "^5.0.0" 887 | glob-parent "^6.0.2" 888 | globals "^13.19.0" 889 | graphemer "^1.4.0" 890 | ignore "^5.2.0" 891 | imurmurhash "^0.1.4" 892 | is-glob "^4.0.0" 893 | is-path-inside "^3.0.3" 894 | js-yaml "^4.1.0" 895 | json-stable-stringify-without-jsonify "^1.0.1" 896 | levn "^0.4.1" 897 | lodash.merge "^4.6.2" 898 | minimatch "^3.1.2" 899 | natural-compare "^1.4.0" 900 | optionator "^0.9.3" 901 | strip-ansi "^6.0.1" 902 | text-table "^0.2.0" 903 | 904 | espree@^9.6.0, espree@^9.6.1: 905 | version "9.6.1" 906 | resolved "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz" 907 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== 908 | dependencies: 909 | acorn "^8.9.0" 910 | acorn-jsx "^5.3.2" 911 | eslint-visitor-keys "^3.4.1" 912 | 913 | esquery@^1.4.2: 914 | version "1.5.0" 915 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz" 916 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 917 | dependencies: 918 | estraverse "^5.1.0" 919 | 920 | esrecurse@^4.3.0: 921 | version "4.3.0" 922 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" 923 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 924 | dependencies: 925 | estraverse "^5.2.0" 926 | 927 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 928 | version "5.3.0" 929 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 930 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 931 | 932 | esutils@^2.0.2: 933 | version "2.0.3" 934 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 935 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 936 | 937 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 938 | version "3.1.3" 939 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" 940 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 941 | 942 | fast-glob@^3.2.12: 943 | version "3.3.1" 944 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz" 945 | integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== 946 | dependencies: 947 | "@nodelib/fs.stat" "^2.0.2" 948 | "@nodelib/fs.walk" "^1.2.3" 949 | glob-parent "^5.1.2" 950 | merge2 "^1.3.0" 951 | micromatch "^4.0.4" 952 | 953 | fast-json-stable-stringify@^2.0.0: 954 | version "2.1.0" 955 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 956 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 957 | 958 | fast-levenshtein@^2.0.6: 959 | version "2.0.6" 960 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 961 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 962 | 963 | fastq@^1.6.0: 964 | version "1.15.0" 965 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" 966 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 967 | dependencies: 968 | reusify "^1.0.4" 969 | 970 | file-entry-cache@^6.0.1: 971 | version "6.0.1" 972 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" 973 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 974 | dependencies: 975 | flat-cache "^3.0.4" 976 | 977 | fill-range@^7.0.1: 978 | version "7.0.1" 979 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 980 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 981 | dependencies: 982 | to-regex-range "^5.0.1" 983 | 984 | find-up@^5.0.0: 985 | version "5.0.0" 986 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" 987 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 988 | dependencies: 989 | locate-path "^6.0.0" 990 | path-exists "^4.0.0" 991 | 992 | flat-cache@^3.0.4: 993 | version "3.0.4" 994 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" 995 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 996 | dependencies: 997 | flatted "^3.1.0" 998 | rimraf "^3.0.2" 999 | 1000 | flatted@^3.1.0: 1001 | version "3.2.7" 1002 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz" 1003 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 1004 | 1005 | for-each@^0.3.3: 1006 | version "0.3.3" 1007 | resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" 1008 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 1009 | dependencies: 1010 | is-callable "^1.1.3" 1011 | 1012 | fraction.js@^4.2.0: 1013 | version "4.2.0" 1014 | resolved "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz" 1015 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 1016 | 1017 | fs.realpath@^1.0.0: 1018 | version "1.0.0" 1019 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1020 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1021 | 1022 | function-bind@^1.1.1: 1023 | version "1.1.1" 1024 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1025 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1026 | 1027 | function.prototype.name@^1.1.5: 1028 | version "1.1.5" 1029 | resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz" 1030 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1031 | dependencies: 1032 | call-bind "^1.0.2" 1033 | define-properties "^1.1.3" 1034 | es-abstract "^1.19.0" 1035 | functions-have-names "^1.2.2" 1036 | 1037 | functions-have-names@^1.2.2, functions-have-names@^1.2.3: 1038 | version "1.2.3" 1039 | resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" 1040 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1041 | 1042 | gensync@^1.0.0-beta.2: 1043 | version "1.0.0-beta.2" 1044 | resolved "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" 1045 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1046 | 1047 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: 1048 | version "1.2.1" 1049 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz" 1050 | integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== 1051 | dependencies: 1052 | function-bind "^1.1.1" 1053 | has "^1.0.3" 1054 | has-proto "^1.0.1" 1055 | has-symbols "^1.0.3" 1056 | 1057 | get-symbol-description@^1.0.0: 1058 | version "1.0.0" 1059 | resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" 1060 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1061 | dependencies: 1062 | call-bind "^1.0.2" 1063 | get-intrinsic "^1.1.1" 1064 | 1065 | glob-parent@^5.1.2: 1066 | version "5.1.2" 1067 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1068 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1069 | dependencies: 1070 | is-glob "^4.0.1" 1071 | 1072 | glob-parent@^6.0.2: 1073 | version "6.0.2" 1074 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" 1075 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1076 | dependencies: 1077 | is-glob "^4.0.3" 1078 | 1079 | glob-parent@~5.1.2: 1080 | version "5.1.2" 1081 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1082 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1083 | dependencies: 1084 | is-glob "^4.0.1" 1085 | 1086 | glob@^7.1.3: 1087 | version "7.2.3" 1088 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" 1089 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1090 | dependencies: 1091 | fs.realpath "^1.0.0" 1092 | inflight "^1.0.4" 1093 | inherits "2" 1094 | minimatch "^3.1.1" 1095 | once "^1.3.0" 1096 | path-is-absolute "^1.0.0" 1097 | 1098 | glob@7.1.6: 1099 | version "7.1.6" 1100 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" 1101 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 1102 | dependencies: 1103 | fs.realpath "^1.0.0" 1104 | inflight "^1.0.4" 1105 | inherits "2" 1106 | minimatch "^3.0.4" 1107 | once "^1.3.0" 1108 | path-is-absolute "^1.0.0" 1109 | 1110 | globals@^11.1.0: 1111 | version "11.12.0" 1112 | resolved "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" 1113 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1114 | 1115 | globals@^13.19.0: 1116 | version "13.21.0" 1117 | resolved "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz" 1118 | integrity sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg== 1119 | dependencies: 1120 | type-fest "^0.20.2" 1121 | 1122 | globalthis@^1.0.3: 1123 | version "1.0.3" 1124 | resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz" 1125 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1126 | dependencies: 1127 | define-properties "^1.1.3" 1128 | 1129 | gopd@^1.0.1: 1130 | version "1.0.1" 1131 | resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" 1132 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1133 | dependencies: 1134 | get-intrinsic "^1.1.3" 1135 | 1136 | graphemer@^1.4.0: 1137 | version "1.4.0" 1138 | resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz" 1139 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1140 | 1141 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1142 | version "1.0.2" 1143 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" 1144 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1145 | 1146 | has-flag@^3.0.0: 1147 | version "3.0.0" 1148 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1149 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1150 | 1151 | has-flag@^4.0.0: 1152 | version "4.0.0" 1153 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1154 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1155 | 1156 | has-property-descriptors@^1.0.0: 1157 | version "1.0.0" 1158 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz" 1159 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1160 | dependencies: 1161 | get-intrinsic "^1.1.1" 1162 | 1163 | has-proto@^1.0.1: 1164 | version "1.0.1" 1165 | resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz" 1166 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1167 | 1168 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1169 | version "1.0.3" 1170 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 1171 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1172 | 1173 | has-tostringtag@^1.0.0: 1174 | version "1.0.0" 1175 | resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" 1176 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1177 | dependencies: 1178 | has-symbols "^1.0.2" 1179 | 1180 | has@^1.0.3: 1181 | version "1.0.3" 1182 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1183 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1184 | dependencies: 1185 | function-bind "^1.1.1" 1186 | 1187 | ignore@^5.2.0: 1188 | version "5.2.4" 1189 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" 1190 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 1191 | 1192 | import-fresh@^3.2.1: 1193 | version "3.3.0" 1194 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" 1195 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1196 | dependencies: 1197 | parent-module "^1.0.0" 1198 | resolve-from "^4.0.0" 1199 | 1200 | imurmurhash@^0.1.4: 1201 | version "0.1.4" 1202 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 1203 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1204 | 1205 | inflight@^1.0.4: 1206 | version "1.0.6" 1207 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1208 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1209 | dependencies: 1210 | once "^1.3.0" 1211 | wrappy "1" 1212 | 1213 | inherits@2: 1214 | version "2.0.4" 1215 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1216 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1217 | 1218 | internal-slot@^1.0.3, internal-slot@^1.0.5: 1219 | version "1.0.5" 1220 | resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz" 1221 | integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== 1222 | dependencies: 1223 | get-intrinsic "^1.2.0" 1224 | has "^1.0.3" 1225 | side-channel "^1.0.4" 1226 | 1227 | is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: 1228 | version "3.0.2" 1229 | resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz" 1230 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== 1231 | dependencies: 1232 | call-bind "^1.0.2" 1233 | get-intrinsic "^1.2.0" 1234 | is-typed-array "^1.1.10" 1235 | 1236 | is-bigint@^1.0.1: 1237 | version "1.0.4" 1238 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" 1239 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1240 | dependencies: 1241 | has-bigints "^1.0.1" 1242 | 1243 | is-binary-path@~2.1.0: 1244 | version "2.1.0" 1245 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" 1246 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1247 | dependencies: 1248 | binary-extensions "^2.0.0" 1249 | 1250 | is-boolean-object@^1.1.0: 1251 | version "1.1.2" 1252 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" 1253 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1254 | dependencies: 1255 | call-bind "^1.0.2" 1256 | has-tostringtag "^1.0.0" 1257 | 1258 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 1259 | version "1.2.7" 1260 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" 1261 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1262 | 1263 | is-core-module@^2.13.0, is-core-module@^2.9.0: 1264 | version "2.13.0" 1265 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz" 1266 | integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== 1267 | dependencies: 1268 | has "^1.0.3" 1269 | 1270 | is-date-object@^1.0.1: 1271 | version "1.0.5" 1272 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" 1273 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1274 | dependencies: 1275 | has-tostringtag "^1.0.0" 1276 | 1277 | is-extglob@^2.1.1: 1278 | version "2.1.1" 1279 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1280 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1281 | 1282 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1283 | version "4.0.3" 1284 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1285 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1286 | dependencies: 1287 | is-extglob "^2.1.1" 1288 | 1289 | is-negative-zero@^2.0.2: 1290 | version "2.0.2" 1291 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" 1292 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1293 | 1294 | is-number-object@^1.0.4: 1295 | version "1.0.7" 1296 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" 1297 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1298 | dependencies: 1299 | has-tostringtag "^1.0.0" 1300 | 1301 | is-number@^7.0.0: 1302 | version "7.0.0" 1303 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1304 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1305 | 1306 | is-path-inside@^3.0.3: 1307 | version "3.0.3" 1308 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" 1309 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1310 | 1311 | is-regex@^1.1.4: 1312 | version "1.1.4" 1313 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" 1314 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1315 | dependencies: 1316 | call-bind "^1.0.2" 1317 | has-tostringtag "^1.0.0" 1318 | 1319 | is-shared-array-buffer@^1.0.2: 1320 | version "1.0.2" 1321 | resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz" 1322 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1323 | dependencies: 1324 | call-bind "^1.0.2" 1325 | 1326 | is-string@^1.0.5, is-string@^1.0.7: 1327 | version "1.0.7" 1328 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" 1329 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1330 | dependencies: 1331 | has-tostringtag "^1.0.0" 1332 | 1333 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1334 | version "1.0.4" 1335 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" 1336 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1337 | dependencies: 1338 | has-symbols "^1.0.2" 1339 | 1340 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 1341 | version "1.1.12" 1342 | resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz" 1343 | integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== 1344 | dependencies: 1345 | which-typed-array "^1.1.11" 1346 | 1347 | is-weakref@^1.0.2: 1348 | version "1.0.2" 1349 | resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" 1350 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1351 | dependencies: 1352 | call-bind "^1.0.2" 1353 | 1354 | isarray@^2.0.5: 1355 | version "2.0.5" 1356 | resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" 1357 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 1358 | 1359 | isexe@^2.0.0: 1360 | version "2.0.0" 1361 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1362 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1363 | 1364 | jiti@^1.18.2: 1365 | version "1.19.1" 1366 | resolved "https://registry.npmjs.org/jiti/-/jiti-1.19.1.tgz" 1367 | integrity sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg== 1368 | 1369 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1370 | version "4.0.0" 1371 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 1372 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1373 | 1374 | js-yaml@^4.1.0: 1375 | version "4.1.0" 1376 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" 1377 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1378 | dependencies: 1379 | argparse "^2.0.1" 1380 | 1381 | jsesc@^2.5.1: 1382 | version "2.5.2" 1383 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" 1384 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1385 | 1386 | json-schema-traverse@^0.4.1: 1387 | version "0.4.1" 1388 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" 1389 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1390 | 1391 | json-stable-stringify-without-jsonify@^1.0.1: 1392 | version "1.0.1" 1393 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 1394 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1395 | 1396 | json5@^2.2.2: 1397 | version "2.2.3" 1398 | resolved "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" 1399 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1400 | 1401 | "jsx-ast-utils@^2.4.1 || ^3.0.0": 1402 | version "3.3.5" 1403 | resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz" 1404 | integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ== 1405 | dependencies: 1406 | array-includes "^3.1.6" 1407 | array.prototype.flat "^1.3.1" 1408 | object.assign "^4.1.4" 1409 | object.values "^1.1.6" 1410 | 1411 | levn@^0.4.1: 1412 | version "0.4.1" 1413 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" 1414 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1415 | dependencies: 1416 | prelude-ls "^1.2.1" 1417 | type-check "~0.4.0" 1418 | 1419 | lilconfig@^2.0.5, lilconfig@^2.1.0: 1420 | version "2.1.0" 1421 | resolved "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz" 1422 | integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== 1423 | 1424 | lines-and-columns@^1.1.6: 1425 | version "1.2.4" 1426 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" 1427 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1428 | 1429 | locate-path@^6.0.0: 1430 | version "6.0.0" 1431 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" 1432 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1433 | dependencies: 1434 | p-locate "^5.0.0" 1435 | 1436 | lodash.merge@^4.6.2: 1437 | version "4.6.2" 1438 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 1439 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1440 | 1441 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1442 | version "1.4.0" 1443 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" 1444 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1445 | dependencies: 1446 | js-tokens "^3.0.0 || ^4.0.0" 1447 | 1448 | lru-cache@^5.1.1: 1449 | version "5.1.1" 1450 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" 1451 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1452 | dependencies: 1453 | yallist "^3.0.2" 1454 | 1455 | merge2@^1.3.0: 1456 | version "1.4.1" 1457 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" 1458 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1459 | 1460 | micromatch@^4.0.4, micromatch@^4.0.5: 1461 | version "4.0.5" 1462 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" 1463 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1464 | dependencies: 1465 | braces "^3.0.2" 1466 | picomatch "^2.3.1" 1467 | 1468 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1469 | version "3.1.2" 1470 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 1471 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1472 | dependencies: 1473 | brace-expansion "^1.1.7" 1474 | 1475 | ms@2.1.2: 1476 | version "2.1.2" 1477 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 1478 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1479 | 1480 | mz@^2.7.0: 1481 | version "2.7.0" 1482 | resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz" 1483 | integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== 1484 | dependencies: 1485 | any-promise "^1.0.0" 1486 | object-assign "^4.0.1" 1487 | thenify-all "^1.0.0" 1488 | 1489 | nanoid@^3.3.6: 1490 | version "3.3.6" 1491 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz" 1492 | integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== 1493 | 1494 | natural-compare@^1.4.0: 1495 | version "1.4.0" 1496 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 1497 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1498 | 1499 | node-releases@^2.0.13: 1500 | version "2.0.13" 1501 | resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz" 1502 | integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== 1503 | 1504 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1505 | version "3.0.0" 1506 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 1507 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1508 | 1509 | normalize-range@^0.1.2: 1510 | version "0.1.2" 1511 | resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" 1512 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 1513 | 1514 | object-assign@^4.0.1, object-assign@^4.1.1: 1515 | version "4.1.1" 1516 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 1517 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1518 | 1519 | object-hash@^3.0.0: 1520 | version "3.0.0" 1521 | resolved "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" 1522 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== 1523 | 1524 | object-inspect@^1.12.3, object-inspect@^1.9.0: 1525 | version "1.12.3" 1526 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz" 1527 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 1528 | 1529 | object-keys@^1.1.1: 1530 | version "1.1.1" 1531 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 1532 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1533 | 1534 | object.assign@^4.1.4: 1535 | version "4.1.4" 1536 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz" 1537 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1538 | dependencies: 1539 | call-bind "^1.0.2" 1540 | define-properties "^1.1.4" 1541 | has-symbols "^1.0.3" 1542 | object-keys "^1.1.1" 1543 | 1544 | object.entries@^1.1.6: 1545 | version "1.1.6" 1546 | resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz" 1547 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1548 | dependencies: 1549 | call-bind "^1.0.2" 1550 | define-properties "^1.1.4" 1551 | es-abstract "^1.20.4" 1552 | 1553 | object.fromentries@^2.0.6: 1554 | version "2.0.6" 1555 | resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz" 1556 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1557 | dependencies: 1558 | call-bind "^1.0.2" 1559 | define-properties "^1.1.4" 1560 | es-abstract "^1.20.4" 1561 | 1562 | object.hasown@^1.1.2: 1563 | version "1.1.2" 1564 | resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz" 1565 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1566 | dependencies: 1567 | define-properties "^1.1.4" 1568 | es-abstract "^1.20.4" 1569 | 1570 | object.values@^1.1.6: 1571 | version "1.1.6" 1572 | resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz" 1573 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1574 | dependencies: 1575 | call-bind "^1.0.2" 1576 | define-properties "^1.1.4" 1577 | es-abstract "^1.20.4" 1578 | 1579 | once@^1.3.0: 1580 | version "1.4.0" 1581 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 1582 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1583 | dependencies: 1584 | wrappy "1" 1585 | 1586 | optionator@^0.9.3: 1587 | version "0.9.3" 1588 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz" 1589 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== 1590 | dependencies: 1591 | "@aashutoshrathi/word-wrap" "^1.2.3" 1592 | deep-is "^0.1.3" 1593 | fast-levenshtein "^2.0.6" 1594 | levn "^0.4.1" 1595 | prelude-ls "^1.2.1" 1596 | type-check "^0.4.0" 1597 | 1598 | p-limit@^3.0.2: 1599 | version "3.1.0" 1600 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" 1601 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1602 | dependencies: 1603 | yocto-queue "^0.1.0" 1604 | 1605 | p-locate@^5.0.0: 1606 | version "5.0.0" 1607 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" 1608 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1609 | dependencies: 1610 | p-limit "^3.0.2" 1611 | 1612 | parent-module@^1.0.0: 1613 | version "1.0.1" 1614 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" 1615 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1616 | dependencies: 1617 | callsites "^3.0.0" 1618 | 1619 | path-exists@^4.0.0: 1620 | version "4.0.0" 1621 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 1622 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1623 | 1624 | path-is-absolute@^1.0.0: 1625 | version "1.0.1" 1626 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 1627 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1628 | 1629 | path-key@^3.1.0: 1630 | version "3.1.1" 1631 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 1632 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1633 | 1634 | path-parse@^1.0.7: 1635 | version "1.0.7" 1636 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 1637 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1638 | 1639 | picocolors@^1.0.0: 1640 | version "1.0.0" 1641 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 1642 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1643 | 1644 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1645 | version "2.3.1" 1646 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 1647 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1648 | 1649 | pify@^2.3.0: 1650 | version "2.3.0" 1651 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" 1652 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 1653 | 1654 | pirates@^4.0.1: 1655 | version "4.0.6" 1656 | resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz" 1657 | integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== 1658 | 1659 | postcss-import@^15.1.0: 1660 | version "15.1.0" 1661 | resolved "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz" 1662 | integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== 1663 | dependencies: 1664 | postcss-value-parser "^4.0.0" 1665 | read-cache "^1.0.0" 1666 | resolve "^1.1.7" 1667 | 1668 | postcss-js@^4.0.1: 1669 | version "4.0.1" 1670 | resolved "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz" 1671 | integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== 1672 | dependencies: 1673 | camelcase-css "^2.0.1" 1674 | 1675 | postcss-load-config@^4.0.1: 1676 | version "4.0.1" 1677 | resolved "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz" 1678 | integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== 1679 | dependencies: 1680 | lilconfig "^2.0.5" 1681 | yaml "^2.1.1" 1682 | 1683 | postcss-nested@^6.0.1: 1684 | version "6.0.1" 1685 | resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz" 1686 | integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== 1687 | dependencies: 1688 | postcss-selector-parser "^6.0.11" 1689 | 1690 | postcss-selector-parser@^6.0.11: 1691 | version "6.0.13" 1692 | resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz" 1693 | integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== 1694 | dependencies: 1695 | cssesc "^3.0.0" 1696 | util-deprecate "^1.0.2" 1697 | 1698 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: 1699 | version "4.2.0" 1700 | resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" 1701 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 1702 | 1703 | postcss@^8.0.0, postcss@^8.1.0, postcss@^8.2.14, postcss@^8.4.21, postcss@^8.4.23, postcss@^8.4.27, postcss@>=8.0.9: 1704 | version "8.4.27" 1705 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz" 1706 | integrity sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ== 1707 | dependencies: 1708 | nanoid "^3.3.6" 1709 | picocolors "^1.0.0" 1710 | source-map-js "^1.0.2" 1711 | 1712 | prelude-ls@^1.2.1: 1713 | version "1.2.1" 1714 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" 1715 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1716 | 1717 | prop-types@^15.8.1: 1718 | version "15.8.1" 1719 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" 1720 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1721 | dependencies: 1722 | loose-envify "^1.4.0" 1723 | object-assign "^4.1.1" 1724 | react-is "^16.13.1" 1725 | 1726 | punycode@^2.1.0: 1727 | version "2.3.0" 1728 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" 1729 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1730 | 1731 | queue-microtask@^1.2.2: 1732 | version "1.2.3" 1733 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" 1734 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1735 | 1736 | react-dom@^18.2.0: 1737 | version "18.2.0" 1738 | resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" 1739 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1740 | dependencies: 1741 | loose-envify "^1.1.0" 1742 | scheduler "^0.23.0" 1743 | 1744 | react-is@^16.13.1: 1745 | version "16.13.1" 1746 | resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" 1747 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1748 | 1749 | react-refresh@^0.14.0: 1750 | version "0.14.0" 1751 | resolved "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz" 1752 | integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== 1753 | 1754 | react@^18.2.0: 1755 | version "18.2.0" 1756 | resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" 1757 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1758 | dependencies: 1759 | loose-envify "^1.1.0" 1760 | 1761 | read-cache@^1.0.0: 1762 | version "1.0.0" 1763 | resolved "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" 1764 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== 1765 | dependencies: 1766 | pify "^2.3.0" 1767 | 1768 | readdirp@~3.6.0: 1769 | version "3.6.0" 1770 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" 1771 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1772 | dependencies: 1773 | picomatch "^2.2.1" 1774 | 1775 | regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: 1776 | version "1.5.0" 1777 | resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz" 1778 | integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== 1779 | dependencies: 1780 | call-bind "^1.0.2" 1781 | define-properties "^1.2.0" 1782 | functions-have-names "^1.2.3" 1783 | 1784 | resolve-from@^4.0.0: 1785 | version "4.0.0" 1786 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" 1787 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1788 | 1789 | resolve@^1.1.7: 1790 | version "1.22.4" 1791 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz" 1792 | integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg== 1793 | dependencies: 1794 | is-core-module "^2.13.0" 1795 | path-parse "^1.0.7" 1796 | supports-preserve-symlinks-flag "^1.0.0" 1797 | 1798 | resolve@^1.22.2: 1799 | version "1.22.4" 1800 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.4.tgz" 1801 | integrity sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg== 1802 | dependencies: 1803 | is-core-module "^2.13.0" 1804 | path-parse "^1.0.7" 1805 | supports-preserve-symlinks-flag "^1.0.0" 1806 | 1807 | resolve@^2.0.0-next.4: 1808 | version "2.0.0-next.4" 1809 | resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz" 1810 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1811 | dependencies: 1812 | is-core-module "^2.9.0" 1813 | path-parse "^1.0.7" 1814 | supports-preserve-symlinks-flag "^1.0.0" 1815 | 1816 | reusify@^1.0.4: 1817 | version "1.0.4" 1818 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" 1819 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1820 | 1821 | rimraf@^3.0.2: 1822 | version "3.0.2" 1823 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 1824 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1825 | dependencies: 1826 | glob "^7.1.3" 1827 | 1828 | rollup@^3.27.1: 1829 | version "3.28.0" 1830 | resolved "https://registry.npmjs.org/rollup/-/rollup-3.28.0.tgz" 1831 | integrity sha512-d7zhvo1OUY2SXSM6pfNjgD5+d0Nz87CUp4mt8l/GgVP3oBsPwzNvSzyu1me6BSG9JIgWNTVcafIXBIyM8yQ3yw== 1832 | optionalDependencies: 1833 | fsevents "~2.3.2" 1834 | 1835 | run-parallel@^1.1.9: 1836 | version "1.2.0" 1837 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" 1838 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1839 | dependencies: 1840 | queue-microtask "^1.2.2" 1841 | 1842 | safe-array-concat@^1.0.0: 1843 | version "1.0.0" 1844 | resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz" 1845 | integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== 1846 | dependencies: 1847 | call-bind "^1.0.2" 1848 | get-intrinsic "^1.2.0" 1849 | has-symbols "^1.0.3" 1850 | isarray "^2.0.5" 1851 | 1852 | safe-regex-test@^1.0.0: 1853 | version "1.0.0" 1854 | resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz" 1855 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1856 | dependencies: 1857 | call-bind "^1.0.2" 1858 | get-intrinsic "^1.1.3" 1859 | is-regex "^1.1.4" 1860 | 1861 | scheduler@^0.23.0: 1862 | version "0.23.0" 1863 | resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz" 1864 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1865 | dependencies: 1866 | loose-envify "^1.1.0" 1867 | 1868 | semver@^6.3.1: 1869 | version "6.3.1" 1870 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" 1871 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 1872 | 1873 | shebang-command@^2.0.0: 1874 | version "2.0.0" 1875 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 1876 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1877 | dependencies: 1878 | shebang-regex "^3.0.0" 1879 | 1880 | shebang-regex@^3.0.0: 1881 | version "3.0.0" 1882 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 1883 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1884 | 1885 | side-channel@^1.0.4: 1886 | version "1.0.4" 1887 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" 1888 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1889 | dependencies: 1890 | call-bind "^1.0.0" 1891 | get-intrinsic "^1.0.2" 1892 | object-inspect "^1.9.0" 1893 | 1894 | source-map-js@^1.0.2: 1895 | version "1.0.2" 1896 | resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" 1897 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1898 | 1899 | string.prototype.matchall@^4.0.8: 1900 | version "4.0.8" 1901 | resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz" 1902 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 1903 | dependencies: 1904 | call-bind "^1.0.2" 1905 | define-properties "^1.1.4" 1906 | es-abstract "^1.20.4" 1907 | get-intrinsic "^1.1.3" 1908 | has-symbols "^1.0.3" 1909 | internal-slot "^1.0.3" 1910 | regexp.prototype.flags "^1.4.3" 1911 | side-channel "^1.0.4" 1912 | 1913 | string.prototype.trim@^1.2.7: 1914 | version "1.2.7" 1915 | resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz" 1916 | integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== 1917 | dependencies: 1918 | call-bind "^1.0.2" 1919 | define-properties "^1.1.4" 1920 | es-abstract "^1.20.4" 1921 | 1922 | string.prototype.trimend@^1.0.6: 1923 | version "1.0.6" 1924 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz" 1925 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 1926 | dependencies: 1927 | call-bind "^1.0.2" 1928 | define-properties "^1.1.4" 1929 | es-abstract "^1.20.4" 1930 | 1931 | string.prototype.trimstart@^1.0.6: 1932 | version "1.0.6" 1933 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz" 1934 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 1935 | dependencies: 1936 | call-bind "^1.0.2" 1937 | define-properties "^1.1.4" 1938 | es-abstract "^1.20.4" 1939 | 1940 | strip-ansi@^6.0.1: 1941 | version "6.0.1" 1942 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 1943 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1944 | dependencies: 1945 | ansi-regex "^5.0.1" 1946 | 1947 | strip-json-comments@^3.1.1: 1948 | version "3.1.1" 1949 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 1950 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1951 | 1952 | sucrase@^3.32.0: 1953 | version "3.34.0" 1954 | resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz" 1955 | integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== 1956 | dependencies: 1957 | "@jridgewell/gen-mapping" "^0.3.2" 1958 | commander "^4.0.0" 1959 | glob "7.1.6" 1960 | lines-and-columns "^1.1.6" 1961 | mz "^2.7.0" 1962 | pirates "^4.0.1" 1963 | ts-interface-checker "^0.1.9" 1964 | 1965 | supports-color@^5.3.0: 1966 | version "5.5.0" 1967 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 1968 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1969 | dependencies: 1970 | has-flag "^3.0.0" 1971 | 1972 | supports-color@^7.1.0: 1973 | version "7.2.0" 1974 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 1975 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1976 | dependencies: 1977 | has-flag "^4.0.0" 1978 | 1979 | supports-preserve-symlinks-flag@^1.0.0: 1980 | version "1.0.0" 1981 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 1982 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1983 | 1984 | tailwindcss@^3.3.3: 1985 | version "3.3.3" 1986 | resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz" 1987 | integrity sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w== 1988 | dependencies: 1989 | "@alloc/quick-lru" "^5.2.0" 1990 | arg "^5.0.2" 1991 | chokidar "^3.5.3" 1992 | didyoumean "^1.2.2" 1993 | dlv "^1.1.3" 1994 | fast-glob "^3.2.12" 1995 | glob-parent "^6.0.2" 1996 | is-glob "^4.0.3" 1997 | jiti "^1.18.2" 1998 | lilconfig "^2.1.0" 1999 | micromatch "^4.0.5" 2000 | normalize-path "^3.0.0" 2001 | object-hash "^3.0.0" 2002 | picocolors "^1.0.0" 2003 | postcss "^8.4.23" 2004 | postcss-import "^15.1.0" 2005 | postcss-js "^4.0.1" 2006 | postcss-load-config "^4.0.1" 2007 | postcss-nested "^6.0.1" 2008 | postcss-selector-parser "^6.0.11" 2009 | resolve "^1.22.2" 2010 | sucrase "^3.32.0" 2011 | 2012 | text-table@^0.2.0: 2013 | version "0.2.0" 2014 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" 2015 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2016 | 2017 | thenify-all@^1.0.0: 2018 | version "1.6.0" 2019 | resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz" 2020 | integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== 2021 | dependencies: 2022 | thenify ">= 3.1.0 < 4" 2023 | 2024 | "thenify@>= 3.1.0 < 4": 2025 | version "3.3.1" 2026 | resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz" 2027 | integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== 2028 | dependencies: 2029 | any-promise "^1.0.0" 2030 | 2031 | to-fast-properties@^2.0.0: 2032 | version "2.0.0" 2033 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" 2034 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2035 | 2036 | to-regex-range@^5.0.1: 2037 | version "5.0.1" 2038 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 2039 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2040 | dependencies: 2041 | is-number "^7.0.0" 2042 | 2043 | ts-interface-checker@^0.1.9: 2044 | version "0.1.13" 2045 | resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz" 2046 | integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== 2047 | 2048 | type-check@^0.4.0, type-check@~0.4.0: 2049 | version "0.4.0" 2050 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" 2051 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2052 | dependencies: 2053 | prelude-ls "^1.2.1" 2054 | 2055 | type-fest@^0.20.2: 2056 | version "0.20.2" 2057 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" 2058 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2059 | 2060 | typed-array-buffer@^1.0.0: 2061 | version "1.0.0" 2062 | resolved "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz" 2063 | integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== 2064 | dependencies: 2065 | call-bind "^1.0.2" 2066 | get-intrinsic "^1.2.1" 2067 | is-typed-array "^1.1.10" 2068 | 2069 | typed-array-byte-length@^1.0.0: 2070 | version "1.0.0" 2071 | resolved "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz" 2072 | integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== 2073 | dependencies: 2074 | call-bind "^1.0.2" 2075 | for-each "^0.3.3" 2076 | has-proto "^1.0.1" 2077 | is-typed-array "^1.1.10" 2078 | 2079 | typed-array-byte-offset@^1.0.0: 2080 | version "1.0.0" 2081 | resolved "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz" 2082 | integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== 2083 | dependencies: 2084 | available-typed-arrays "^1.0.5" 2085 | call-bind "^1.0.2" 2086 | for-each "^0.3.3" 2087 | has-proto "^1.0.1" 2088 | is-typed-array "^1.1.10" 2089 | 2090 | typed-array-length@^1.0.4: 2091 | version "1.0.4" 2092 | resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz" 2093 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 2094 | dependencies: 2095 | call-bind "^1.0.2" 2096 | for-each "^0.3.3" 2097 | is-typed-array "^1.1.9" 2098 | 2099 | unbox-primitive@^1.0.2: 2100 | version "1.0.2" 2101 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" 2102 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2103 | dependencies: 2104 | call-bind "^1.0.2" 2105 | has-bigints "^1.0.2" 2106 | has-symbols "^1.0.3" 2107 | which-boxed-primitive "^1.0.2" 2108 | 2109 | update-browserslist-db@^1.0.11: 2110 | version "1.0.11" 2111 | resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz" 2112 | integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== 2113 | dependencies: 2114 | escalade "^3.1.1" 2115 | picocolors "^1.0.0" 2116 | 2117 | uri-js@^4.2.2: 2118 | version "4.4.1" 2119 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" 2120 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2121 | dependencies: 2122 | punycode "^2.1.0" 2123 | 2124 | util-deprecate@^1.0.2: 2125 | version "1.0.2" 2126 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 2127 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2128 | 2129 | vite@^4.2.0, vite@^4.4.5: 2130 | version "4.4.9" 2131 | resolved "https://registry.npmjs.org/vite/-/vite-4.4.9.tgz" 2132 | integrity sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA== 2133 | dependencies: 2134 | esbuild "^0.18.10" 2135 | postcss "^8.4.27" 2136 | rollup "^3.27.1" 2137 | optionalDependencies: 2138 | fsevents "~2.3.2" 2139 | 2140 | which-boxed-primitive@^1.0.2: 2141 | version "1.0.2" 2142 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" 2143 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2144 | dependencies: 2145 | is-bigint "^1.0.1" 2146 | is-boolean-object "^1.1.0" 2147 | is-number-object "^1.0.4" 2148 | is-string "^1.0.5" 2149 | is-symbol "^1.0.3" 2150 | 2151 | which-typed-array@^1.1.10, which-typed-array@^1.1.11: 2152 | version "1.1.11" 2153 | resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz" 2154 | integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== 2155 | dependencies: 2156 | available-typed-arrays "^1.0.5" 2157 | call-bind "^1.0.2" 2158 | for-each "^0.3.3" 2159 | gopd "^1.0.1" 2160 | has-tostringtag "^1.0.0" 2161 | 2162 | which@^2.0.1: 2163 | version "2.0.2" 2164 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 2165 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2166 | dependencies: 2167 | isexe "^2.0.0" 2168 | 2169 | wrappy@1: 2170 | version "1.0.2" 2171 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 2172 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2173 | 2174 | yallist@^3.0.2: 2175 | version "3.1.1" 2176 | resolved "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" 2177 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2178 | 2179 | yaml@^2.1.1: 2180 | version "2.3.1" 2181 | resolved "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz" 2182 | integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== 2183 | 2184 | yocto-queue@^0.1.0: 2185 | version "0.1.0" 2186 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" 2187 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2188 | --------------------------------------------------------------------------------