├── .gitignore ├── README.md ├── assets └── react.svg ├── entrypoints ├── background.ts ├── content.ts └── popup │ ├── App.css │ ├── App.tsx │ ├── index.html │ ├── main.tsx │ └── style.css ├── package.json ├── pnpm-lock.yaml ├── public ├── icon │ ├── 128.png │ ├── 16.png │ ├── 32.png │ ├── 48.png │ └── 96.png └── wxt.svg ├── tsconfig.json └── wxt.config.ts /.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 | .output 12 | stats.html 13 | stats-*.json 14 | .wxt 15 | web-ext.config.ts 16 | 17 | # Editor directories and files 18 | .vscode/* 19 | !.vscode/extensions.json 20 | .idea 21 | .DS_Store 22 | *.suo 23 | *.ntvs* 24 | *.njsproj 25 | *.sln 26 | *.sw? 27 | 28 | .env 29 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WXT + React 2 | 3 | This template should help get you started developing with React in WXT. 4 | -------------------------------------------------------------------------------- /assets/react.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /entrypoints/background.ts: -------------------------------------------------------------------------------- 1 | export default defineBackground(() => { 2 | console.log('Hello background!', { id: browser.runtime.id }); 3 | }); 4 | -------------------------------------------------------------------------------- /entrypoints/content.ts: -------------------------------------------------------------------------------- 1 | export default defineContentScript({ 2 | matches: ['*://*.google.com/*'], 3 | main() { 4 | console.log('Hello content.'); 5 | }, 6 | }); 7 | -------------------------------------------------------------------------------- /entrypoints/popup/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | max-width: 1280px; 3 | margin: 0 auto; 4 | padding: 2rem; 5 | text-align: center; 6 | } 7 | 8 | .logo { 9 | height: 6em; 10 | padding: 1.5em; 11 | will-change: filter; 12 | transition: filter 300ms; 13 | } 14 | .logo:hover { 15 | filter: drop-shadow(0 0 2em #54bc4ae0); 16 | } 17 | .logo.react:hover { 18 | filter: drop-shadow(0 0 2em #61dafbaa); 19 | } 20 | 21 | @keyframes logo-spin { 22 | from { 23 | transform: rotate(0deg); 24 | } 25 | to { 26 | transform: rotate(360deg); 27 | } 28 | } 29 | 30 | @media (prefers-reduced-motion: no-preference) { 31 | a:nth-of-type(2) .logo { 32 | animation: logo-spin infinite 20s linear; 33 | } 34 | } 35 | 36 | .card { 37 | padding: 2em; 38 | } 39 | 40 | .read-the-docs { 41 | color: #888; 42 | } 43 | -------------------------------------------------------------------------------- /entrypoints/popup/App.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from 'react'; 2 | import reactLogo from '@/assets/react.svg'; 3 | import wxtLogo from '/wxt.svg'; 4 | import './App.css'; 5 | 6 | function App() { 7 | const [count, setCount] = useState(0); 8 | 9 | return ( 10 | <> 11 |
12 | 13 | WXT logo 14 | 15 | 16 | React logo 17 | 18 |
19 |

WXT + React

20 |
21 | 24 |

25 | Edit src/App.tsx and save to test HMR 26 |

27 |
28 |

29 | Click on the WXT and React logos to learn more 30 |

31 | 32 | ); 33 | } 34 | 35 | export default App; 36 | -------------------------------------------------------------------------------- /entrypoints/popup/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Default Popup Title 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /entrypoints/popup/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import App from './App.tsx'; 4 | import './style.css'; 5 | 6 | ReactDOM.createRoot(document.getElementById('root')!).render( 7 | 8 | 9 | , 10 | ); 11 | -------------------------------------------------------------------------------- /entrypoints/popup/style.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; 3 | line-height: 1.5; 4 | font-weight: 400; 5 | 6 | color-scheme: light dark; 7 | color: rgba(255, 255, 255, 0.87); 8 | background-color: #242424; 9 | 10 | font-synthesis: none; 11 | text-rendering: optimizeLegibility; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | -webkit-text-size-adjust: 100%; 15 | } 16 | 17 | a { 18 | font-weight: 500; 19 | color: #646cff; 20 | text-decoration: inherit; 21 | } 22 | a:hover { 23 | color: #535bf2; 24 | } 25 | 26 | body { 27 | margin: 0; 28 | display: flex; 29 | place-items: center; 30 | min-width: 320px; 31 | min-height: 100vh; 32 | } 33 | 34 | h1 { 35 | font-size: 3.2em; 36 | line-height: 1.1; 37 | } 38 | 39 | button { 40 | border-radius: 8px; 41 | border: 1px solid transparent; 42 | padding: 0.6em 1.2em; 43 | font-size: 1em; 44 | font-weight: 500; 45 | font-family: inherit; 46 | background-color: #1a1a1a; 47 | cursor: pointer; 48 | transition: border-color 0.25s; 49 | } 50 | button:hover { 51 | border-color: #646cff; 52 | } 53 | button:focus, 54 | button:focus-visible { 55 | outline: 4px auto -webkit-focus-ring-color; 56 | } 57 | 58 | @media (prefers-color-scheme: light) { 59 | :root { 60 | color: #213547; 61 | background-color: #ffffff; 62 | } 63 | a:hover { 64 | color: #747bff; 65 | } 66 | button { 67 | background-color: #f9f9f9; 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wxt-react-starter", 3 | "description": "manifest.json description", 4 | "private": true, 5 | "version": "0.0.0", 6 | "type": "module", 7 | "scripts": { 8 | "dev": "wxt", 9 | "dev:edge": "wxt -b edge", 10 | "dev:firefox": "wxt -b firefox", 11 | "build": "wxt build", 12 | "build:firefox": "wxt build -b firefox", 13 | "zip": "wxt zip", 14 | "zip:firefox": "wxt zip -b firefox", 15 | "compile": "tsc --noEmit", 16 | "postinstall": "wxt prepare" 17 | }, 18 | "dependencies": { 19 | "react": "^19.0.0", 20 | "react-dom": "^19.0.0" 21 | }, 22 | "devDependencies": { 23 | "@types/react": "^19.0.1", 24 | "@types/react-dom": "^19.0.2", 25 | "@wxt-dev/module-react": "^1.1.2", 26 | "typescript": "^5.6.3", 27 | "wxt": "^0.20.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | react: 12 | specifier: ^19.0.0 13 | version: 19.1.0 14 | react-dom: 15 | specifier: ^19.0.0 16 | version: 19.1.0(react@19.1.0) 17 | devDependencies: 18 | '@types/react': 19 | specifier: ^19.0.1 20 | version: 19.0.12 21 | '@types/react-dom': 22 | specifier: ^19.0.2 23 | version: 19.0.4(@types/react@19.0.12) 24 | '@wxt-dev/module-react': 25 | specifier: ^1.1.2 26 | version: 1.1.3(vite@6.2.4(@types/node@22.13.15)(jiti@2.4.2))(wxt@0.20.0(@types/node@22.13.15)(jiti@2.4.2)(rollup@4.38.0)) 27 | typescript: 28 | specifier: ^5.6.3 29 | version: 5.8.2 30 | wxt: 31 | specifier: ^0.20.0 32 | version: 0.20.0(@types/node@22.13.15)(jiti@2.4.2)(rollup@4.38.0) 33 | 34 | packages: 35 | 36 | '@1natsu/wait-element@4.1.2': 37 | resolution: {integrity: sha512-qWxSJD+Q5b8bKOvESFifvfZ92DuMsY+03SBNjTO34ipJLP6mZ9yK4bQz/vlh48aEQXoJfaZBqUwKL5BdI5iiWw==} 38 | 39 | '@aklinker1/rollup-plugin-visualizer@5.12.0': 40 | resolution: {integrity: sha512-X24LvEGw6UFmy0lpGJDmXsMyBD58XmX1bbwsaMLhNoM+UMQfQ3b2RtC+nz4b/NoRK5r6QJSKJHBNVeUdwqybaQ==} 41 | engines: {node: '>=14'} 42 | hasBin: true 43 | peerDependencies: 44 | rollup: 2.x || 3.x || 4.x 45 | peerDependenciesMeta: 46 | rollup: 47 | optional: true 48 | 49 | '@ampproject/remapping@2.3.0': 50 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 51 | engines: {node: '>=6.0.0'} 52 | 53 | '@babel/code-frame@7.26.2': 54 | resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 55 | engines: {node: '>=6.9.0'} 56 | 57 | '@babel/compat-data@7.26.8': 58 | resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==} 59 | engines: {node: '>=6.9.0'} 60 | 61 | '@babel/core@7.26.10': 62 | resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==} 63 | engines: {node: '>=6.9.0'} 64 | 65 | '@babel/generator@7.27.0': 66 | resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==} 67 | engines: {node: '>=6.9.0'} 68 | 69 | '@babel/helper-compilation-targets@7.27.0': 70 | resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==} 71 | engines: {node: '>=6.9.0'} 72 | 73 | '@babel/helper-module-imports@7.25.9': 74 | resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} 75 | engines: {node: '>=6.9.0'} 76 | 77 | '@babel/helper-module-transforms@7.26.0': 78 | resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} 79 | engines: {node: '>=6.9.0'} 80 | peerDependencies: 81 | '@babel/core': ^7.0.0 82 | 83 | '@babel/helper-plugin-utils@7.26.5': 84 | resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==} 85 | engines: {node: '>=6.9.0'} 86 | 87 | '@babel/helper-string-parser@7.25.9': 88 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 89 | engines: {node: '>=6.9.0'} 90 | 91 | '@babel/helper-validator-identifier@7.25.9': 92 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 93 | engines: {node: '>=6.9.0'} 94 | 95 | '@babel/helper-validator-option@7.25.9': 96 | resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} 97 | engines: {node: '>=6.9.0'} 98 | 99 | '@babel/helpers@7.27.0': 100 | resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==} 101 | engines: {node: '>=6.9.0'} 102 | 103 | '@babel/parser@7.27.0': 104 | resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} 105 | engines: {node: '>=6.0.0'} 106 | hasBin: true 107 | 108 | '@babel/plugin-transform-react-jsx-self@7.25.9': 109 | resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} 110 | engines: {node: '>=6.9.0'} 111 | peerDependencies: 112 | '@babel/core': ^7.0.0-0 113 | 114 | '@babel/plugin-transform-react-jsx-source@7.25.9': 115 | resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} 116 | engines: {node: '>=6.9.0'} 117 | peerDependencies: 118 | '@babel/core': ^7.0.0-0 119 | 120 | '@babel/runtime@7.24.7': 121 | resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==} 122 | engines: {node: '>=6.9.0'} 123 | 124 | '@babel/template@7.27.0': 125 | resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==} 126 | engines: {node: '>=6.9.0'} 127 | 128 | '@babel/traverse@7.27.0': 129 | resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==} 130 | engines: {node: '>=6.9.0'} 131 | 132 | '@babel/types@7.27.0': 133 | resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} 134 | engines: {node: '>=6.9.0'} 135 | 136 | '@devicefarmer/adbkit-logcat@2.1.3': 137 | resolution: {integrity: sha512-yeaGFjNBc/6+svbDeul1tNHtNChw6h8pSHAt5D+JsedUrMTN7tla7B15WLDyekxsuS2XlZHRxpuC6m92wiwCNw==} 138 | engines: {node: '>= 4'} 139 | 140 | '@devicefarmer/adbkit-monkey@1.2.1': 141 | resolution: {integrity: sha512-ZzZY/b66W2Jd6NHbAhLyDWOEIBWC11VizGFk7Wx7M61JZRz7HR9Cq5P+65RKWUU7u6wgsE8Lmh9nE4Mz+U2eTg==} 142 | engines: {node: '>= 0.10.4'} 143 | 144 | '@devicefarmer/adbkit@3.2.6': 145 | resolution: {integrity: sha512-8lO1hSeTgtxcOHhp4tTWq/JaOysp5KNbbyFoxNEBnwkCDZu/Bji3ZfOaG++Riv9jN6c9bgdLBOZqJTC5VJPRKQ==} 146 | engines: {node: '>= 0.10.4'} 147 | hasBin: true 148 | 149 | '@esbuild/aix-ppc64@0.25.2': 150 | resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==} 151 | engines: {node: '>=18'} 152 | cpu: [ppc64] 153 | os: [aix] 154 | 155 | '@esbuild/android-arm64@0.25.2': 156 | resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==} 157 | engines: {node: '>=18'} 158 | cpu: [arm64] 159 | os: [android] 160 | 161 | '@esbuild/android-arm@0.25.2': 162 | resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==} 163 | engines: {node: '>=18'} 164 | cpu: [arm] 165 | os: [android] 166 | 167 | '@esbuild/android-x64@0.25.2': 168 | resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==} 169 | engines: {node: '>=18'} 170 | cpu: [x64] 171 | os: [android] 172 | 173 | '@esbuild/darwin-arm64@0.25.2': 174 | resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==} 175 | engines: {node: '>=18'} 176 | cpu: [arm64] 177 | os: [darwin] 178 | 179 | '@esbuild/darwin-x64@0.25.2': 180 | resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==} 181 | engines: {node: '>=18'} 182 | cpu: [x64] 183 | os: [darwin] 184 | 185 | '@esbuild/freebsd-arm64@0.25.2': 186 | resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==} 187 | engines: {node: '>=18'} 188 | cpu: [arm64] 189 | os: [freebsd] 190 | 191 | '@esbuild/freebsd-x64@0.25.2': 192 | resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==} 193 | engines: {node: '>=18'} 194 | cpu: [x64] 195 | os: [freebsd] 196 | 197 | '@esbuild/linux-arm64@0.25.2': 198 | resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==} 199 | engines: {node: '>=18'} 200 | cpu: [arm64] 201 | os: [linux] 202 | 203 | '@esbuild/linux-arm@0.25.2': 204 | resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==} 205 | engines: {node: '>=18'} 206 | cpu: [arm] 207 | os: [linux] 208 | 209 | '@esbuild/linux-ia32@0.25.2': 210 | resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==} 211 | engines: {node: '>=18'} 212 | cpu: [ia32] 213 | os: [linux] 214 | 215 | '@esbuild/linux-loong64@0.25.2': 216 | resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==} 217 | engines: {node: '>=18'} 218 | cpu: [loong64] 219 | os: [linux] 220 | 221 | '@esbuild/linux-mips64el@0.25.2': 222 | resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==} 223 | engines: {node: '>=18'} 224 | cpu: [mips64el] 225 | os: [linux] 226 | 227 | '@esbuild/linux-ppc64@0.25.2': 228 | resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==} 229 | engines: {node: '>=18'} 230 | cpu: [ppc64] 231 | os: [linux] 232 | 233 | '@esbuild/linux-riscv64@0.25.2': 234 | resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==} 235 | engines: {node: '>=18'} 236 | cpu: [riscv64] 237 | os: [linux] 238 | 239 | '@esbuild/linux-s390x@0.25.2': 240 | resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==} 241 | engines: {node: '>=18'} 242 | cpu: [s390x] 243 | os: [linux] 244 | 245 | '@esbuild/linux-x64@0.25.2': 246 | resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==} 247 | engines: {node: '>=18'} 248 | cpu: [x64] 249 | os: [linux] 250 | 251 | '@esbuild/netbsd-arm64@0.25.2': 252 | resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==} 253 | engines: {node: '>=18'} 254 | cpu: [arm64] 255 | os: [netbsd] 256 | 257 | '@esbuild/netbsd-x64@0.25.2': 258 | resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==} 259 | engines: {node: '>=18'} 260 | cpu: [x64] 261 | os: [netbsd] 262 | 263 | '@esbuild/openbsd-arm64@0.25.2': 264 | resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==} 265 | engines: {node: '>=18'} 266 | cpu: [arm64] 267 | os: [openbsd] 268 | 269 | '@esbuild/openbsd-x64@0.25.2': 270 | resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==} 271 | engines: {node: '>=18'} 272 | cpu: [x64] 273 | os: [openbsd] 274 | 275 | '@esbuild/sunos-x64@0.25.2': 276 | resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==} 277 | engines: {node: '>=18'} 278 | cpu: [x64] 279 | os: [sunos] 280 | 281 | '@esbuild/win32-arm64@0.25.2': 282 | resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==} 283 | engines: {node: '>=18'} 284 | cpu: [arm64] 285 | os: [win32] 286 | 287 | '@esbuild/win32-ia32@0.25.2': 288 | resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==} 289 | engines: {node: '>=18'} 290 | cpu: [ia32] 291 | os: [win32] 292 | 293 | '@esbuild/win32-x64@0.25.2': 294 | resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==} 295 | engines: {node: '>=18'} 296 | cpu: [x64] 297 | os: [win32] 298 | 299 | '@jridgewell/gen-mapping@0.3.8': 300 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 301 | engines: {node: '>=6.0.0'} 302 | 303 | '@jridgewell/resolve-uri@3.1.2': 304 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 305 | engines: {node: '>=6.0.0'} 306 | 307 | '@jridgewell/set-array@1.2.1': 308 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 309 | engines: {node: '>=6.0.0'} 310 | 311 | '@jridgewell/sourcemap-codec@1.5.0': 312 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 313 | 314 | '@jridgewell/trace-mapping@0.3.25': 315 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 316 | 317 | '@nodelib/fs.scandir@2.1.5': 318 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 319 | engines: {node: '>= 8'} 320 | 321 | '@nodelib/fs.stat@2.0.5': 322 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 323 | engines: {node: '>= 8'} 324 | 325 | '@nodelib/fs.walk@1.2.8': 326 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 327 | engines: {node: '>= 8'} 328 | 329 | '@pnpm/config.env-replace@1.1.0': 330 | resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} 331 | engines: {node: '>=12.22.0'} 332 | 333 | '@pnpm/network.ca-file@1.0.2': 334 | resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} 335 | engines: {node: '>=12.22.0'} 336 | 337 | '@pnpm/npm-conf@2.3.1': 338 | resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==} 339 | engines: {node: '>=12'} 340 | 341 | '@rollup/rollup-android-arm-eabi@4.38.0': 342 | resolution: {integrity: sha512-ldomqc4/jDZu/xpYU+aRxo3V4mGCV9HeTgUBANI3oIQMOL+SsxB+S2lxMpkFp5UamSS3XuTMQVbsS24R4J4Qjg==} 343 | cpu: [arm] 344 | os: [android] 345 | 346 | '@rollup/rollup-android-arm64@4.38.0': 347 | resolution: {integrity: sha512-VUsgcy4GhhT7rokwzYQP+aV9XnSLkkhlEJ0St8pbasuWO/vwphhZQxYEKUP3ayeCYLhk6gEtacRpYP/cj3GjyQ==} 348 | cpu: [arm64] 349 | os: [android] 350 | 351 | '@rollup/rollup-darwin-arm64@4.38.0': 352 | resolution: {integrity: sha512-buA17AYXlW9Rn091sWMq1xGUvWQFOH4N1rqUxGJtEQzhChxWjldGCCup7r/wUnaI6Au8sKXpoh0xg58a7cgcpg==} 353 | cpu: [arm64] 354 | os: [darwin] 355 | 356 | '@rollup/rollup-darwin-x64@4.38.0': 357 | resolution: {integrity: sha512-Mgcmc78AjunP1SKXl624vVBOF2bzwNWFPMP4fpOu05vS0amnLcX8gHIge7q/lDAHy3T2HeR0TqrriZDQS2Woeg==} 358 | cpu: [x64] 359 | os: [darwin] 360 | 361 | '@rollup/rollup-freebsd-arm64@4.38.0': 362 | resolution: {integrity: sha512-zzJACgjLbQTsscxWqvrEQAEh28hqhebpRz5q/uUd1T7VTwUNZ4VIXQt5hE7ncs0GrF+s7d3S4on4TiXUY8KoQA==} 363 | cpu: [arm64] 364 | os: [freebsd] 365 | 366 | '@rollup/rollup-freebsd-x64@4.38.0': 367 | resolution: {integrity: sha512-hCY/KAeYMCyDpEE4pTETam0XZS4/5GXzlLgpi5f0IaPExw9kuB+PDTOTLuPtM10TlRG0U9OSmXJ+Wq9J39LvAg==} 368 | cpu: [x64] 369 | os: [freebsd] 370 | 371 | '@rollup/rollup-linux-arm-gnueabihf@4.38.0': 372 | resolution: {integrity: sha512-mimPH43mHl4JdOTD7bUMFhBdrg6f9HzMTOEnzRmXbOZqjijCw8LA5z8uL6LCjxSa67H2xiLFvvO67PT05PRKGg==} 373 | cpu: [arm] 374 | os: [linux] 375 | 376 | '@rollup/rollup-linux-arm-musleabihf@4.38.0': 377 | resolution: {integrity: sha512-tPiJtiOoNuIH8XGG8sWoMMkAMm98PUwlriOFCCbZGc9WCax+GLeVRhmaxjJtz6WxrPKACgrwoZ5ia/uapq3ZVg==} 378 | cpu: [arm] 379 | os: [linux] 380 | 381 | '@rollup/rollup-linux-arm64-gnu@4.38.0': 382 | resolution: {integrity: sha512-wZco59rIVuB0tjQS0CSHTTUcEde+pXQWugZVxWaQFdQQ1VYub/sTrNdY76D1MKdN2NB48JDuGABP6o6fqos8mA==} 383 | cpu: [arm64] 384 | os: [linux] 385 | 386 | '@rollup/rollup-linux-arm64-musl@4.38.0': 387 | resolution: {integrity: sha512-fQgqwKmW0REM4LomQ+87PP8w8xvU9LZfeLBKybeli+0yHT7VKILINzFEuggvnV9M3x1Ed4gUBmGUzCo/ikmFbQ==} 388 | cpu: [arm64] 389 | os: [linux] 390 | 391 | '@rollup/rollup-linux-loongarch64-gnu@4.38.0': 392 | resolution: {integrity: sha512-hz5oqQLXTB3SbXpfkKHKXLdIp02/w3M+ajp8p4yWOWwQRtHWiEOCKtc9U+YXahrwdk+3qHdFMDWR5k+4dIlddg==} 393 | cpu: [loong64] 394 | os: [linux] 395 | 396 | '@rollup/rollup-linux-powerpc64le-gnu@4.38.0': 397 | resolution: {integrity: sha512-NXqygK/dTSibQ+0pzxsL3r4Xl8oPqVoWbZV9niqOnIHV/J92fe65pOir0xjkUZDRSPyFRvu+4YOpJF9BZHQImw==} 398 | cpu: [ppc64] 399 | os: [linux] 400 | 401 | '@rollup/rollup-linux-riscv64-gnu@4.38.0': 402 | resolution: {integrity: sha512-GEAIabR1uFyvf/jW/5jfu8gjM06/4kZ1W+j1nWTSSB3w6moZEBm7iBtzwQ3a1Pxos2F7Gz+58aVEnZHU295QTg==} 403 | cpu: [riscv64] 404 | os: [linux] 405 | 406 | '@rollup/rollup-linux-riscv64-musl@4.38.0': 407 | resolution: {integrity: sha512-9EYTX+Gus2EGPbfs+fh7l95wVADtSQyYw4DfSBcYdUEAmP2lqSZY0Y17yX/3m5VKGGJ4UmIH5LHLkMJft3bYoA==} 408 | cpu: [riscv64] 409 | os: [linux] 410 | 411 | '@rollup/rollup-linux-s390x-gnu@4.38.0': 412 | resolution: {integrity: sha512-Mpp6+Z5VhB9VDk7RwZXoG2qMdERm3Jw07RNlXHE0bOnEeX+l7Fy4bg+NxfyN15ruuY3/7Vrbpm75J9QHFqj5+Q==} 413 | cpu: [s390x] 414 | os: [linux] 415 | 416 | '@rollup/rollup-linux-x64-gnu@4.38.0': 417 | resolution: {integrity: sha512-vPvNgFlZRAgO7rwncMeE0+8c4Hmc+qixnp00/Uv3ht2x7KYrJ6ERVd3/R0nUtlE6/hu7/HiiNHJ/rP6knRFt1w==} 418 | cpu: [x64] 419 | os: [linux] 420 | 421 | '@rollup/rollup-linux-x64-musl@4.38.0': 422 | resolution: {integrity: sha512-q5Zv+goWvQUGCaL7fU8NuTw8aydIL/C9abAVGCzRReuj5h30TPx4LumBtAidrVOtXnlB+RZkBtExMsfqkMfb8g==} 423 | cpu: [x64] 424 | os: [linux] 425 | 426 | '@rollup/rollup-win32-arm64-msvc@4.38.0': 427 | resolution: {integrity: sha512-u/Jbm1BU89Vftqyqbmxdq14nBaQjQX1HhmsdBWqSdGClNaKwhjsg5TpW+5Ibs1mb8Es9wJiMdl86BcmtUVXNZg==} 428 | cpu: [arm64] 429 | os: [win32] 430 | 431 | '@rollup/rollup-win32-ia32-msvc@4.38.0': 432 | resolution: {integrity: sha512-mqu4PzTrlpNHHbu5qleGvXJoGgHpChBlrBx/mEhTPpnAL1ZAYFlvHD7rLK839LLKQzqEQMFJfGrrOHItN4ZQqA==} 433 | cpu: [ia32] 434 | os: [win32] 435 | 436 | '@rollup/rollup-win32-x64-msvc@4.38.0': 437 | resolution: {integrity: sha512-jjqy3uWlecfB98Psxb5cD6Fny9Fupv9LrDSPTQZUROqjvZmcCqNu4UMl7qqhlUUGpwiAkotj6GYu4SZdcr/nLw==} 438 | cpu: [x64] 439 | os: [win32] 440 | 441 | '@sindresorhus/is@5.6.0': 442 | resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} 443 | engines: {node: '>=14.16'} 444 | 445 | '@szmarczak/http-timer@5.0.1': 446 | resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} 447 | engines: {node: '>=14.16'} 448 | 449 | '@types/babel__core@7.20.5': 450 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 451 | 452 | '@types/babel__generator@7.6.8': 453 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 454 | 455 | '@types/babel__template@7.4.4': 456 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 457 | 458 | '@types/babel__traverse@7.20.7': 459 | resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==} 460 | 461 | '@types/estree@1.0.7': 462 | resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} 463 | 464 | '@types/filesystem@0.0.36': 465 | resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==} 466 | 467 | '@types/filewriter@0.0.33': 468 | resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==} 469 | 470 | '@types/har-format@1.2.16': 471 | resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==} 472 | 473 | '@types/http-cache-semantics@4.0.4': 474 | resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} 475 | 476 | '@types/minimatch@3.0.5': 477 | resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} 478 | 479 | '@types/node@22.13.15': 480 | resolution: {integrity: sha512-imAbQEEbVni6i6h6Bd5xkCRwLqFc8hihCsi2GbtDoAtUcAFQ6Zs4pFXTZUUbroTkXdImczWM9AI8eZUuybXE3w==} 481 | 482 | '@types/react-dom@19.0.4': 483 | resolution: {integrity: sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==} 484 | peerDependencies: 485 | '@types/react': ^19.0.0 486 | 487 | '@types/react@19.0.12': 488 | resolution: {integrity: sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA==} 489 | 490 | '@types/yauzl@2.10.3': 491 | resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} 492 | 493 | '@vitejs/plugin-react@4.3.4': 494 | resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} 495 | engines: {node: ^14.18.0 || >=16.0.0} 496 | peerDependencies: 497 | vite: ^4.2.0 || ^5.0.0 || ^6.0.0 498 | 499 | '@webext-core/fake-browser@1.3.2': 500 | resolution: {integrity: sha512-jFyPWWz+VkHAC9DRIiIPOyu6X/KlC8dYqSKweHz6tsDb86QawtVgZSpYcM+GOQBlZc5DHFo92jJ7cIq4uBnU0A==} 501 | 502 | '@webext-core/isolated-element@1.1.2': 503 | resolution: {integrity: sha512-CNHYhsIR8TPkPb+4yqTIuzaGnVn/Fshev5fyoPW+/8Cyc93tJbCjP9PC1XSK6fDWu+xASdPHLZaoa2nWAYoxeQ==} 504 | 505 | '@webext-core/match-patterns@1.0.3': 506 | resolution: {integrity: sha512-NY39ACqCxdKBmHgw361M9pfJma8e4AZo20w9AY+5ZjIj1W2dvXC8J31G5fjfOGbulW9w4WKpT8fPooi0mLkn9A==} 507 | 508 | '@wxt-dev/browser@0.0.310': 509 | resolution: {integrity: sha512-0uQlrxUmbEczWFo2KGFTmJlQWpODqMDQOmQmIQGjQiiDs2aE4J6EsVmtmSSCXGMMYQ+jvNR+azf689xOWo0JGw==} 510 | 511 | '@wxt-dev/module-react@1.1.3': 512 | resolution: {integrity: sha512-ede2FLS3sdJwtyI61jvY1UiF194ouv3wxm+fCYjfP4FfvoXQbif8UuusYBC0KSa/L2AL9Cfa/lEvsdNYrKFUaA==} 513 | peerDependencies: 514 | wxt: '>=0.19.16' 515 | 516 | '@wxt-dev/storage@1.1.1': 517 | resolution: {integrity: sha512-H1vYWeoWz03INV4r+sLYDFil88b3rgMMfgGp/EXy3bLbveJeiMiFs/G0bsBN2Ra87Iqlf2oVYRb/ABQpAugbew==} 518 | 519 | acorn@8.14.1: 520 | resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} 521 | engines: {node: '>=0.4.0'} 522 | hasBin: true 523 | 524 | adm-zip@0.5.16: 525 | resolution: {integrity: sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==} 526 | engines: {node: '>=12.0'} 527 | 528 | ansi-align@3.0.1: 529 | resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 530 | 531 | ansi-escapes@7.0.0: 532 | resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} 533 | engines: {node: '>=18'} 534 | 535 | ansi-regex@5.0.1: 536 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 537 | engines: {node: '>=8'} 538 | 539 | ansi-regex@6.1.0: 540 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 541 | engines: {node: '>=12'} 542 | 543 | ansi-styles@4.3.0: 544 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 545 | engines: {node: '>=8'} 546 | 547 | ansi-styles@6.2.1: 548 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 549 | engines: {node: '>=12'} 550 | 551 | any-promise@1.3.0: 552 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 553 | 554 | array-differ@4.0.0: 555 | resolution: {integrity: sha512-Q6VPTLMsmXZ47ENG3V+wQyZS1ZxXMxFyYzA+Z/GMrJ6yIutAIEf9wTyroTzmGjNfox9/h3GdGBCVh43GVFx4Uw==} 556 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 557 | 558 | array-union@3.0.1: 559 | resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} 560 | engines: {node: '>=12'} 561 | 562 | async-mutex@0.5.0: 563 | resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==} 564 | 565 | async@3.2.6: 566 | resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} 567 | 568 | at-least-node@1.0.0: 569 | resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} 570 | engines: {node: '>= 4.0.0'} 571 | 572 | balanced-match@1.0.2: 573 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 574 | 575 | base64-js@1.5.1: 576 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 577 | 578 | big-integer@1.6.52: 579 | resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} 580 | engines: {node: '>=0.6'} 581 | 582 | bl@5.1.0: 583 | resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} 584 | 585 | bluebird@3.7.2: 586 | resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} 587 | 588 | boolbase@1.0.0: 589 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 590 | 591 | boxen@7.1.1: 592 | resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} 593 | engines: {node: '>=14.16'} 594 | 595 | bplist-parser@0.2.0: 596 | resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} 597 | engines: {node: '>= 5.10.0'} 598 | 599 | brace-expansion@1.1.11: 600 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 601 | 602 | brace-expansion@2.0.1: 603 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 604 | 605 | braces@3.0.3: 606 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 607 | engines: {node: '>=8'} 608 | 609 | browserslist@4.24.4: 610 | resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} 611 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 612 | hasBin: true 613 | 614 | buffer-crc32@0.2.13: 615 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} 616 | 617 | buffer-from@1.1.2: 618 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 619 | 620 | buffer@6.0.3: 621 | resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 622 | 623 | bundle-name@3.0.0: 624 | resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} 625 | engines: {node: '>=12'} 626 | 627 | bundle-name@4.1.0: 628 | resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} 629 | engines: {node: '>=18'} 630 | 631 | bunyan@1.8.15: 632 | resolution: {integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==} 633 | engines: {'0': node >=0.10.0} 634 | hasBin: true 635 | 636 | c12@3.0.2: 637 | resolution: {integrity: sha512-6Tzk1/TNeI3WBPpK0j/Ss4+gPj3PUJYbWl/MWDJBThFvwNGNkXtd7Cz8BJtD4aRwoGHtzQD0SnxamgUiBH0/Nw==} 638 | peerDependencies: 639 | magicast: ^0.3.5 640 | peerDependenciesMeta: 641 | magicast: 642 | optional: true 643 | 644 | cac@6.7.14: 645 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 646 | engines: {node: '>=8'} 647 | 648 | cacheable-lookup@7.0.0: 649 | resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} 650 | engines: {node: '>=14.16'} 651 | 652 | cacheable-request@10.2.14: 653 | resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} 654 | engines: {node: '>=14.16'} 655 | 656 | camelcase@7.0.1: 657 | resolution: {integrity: sha512-xlx1yCK2Oc1APsPXDL2LdlNP6+uu8OCDdhOBSVT279M/S+y75O30C2VuD8T2ogdePBBl7PfPF4504tnLgX3zfw==} 658 | engines: {node: '>=14.16'} 659 | 660 | caniuse-lite@1.0.30001707: 661 | resolution: {integrity: sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==} 662 | 663 | chalk@4.1.2: 664 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 665 | engines: {node: '>=10'} 666 | 667 | chalk@5.4.1: 668 | resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 669 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 670 | 671 | chokidar@4.0.3: 672 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 673 | engines: {node: '>= 14.16.0'} 674 | 675 | chrome-launcher@1.1.0: 676 | resolution: {integrity: sha512-rJYWeEAERwWIr3c3mEVXwNiODPEdMRlRxHc47B1qHPOolHZnkj7rMv1QSUfPoG6MgatWj5AxSpnKKR4QEwEQIQ==} 677 | engines: {node: '>=12.13.0'} 678 | hasBin: true 679 | 680 | ci-info@3.9.0: 681 | resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} 682 | engines: {node: '>=8'} 683 | 684 | ci-info@4.2.0: 685 | resolution: {integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==} 686 | engines: {node: '>=8'} 687 | 688 | citty@0.1.6: 689 | resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} 690 | 691 | cli-boxes@3.0.0: 692 | resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 693 | engines: {node: '>=10'} 694 | 695 | cli-cursor@4.0.0: 696 | resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} 697 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 698 | 699 | cli-cursor@5.0.0: 700 | resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} 701 | engines: {node: '>=18'} 702 | 703 | cli-highlight@2.1.11: 704 | resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} 705 | engines: {node: '>=8.0.0', npm: '>=5.0.0'} 706 | hasBin: true 707 | 708 | cli-spinners@2.9.2: 709 | resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 710 | engines: {node: '>=6'} 711 | 712 | cli-truncate@4.0.0: 713 | resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} 714 | engines: {node: '>=18'} 715 | 716 | cliui@7.0.4: 717 | resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} 718 | 719 | cliui@8.0.1: 720 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 721 | engines: {node: '>=12'} 722 | 723 | clone@1.0.4: 724 | resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 725 | engines: {node: '>=0.8'} 726 | 727 | color-convert@2.0.1: 728 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 729 | engines: {node: '>=7.0.0'} 730 | 731 | color-name@1.1.4: 732 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 733 | 734 | colorette@2.0.20: 735 | resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 736 | 737 | commander@2.9.0: 738 | resolution: {integrity: sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A==} 739 | engines: {node: '>= 0.6.x'} 740 | 741 | commander@9.5.0: 742 | resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} 743 | engines: {node: ^12.20.0 || >=14} 744 | 745 | concat-map@0.0.1: 746 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 747 | 748 | concat-stream@1.6.2: 749 | resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} 750 | engines: {'0': node >= 0.8} 751 | 752 | confbox@0.1.8: 753 | resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 754 | 755 | confbox@0.2.1: 756 | resolution: {integrity: sha512-hkT3yDPFbs95mNCy1+7qNKC6Pro+/ibzYxtM2iqEigpf0sVw+bg4Zh9/snjsBcf990vfIsg5+1U7VyiyBb3etg==} 757 | 758 | config-chain@1.1.13: 759 | resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} 760 | 761 | configstore@6.0.0: 762 | resolution: {integrity: sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==} 763 | engines: {node: '>=12'} 764 | 765 | consola@3.4.2: 766 | resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} 767 | engines: {node: ^14.18.0 || >=16.10.0} 768 | 769 | convert-source-map@2.0.0: 770 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 771 | 772 | core-util-is@1.0.3: 773 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 774 | 775 | cross-spawn@7.0.6: 776 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 777 | engines: {node: '>= 8'} 778 | 779 | crypto-random-string@4.0.0: 780 | resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} 781 | engines: {node: '>=12'} 782 | 783 | css-select@5.1.0: 784 | resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} 785 | 786 | css-what@6.1.0: 787 | resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 788 | engines: {node: '>= 6'} 789 | 790 | cssom@0.5.0: 791 | resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} 792 | 793 | csstype@3.1.3: 794 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 795 | 796 | debounce@1.2.1: 797 | resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==} 798 | 799 | debug@2.6.9: 800 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 801 | peerDependencies: 802 | supports-color: '*' 803 | peerDependenciesMeta: 804 | supports-color: 805 | optional: true 806 | 807 | debug@4.3.7: 808 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 809 | engines: {node: '>=6.0'} 810 | peerDependencies: 811 | supports-color: '*' 812 | peerDependenciesMeta: 813 | supports-color: 814 | optional: true 815 | 816 | debug@4.4.0: 817 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 818 | engines: {node: '>=6.0'} 819 | peerDependencies: 820 | supports-color: '*' 821 | peerDependenciesMeta: 822 | supports-color: 823 | optional: true 824 | 825 | decompress-response@6.0.0: 826 | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 827 | engines: {node: '>=10'} 828 | 829 | deep-extend@0.6.0: 830 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 831 | engines: {node: '>=4.0.0'} 832 | 833 | default-browser-id@3.0.0: 834 | resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} 835 | engines: {node: '>=12'} 836 | 837 | default-browser-id@5.0.0: 838 | resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} 839 | engines: {node: '>=18'} 840 | 841 | default-browser@4.0.0: 842 | resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} 843 | engines: {node: '>=14.16'} 844 | 845 | default-browser@5.2.1: 846 | resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} 847 | engines: {node: '>=18'} 848 | 849 | defaults@1.0.4: 850 | resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 851 | 852 | defer-to-connect@2.0.1: 853 | resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} 854 | engines: {node: '>=10'} 855 | 856 | define-lazy-prop@2.0.0: 857 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 858 | engines: {node: '>=8'} 859 | 860 | define-lazy-prop@3.0.0: 861 | resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} 862 | engines: {node: '>=12'} 863 | 864 | defu@6.1.4: 865 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 866 | 867 | dequal@2.0.3: 868 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 869 | engines: {node: '>=6'} 870 | 871 | destr@2.0.3: 872 | resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 873 | 874 | dom-serializer@2.0.0: 875 | resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} 876 | 877 | domelementtype@2.3.0: 878 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 879 | 880 | domhandler@5.0.3: 881 | resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} 882 | engines: {node: '>= 4'} 883 | 884 | domutils@3.2.2: 885 | resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} 886 | 887 | dot-prop@6.0.1: 888 | resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} 889 | engines: {node: '>=10'} 890 | 891 | dotenv-expand@12.0.1: 892 | resolution: {integrity: sha512-LaKRbou8gt0RNID/9RoI+J2rvXsBRPMV7p+ElHlPhcSARbCPDYcYG2s1TIzAfWv4YSgyY5taidWzzs31lNV3yQ==} 893 | engines: {node: '>=12'} 894 | 895 | dotenv@16.4.7: 896 | resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} 897 | engines: {node: '>=12'} 898 | 899 | dtrace-provider@0.8.8: 900 | resolution: {integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==} 901 | engines: {node: '>=0.10'} 902 | 903 | eastasianwidth@0.2.0: 904 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 905 | 906 | electron-to-chromium@1.5.129: 907 | resolution: {integrity: sha512-JlXUemX4s0+9f8mLqib/bHH8gOHf5elKS6KeWG3sk3xozb/JTq/RLXIv8OKUWiK4Ah00Wm88EFj5PYkFr4RUPA==} 908 | 909 | emoji-regex@10.4.0: 910 | resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} 911 | 912 | emoji-regex@8.0.0: 913 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 914 | 915 | emoji-regex@9.2.2: 916 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 917 | 918 | end-of-stream@1.4.4: 919 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 920 | 921 | entities@4.5.0: 922 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 923 | engines: {node: '>=0.12'} 924 | 925 | entities@6.0.0: 926 | resolution: {integrity: sha512-aKstq2TDOndCn4diEyp9Uq/Flu2i1GlLkc6XIDQSDMuaFE3OPW5OphLCyQ5SpSJZTb4reN+kTcYru5yIfXoRPw==} 927 | engines: {node: '>=0.12'} 928 | 929 | environment@1.1.0: 930 | resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} 931 | engines: {node: '>=18'} 932 | 933 | error-ex@1.3.2: 934 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 935 | 936 | es-module-lexer@1.6.0: 937 | resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} 938 | 939 | es6-error@4.1.1: 940 | resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} 941 | 942 | esbuild@0.25.2: 943 | resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==} 944 | engines: {node: '>=18'} 945 | hasBin: true 946 | 947 | escalade@3.2.0: 948 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 949 | engines: {node: '>=6'} 950 | 951 | escape-goat@4.0.0: 952 | resolution: {integrity: sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==} 953 | engines: {node: '>=12'} 954 | 955 | escape-string-regexp@4.0.0: 956 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 957 | engines: {node: '>=10'} 958 | 959 | escape-string-regexp@5.0.0: 960 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 961 | engines: {node: '>=12'} 962 | 963 | estree-walker@3.0.3: 964 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 965 | 966 | eventemitter3@5.0.1: 967 | resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 968 | 969 | execa@5.1.1: 970 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 971 | engines: {node: '>=10'} 972 | 973 | execa@7.2.0: 974 | resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} 975 | engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} 976 | 977 | execa@8.0.1: 978 | resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 979 | engines: {node: '>=16.17'} 980 | 981 | exsolve@1.0.4: 982 | resolution: {integrity: sha512-xsZH6PXaER4XoV+NiT7JHp1bJodJVT+cxeSH1G0f0tlT0lJqYuHUP3bUx2HtfTDvOagMINYp8rsqusxud3RXhw==} 983 | 984 | extract-zip@2.0.1: 985 | resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} 986 | engines: {node: '>= 10.17.0'} 987 | hasBin: true 988 | 989 | fast-glob@3.3.3: 990 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 991 | engines: {node: '>=8.6.0'} 992 | 993 | fastq@1.19.1: 994 | resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 995 | 996 | fd-slicer@1.1.0: 997 | resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} 998 | 999 | fdir@6.4.3: 1000 | resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==} 1001 | peerDependencies: 1002 | picomatch: ^3 || ^4 1003 | peerDependenciesMeta: 1004 | picomatch: 1005 | optional: true 1006 | 1007 | filesize@10.1.6: 1008 | resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==} 1009 | engines: {node: '>= 10.4.0'} 1010 | 1011 | fill-range@7.1.1: 1012 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1013 | engines: {node: '>=8'} 1014 | 1015 | firefox-profile@4.6.0: 1016 | resolution: {integrity: sha512-I9rAm1w8U3CdhgO4EzTJsCvgcbvynZn9lOySkZf78wUdUIQH2w9QOKf3pAX+THt2XMSSR3kJSuM8P7bYux9j8g==} 1017 | hasBin: true 1018 | 1019 | form-data-encoder@2.1.4: 1020 | resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} 1021 | engines: {node: '>= 14.17'} 1022 | 1023 | formdata-node@6.0.3: 1024 | resolution: {integrity: sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg==} 1025 | engines: {node: '>= 18'} 1026 | 1027 | fs-extra@11.2.0: 1028 | resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} 1029 | engines: {node: '>=14.14'} 1030 | 1031 | fs-extra@11.3.0: 1032 | resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} 1033 | engines: {node: '>=14.14'} 1034 | 1035 | fs-extra@9.0.1: 1036 | resolution: {integrity: sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==} 1037 | engines: {node: '>=10'} 1038 | 1039 | fsevents@2.3.3: 1040 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1041 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1042 | os: [darwin] 1043 | 1044 | fx-runner@1.4.0: 1045 | resolution: {integrity: sha512-rci1g6U0rdTg6bAaBboP7XdRu01dzTAaKXxFf+PUqGuCv6Xu7o8NZdY1D5MvKGIjb6EdS1g3VlXOgksir1uGkg==} 1046 | hasBin: true 1047 | 1048 | gensync@1.0.0-beta.2: 1049 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1050 | engines: {node: '>=6.9.0'} 1051 | 1052 | get-caller-file@2.0.5: 1053 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1054 | engines: {node: 6.* || 8.* || >= 10.*} 1055 | 1056 | get-east-asian-width@1.3.0: 1057 | resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} 1058 | engines: {node: '>=18'} 1059 | 1060 | get-port-please@3.1.2: 1061 | resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==} 1062 | 1063 | get-stream@5.2.0: 1064 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} 1065 | engines: {node: '>=8'} 1066 | 1067 | get-stream@6.0.1: 1068 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1069 | engines: {node: '>=10'} 1070 | 1071 | get-stream@8.0.1: 1072 | resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 1073 | engines: {node: '>=16'} 1074 | 1075 | giget@2.0.0: 1076 | resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==} 1077 | hasBin: true 1078 | 1079 | glob-parent@5.1.2: 1080 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1081 | engines: {node: '>= 6'} 1082 | 1083 | glob-to-regexp@0.4.1: 1084 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 1085 | 1086 | glob@6.0.4: 1087 | resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==} 1088 | deprecated: Glob versions prior to v9 are no longer supported 1089 | 1090 | global-dirs@3.0.1: 1091 | resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} 1092 | engines: {node: '>=10'} 1093 | 1094 | globals@11.12.0: 1095 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1096 | engines: {node: '>=4'} 1097 | 1098 | got@12.6.1: 1099 | resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==} 1100 | engines: {node: '>=14.16'} 1101 | 1102 | graceful-fs@4.2.10: 1103 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 1104 | 1105 | graceful-fs@4.2.11: 1106 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1107 | 1108 | graceful-readlink@1.0.1: 1109 | resolution: {integrity: sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==} 1110 | 1111 | growly@1.3.0: 1112 | resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==} 1113 | 1114 | has-flag@4.0.0: 1115 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1116 | engines: {node: '>=8'} 1117 | 1118 | has-yarn@3.0.0: 1119 | resolution: {integrity: sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA==} 1120 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1121 | 1122 | highlight.js@10.7.3: 1123 | resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} 1124 | 1125 | hookable@5.5.3: 1126 | resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} 1127 | 1128 | html-escaper@3.0.3: 1129 | resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 1130 | 1131 | htmlparser2@10.0.0: 1132 | resolution: {integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==} 1133 | 1134 | http-cache-semantics@4.1.1: 1135 | resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 1136 | 1137 | http2-wrapper@2.2.1: 1138 | resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} 1139 | engines: {node: '>=10.19.0'} 1140 | 1141 | human-signals@2.1.0: 1142 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1143 | engines: {node: '>=10.17.0'} 1144 | 1145 | human-signals@4.3.1: 1146 | resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} 1147 | engines: {node: '>=14.18.0'} 1148 | 1149 | human-signals@5.0.0: 1150 | resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 1151 | engines: {node: '>=16.17.0'} 1152 | 1153 | ieee754@1.2.1: 1154 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1155 | 1156 | immediate@3.0.6: 1157 | resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} 1158 | 1159 | import-lazy@4.0.0: 1160 | resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} 1161 | engines: {node: '>=8'} 1162 | 1163 | import-meta-resolve@4.1.0: 1164 | resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 1165 | 1166 | imurmurhash@0.1.4: 1167 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1168 | engines: {node: '>=0.8.19'} 1169 | 1170 | inflight@1.0.6: 1171 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1172 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 1173 | 1174 | inherits@2.0.4: 1175 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1176 | 1177 | ini@1.3.8: 1178 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1179 | 1180 | ini@2.0.0: 1181 | resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} 1182 | engines: {node: '>=10'} 1183 | 1184 | is-absolute@0.1.7: 1185 | resolution: {integrity: sha512-Xi9/ZSn4NFapG8RP98iNPMOeaV3mXPisxKxzKtHVqr3g56j/fBn+yZmnxSVAA8lmZbl2J9b/a4kJvfU3hqQYgA==} 1186 | engines: {node: '>=0.10.0'} 1187 | 1188 | is-arrayish@0.2.1: 1189 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1190 | 1191 | is-ci@3.0.1: 1192 | resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} 1193 | hasBin: true 1194 | 1195 | is-docker@2.2.1: 1196 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 1197 | engines: {node: '>=8'} 1198 | hasBin: true 1199 | 1200 | is-docker@3.0.0: 1201 | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 1202 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1203 | hasBin: true 1204 | 1205 | is-extglob@2.1.1: 1206 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1207 | engines: {node: '>=0.10.0'} 1208 | 1209 | is-fullwidth-code-point@3.0.0: 1210 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1211 | engines: {node: '>=8'} 1212 | 1213 | is-fullwidth-code-point@4.0.0: 1214 | resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} 1215 | engines: {node: '>=12'} 1216 | 1217 | is-fullwidth-code-point@5.0.0: 1218 | resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} 1219 | engines: {node: '>=18'} 1220 | 1221 | is-glob@4.0.3: 1222 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1223 | engines: {node: '>=0.10.0'} 1224 | 1225 | is-inside-container@1.0.0: 1226 | resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 1227 | engines: {node: '>=14.16'} 1228 | hasBin: true 1229 | 1230 | is-installed-globally@0.4.0: 1231 | resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} 1232 | engines: {node: '>=10'} 1233 | 1234 | is-interactive@2.0.0: 1235 | resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} 1236 | engines: {node: '>=12'} 1237 | 1238 | is-npm@6.0.0: 1239 | resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==} 1240 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1241 | 1242 | is-number@7.0.0: 1243 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1244 | engines: {node: '>=0.12.0'} 1245 | 1246 | is-obj@2.0.0: 1247 | resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} 1248 | engines: {node: '>=8'} 1249 | 1250 | is-path-inside@3.0.3: 1251 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1252 | engines: {node: '>=8'} 1253 | 1254 | is-plain-object@2.0.4: 1255 | resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} 1256 | engines: {node: '>=0.10.0'} 1257 | 1258 | is-potential-custom-element-name@1.0.1: 1259 | resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} 1260 | 1261 | is-primitive@3.0.1: 1262 | resolution: {integrity: sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==} 1263 | engines: {node: '>=0.10.0'} 1264 | 1265 | is-relative@0.1.3: 1266 | resolution: {integrity: sha512-wBOr+rNM4gkAZqoLRJI4myw5WzzIdQosFAAbnvfXP5z1LyzgAI3ivOKehC5KfqlQJZoihVhirgtCBj378Eg8GA==} 1267 | engines: {node: '>=0.10.0'} 1268 | 1269 | is-stream@2.0.1: 1270 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1271 | engines: {node: '>=8'} 1272 | 1273 | is-stream@3.0.0: 1274 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 1275 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1276 | 1277 | is-typedarray@1.0.0: 1278 | resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} 1279 | 1280 | is-unicode-supported@1.3.0: 1281 | resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} 1282 | engines: {node: '>=12'} 1283 | 1284 | is-unicode-supported@2.1.0: 1285 | resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} 1286 | engines: {node: '>=18'} 1287 | 1288 | is-wsl@2.2.0: 1289 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 1290 | engines: {node: '>=8'} 1291 | 1292 | is-wsl@3.1.0: 1293 | resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 1294 | engines: {node: '>=16'} 1295 | 1296 | is-yarn-global@0.4.1: 1297 | resolution: {integrity: sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ==} 1298 | engines: {node: '>=12'} 1299 | 1300 | isarray@1.0.0: 1301 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 1302 | 1303 | isexe@1.1.2: 1304 | resolution: {integrity: sha512-d2eJzK691yZwPHcv1LbeAOa91yMJ9QmfTgSO1oXB65ezVhXQsxBac2vEB4bMVms9cGzaA99n6V2viHMq82VLDw==} 1305 | 1306 | isexe@2.0.0: 1307 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1308 | 1309 | isobject@3.0.1: 1310 | resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} 1311 | engines: {node: '>=0.10.0'} 1312 | 1313 | jiti@2.4.2: 1314 | resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} 1315 | hasBin: true 1316 | 1317 | js-tokens@4.0.0: 1318 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1319 | 1320 | js-tokens@9.0.1: 1321 | resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} 1322 | 1323 | jsesc@3.1.0: 1324 | resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1325 | engines: {node: '>=6'} 1326 | hasBin: true 1327 | 1328 | json-buffer@3.0.1: 1329 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1330 | 1331 | json-parse-even-better-errors@3.0.2: 1332 | resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==} 1333 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1334 | 1335 | json5@2.2.3: 1336 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1337 | engines: {node: '>=6'} 1338 | hasBin: true 1339 | 1340 | jsonfile@6.1.0: 1341 | resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 1342 | 1343 | jszip@3.10.1: 1344 | resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} 1345 | 1346 | keyv@4.5.4: 1347 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1348 | 1349 | kleur@3.0.3: 1350 | resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 1351 | engines: {node: '>=6'} 1352 | 1353 | latest-version@7.0.0: 1354 | resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} 1355 | engines: {node: '>=14.16'} 1356 | 1357 | lie@3.3.0: 1358 | resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} 1359 | 1360 | lighthouse-logger@2.0.1: 1361 | resolution: {integrity: sha512-ioBrW3s2i97noEmnXxmUq7cjIcVRjT5HBpAYy8zE11CxU9HqlWHHeRxfeN1tn8F7OEMVPIC9x1f8t3Z7US9ehQ==} 1362 | 1363 | lines-and-columns@2.0.4: 1364 | resolution: {integrity: sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==} 1365 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1366 | 1367 | linkedom@0.18.9: 1368 | resolution: {integrity: sha512-Pfvhwjs46nBrcQdauQjMXDJZqj6VwN7KStT84xQqmIgD9bPH6UVJ/ESW8y4VHVF2h7di0/P+f4Iln4U5emRcmg==} 1369 | 1370 | listr2@8.2.5: 1371 | resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==} 1372 | engines: {node: '>=18.0.0'} 1373 | 1374 | local-pkg@1.1.1: 1375 | resolution: {integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==} 1376 | engines: {node: '>=14'} 1377 | 1378 | lodash.camelcase@4.3.0: 1379 | resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} 1380 | 1381 | lodash.kebabcase@4.1.1: 1382 | resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} 1383 | 1384 | lodash.merge@4.6.2: 1385 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1386 | 1387 | lodash.snakecase@4.1.1: 1388 | resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} 1389 | 1390 | log-symbols@5.1.0: 1391 | resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} 1392 | engines: {node: '>=12'} 1393 | 1394 | log-symbols@6.0.0: 1395 | resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} 1396 | engines: {node: '>=18'} 1397 | 1398 | log-update@6.1.0: 1399 | resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} 1400 | engines: {node: '>=18'} 1401 | 1402 | lowercase-keys@3.0.0: 1403 | resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} 1404 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1405 | 1406 | lru-cache@5.1.1: 1407 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1408 | 1409 | magic-string@0.30.17: 1410 | resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 1411 | 1412 | magicast@0.3.5: 1413 | resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 1414 | 1415 | make-error@1.3.6: 1416 | resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} 1417 | 1418 | many-keys-map@2.0.1: 1419 | resolution: {integrity: sha512-DHnZAD4phTbZ+qnJdjoNEVU1NecYoSdbOOoVmTDH46AuxDkEVh3MxTVpXq10GtcTC6mndN9dkv1rNfpjRcLnOw==} 1420 | 1421 | marky@1.2.5: 1422 | resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==} 1423 | 1424 | merge-stream@2.0.0: 1425 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1426 | 1427 | merge2@1.4.1: 1428 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1429 | engines: {node: '>= 8'} 1430 | 1431 | micromatch@4.0.8: 1432 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1433 | engines: {node: '>=8.6'} 1434 | 1435 | mimic-fn@2.1.0: 1436 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1437 | engines: {node: '>=6'} 1438 | 1439 | mimic-fn@4.0.0: 1440 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 1441 | engines: {node: '>=12'} 1442 | 1443 | mimic-function@5.0.1: 1444 | resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} 1445 | engines: {node: '>=18'} 1446 | 1447 | mimic-response@3.1.0: 1448 | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 1449 | engines: {node: '>=10'} 1450 | 1451 | mimic-response@4.0.0: 1452 | resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} 1453 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1454 | 1455 | minimatch@10.0.1: 1456 | resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} 1457 | engines: {node: 20 || >=22} 1458 | 1459 | minimatch@3.1.2: 1460 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1461 | 1462 | minimist@1.2.8: 1463 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1464 | 1465 | mkdirp@0.5.6: 1466 | resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 1467 | hasBin: true 1468 | 1469 | mkdirp@3.0.1: 1470 | resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} 1471 | engines: {node: '>=10'} 1472 | hasBin: true 1473 | 1474 | mlly@1.7.4: 1475 | resolution: {integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==} 1476 | 1477 | moment@2.30.1: 1478 | resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} 1479 | 1480 | ms@2.0.0: 1481 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 1482 | 1483 | ms@2.1.3: 1484 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1485 | 1486 | multimatch@6.0.0: 1487 | resolution: {integrity: sha512-I7tSVxHGPlmPN/enE3mS1aOSo6bWBfls+3HmuEeCUBCE7gWnm3cBXCBkpurzFjVRwC6Kld8lLaZ1Iv5vOcjvcQ==} 1488 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1489 | 1490 | mv@2.1.1: 1491 | resolution: {integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==} 1492 | engines: {node: '>=0.8.0'} 1493 | 1494 | mz@2.7.0: 1495 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1496 | 1497 | nan@2.22.2: 1498 | resolution: {integrity: sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==} 1499 | 1500 | nano-spawn@0.2.0: 1501 | resolution: {integrity: sha512-IjZBIOLxSlxu+m/kacg9JuP93oUpRemeV0mEuCy64nzBKKIL9m0aLJHtVPcVuzJDHFhElzjpwbW4a3tMzgKoZQ==} 1502 | engines: {node: '>=18.19'} 1503 | 1504 | nanoid@3.3.11: 1505 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1506 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1507 | hasBin: true 1508 | 1509 | ncp@2.0.0: 1510 | resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==} 1511 | hasBin: true 1512 | 1513 | node-fetch-native@1.6.6: 1514 | resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} 1515 | 1516 | node-forge@1.3.1: 1517 | resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} 1518 | engines: {node: '>= 6.13.0'} 1519 | 1520 | node-notifier@10.0.1: 1521 | resolution: {integrity: sha512-YX7TSyDukOZ0g+gmzjB6abKu+hTGvO8+8+gIFDsRCU2t8fLV/P2unmt+LGFaIa4y64aX98Qksa97rgz4vMNeLQ==} 1522 | 1523 | node-releases@2.0.19: 1524 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} 1525 | 1526 | normalize-path@3.0.0: 1527 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1528 | engines: {node: '>=0.10.0'} 1529 | 1530 | normalize-url@8.0.1: 1531 | resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} 1532 | engines: {node: '>=14.16'} 1533 | 1534 | npm-run-path@4.0.1: 1535 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 1536 | engines: {node: '>=8'} 1537 | 1538 | npm-run-path@5.3.0: 1539 | resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} 1540 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1541 | 1542 | nth-check@2.1.1: 1543 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1544 | 1545 | nypm@0.3.12: 1546 | resolution: {integrity: sha512-D3pzNDWIvgA+7IORhD/IuWzEk4uXv6GsgOxiid4UU3h9oq5IqV1KtPDi63n4sZJ/xcWlr88c0QM2RgN5VbOhFA==} 1547 | engines: {node: ^14.16.0 || >=16.10.0} 1548 | hasBin: true 1549 | 1550 | nypm@0.6.0: 1551 | resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==} 1552 | engines: {node: ^14.16.0 || >=16.10.0} 1553 | hasBin: true 1554 | 1555 | object-assign@4.1.1: 1556 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1557 | engines: {node: '>=0.10.0'} 1558 | 1559 | ofetch@1.4.1: 1560 | resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 1561 | 1562 | ohash@1.1.6: 1563 | resolution: {integrity: sha512-TBu7PtV8YkAZn0tSxobKY2n2aAQva936lhRrj6957aDaCf9IEtqsKbgMzXE/F/sjqYOwmrukeORHNLe5glk7Cg==} 1564 | 1565 | ohash@2.0.11: 1566 | resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 1567 | 1568 | once@1.4.0: 1569 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1570 | 1571 | onetime@5.1.2: 1572 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 1573 | engines: {node: '>=6'} 1574 | 1575 | onetime@6.0.0: 1576 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 1577 | engines: {node: '>=12'} 1578 | 1579 | onetime@7.0.0: 1580 | resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} 1581 | engines: {node: '>=18'} 1582 | 1583 | open@10.1.0: 1584 | resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} 1585 | engines: {node: '>=18'} 1586 | 1587 | open@8.4.2: 1588 | resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} 1589 | engines: {node: '>=12'} 1590 | 1591 | open@9.1.0: 1592 | resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} 1593 | engines: {node: '>=14.16'} 1594 | 1595 | ora@6.3.1: 1596 | resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==} 1597 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1598 | 1599 | ora@8.2.0: 1600 | resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==} 1601 | engines: {node: '>=18'} 1602 | 1603 | os-shim@0.1.3: 1604 | resolution: {integrity: sha512-jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A==} 1605 | engines: {node: '>= 0.4.0'} 1606 | 1607 | p-cancelable@3.0.0: 1608 | resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} 1609 | engines: {node: '>=12.20'} 1610 | 1611 | package-json@8.1.1: 1612 | resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} 1613 | engines: {node: '>=14.16'} 1614 | 1615 | pako@1.0.11: 1616 | resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} 1617 | 1618 | parse-json@7.1.1: 1619 | resolution: {integrity: sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==} 1620 | engines: {node: '>=16'} 1621 | 1622 | parse5-htmlparser2-tree-adapter@6.0.1: 1623 | resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} 1624 | 1625 | parse5@5.1.1: 1626 | resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} 1627 | 1628 | parse5@6.0.1: 1629 | resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} 1630 | 1631 | path-is-absolute@1.0.1: 1632 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1633 | engines: {node: '>=0.10.0'} 1634 | 1635 | path-key@3.1.1: 1636 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1637 | engines: {node: '>=8'} 1638 | 1639 | path-key@4.0.0: 1640 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 1641 | engines: {node: '>=12'} 1642 | 1643 | pathe@1.1.2: 1644 | resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 1645 | 1646 | pathe@2.0.3: 1647 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 1648 | 1649 | pend@1.2.0: 1650 | resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} 1651 | 1652 | perfect-debounce@1.0.0: 1653 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} 1654 | 1655 | picocolors@1.1.1: 1656 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1657 | 1658 | picomatch@2.3.1: 1659 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1660 | engines: {node: '>=8.6'} 1661 | 1662 | picomatch@4.0.2: 1663 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 1664 | engines: {node: '>=12'} 1665 | 1666 | pkg-types@1.3.1: 1667 | resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 1668 | 1669 | pkg-types@2.1.0: 1670 | resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==} 1671 | 1672 | postcss@8.5.3: 1673 | resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} 1674 | engines: {node: ^10 || ^12 || >=14} 1675 | 1676 | process-nextick-args@2.0.1: 1677 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 1678 | 1679 | promise-toolbox@0.21.0: 1680 | resolution: {integrity: sha512-NV8aTmpwrZv+Iys54sSFOBx3tuVaOBvvrft5PNppnxy9xpU/akHbaWIril22AB22zaPgrgwKdD0KsrM0ptUtpg==} 1681 | engines: {node: '>=6'} 1682 | 1683 | prompts@2.4.2: 1684 | resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 1685 | engines: {node: '>= 6'} 1686 | 1687 | proto-list@1.2.4: 1688 | resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} 1689 | 1690 | publish-browser-extension@3.0.0: 1691 | resolution: {integrity: sha512-gwjH8mIepNqID2VqKIxzT6lmtvkcc5tcWYzrGSUdkeUFFFSHhGp9xx01EZ7j8wPq50dDe0XU5VNbHMAqr6wWAA==} 1692 | engines: {node: ^18.0.0 || >=20.0.0} 1693 | hasBin: true 1694 | 1695 | pump@3.0.2: 1696 | resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} 1697 | 1698 | pupa@3.1.0: 1699 | resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==} 1700 | engines: {node: '>=12.20'} 1701 | 1702 | quansync@0.2.10: 1703 | resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} 1704 | 1705 | queue-microtask@1.2.3: 1706 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1707 | 1708 | quick-lru@5.1.1: 1709 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} 1710 | engines: {node: '>=10'} 1711 | 1712 | rc9@2.1.2: 1713 | resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} 1714 | 1715 | rc@1.2.8: 1716 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 1717 | hasBin: true 1718 | 1719 | react-dom@19.1.0: 1720 | resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==} 1721 | peerDependencies: 1722 | react: ^19.1.0 1723 | 1724 | react-refresh@0.14.2: 1725 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} 1726 | engines: {node: '>=0.10.0'} 1727 | 1728 | react@19.1.0: 1729 | resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} 1730 | engines: {node: '>=0.10.0'} 1731 | 1732 | readable-stream@2.3.8: 1733 | resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 1734 | 1735 | readable-stream@3.6.2: 1736 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 1737 | engines: {node: '>= 6'} 1738 | 1739 | readdirp@4.1.2: 1740 | resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 1741 | engines: {node: '>= 14.18.0'} 1742 | 1743 | regenerator-runtime@0.14.1: 1744 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1745 | 1746 | registry-auth-token@5.1.0: 1747 | resolution: {integrity: sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==} 1748 | engines: {node: '>=14'} 1749 | 1750 | registry-url@6.0.1: 1751 | resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} 1752 | engines: {node: '>=12'} 1753 | 1754 | require-directory@2.1.1: 1755 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1756 | engines: {node: '>=0.10.0'} 1757 | 1758 | resolve-alpn@1.2.1: 1759 | resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} 1760 | 1761 | responselike@3.0.0: 1762 | resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} 1763 | engines: {node: '>=14.16'} 1764 | 1765 | restore-cursor@4.0.0: 1766 | resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} 1767 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1768 | 1769 | restore-cursor@5.1.0: 1770 | resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} 1771 | engines: {node: '>=18'} 1772 | 1773 | reusify@1.1.0: 1774 | resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 1775 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1776 | 1777 | rfdc@1.4.1: 1778 | resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} 1779 | 1780 | rimraf@2.4.5: 1781 | resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==} 1782 | deprecated: Rimraf versions prior to v4 are no longer supported 1783 | hasBin: true 1784 | 1785 | rollup@4.38.0: 1786 | resolution: {integrity: sha512-5SsIRtJy9bf1ErAOiFMFzl64Ex9X5V7bnJ+WlFMb+zmP459OSWCEG7b0ERZ+PEU7xPt4OG3RHbrp1LJlXxYTrw==} 1787 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1788 | hasBin: true 1789 | 1790 | run-applescript@5.0.0: 1791 | resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} 1792 | engines: {node: '>=12'} 1793 | 1794 | run-applescript@7.0.0: 1795 | resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} 1796 | engines: {node: '>=18'} 1797 | 1798 | run-parallel@1.2.0: 1799 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1800 | 1801 | safe-buffer@5.1.2: 1802 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 1803 | 1804 | safe-buffer@5.2.1: 1805 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1806 | 1807 | safe-json-stringify@1.2.0: 1808 | resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==} 1809 | 1810 | sax@1.4.1: 1811 | resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 1812 | 1813 | scheduler@0.26.0: 1814 | resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} 1815 | 1816 | scule@1.3.0: 1817 | resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} 1818 | 1819 | semver-diff@4.0.0: 1820 | resolution: {integrity: sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==} 1821 | engines: {node: '>=12'} 1822 | 1823 | semver@6.3.1: 1824 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1825 | hasBin: true 1826 | 1827 | semver@7.7.1: 1828 | resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} 1829 | engines: {node: '>=10'} 1830 | hasBin: true 1831 | 1832 | set-value@4.1.0: 1833 | resolution: {integrity: sha512-zTEg4HL0RwVrqcWs3ztF+x1vkxfm0lP+MQQFPiMJTKVceBwEV0A569Ou8l9IYQG8jOZdMVI1hGsc0tmeD2o/Lw==} 1834 | engines: {node: '>=11.0'} 1835 | 1836 | setimmediate@1.0.5: 1837 | resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} 1838 | 1839 | shebang-command@2.0.0: 1840 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1841 | engines: {node: '>=8'} 1842 | 1843 | shebang-regex@3.0.0: 1844 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1845 | engines: {node: '>=8'} 1846 | 1847 | shell-quote@1.7.3: 1848 | resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==} 1849 | 1850 | shellwords@0.1.1: 1851 | resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==} 1852 | 1853 | signal-exit@3.0.7: 1854 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 1855 | 1856 | signal-exit@4.1.0: 1857 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1858 | engines: {node: '>=14'} 1859 | 1860 | sisteransi@1.0.5: 1861 | resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1862 | 1863 | slice-ansi@5.0.0: 1864 | resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} 1865 | engines: {node: '>=12'} 1866 | 1867 | slice-ansi@7.1.0: 1868 | resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} 1869 | engines: {node: '>=18'} 1870 | 1871 | source-map-js@1.2.1: 1872 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1873 | engines: {node: '>=0.10.0'} 1874 | 1875 | source-map-support@0.5.21: 1876 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} 1877 | 1878 | source-map@0.6.1: 1879 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 1880 | engines: {node: '>=0.10.0'} 1881 | 1882 | source-map@0.7.4: 1883 | resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} 1884 | engines: {node: '>= 8'} 1885 | 1886 | spawn-sync@1.0.15: 1887 | resolution: {integrity: sha512-9DWBgrgYZzNghseho0JOuh+5fg9u6QWhAWa51QC7+U5rCheZ/j1DrEZnyE0RBBRqZ9uEXGPgSSM0nky6burpVw==} 1888 | 1889 | split@1.0.1: 1890 | resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} 1891 | 1892 | stdin-discarder@0.1.0: 1893 | resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==} 1894 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1895 | 1896 | stdin-discarder@0.2.2: 1897 | resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} 1898 | engines: {node: '>=18'} 1899 | 1900 | string-width@4.2.3: 1901 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1902 | engines: {node: '>=8'} 1903 | 1904 | string-width@5.1.2: 1905 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1906 | engines: {node: '>=12'} 1907 | 1908 | string-width@7.2.0: 1909 | resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 1910 | engines: {node: '>=18'} 1911 | 1912 | string_decoder@1.1.1: 1913 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 1914 | 1915 | string_decoder@1.3.0: 1916 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 1917 | 1918 | strip-ansi@6.0.1: 1919 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1920 | engines: {node: '>=8'} 1921 | 1922 | strip-ansi@7.1.0: 1923 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1924 | engines: {node: '>=12'} 1925 | 1926 | strip-bom@5.0.0: 1927 | resolution: {integrity: sha512-p+byADHF7SzEcVnLvc/r3uognM1hUhObuHXxJcgLCfD194XAkaLbjq3Wzb0N5G2tgIjH0dgT708Z51QxMeu60A==} 1928 | engines: {node: '>=12'} 1929 | 1930 | strip-final-newline@2.0.0: 1931 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 1932 | engines: {node: '>=6'} 1933 | 1934 | strip-final-newline@3.0.0: 1935 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 1936 | engines: {node: '>=12'} 1937 | 1938 | strip-json-comments@2.0.1: 1939 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 1940 | engines: {node: '>=0.10.0'} 1941 | 1942 | strip-json-comments@5.0.1: 1943 | resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} 1944 | engines: {node: '>=14.16'} 1945 | 1946 | strip-literal@3.0.0: 1947 | resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} 1948 | 1949 | supports-color@7.2.0: 1950 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1951 | engines: {node: '>=8'} 1952 | 1953 | thenify-all@1.6.0: 1954 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1955 | engines: {node: '>=0.8'} 1956 | 1957 | thenify@3.3.1: 1958 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1959 | 1960 | through@2.3.8: 1961 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 1962 | 1963 | tinyexec@0.3.2: 1964 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 1965 | 1966 | tinyglobby@0.2.12: 1967 | resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} 1968 | engines: {node: '>=12.0.0'} 1969 | 1970 | titleize@3.0.0: 1971 | resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} 1972 | engines: {node: '>=12'} 1973 | 1974 | tmp@0.2.3: 1975 | resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} 1976 | engines: {node: '>=14.14'} 1977 | 1978 | to-regex-range@5.0.1: 1979 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1980 | engines: {node: '>=8.0'} 1981 | 1982 | tslib@2.8.1: 1983 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1984 | 1985 | type-fest@1.4.0: 1986 | resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} 1987 | engines: {node: '>=10'} 1988 | 1989 | type-fest@2.19.0: 1990 | resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} 1991 | engines: {node: '>=12.20'} 1992 | 1993 | type-fest@3.13.1: 1994 | resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} 1995 | engines: {node: '>=14.16'} 1996 | 1997 | typedarray-to-buffer@3.1.5: 1998 | resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} 1999 | 2000 | typedarray@0.0.6: 2001 | resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} 2002 | 2003 | typescript@5.8.2: 2004 | resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==} 2005 | engines: {node: '>=14.17'} 2006 | hasBin: true 2007 | 2008 | ufo@1.5.4: 2009 | resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} 2010 | 2011 | uhyphen@0.2.0: 2012 | resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==} 2013 | 2014 | undici-types@6.20.0: 2015 | resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 2016 | 2017 | unimport@4.1.3: 2018 | resolution: {integrity: sha512-H+IVJ7rAkE3b+oC8rSJ2FsPaVsweeMC8eKZc+C6Mz7+hxDF45AnrY/tVCNRBvzMwWNcJEV67WdAVcal27iMjOw==} 2019 | engines: {node: '>=18.12.0'} 2020 | 2021 | unique-string@3.0.0: 2022 | resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} 2023 | engines: {node: '>=12'} 2024 | 2025 | universalify@1.0.0: 2026 | resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==} 2027 | engines: {node: '>= 10.0.0'} 2028 | 2029 | universalify@2.0.1: 2030 | resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} 2031 | engines: {node: '>= 10.0.0'} 2032 | 2033 | unplugin-utils@0.2.4: 2034 | resolution: {integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==} 2035 | engines: {node: '>=18.12.0'} 2036 | 2037 | unplugin@2.2.2: 2038 | resolution: {integrity: sha512-Qp+iiD+qCRnUek+nDoYvtWX7tfnYyXsrOnJ452FRTgOyKmTM7TUJ3l+PLPJOOWPTUyKISKp4isC5JJPSXUjGgw==} 2039 | engines: {node: '>=18.12.0'} 2040 | 2041 | untildify@4.0.0: 2042 | resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} 2043 | engines: {node: '>=8'} 2044 | 2045 | update-browserslist-db@1.1.3: 2046 | resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 2047 | hasBin: true 2048 | peerDependencies: 2049 | browserslist: '>= 4.21.0' 2050 | 2051 | update-notifier@6.0.2: 2052 | resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==} 2053 | engines: {node: '>=14.16'} 2054 | 2055 | util-deprecate@1.0.2: 2056 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2057 | 2058 | uuid@8.3.2: 2059 | resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} 2060 | hasBin: true 2061 | 2062 | vite-node@3.1.1: 2063 | resolution: {integrity: sha512-V+IxPAE2FvXpTCHXyNem0M+gWm6J7eRyWPR6vYoG/Gl+IscNOjXzztUhimQgTxaAoUoj40Qqimaa0NLIOOAH4w==} 2064 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 2065 | hasBin: true 2066 | 2067 | vite@6.2.4: 2068 | resolution: {integrity: sha512-veHMSew8CcRzhL5o8ONjy8gkfmFJAd5Ac16oxBUjlwgX3Gq2Wqr+qNC3TjPIpy7TPV/KporLga5GT9HqdrCizw==} 2069 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 2070 | hasBin: true 2071 | peerDependencies: 2072 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 2073 | jiti: '>=1.21.0' 2074 | less: '*' 2075 | lightningcss: ^1.21.0 2076 | sass: '*' 2077 | sass-embedded: '*' 2078 | stylus: '*' 2079 | sugarss: '*' 2080 | terser: ^5.16.0 2081 | tsx: ^4.8.1 2082 | yaml: ^2.4.2 2083 | peerDependenciesMeta: 2084 | '@types/node': 2085 | optional: true 2086 | jiti: 2087 | optional: true 2088 | less: 2089 | optional: true 2090 | lightningcss: 2091 | optional: true 2092 | sass: 2093 | optional: true 2094 | sass-embedded: 2095 | optional: true 2096 | stylus: 2097 | optional: true 2098 | sugarss: 2099 | optional: true 2100 | terser: 2101 | optional: true 2102 | tsx: 2103 | optional: true 2104 | yaml: 2105 | optional: true 2106 | 2107 | watchpack@2.4.1: 2108 | resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} 2109 | engines: {node: '>=10.13.0'} 2110 | 2111 | wcwidth@1.0.1: 2112 | resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 2113 | 2114 | web-ext-run@0.2.2: 2115 | resolution: {integrity: sha512-GD59q5/1wYQJXTHrljMZaBa3cCz+Jj3FMDLYgKyAa34TPcHSuMaGqp7TcLJ66PCe43C3hmbEAZd8QCpAB34eiw==} 2116 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 2117 | 2118 | webpack-virtual-modules@0.6.2: 2119 | resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} 2120 | 2121 | when@3.7.7: 2122 | resolution: {integrity: sha512-9lFZp/KHoqH6bPKjbWqa+3Dg/K/r2v0X/3/G2x4DBGchVS2QX2VXL3cZV994WQVnTM1/PD71Az25nAzryEUugw==} 2123 | 2124 | which@1.2.4: 2125 | resolution: {integrity: sha512-zDRAqDSBudazdfM9zpiI30Fu9ve47htYXcGi3ln0wfKu2a7SmrT6F3VDoYONu//48V8Vz4TdCRNPjtvyRO3yBA==} 2126 | hasBin: true 2127 | 2128 | which@2.0.2: 2129 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2130 | engines: {node: '>= 8'} 2131 | hasBin: true 2132 | 2133 | widest-line@4.0.1: 2134 | resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==} 2135 | engines: {node: '>=12'} 2136 | 2137 | winreg@0.0.12: 2138 | resolution: {integrity: sha512-typ/+JRmi7RqP1NanzFULK36vczznSNN8kWVA9vIqXyv8GhghUlwhGp1Xj3Nms1FsPcNnsQrJOR10N58/nQ9hQ==} 2139 | 2140 | wrap-ansi@7.0.0: 2141 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2142 | engines: {node: '>=10'} 2143 | 2144 | wrap-ansi@8.1.0: 2145 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 2146 | engines: {node: '>=12'} 2147 | 2148 | wrap-ansi@9.0.0: 2149 | resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} 2150 | engines: {node: '>=18'} 2151 | 2152 | wrappy@1.0.2: 2153 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2154 | 2155 | write-file-atomic@3.0.3: 2156 | resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} 2157 | 2158 | ws@8.18.0: 2159 | resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 2160 | engines: {node: '>=10.0.0'} 2161 | peerDependencies: 2162 | bufferutil: ^4.0.1 2163 | utf-8-validate: '>=5.0.2' 2164 | peerDependenciesMeta: 2165 | bufferutil: 2166 | optional: true 2167 | utf-8-validate: 2168 | optional: true 2169 | 2170 | wxt@0.20.0: 2171 | resolution: {integrity: sha512-mu7zP/WlDwBfJ1ys9SPhgbu2vTdd0ulSXpHrkOPJR+Crx5MFFMFh1e3SeyzYt0N2AwFnkFUBlja7wqUUL6JPdQ==} 2172 | hasBin: true 2173 | 2174 | xdg-basedir@5.1.0: 2175 | resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} 2176 | engines: {node: '>=12'} 2177 | 2178 | xml2js@0.5.0: 2179 | resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} 2180 | engines: {node: '>=4.0.0'} 2181 | 2182 | xmlbuilder@11.0.1: 2183 | resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} 2184 | engines: {node: '>=4.0'} 2185 | 2186 | y18n@5.0.8: 2187 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2188 | engines: {node: '>=10'} 2189 | 2190 | yallist@3.1.1: 2191 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 2192 | 2193 | yargs-parser@20.2.9: 2194 | resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} 2195 | engines: {node: '>=10'} 2196 | 2197 | yargs-parser@21.1.1: 2198 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2199 | engines: {node: '>=12'} 2200 | 2201 | yargs@16.2.0: 2202 | resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} 2203 | engines: {node: '>=10'} 2204 | 2205 | yargs@17.7.2: 2206 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 2207 | engines: {node: '>=12'} 2208 | 2209 | yauzl@2.10.0: 2210 | resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} 2211 | 2212 | zip-dir@2.0.0: 2213 | resolution: {integrity: sha512-uhlsJZWz26FLYXOD6WVuq+fIcZ3aBPGo/cFdiLlv3KNwpa52IF3ISV8fLhQLiqVu5No3VhlqlgthN6gehil1Dg==} 2214 | 2215 | zod@3.24.2: 2216 | resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==} 2217 | 2218 | snapshots: 2219 | 2220 | '@1natsu/wait-element@4.1.2': 2221 | dependencies: 2222 | defu: 6.1.4 2223 | many-keys-map: 2.0.1 2224 | 2225 | '@aklinker1/rollup-plugin-visualizer@5.12.0(rollup@4.38.0)': 2226 | dependencies: 2227 | open: 8.4.2 2228 | picomatch: 2.3.1 2229 | source-map: 0.7.4 2230 | yargs: 17.7.2 2231 | optionalDependencies: 2232 | rollup: 4.38.0 2233 | 2234 | '@ampproject/remapping@2.3.0': 2235 | dependencies: 2236 | '@jridgewell/gen-mapping': 0.3.8 2237 | '@jridgewell/trace-mapping': 0.3.25 2238 | 2239 | '@babel/code-frame@7.26.2': 2240 | dependencies: 2241 | '@babel/helper-validator-identifier': 7.25.9 2242 | js-tokens: 4.0.0 2243 | picocolors: 1.1.1 2244 | 2245 | '@babel/compat-data@7.26.8': {} 2246 | 2247 | '@babel/core@7.26.10': 2248 | dependencies: 2249 | '@ampproject/remapping': 2.3.0 2250 | '@babel/code-frame': 7.26.2 2251 | '@babel/generator': 7.27.0 2252 | '@babel/helper-compilation-targets': 7.27.0 2253 | '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10) 2254 | '@babel/helpers': 7.27.0 2255 | '@babel/parser': 7.27.0 2256 | '@babel/template': 7.27.0 2257 | '@babel/traverse': 7.27.0 2258 | '@babel/types': 7.27.0 2259 | convert-source-map: 2.0.0 2260 | debug: 4.4.0 2261 | gensync: 1.0.0-beta.2 2262 | json5: 2.2.3 2263 | semver: 6.3.1 2264 | transitivePeerDependencies: 2265 | - supports-color 2266 | 2267 | '@babel/generator@7.27.0': 2268 | dependencies: 2269 | '@babel/parser': 7.27.0 2270 | '@babel/types': 7.27.0 2271 | '@jridgewell/gen-mapping': 0.3.8 2272 | '@jridgewell/trace-mapping': 0.3.25 2273 | jsesc: 3.1.0 2274 | 2275 | '@babel/helper-compilation-targets@7.27.0': 2276 | dependencies: 2277 | '@babel/compat-data': 7.26.8 2278 | '@babel/helper-validator-option': 7.25.9 2279 | browserslist: 4.24.4 2280 | lru-cache: 5.1.1 2281 | semver: 6.3.1 2282 | 2283 | '@babel/helper-module-imports@7.25.9': 2284 | dependencies: 2285 | '@babel/traverse': 7.27.0 2286 | '@babel/types': 7.27.0 2287 | transitivePeerDependencies: 2288 | - supports-color 2289 | 2290 | '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)': 2291 | dependencies: 2292 | '@babel/core': 7.26.10 2293 | '@babel/helper-module-imports': 7.25.9 2294 | '@babel/helper-validator-identifier': 7.25.9 2295 | '@babel/traverse': 7.27.0 2296 | transitivePeerDependencies: 2297 | - supports-color 2298 | 2299 | '@babel/helper-plugin-utils@7.26.5': {} 2300 | 2301 | '@babel/helper-string-parser@7.25.9': {} 2302 | 2303 | '@babel/helper-validator-identifier@7.25.9': {} 2304 | 2305 | '@babel/helper-validator-option@7.25.9': {} 2306 | 2307 | '@babel/helpers@7.27.0': 2308 | dependencies: 2309 | '@babel/template': 7.27.0 2310 | '@babel/types': 7.27.0 2311 | 2312 | '@babel/parser@7.27.0': 2313 | dependencies: 2314 | '@babel/types': 7.27.0 2315 | 2316 | '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)': 2317 | dependencies: 2318 | '@babel/core': 7.26.10 2319 | '@babel/helper-plugin-utils': 7.26.5 2320 | 2321 | '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)': 2322 | dependencies: 2323 | '@babel/core': 7.26.10 2324 | '@babel/helper-plugin-utils': 7.26.5 2325 | 2326 | '@babel/runtime@7.24.7': 2327 | dependencies: 2328 | regenerator-runtime: 0.14.1 2329 | 2330 | '@babel/template@7.27.0': 2331 | dependencies: 2332 | '@babel/code-frame': 7.26.2 2333 | '@babel/parser': 7.27.0 2334 | '@babel/types': 7.27.0 2335 | 2336 | '@babel/traverse@7.27.0': 2337 | dependencies: 2338 | '@babel/code-frame': 7.26.2 2339 | '@babel/generator': 7.27.0 2340 | '@babel/parser': 7.27.0 2341 | '@babel/template': 7.27.0 2342 | '@babel/types': 7.27.0 2343 | debug: 4.4.0 2344 | globals: 11.12.0 2345 | transitivePeerDependencies: 2346 | - supports-color 2347 | 2348 | '@babel/types@7.27.0': 2349 | dependencies: 2350 | '@babel/helper-string-parser': 7.25.9 2351 | '@babel/helper-validator-identifier': 7.25.9 2352 | 2353 | '@devicefarmer/adbkit-logcat@2.1.3': {} 2354 | 2355 | '@devicefarmer/adbkit-monkey@1.2.1': {} 2356 | 2357 | '@devicefarmer/adbkit@3.2.6': 2358 | dependencies: 2359 | '@devicefarmer/adbkit-logcat': 2.1.3 2360 | '@devicefarmer/adbkit-monkey': 1.2.1 2361 | bluebird: 3.7.2 2362 | commander: 9.5.0 2363 | debug: 4.3.7 2364 | node-forge: 1.3.1 2365 | split: 1.0.1 2366 | transitivePeerDependencies: 2367 | - supports-color 2368 | 2369 | '@esbuild/aix-ppc64@0.25.2': 2370 | optional: true 2371 | 2372 | '@esbuild/android-arm64@0.25.2': 2373 | optional: true 2374 | 2375 | '@esbuild/android-arm@0.25.2': 2376 | optional: true 2377 | 2378 | '@esbuild/android-x64@0.25.2': 2379 | optional: true 2380 | 2381 | '@esbuild/darwin-arm64@0.25.2': 2382 | optional: true 2383 | 2384 | '@esbuild/darwin-x64@0.25.2': 2385 | optional: true 2386 | 2387 | '@esbuild/freebsd-arm64@0.25.2': 2388 | optional: true 2389 | 2390 | '@esbuild/freebsd-x64@0.25.2': 2391 | optional: true 2392 | 2393 | '@esbuild/linux-arm64@0.25.2': 2394 | optional: true 2395 | 2396 | '@esbuild/linux-arm@0.25.2': 2397 | optional: true 2398 | 2399 | '@esbuild/linux-ia32@0.25.2': 2400 | optional: true 2401 | 2402 | '@esbuild/linux-loong64@0.25.2': 2403 | optional: true 2404 | 2405 | '@esbuild/linux-mips64el@0.25.2': 2406 | optional: true 2407 | 2408 | '@esbuild/linux-ppc64@0.25.2': 2409 | optional: true 2410 | 2411 | '@esbuild/linux-riscv64@0.25.2': 2412 | optional: true 2413 | 2414 | '@esbuild/linux-s390x@0.25.2': 2415 | optional: true 2416 | 2417 | '@esbuild/linux-x64@0.25.2': 2418 | optional: true 2419 | 2420 | '@esbuild/netbsd-arm64@0.25.2': 2421 | optional: true 2422 | 2423 | '@esbuild/netbsd-x64@0.25.2': 2424 | optional: true 2425 | 2426 | '@esbuild/openbsd-arm64@0.25.2': 2427 | optional: true 2428 | 2429 | '@esbuild/openbsd-x64@0.25.2': 2430 | optional: true 2431 | 2432 | '@esbuild/sunos-x64@0.25.2': 2433 | optional: true 2434 | 2435 | '@esbuild/win32-arm64@0.25.2': 2436 | optional: true 2437 | 2438 | '@esbuild/win32-ia32@0.25.2': 2439 | optional: true 2440 | 2441 | '@esbuild/win32-x64@0.25.2': 2442 | optional: true 2443 | 2444 | '@jridgewell/gen-mapping@0.3.8': 2445 | dependencies: 2446 | '@jridgewell/set-array': 1.2.1 2447 | '@jridgewell/sourcemap-codec': 1.5.0 2448 | '@jridgewell/trace-mapping': 0.3.25 2449 | 2450 | '@jridgewell/resolve-uri@3.1.2': {} 2451 | 2452 | '@jridgewell/set-array@1.2.1': {} 2453 | 2454 | '@jridgewell/sourcemap-codec@1.5.0': {} 2455 | 2456 | '@jridgewell/trace-mapping@0.3.25': 2457 | dependencies: 2458 | '@jridgewell/resolve-uri': 3.1.2 2459 | '@jridgewell/sourcemap-codec': 1.5.0 2460 | 2461 | '@nodelib/fs.scandir@2.1.5': 2462 | dependencies: 2463 | '@nodelib/fs.stat': 2.0.5 2464 | run-parallel: 1.2.0 2465 | 2466 | '@nodelib/fs.stat@2.0.5': {} 2467 | 2468 | '@nodelib/fs.walk@1.2.8': 2469 | dependencies: 2470 | '@nodelib/fs.scandir': 2.1.5 2471 | fastq: 1.19.1 2472 | 2473 | '@pnpm/config.env-replace@1.1.0': {} 2474 | 2475 | '@pnpm/network.ca-file@1.0.2': 2476 | dependencies: 2477 | graceful-fs: 4.2.10 2478 | 2479 | '@pnpm/npm-conf@2.3.1': 2480 | dependencies: 2481 | '@pnpm/config.env-replace': 1.1.0 2482 | '@pnpm/network.ca-file': 1.0.2 2483 | config-chain: 1.1.13 2484 | 2485 | '@rollup/rollup-android-arm-eabi@4.38.0': 2486 | optional: true 2487 | 2488 | '@rollup/rollup-android-arm64@4.38.0': 2489 | optional: true 2490 | 2491 | '@rollup/rollup-darwin-arm64@4.38.0': 2492 | optional: true 2493 | 2494 | '@rollup/rollup-darwin-x64@4.38.0': 2495 | optional: true 2496 | 2497 | '@rollup/rollup-freebsd-arm64@4.38.0': 2498 | optional: true 2499 | 2500 | '@rollup/rollup-freebsd-x64@4.38.0': 2501 | optional: true 2502 | 2503 | '@rollup/rollup-linux-arm-gnueabihf@4.38.0': 2504 | optional: true 2505 | 2506 | '@rollup/rollup-linux-arm-musleabihf@4.38.0': 2507 | optional: true 2508 | 2509 | '@rollup/rollup-linux-arm64-gnu@4.38.0': 2510 | optional: true 2511 | 2512 | '@rollup/rollup-linux-arm64-musl@4.38.0': 2513 | optional: true 2514 | 2515 | '@rollup/rollup-linux-loongarch64-gnu@4.38.0': 2516 | optional: true 2517 | 2518 | '@rollup/rollup-linux-powerpc64le-gnu@4.38.0': 2519 | optional: true 2520 | 2521 | '@rollup/rollup-linux-riscv64-gnu@4.38.0': 2522 | optional: true 2523 | 2524 | '@rollup/rollup-linux-riscv64-musl@4.38.0': 2525 | optional: true 2526 | 2527 | '@rollup/rollup-linux-s390x-gnu@4.38.0': 2528 | optional: true 2529 | 2530 | '@rollup/rollup-linux-x64-gnu@4.38.0': 2531 | optional: true 2532 | 2533 | '@rollup/rollup-linux-x64-musl@4.38.0': 2534 | optional: true 2535 | 2536 | '@rollup/rollup-win32-arm64-msvc@4.38.0': 2537 | optional: true 2538 | 2539 | '@rollup/rollup-win32-ia32-msvc@4.38.0': 2540 | optional: true 2541 | 2542 | '@rollup/rollup-win32-x64-msvc@4.38.0': 2543 | optional: true 2544 | 2545 | '@sindresorhus/is@5.6.0': {} 2546 | 2547 | '@szmarczak/http-timer@5.0.1': 2548 | dependencies: 2549 | defer-to-connect: 2.0.1 2550 | 2551 | '@types/babel__core@7.20.5': 2552 | dependencies: 2553 | '@babel/parser': 7.27.0 2554 | '@babel/types': 7.27.0 2555 | '@types/babel__generator': 7.6.8 2556 | '@types/babel__template': 7.4.4 2557 | '@types/babel__traverse': 7.20.7 2558 | 2559 | '@types/babel__generator@7.6.8': 2560 | dependencies: 2561 | '@babel/types': 7.27.0 2562 | 2563 | '@types/babel__template@7.4.4': 2564 | dependencies: 2565 | '@babel/parser': 7.27.0 2566 | '@babel/types': 7.27.0 2567 | 2568 | '@types/babel__traverse@7.20.7': 2569 | dependencies: 2570 | '@babel/types': 7.27.0 2571 | 2572 | '@types/estree@1.0.7': {} 2573 | 2574 | '@types/filesystem@0.0.36': 2575 | dependencies: 2576 | '@types/filewriter': 0.0.33 2577 | 2578 | '@types/filewriter@0.0.33': {} 2579 | 2580 | '@types/har-format@1.2.16': {} 2581 | 2582 | '@types/http-cache-semantics@4.0.4': {} 2583 | 2584 | '@types/minimatch@3.0.5': {} 2585 | 2586 | '@types/node@22.13.15': 2587 | dependencies: 2588 | undici-types: 6.20.0 2589 | 2590 | '@types/react-dom@19.0.4(@types/react@19.0.12)': 2591 | dependencies: 2592 | '@types/react': 19.0.12 2593 | 2594 | '@types/react@19.0.12': 2595 | dependencies: 2596 | csstype: 3.1.3 2597 | 2598 | '@types/yauzl@2.10.3': 2599 | dependencies: 2600 | '@types/node': 22.13.15 2601 | optional: true 2602 | 2603 | '@vitejs/plugin-react@4.3.4(vite@6.2.4(@types/node@22.13.15)(jiti@2.4.2))': 2604 | dependencies: 2605 | '@babel/core': 7.26.10 2606 | '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10) 2607 | '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10) 2608 | '@types/babel__core': 7.20.5 2609 | react-refresh: 0.14.2 2610 | vite: 6.2.4(@types/node@22.13.15)(jiti@2.4.2) 2611 | transitivePeerDependencies: 2612 | - supports-color 2613 | 2614 | '@webext-core/fake-browser@1.3.2': 2615 | dependencies: 2616 | lodash.merge: 4.6.2 2617 | 2618 | '@webext-core/isolated-element@1.1.2': 2619 | dependencies: 2620 | is-potential-custom-element-name: 1.0.1 2621 | 2622 | '@webext-core/match-patterns@1.0.3': {} 2623 | 2624 | '@wxt-dev/browser@0.0.310': 2625 | dependencies: 2626 | '@types/filesystem': 0.0.36 2627 | '@types/har-format': 1.2.16 2628 | 2629 | '@wxt-dev/module-react@1.1.3(vite@6.2.4(@types/node@22.13.15)(jiti@2.4.2))(wxt@0.20.0(@types/node@22.13.15)(jiti@2.4.2)(rollup@4.38.0))': 2630 | dependencies: 2631 | '@vitejs/plugin-react': 4.3.4(vite@6.2.4(@types/node@22.13.15)(jiti@2.4.2)) 2632 | wxt: 0.20.0(@types/node@22.13.15)(jiti@2.4.2)(rollup@4.38.0) 2633 | transitivePeerDependencies: 2634 | - supports-color 2635 | - vite 2636 | 2637 | '@wxt-dev/storage@1.1.1': 2638 | dependencies: 2639 | async-mutex: 0.5.0 2640 | dequal: 2.0.3 2641 | 2642 | acorn@8.14.1: {} 2643 | 2644 | adm-zip@0.5.16: {} 2645 | 2646 | ansi-align@3.0.1: 2647 | dependencies: 2648 | string-width: 4.2.3 2649 | 2650 | ansi-escapes@7.0.0: 2651 | dependencies: 2652 | environment: 1.1.0 2653 | 2654 | ansi-regex@5.0.1: {} 2655 | 2656 | ansi-regex@6.1.0: {} 2657 | 2658 | ansi-styles@4.3.0: 2659 | dependencies: 2660 | color-convert: 2.0.1 2661 | 2662 | ansi-styles@6.2.1: {} 2663 | 2664 | any-promise@1.3.0: {} 2665 | 2666 | array-differ@4.0.0: {} 2667 | 2668 | array-union@3.0.1: {} 2669 | 2670 | async-mutex@0.5.0: 2671 | dependencies: 2672 | tslib: 2.8.1 2673 | 2674 | async@3.2.6: {} 2675 | 2676 | at-least-node@1.0.0: {} 2677 | 2678 | balanced-match@1.0.2: {} 2679 | 2680 | base64-js@1.5.1: {} 2681 | 2682 | big-integer@1.6.52: {} 2683 | 2684 | bl@5.1.0: 2685 | dependencies: 2686 | buffer: 6.0.3 2687 | inherits: 2.0.4 2688 | readable-stream: 3.6.2 2689 | 2690 | bluebird@3.7.2: {} 2691 | 2692 | boolbase@1.0.0: {} 2693 | 2694 | boxen@7.1.1: 2695 | dependencies: 2696 | ansi-align: 3.0.1 2697 | camelcase: 7.0.1 2698 | chalk: 5.4.1 2699 | cli-boxes: 3.0.0 2700 | string-width: 5.1.2 2701 | type-fest: 2.19.0 2702 | widest-line: 4.0.1 2703 | wrap-ansi: 8.1.0 2704 | 2705 | bplist-parser@0.2.0: 2706 | dependencies: 2707 | big-integer: 1.6.52 2708 | 2709 | brace-expansion@1.1.11: 2710 | dependencies: 2711 | balanced-match: 1.0.2 2712 | concat-map: 0.0.1 2713 | 2714 | brace-expansion@2.0.1: 2715 | dependencies: 2716 | balanced-match: 1.0.2 2717 | 2718 | braces@3.0.3: 2719 | dependencies: 2720 | fill-range: 7.1.1 2721 | 2722 | browserslist@4.24.4: 2723 | dependencies: 2724 | caniuse-lite: 1.0.30001707 2725 | electron-to-chromium: 1.5.129 2726 | node-releases: 2.0.19 2727 | update-browserslist-db: 1.1.3(browserslist@4.24.4) 2728 | 2729 | buffer-crc32@0.2.13: {} 2730 | 2731 | buffer-from@1.1.2: {} 2732 | 2733 | buffer@6.0.3: 2734 | dependencies: 2735 | base64-js: 1.5.1 2736 | ieee754: 1.2.1 2737 | 2738 | bundle-name@3.0.0: 2739 | dependencies: 2740 | run-applescript: 5.0.0 2741 | 2742 | bundle-name@4.1.0: 2743 | dependencies: 2744 | run-applescript: 7.0.0 2745 | 2746 | bunyan@1.8.15: 2747 | optionalDependencies: 2748 | dtrace-provider: 0.8.8 2749 | moment: 2.30.1 2750 | mv: 2.1.1 2751 | safe-json-stringify: 1.2.0 2752 | 2753 | c12@3.0.2(magicast@0.3.5): 2754 | dependencies: 2755 | chokidar: 4.0.3 2756 | confbox: 0.1.8 2757 | defu: 6.1.4 2758 | dotenv: 16.4.7 2759 | exsolve: 1.0.4 2760 | giget: 2.0.0 2761 | jiti: 2.4.2 2762 | ohash: 2.0.11 2763 | pathe: 2.0.3 2764 | perfect-debounce: 1.0.0 2765 | pkg-types: 2.1.0 2766 | rc9: 2.1.2 2767 | optionalDependencies: 2768 | magicast: 0.3.5 2769 | 2770 | cac@6.7.14: {} 2771 | 2772 | cacheable-lookup@7.0.0: {} 2773 | 2774 | cacheable-request@10.2.14: 2775 | dependencies: 2776 | '@types/http-cache-semantics': 4.0.4 2777 | get-stream: 6.0.1 2778 | http-cache-semantics: 4.1.1 2779 | keyv: 4.5.4 2780 | mimic-response: 4.0.0 2781 | normalize-url: 8.0.1 2782 | responselike: 3.0.0 2783 | 2784 | camelcase@7.0.1: {} 2785 | 2786 | caniuse-lite@1.0.30001707: {} 2787 | 2788 | chalk@4.1.2: 2789 | dependencies: 2790 | ansi-styles: 4.3.0 2791 | supports-color: 7.2.0 2792 | 2793 | chalk@5.4.1: {} 2794 | 2795 | chokidar@4.0.3: 2796 | dependencies: 2797 | readdirp: 4.1.2 2798 | 2799 | chrome-launcher@1.1.0: 2800 | dependencies: 2801 | '@types/node': 22.13.15 2802 | escape-string-regexp: 4.0.0 2803 | is-wsl: 2.2.0 2804 | lighthouse-logger: 2.0.1 2805 | transitivePeerDependencies: 2806 | - supports-color 2807 | 2808 | ci-info@3.9.0: {} 2809 | 2810 | ci-info@4.2.0: {} 2811 | 2812 | citty@0.1.6: 2813 | dependencies: 2814 | consola: 3.4.2 2815 | 2816 | cli-boxes@3.0.0: {} 2817 | 2818 | cli-cursor@4.0.0: 2819 | dependencies: 2820 | restore-cursor: 4.0.0 2821 | 2822 | cli-cursor@5.0.0: 2823 | dependencies: 2824 | restore-cursor: 5.1.0 2825 | 2826 | cli-highlight@2.1.11: 2827 | dependencies: 2828 | chalk: 4.1.2 2829 | highlight.js: 10.7.3 2830 | mz: 2.7.0 2831 | parse5: 5.1.1 2832 | parse5-htmlparser2-tree-adapter: 6.0.1 2833 | yargs: 16.2.0 2834 | 2835 | cli-spinners@2.9.2: {} 2836 | 2837 | cli-truncate@4.0.0: 2838 | dependencies: 2839 | slice-ansi: 5.0.0 2840 | string-width: 7.2.0 2841 | 2842 | cliui@7.0.4: 2843 | dependencies: 2844 | string-width: 4.2.3 2845 | strip-ansi: 6.0.1 2846 | wrap-ansi: 7.0.0 2847 | 2848 | cliui@8.0.1: 2849 | dependencies: 2850 | string-width: 4.2.3 2851 | strip-ansi: 6.0.1 2852 | wrap-ansi: 7.0.0 2853 | 2854 | clone@1.0.4: {} 2855 | 2856 | color-convert@2.0.1: 2857 | dependencies: 2858 | color-name: 1.1.4 2859 | 2860 | color-name@1.1.4: {} 2861 | 2862 | colorette@2.0.20: {} 2863 | 2864 | commander@2.9.0: 2865 | dependencies: 2866 | graceful-readlink: 1.0.1 2867 | 2868 | commander@9.5.0: {} 2869 | 2870 | concat-map@0.0.1: {} 2871 | 2872 | concat-stream@1.6.2: 2873 | dependencies: 2874 | buffer-from: 1.1.2 2875 | inherits: 2.0.4 2876 | readable-stream: 2.3.8 2877 | typedarray: 0.0.6 2878 | 2879 | confbox@0.1.8: {} 2880 | 2881 | confbox@0.2.1: {} 2882 | 2883 | config-chain@1.1.13: 2884 | dependencies: 2885 | ini: 1.3.8 2886 | proto-list: 1.2.4 2887 | 2888 | configstore@6.0.0: 2889 | dependencies: 2890 | dot-prop: 6.0.1 2891 | graceful-fs: 4.2.11 2892 | unique-string: 3.0.0 2893 | write-file-atomic: 3.0.3 2894 | xdg-basedir: 5.1.0 2895 | 2896 | consola@3.4.2: {} 2897 | 2898 | convert-source-map@2.0.0: {} 2899 | 2900 | core-util-is@1.0.3: {} 2901 | 2902 | cross-spawn@7.0.6: 2903 | dependencies: 2904 | path-key: 3.1.1 2905 | shebang-command: 2.0.0 2906 | which: 2.0.2 2907 | 2908 | crypto-random-string@4.0.0: 2909 | dependencies: 2910 | type-fest: 1.4.0 2911 | 2912 | css-select@5.1.0: 2913 | dependencies: 2914 | boolbase: 1.0.0 2915 | css-what: 6.1.0 2916 | domhandler: 5.0.3 2917 | domutils: 3.2.2 2918 | nth-check: 2.1.1 2919 | 2920 | css-what@6.1.0: {} 2921 | 2922 | cssom@0.5.0: {} 2923 | 2924 | csstype@3.1.3: {} 2925 | 2926 | debounce@1.2.1: {} 2927 | 2928 | debug@2.6.9: 2929 | dependencies: 2930 | ms: 2.0.0 2931 | 2932 | debug@4.3.7: 2933 | dependencies: 2934 | ms: 2.1.3 2935 | 2936 | debug@4.4.0: 2937 | dependencies: 2938 | ms: 2.1.3 2939 | 2940 | decompress-response@6.0.0: 2941 | dependencies: 2942 | mimic-response: 3.1.0 2943 | 2944 | deep-extend@0.6.0: {} 2945 | 2946 | default-browser-id@3.0.0: 2947 | dependencies: 2948 | bplist-parser: 0.2.0 2949 | untildify: 4.0.0 2950 | 2951 | default-browser-id@5.0.0: {} 2952 | 2953 | default-browser@4.0.0: 2954 | dependencies: 2955 | bundle-name: 3.0.0 2956 | default-browser-id: 3.0.0 2957 | execa: 7.2.0 2958 | titleize: 3.0.0 2959 | 2960 | default-browser@5.2.1: 2961 | dependencies: 2962 | bundle-name: 4.1.0 2963 | default-browser-id: 5.0.0 2964 | 2965 | defaults@1.0.4: 2966 | dependencies: 2967 | clone: 1.0.4 2968 | 2969 | defer-to-connect@2.0.1: {} 2970 | 2971 | define-lazy-prop@2.0.0: {} 2972 | 2973 | define-lazy-prop@3.0.0: {} 2974 | 2975 | defu@6.1.4: {} 2976 | 2977 | dequal@2.0.3: {} 2978 | 2979 | destr@2.0.3: {} 2980 | 2981 | dom-serializer@2.0.0: 2982 | dependencies: 2983 | domelementtype: 2.3.0 2984 | domhandler: 5.0.3 2985 | entities: 4.5.0 2986 | 2987 | domelementtype@2.3.0: {} 2988 | 2989 | domhandler@5.0.3: 2990 | dependencies: 2991 | domelementtype: 2.3.0 2992 | 2993 | domutils@3.2.2: 2994 | dependencies: 2995 | dom-serializer: 2.0.0 2996 | domelementtype: 2.3.0 2997 | domhandler: 5.0.3 2998 | 2999 | dot-prop@6.0.1: 3000 | dependencies: 3001 | is-obj: 2.0.0 3002 | 3003 | dotenv-expand@12.0.1: 3004 | dependencies: 3005 | dotenv: 16.4.7 3006 | 3007 | dotenv@16.4.7: {} 3008 | 3009 | dtrace-provider@0.8.8: 3010 | dependencies: 3011 | nan: 2.22.2 3012 | optional: true 3013 | 3014 | eastasianwidth@0.2.0: {} 3015 | 3016 | electron-to-chromium@1.5.129: {} 3017 | 3018 | emoji-regex@10.4.0: {} 3019 | 3020 | emoji-regex@8.0.0: {} 3021 | 3022 | emoji-regex@9.2.2: {} 3023 | 3024 | end-of-stream@1.4.4: 3025 | dependencies: 3026 | once: 1.4.0 3027 | 3028 | entities@4.5.0: {} 3029 | 3030 | entities@6.0.0: {} 3031 | 3032 | environment@1.1.0: {} 3033 | 3034 | error-ex@1.3.2: 3035 | dependencies: 3036 | is-arrayish: 0.2.1 3037 | 3038 | es-module-lexer@1.6.0: {} 3039 | 3040 | es6-error@4.1.1: {} 3041 | 3042 | esbuild@0.25.2: 3043 | optionalDependencies: 3044 | '@esbuild/aix-ppc64': 0.25.2 3045 | '@esbuild/android-arm': 0.25.2 3046 | '@esbuild/android-arm64': 0.25.2 3047 | '@esbuild/android-x64': 0.25.2 3048 | '@esbuild/darwin-arm64': 0.25.2 3049 | '@esbuild/darwin-x64': 0.25.2 3050 | '@esbuild/freebsd-arm64': 0.25.2 3051 | '@esbuild/freebsd-x64': 0.25.2 3052 | '@esbuild/linux-arm': 0.25.2 3053 | '@esbuild/linux-arm64': 0.25.2 3054 | '@esbuild/linux-ia32': 0.25.2 3055 | '@esbuild/linux-loong64': 0.25.2 3056 | '@esbuild/linux-mips64el': 0.25.2 3057 | '@esbuild/linux-ppc64': 0.25.2 3058 | '@esbuild/linux-riscv64': 0.25.2 3059 | '@esbuild/linux-s390x': 0.25.2 3060 | '@esbuild/linux-x64': 0.25.2 3061 | '@esbuild/netbsd-arm64': 0.25.2 3062 | '@esbuild/netbsd-x64': 0.25.2 3063 | '@esbuild/openbsd-arm64': 0.25.2 3064 | '@esbuild/openbsd-x64': 0.25.2 3065 | '@esbuild/sunos-x64': 0.25.2 3066 | '@esbuild/win32-arm64': 0.25.2 3067 | '@esbuild/win32-ia32': 0.25.2 3068 | '@esbuild/win32-x64': 0.25.2 3069 | 3070 | escalade@3.2.0: {} 3071 | 3072 | escape-goat@4.0.0: {} 3073 | 3074 | escape-string-regexp@4.0.0: {} 3075 | 3076 | escape-string-regexp@5.0.0: {} 3077 | 3078 | estree-walker@3.0.3: 3079 | dependencies: 3080 | '@types/estree': 1.0.7 3081 | 3082 | eventemitter3@5.0.1: {} 3083 | 3084 | execa@5.1.1: 3085 | dependencies: 3086 | cross-spawn: 7.0.6 3087 | get-stream: 6.0.1 3088 | human-signals: 2.1.0 3089 | is-stream: 2.0.1 3090 | merge-stream: 2.0.0 3091 | npm-run-path: 4.0.1 3092 | onetime: 5.1.2 3093 | signal-exit: 3.0.7 3094 | strip-final-newline: 2.0.0 3095 | 3096 | execa@7.2.0: 3097 | dependencies: 3098 | cross-spawn: 7.0.6 3099 | get-stream: 6.0.1 3100 | human-signals: 4.3.1 3101 | is-stream: 3.0.0 3102 | merge-stream: 2.0.0 3103 | npm-run-path: 5.3.0 3104 | onetime: 6.0.0 3105 | signal-exit: 3.0.7 3106 | strip-final-newline: 3.0.0 3107 | 3108 | execa@8.0.1: 3109 | dependencies: 3110 | cross-spawn: 7.0.6 3111 | get-stream: 8.0.1 3112 | human-signals: 5.0.0 3113 | is-stream: 3.0.0 3114 | merge-stream: 2.0.0 3115 | npm-run-path: 5.3.0 3116 | onetime: 6.0.0 3117 | signal-exit: 4.1.0 3118 | strip-final-newline: 3.0.0 3119 | 3120 | exsolve@1.0.4: {} 3121 | 3122 | extract-zip@2.0.1: 3123 | dependencies: 3124 | debug: 4.4.0 3125 | get-stream: 5.2.0 3126 | yauzl: 2.10.0 3127 | optionalDependencies: 3128 | '@types/yauzl': 2.10.3 3129 | transitivePeerDependencies: 3130 | - supports-color 3131 | 3132 | fast-glob@3.3.3: 3133 | dependencies: 3134 | '@nodelib/fs.stat': 2.0.5 3135 | '@nodelib/fs.walk': 1.2.8 3136 | glob-parent: 5.1.2 3137 | merge2: 1.4.1 3138 | micromatch: 4.0.8 3139 | 3140 | fastq@1.19.1: 3141 | dependencies: 3142 | reusify: 1.1.0 3143 | 3144 | fd-slicer@1.1.0: 3145 | dependencies: 3146 | pend: 1.2.0 3147 | 3148 | fdir@6.4.3(picomatch@4.0.2): 3149 | optionalDependencies: 3150 | picomatch: 4.0.2 3151 | 3152 | filesize@10.1.6: {} 3153 | 3154 | fill-range@7.1.1: 3155 | dependencies: 3156 | to-regex-range: 5.0.1 3157 | 3158 | firefox-profile@4.6.0: 3159 | dependencies: 3160 | adm-zip: 0.5.16 3161 | fs-extra: 9.0.1 3162 | ini: 2.0.0 3163 | minimist: 1.2.8 3164 | xml2js: 0.5.0 3165 | 3166 | form-data-encoder@2.1.4: {} 3167 | 3168 | formdata-node@6.0.3: {} 3169 | 3170 | fs-extra@11.2.0: 3171 | dependencies: 3172 | graceful-fs: 4.2.11 3173 | jsonfile: 6.1.0 3174 | universalify: 2.0.1 3175 | 3176 | fs-extra@11.3.0: 3177 | dependencies: 3178 | graceful-fs: 4.2.11 3179 | jsonfile: 6.1.0 3180 | universalify: 2.0.1 3181 | 3182 | fs-extra@9.0.1: 3183 | dependencies: 3184 | at-least-node: 1.0.0 3185 | graceful-fs: 4.2.11 3186 | jsonfile: 6.1.0 3187 | universalify: 1.0.0 3188 | 3189 | fsevents@2.3.3: 3190 | optional: true 3191 | 3192 | fx-runner@1.4.0: 3193 | dependencies: 3194 | commander: 2.9.0 3195 | shell-quote: 1.7.3 3196 | spawn-sync: 1.0.15 3197 | when: 3.7.7 3198 | which: 1.2.4 3199 | winreg: 0.0.12 3200 | 3201 | gensync@1.0.0-beta.2: {} 3202 | 3203 | get-caller-file@2.0.5: {} 3204 | 3205 | get-east-asian-width@1.3.0: {} 3206 | 3207 | get-port-please@3.1.2: {} 3208 | 3209 | get-stream@5.2.0: 3210 | dependencies: 3211 | pump: 3.0.2 3212 | 3213 | get-stream@6.0.1: {} 3214 | 3215 | get-stream@8.0.1: {} 3216 | 3217 | giget@2.0.0: 3218 | dependencies: 3219 | citty: 0.1.6 3220 | consola: 3.4.2 3221 | defu: 6.1.4 3222 | node-fetch-native: 1.6.6 3223 | nypm: 0.6.0 3224 | pathe: 2.0.3 3225 | 3226 | glob-parent@5.1.2: 3227 | dependencies: 3228 | is-glob: 4.0.3 3229 | 3230 | glob-to-regexp@0.4.1: {} 3231 | 3232 | glob@6.0.4: 3233 | dependencies: 3234 | inflight: 1.0.6 3235 | inherits: 2.0.4 3236 | minimatch: 3.1.2 3237 | once: 1.4.0 3238 | path-is-absolute: 1.0.1 3239 | optional: true 3240 | 3241 | global-dirs@3.0.1: 3242 | dependencies: 3243 | ini: 2.0.0 3244 | 3245 | globals@11.12.0: {} 3246 | 3247 | got@12.6.1: 3248 | dependencies: 3249 | '@sindresorhus/is': 5.6.0 3250 | '@szmarczak/http-timer': 5.0.1 3251 | cacheable-lookup: 7.0.0 3252 | cacheable-request: 10.2.14 3253 | decompress-response: 6.0.0 3254 | form-data-encoder: 2.1.4 3255 | get-stream: 6.0.1 3256 | http2-wrapper: 2.2.1 3257 | lowercase-keys: 3.0.0 3258 | p-cancelable: 3.0.0 3259 | responselike: 3.0.0 3260 | 3261 | graceful-fs@4.2.10: {} 3262 | 3263 | graceful-fs@4.2.11: {} 3264 | 3265 | graceful-readlink@1.0.1: {} 3266 | 3267 | growly@1.3.0: {} 3268 | 3269 | has-flag@4.0.0: {} 3270 | 3271 | has-yarn@3.0.0: {} 3272 | 3273 | highlight.js@10.7.3: {} 3274 | 3275 | hookable@5.5.3: {} 3276 | 3277 | html-escaper@3.0.3: {} 3278 | 3279 | htmlparser2@10.0.0: 3280 | dependencies: 3281 | domelementtype: 2.3.0 3282 | domhandler: 5.0.3 3283 | domutils: 3.2.2 3284 | entities: 6.0.0 3285 | 3286 | http-cache-semantics@4.1.1: {} 3287 | 3288 | http2-wrapper@2.2.1: 3289 | dependencies: 3290 | quick-lru: 5.1.1 3291 | resolve-alpn: 1.2.1 3292 | 3293 | human-signals@2.1.0: {} 3294 | 3295 | human-signals@4.3.1: {} 3296 | 3297 | human-signals@5.0.0: {} 3298 | 3299 | ieee754@1.2.1: {} 3300 | 3301 | immediate@3.0.6: {} 3302 | 3303 | import-lazy@4.0.0: {} 3304 | 3305 | import-meta-resolve@4.1.0: {} 3306 | 3307 | imurmurhash@0.1.4: {} 3308 | 3309 | inflight@1.0.6: 3310 | dependencies: 3311 | once: 1.4.0 3312 | wrappy: 1.0.2 3313 | optional: true 3314 | 3315 | inherits@2.0.4: {} 3316 | 3317 | ini@1.3.8: {} 3318 | 3319 | ini@2.0.0: {} 3320 | 3321 | is-absolute@0.1.7: 3322 | dependencies: 3323 | is-relative: 0.1.3 3324 | 3325 | is-arrayish@0.2.1: {} 3326 | 3327 | is-ci@3.0.1: 3328 | dependencies: 3329 | ci-info: 3.9.0 3330 | 3331 | is-docker@2.2.1: {} 3332 | 3333 | is-docker@3.0.0: {} 3334 | 3335 | is-extglob@2.1.1: {} 3336 | 3337 | is-fullwidth-code-point@3.0.0: {} 3338 | 3339 | is-fullwidth-code-point@4.0.0: {} 3340 | 3341 | is-fullwidth-code-point@5.0.0: 3342 | dependencies: 3343 | get-east-asian-width: 1.3.0 3344 | 3345 | is-glob@4.0.3: 3346 | dependencies: 3347 | is-extglob: 2.1.1 3348 | 3349 | is-inside-container@1.0.0: 3350 | dependencies: 3351 | is-docker: 3.0.0 3352 | 3353 | is-installed-globally@0.4.0: 3354 | dependencies: 3355 | global-dirs: 3.0.1 3356 | is-path-inside: 3.0.3 3357 | 3358 | is-interactive@2.0.0: {} 3359 | 3360 | is-npm@6.0.0: {} 3361 | 3362 | is-number@7.0.0: {} 3363 | 3364 | is-obj@2.0.0: {} 3365 | 3366 | is-path-inside@3.0.3: {} 3367 | 3368 | is-plain-object@2.0.4: 3369 | dependencies: 3370 | isobject: 3.0.1 3371 | 3372 | is-potential-custom-element-name@1.0.1: {} 3373 | 3374 | is-primitive@3.0.1: {} 3375 | 3376 | is-relative@0.1.3: {} 3377 | 3378 | is-stream@2.0.1: {} 3379 | 3380 | is-stream@3.0.0: {} 3381 | 3382 | is-typedarray@1.0.0: {} 3383 | 3384 | is-unicode-supported@1.3.0: {} 3385 | 3386 | is-unicode-supported@2.1.0: {} 3387 | 3388 | is-wsl@2.2.0: 3389 | dependencies: 3390 | is-docker: 2.2.1 3391 | 3392 | is-wsl@3.1.0: 3393 | dependencies: 3394 | is-inside-container: 1.0.0 3395 | 3396 | is-yarn-global@0.4.1: {} 3397 | 3398 | isarray@1.0.0: {} 3399 | 3400 | isexe@1.1.2: {} 3401 | 3402 | isexe@2.0.0: {} 3403 | 3404 | isobject@3.0.1: {} 3405 | 3406 | jiti@2.4.2: {} 3407 | 3408 | js-tokens@4.0.0: {} 3409 | 3410 | js-tokens@9.0.1: {} 3411 | 3412 | jsesc@3.1.0: {} 3413 | 3414 | json-buffer@3.0.1: {} 3415 | 3416 | json-parse-even-better-errors@3.0.2: {} 3417 | 3418 | json5@2.2.3: {} 3419 | 3420 | jsonfile@6.1.0: 3421 | dependencies: 3422 | universalify: 2.0.1 3423 | optionalDependencies: 3424 | graceful-fs: 4.2.11 3425 | 3426 | jszip@3.10.1: 3427 | dependencies: 3428 | lie: 3.3.0 3429 | pako: 1.0.11 3430 | readable-stream: 2.3.8 3431 | setimmediate: 1.0.5 3432 | 3433 | keyv@4.5.4: 3434 | dependencies: 3435 | json-buffer: 3.0.1 3436 | 3437 | kleur@3.0.3: {} 3438 | 3439 | latest-version@7.0.0: 3440 | dependencies: 3441 | package-json: 8.1.1 3442 | 3443 | lie@3.3.0: 3444 | dependencies: 3445 | immediate: 3.0.6 3446 | 3447 | lighthouse-logger@2.0.1: 3448 | dependencies: 3449 | debug: 2.6.9 3450 | marky: 1.2.5 3451 | transitivePeerDependencies: 3452 | - supports-color 3453 | 3454 | lines-and-columns@2.0.4: {} 3455 | 3456 | linkedom@0.18.9: 3457 | dependencies: 3458 | css-select: 5.1.0 3459 | cssom: 0.5.0 3460 | html-escaper: 3.0.3 3461 | htmlparser2: 10.0.0 3462 | uhyphen: 0.2.0 3463 | 3464 | listr2@8.2.5: 3465 | dependencies: 3466 | cli-truncate: 4.0.0 3467 | colorette: 2.0.20 3468 | eventemitter3: 5.0.1 3469 | log-update: 6.1.0 3470 | rfdc: 1.4.1 3471 | wrap-ansi: 9.0.0 3472 | 3473 | local-pkg@1.1.1: 3474 | dependencies: 3475 | mlly: 1.7.4 3476 | pkg-types: 2.1.0 3477 | quansync: 0.2.10 3478 | 3479 | lodash.camelcase@4.3.0: {} 3480 | 3481 | lodash.kebabcase@4.1.1: {} 3482 | 3483 | lodash.merge@4.6.2: {} 3484 | 3485 | lodash.snakecase@4.1.1: {} 3486 | 3487 | log-symbols@5.1.0: 3488 | dependencies: 3489 | chalk: 5.4.1 3490 | is-unicode-supported: 1.3.0 3491 | 3492 | log-symbols@6.0.0: 3493 | dependencies: 3494 | chalk: 5.4.1 3495 | is-unicode-supported: 1.3.0 3496 | 3497 | log-update@6.1.0: 3498 | dependencies: 3499 | ansi-escapes: 7.0.0 3500 | cli-cursor: 5.0.0 3501 | slice-ansi: 7.1.0 3502 | strip-ansi: 7.1.0 3503 | wrap-ansi: 9.0.0 3504 | 3505 | lowercase-keys@3.0.0: {} 3506 | 3507 | lru-cache@5.1.1: 3508 | dependencies: 3509 | yallist: 3.1.1 3510 | 3511 | magic-string@0.30.17: 3512 | dependencies: 3513 | '@jridgewell/sourcemap-codec': 1.5.0 3514 | 3515 | magicast@0.3.5: 3516 | dependencies: 3517 | '@babel/parser': 7.27.0 3518 | '@babel/types': 7.27.0 3519 | source-map-js: 1.2.1 3520 | 3521 | make-error@1.3.6: {} 3522 | 3523 | many-keys-map@2.0.1: {} 3524 | 3525 | marky@1.2.5: {} 3526 | 3527 | merge-stream@2.0.0: {} 3528 | 3529 | merge2@1.4.1: {} 3530 | 3531 | micromatch@4.0.8: 3532 | dependencies: 3533 | braces: 3.0.3 3534 | picomatch: 2.3.1 3535 | 3536 | mimic-fn@2.1.0: {} 3537 | 3538 | mimic-fn@4.0.0: {} 3539 | 3540 | mimic-function@5.0.1: {} 3541 | 3542 | mimic-response@3.1.0: {} 3543 | 3544 | mimic-response@4.0.0: {} 3545 | 3546 | minimatch@10.0.1: 3547 | dependencies: 3548 | brace-expansion: 2.0.1 3549 | 3550 | minimatch@3.1.2: 3551 | dependencies: 3552 | brace-expansion: 1.1.11 3553 | 3554 | minimist@1.2.8: {} 3555 | 3556 | mkdirp@0.5.6: 3557 | dependencies: 3558 | minimist: 1.2.8 3559 | optional: true 3560 | 3561 | mkdirp@3.0.1: {} 3562 | 3563 | mlly@1.7.4: 3564 | dependencies: 3565 | acorn: 8.14.1 3566 | pathe: 2.0.3 3567 | pkg-types: 1.3.1 3568 | ufo: 1.5.4 3569 | 3570 | moment@2.30.1: 3571 | optional: true 3572 | 3573 | ms@2.0.0: {} 3574 | 3575 | ms@2.1.3: {} 3576 | 3577 | multimatch@6.0.0: 3578 | dependencies: 3579 | '@types/minimatch': 3.0.5 3580 | array-differ: 4.0.0 3581 | array-union: 3.0.1 3582 | minimatch: 3.1.2 3583 | 3584 | mv@2.1.1: 3585 | dependencies: 3586 | mkdirp: 0.5.6 3587 | ncp: 2.0.0 3588 | rimraf: 2.4.5 3589 | optional: true 3590 | 3591 | mz@2.7.0: 3592 | dependencies: 3593 | any-promise: 1.3.0 3594 | object-assign: 4.1.1 3595 | thenify-all: 1.6.0 3596 | 3597 | nan@2.22.2: 3598 | optional: true 3599 | 3600 | nano-spawn@0.2.0: {} 3601 | 3602 | nanoid@3.3.11: {} 3603 | 3604 | ncp@2.0.0: 3605 | optional: true 3606 | 3607 | node-fetch-native@1.6.6: {} 3608 | 3609 | node-forge@1.3.1: {} 3610 | 3611 | node-notifier@10.0.1: 3612 | dependencies: 3613 | growly: 1.3.0 3614 | is-wsl: 2.2.0 3615 | semver: 7.7.1 3616 | shellwords: 0.1.1 3617 | uuid: 8.3.2 3618 | which: 2.0.2 3619 | 3620 | node-releases@2.0.19: {} 3621 | 3622 | normalize-path@3.0.0: {} 3623 | 3624 | normalize-url@8.0.1: {} 3625 | 3626 | npm-run-path@4.0.1: 3627 | dependencies: 3628 | path-key: 3.1.1 3629 | 3630 | npm-run-path@5.3.0: 3631 | dependencies: 3632 | path-key: 4.0.0 3633 | 3634 | nth-check@2.1.1: 3635 | dependencies: 3636 | boolbase: 1.0.0 3637 | 3638 | nypm@0.3.12: 3639 | dependencies: 3640 | citty: 0.1.6 3641 | consola: 3.4.2 3642 | execa: 8.0.1 3643 | pathe: 1.1.2 3644 | pkg-types: 1.3.1 3645 | ufo: 1.5.4 3646 | 3647 | nypm@0.6.0: 3648 | dependencies: 3649 | citty: 0.1.6 3650 | consola: 3.4.2 3651 | pathe: 2.0.3 3652 | pkg-types: 2.1.0 3653 | tinyexec: 0.3.2 3654 | 3655 | object-assign@4.1.1: {} 3656 | 3657 | ofetch@1.4.1: 3658 | dependencies: 3659 | destr: 2.0.3 3660 | node-fetch-native: 1.6.6 3661 | ufo: 1.5.4 3662 | 3663 | ohash@1.1.6: {} 3664 | 3665 | ohash@2.0.11: {} 3666 | 3667 | once@1.4.0: 3668 | dependencies: 3669 | wrappy: 1.0.2 3670 | 3671 | onetime@5.1.2: 3672 | dependencies: 3673 | mimic-fn: 2.1.0 3674 | 3675 | onetime@6.0.0: 3676 | dependencies: 3677 | mimic-fn: 4.0.0 3678 | 3679 | onetime@7.0.0: 3680 | dependencies: 3681 | mimic-function: 5.0.1 3682 | 3683 | open@10.1.0: 3684 | dependencies: 3685 | default-browser: 5.2.1 3686 | define-lazy-prop: 3.0.0 3687 | is-inside-container: 1.0.0 3688 | is-wsl: 3.1.0 3689 | 3690 | open@8.4.2: 3691 | dependencies: 3692 | define-lazy-prop: 2.0.0 3693 | is-docker: 2.2.1 3694 | is-wsl: 2.2.0 3695 | 3696 | open@9.1.0: 3697 | dependencies: 3698 | default-browser: 4.0.0 3699 | define-lazy-prop: 3.0.0 3700 | is-inside-container: 1.0.0 3701 | is-wsl: 2.2.0 3702 | 3703 | ora@6.3.1: 3704 | dependencies: 3705 | chalk: 5.4.1 3706 | cli-cursor: 4.0.0 3707 | cli-spinners: 2.9.2 3708 | is-interactive: 2.0.0 3709 | is-unicode-supported: 1.3.0 3710 | log-symbols: 5.1.0 3711 | stdin-discarder: 0.1.0 3712 | strip-ansi: 7.1.0 3713 | wcwidth: 1.0.1 3714 | 3715 | ora@8.2.0: 3716 | dependencies: 3717 | chalk: 5.4.1 3718 | cli-cursor: 5.0.0 3719 | cli-spinners: 2.9.2 3720 | is-interactive: 2.0.0 3721 | is-unicode-supported: 2.1.0 3722 | log-symbols: 6.0.0 3723 | stdin-discarder: 0.2.2 3724 | string-width: 7.2.0 3725 | strip-ansi: 7.1.0 3726 | 3727 | os-shim@0.1.3: {} 3728 | 3729 | p-cancelable@3.0.0: {} 3730 | 3731 | package-json@8.1.1: 3732 | dependencies: 3733 | got: 12.6.1 3734 | registry-auth-token: 5.1.0 3735 | registry-url: 6.0.1 3736 | semver: 7.7.1 3737 | 3738 | pako@1.0.11: {} 3739 | 3740 | parse-json@7.1.1: 3741 | dependencies: 3742 | '@babel/code-frame': 7.26.2 3743 | error-ex: 1.3.2 3744 | json-parse-even-better-errors: 3.0.2 3745 | lines-and-columns: 2.0.4 3746 | type-fest: 3.13.1 3747 | 3748 | parse5-htmlparser2-tree-adapter@6.0.1: 3749 | dependencies: 3750 | parse5: 6.0.1 3751 | 3752 | parse5@5.1.1: {} 3753 | 3754 | parse5@6.0.1: {} 3755 | 3756 | path-is-absolute@1.0.1: 3757 | optional: true 3758 | 3759 | path-key@3.1.1: {} 3760 | 3761 | path-key@4.0.0: {} 3762 | 3763 | pathe@1.1.2: {} 3764 | 3765 | pathe@2.0.3: {} 3766 | 3767 | pend@1.2.0: {} 3768 | 3769 | perfect-debounce@1.0.0: {} 3770 | 3771 | picocolors@1.1.1: {} 3772 | 3773 | picomatch@2.3.1: {} 3774 | 3775 | picomatch@4.0.2: {} 3776 | 3777 | pkg-types@1.3.1: 3778 | dependencies: 3779 | confbox: 0.1.8 3780 | mlly: 1.7.4 3781 | pathe: 2.0.3 3782 | 3783 | pkg-types@2.1.0: 3784 | dependencies: 3785 | confbox: 0.2.1 3786 | exsolve: 1.0.4 3787 | pathe: 2.0.3 3788 | 3789 | postcss@8.5.3: 3790 | dependencies: 3791 | nanoid: 3.3.11 3792 | picocolors: 1.1.1 3793 | source-map-js: 1.2.1 3794 | 3795 | process-nextick-args@2.0.1: {} 3796 | 3797 | promise-toolbox@0.21.0: 3798 | dependencies: 3799 | make-error: 1.3.6 3800 | 3801 | prompts@2.4.2: 3802 | dependencies: 3803 | kleur: 3.0.3 3804 | sisteransi: 1.0.5 3805 | 3806 | proto-list@1.2.4: {} 3807 | 3808 | publish-browser-extension@3.0.0: 3809 | dependencies: 3810 | cac: 6.7.14 3811 | cli-highlight: 2.1.11 3812 | consola: 3.4.2 3813 | dotenv: 16.4.7 3814 | extract-zip: 2.0.1 3815 | formdata-node: 6.0.3 3816 | listr2: 8.2.5 3817 | lodash.camelcase: 4.3.0 3818 | lodash.kebabcase: 4.1.1 3819 | lodash.snakecase: 4.1.1 3820 | ofetch: 1.4.1 3821 | open: 9.1.0 3822 | ora: 6.3.1 3823 | prompts: 2.4.2 3824 | zod: 3.24.2 3825 | transitivePeerDependencies: 3826 | - supports-color 3827 | 3828 | pump@3.0.2: 3829 | dependencies: 3830 | end-of-stream: 1.4.4 3831 | once: 1.4.0 3832 | 3833 | pupa@3.1.0: 3834 | dependencies: 3835 | escape-goat: 4.0.0 3836 | 3837 | quansync@0.2.10: {} 3838 | 3839 | queue-microtask@1.2.3: {} 3840 | 3841 | quick-lru@5.1.1: {} 3842 | 3843 | rc9@2.1.2: 3844 | dependencies: 3845 | defu: 6.1.4 3846 | destr: 2.0.3 3847 | 3848 | rc@1.2.8: 3849 | dependencies: 3850 | deep-extend: 0.6.0 3851 | ini: 1.3.8 3852 | minimist: 1.2.8 3853 | strip-json-comments: 2.0.1 3854 | 3855 | react-dom@19.1.0(react@19.1.0): 3856 | dependencies: 3857 | react: 19.1.0 3858 | scheduler: 0.26.0 3859 | 3860 | react-refresh@0.14.2: {} 3861 | 3862 | react@19.1.0: {} 3863 | 3864 | readable-stream@2.3.8: 3865 | dependencies: 3866 | core-util-is: 1.0.3 3867 | inherits: 2.0.4 3868 | isarray: 1.0.0 3869 | process-nextick-args: 2.0.1 3870 | safe-buffer: 5.1.2 3871 | string_decoder: 1.1.1 3872 | util-deprecate: 1.0.2 3873 | 3874 | readable-stream@3.6.2: 3875 | dependencies: 3876 | inherits: 2.0.4 3877 | string_decoder: 1.3.0 3878 | util-deprecate: 1.0.2 3879 | 3880 | readdirp@4.1.2: {} 3881 | 3882 | regenerator-runtime@0.14.1: {} 3883 | 3884 | registry-auth-token@5.1.0: 3885 | dependencies: 3886 | '@pnpm/npm-conf': 2.3.1 3887 | 3888 | registry-url@6.0.1: 3889 | dependencies: 3890 | rc: 1.2.8 3891 | 3892 | require-directory@2.1.1: {} 3893 | 3894 | resolve-alpn@1.2.1: {} 3895 | 3896 | responselike@3.0.0: 3897 | dependencies: 3898 | lowercase-keys: 3.0.0 3899 | 3900 | restore-cursor@4.0.0: 3901 | dependencies: 3902 | onetime: 5.1.2 3903 | signal-exit: 3.0.7 3904 | 3905 | restore-cursor@5.1.0: 3906 | dependencies: 3907 | onetime: 7.0.0 3908 | signal-exit: 4.1.0 3909 | 3910 | reusify@1.1.0: {} 3911 | 3912 | rfdc@1.4.1: {} 3913 | 3914 | rimraf@2.4.5: 3915 | dependencies: 3916 | glob: 6.0.4 3917 | optional: true 3918 | 3919 | rollup@4.38.0: 3920 | dependencies: 3921 | '@types/estree': 1.0.7 3922 | optionalDependencies: 3923 | '@rollup/rollup-android-arm-eabi': 4.38.0 3924 | '@rollup/rollup-android-arm64': 4.38.0 3925 | '@rollup/rollup-darwin-arm64': 4.38.0 3926 | '@rollup/rollup-darwin-x64': 4.38.0 3927 | '@rollup/rollup-freebsd-arm64': 4.38.0 3928 | '@rollup/rollup-freebsd-x64': 4.38.0 3929 | '@rollup/rollup-linux-arm-gnueabihf': 4.38.0 3930 | '@rollup/rollup-linux-arm-musleabihf': 4.38.0 3931 | '@rollup/rollup-linux-arm64-gnu': 4.38.0 3932 | '@rollup/rollup-linux-arm64-musl': 4.38.0 3933 | '@rollup/rollup-linux-loongarch64-gnu': 4.38.0 3934 | '@rollup/rollup-linux-powerpc64le-gnu': 4.38.0 3935 | '@rollup/rollup-linux-riscv64-gnu': 4.38.0 3936 | '@rollup/rollup-linux-riscv64-musl': 4.38.0 3937 | '@rollup/rollup-linux-s390x-gnu': 4.38.0 3938 | '@rollup/rollup-linux-x64-gnu': 4.38.0 3939 | '@rollup/rollup-linux-x64-musl': 4.38.0 3940 | '@rollup/rollup-win32-arm64-msvc': 4.38.0 3941 | '@rollup/rollup-win32-ia32-msvc': 4.38.0 3942 | '@rollup/rollup-win32-x64-msvc': 4.38.0 3943 | fsevents: 2.3.3 3944 | 3945 | run-applescript@5.0.0: 3946 | dependencies: 3947 | execa: 5.1.1 3948 | 3949 | run-applescript@7.0.0: {} 3950 | 3951 | run-parallel@1.2.0: 3952 | dependencies: 3953 | queue-microtask: 1.2.3 3954 | 3955 | safe-buffer@5.1.2: {} 3956 | 3957 | safe-buffer@5.2.1: {} 3958 | 3959 | safe-json-stringify@1.2.0: 3960 | optional: true 3961 | 3962 | sax@1.4.1: {} 3963 | 3964 | scheduler@0.26.0: {} 3965 | 3966 | scule@1.3.0: {} 3967 | 3968 | semver-diff@4.0.0: 3969 | dependencies: 3970 | semver: 7.7.1 3971 | 3972 | semver@6.3.1: {} 3973 | 3974 | semver@7.7.1: {} 3975 | 3976 | set-value@4.1.0: 3977 | dependencies: 3978 | is-plain-object: 2.0.4 3979 | is-primitive: 3.0.1 3980 | 3981 | setimmediate@1.0.5: {} 3982 | 3983 | shebang-command@2.0.0: 3984 | dependencies: 3985 | shebang-regex: 3.0.0 3986 | 3987 | shebang-regex@3.0.0: {} 3988 | 3989 | shell-quote@1.7.3: {} 3990 | 3991 | shellwords@0.1.1: {} 3992 | 3993 | signal-exit@3.0.7: {} 3994 | 3995 | signal-exit@4.1.0: {} 3996 | 3997 | sisteransi@1.0.5: {} 3998 | 3999 | slice-ansi@5.0.0: 4000 | dependencies: 4001 | ansi-styles: 6.2.1 4002 | is-fullwidth-code-point: 4.0.0 4003 | 4004 | slice-ansi@7.1.0: 4005 | dependencies: 4006 | ansi-styles: 6.2.1 4007 | is-fullwidth-code-point: 5.0.0 4008 | 4009 | source-map-js@1.2.1: {} 4010 | 4011 | source-map-support@0.5.21: 4012 | dependencies: 4013 | buffer-from: 1.1.2 4014 | source-map: 0.6.1 4015 | 4016 | source-map@0.6.1: {} 4017 | 4018 | source-map@0.7.4: {} 4019 | 4020 | spawn-sync@1.0.15: 4021 | dependencies: 4022 | concat-stream: 1.6.2 4023 | os-shim: 0.1.3 4024 | 4025 | split@1.0.1: 4026 | dependencies: 4027 | through: 2.3.8 4028 | 4029 | stdin-discarder@0.1.0: 4030 | dependencies: 4031 | bl: 5.1.0 4032 | 4033 | stdin-discarder@0.2.2: {} 4034 | 4035 | string-width@4.2.3: 4036 | dependencies: 4037 | emoji-regex: 8.0.0 4038 | is-fullwidth-code-point: 3.0.0 4039 | strip-ansi: 6.0.1 4040 | 4041 | string-width@5.1.2: 4042 | dependencies: 4043 | eastasianwidth: 0.2.0 4044 | emoji-regex: 9.2.2 4045 | strip-ansi: 7.1.0 4046 | 4047 | string-width@7.2.0: 4048 | dependencies: 4049 | emoji-regex: 10.4.0 4050 | get-east-asian-width: 1.3.0 4051 | strip-ansi: 7.1.0 4052 | 4053 | string_decoder@1.1.1: 4054 | dependencies: 4055 | safe-buffer: 5.1.2 4056 | 4057 | string_decoder@1.3.0: 4058 | dependencies: 4059 | safe-buffer: 5.2.1 4060 | 4061 | strip-ansi@6.0.1: 4062 | dependencies: 4063 | ansi-regex: 5.0.1 4064 | 4065 | strip-ansi@7.1.0: 4066 | dependencies: 4067 | ansi-regex: 6.1.0 4068 | 4069 | strip-bom@5.0.0: {} 4070 | 4071 | strip-final-newline@2.0.0: {} 4072 | 4073 | strip-final-newline@3.0.0: {} 4074 | 4075 | strip-json-comments@2.0.1: {} 4076 | 4077 | strip-json-comments@5.0.1: {} 4078 | 4079 | strip-literal@3.0.0: 4080 | dependencies: 4081 | js-tokens: 9.0.1 4082 | 4083 | supports-color@7.2.0: 4084 | dependencies: 4085 | has-flag: 4.0.0 4086 | 4087 | thenify-all@1.6.0: 4088 | dependencies: 4089 | thenify: 3.3.1 4090 | 4091 | thenify@3.3.1: 4092 | dependencies: 4093 | any-promise: 1.3.0 4094 | 4095 | through@2.3.8: {} 4096 | 4097 | tinyexec@0.3.2: {} 4098 | 4099 | tinyglobby@0.2.12: 4100 | dependencies: 4101 | fdir: 6.4.3(picomatch@4.0.2) 4102 | picomatch: 4.0.2 4103 | 4104 | titleize@3.0.0: {} 4105 | 4106 | tmp@0.2.3: {} 4107 | 4108 | to-regex-range@5.0.1: 4109 | dependencies: 4110 | is-number: 7.0.0 4111 | 4112 | tslib@2.8.1: {} 4113 | 4114 | type-fest@1.4.0: {} 4115 | 4116 | type-fest@2.19.0: {} 4117 | 4118 | type-fest@3.13.1: {} 4119 | 4120 | typedarray-to-buffer@3.1.5: 4121 | dependencies: 4122 | is-typedarray: 1.0.0 4123 | 4124 | typedarray@0.0.6: {} 4125 | 4126 | typescript@5.8.2: {} 4127 | 4128 | ufo@1.5.4: {} 4129 | 4130 | uhyphen@0.2.0: {} 4131 | 4132 | undici-types@6.20.0: {} 4133 | 4134 | unimport@4.1.3: 4135 | dependencies: 4136 | acorn: 8.14.1 4137 | escape-string-regexp: 5.0.0 4138 | estree-walker: 3.0.3 4139 | local-pkg: 1.1.1 4140 | magic-string: 0.30.17 4141 | mlly: 1.7.4 4142 | pathe: 2.0.3 4143 | picomatch: 4.0.2 4144 | pkg-types: 2.1.0 4145 | scule: 1.3.0 4146 | strip-literal: 3.0.0 4147 | tinyglobby: 0.2.12 4148 | unplugin: 2.2.2 4149 | unplugin-utils: 0.2.4 4150 | 4151 | unique-string@3.0.0: 4152 | dependencies: 4153 | crypto-random-string: 4.0.0 4154 | 4155 | universalify@1.0.0: {} 4156 | 4157 | universalify@2.0.1: {} 4158 | 4159 | unplugin-utils@0.2.4: 4160 | dependencies: 4161 | pathe: 2.0.3 4162 | picomatch: 4.0.2 4163 | 4164 | unplugin@2.2.2: 4165 | dependencies: 4166 | acorn: 8.14.1 4167 | webpack-virtual-modules: 0.6.2 4168 | 4169 | untildify@4.0.0: {} 4170 | 4171 | update-browserslist-db@1.1.3(browserslist@4.24.4): 4172 | dependencies: 4173 | browserslist: 4.24.4 4174 | escalade: 3.2.0 4175 | picocolors: 1.1.1 4176 | 4177 | update-notifier@6.0.2: 4178 | dependencies: 4179 | boxen: 7.1.1 4180 | chalk: 5.4.1 4181 | configstore: 6.0.0 4182 | has-yarn: 3.0.0 4183 | import-lazy: 4.0.0 4184 | is-ci: 3.0.1 4185 | is-installed-globally: 0.4.0 4186 | is-npm: 6.0.0 4187 | is-yarn-global: 0.4.1 4188 | latest-version: 7.0.0 4189 | pupa: 3.1.0 4190 | semver: 7.7.1 4191 | semver-diff: 4.0.0 4192 | xdg-basedir: 5.1.0 4193 | 4194 | util-deprecate@1.0.2: {} 4195 | 4196 | uuid@8.3.2: {} 4197 | 4198 | vite-node@3.1.1(@types/node@22.13.15)(jiti@2.4.2): 4199 | dependencies: 4200 | cac: 6.7.14 4201 | debug: 4.4.0 4202 | es-module-lexer: 1.6.0 4203 | pathe: 2.0.3 4204 | vite: 6.2.4(@types/node@22.13.15)(jiti@2.4.2) 4205 | transitivePeerDependencies: 4206 | - '@types/node' 4207 | - jiti 4208 | - less 4209 | - lightningcss 4210 | - sass 4211 | - sass-embedded 4212 | - stylus 4213 | - sugarss 4214 | - supports-color 4215 | - terser 4216 | - tsx 4217 | - yaml 4218 | 4219 | vite@6.2.4(@types/node@22.13.15)(jiti@2.4.2): 4220 | dependencies: 4221 | esbuild: 0.25.2 4222 | postcss: 8.5.3 4223 | rollup: 4.38.0 4224 | optionalDependencies: 4225 | '@types/node': 22.13.15 4226 | fsevents: 2.3.3 4227 | jiti: 2.4.2 4228 | 4229 | watchpack@2.4.1: 4230 | dependencies: 4231 | glob-to-regexp: 0.4.1 4232 | graceful-fs: 4.2.11 4233 | 4234 | wcwidth@1.0.1: 4235 | dependencies: 4236 | defaults: 1.0.4 4237 | 4238 | web-ext-run@0.2.2: 4239 | dependencies: 4240 | '@babel/runtime': 7.24.7 4241 | '@devicefarmer/adbkit': 3.2.6 4242 | bunyan: 1.8.15 4243 | chrome-launcher: 1.1.0 4244 | debounce: 1.2.1 4245 | es6-error: 4.1.1 4246 | firefox-profile: 4.6.0 4247 | fs-extra: 11.2.0 4248 | fx-runner: 1.4.0 4249 | mkdirp: 3.0.1 4250 | multimatch: 6.0.0 4251 | mz: 2.7.0 4252 | node-notifier: 10.0.1 4253 | parse-json: 7.1.1 4254 | promise-toolbox: 0.21.0 4255 | set-value: 4.1.0 4256 | source-map-support: 0.5.21 4257 | strip-bom: 5.0.0 4258 | strip-json-comments: 5.0.1 4259 | tmp: 0.2.3 4260 | update-notifier: 6.0.2 4261 | watchpack: 2.4.1 4262 | ws: 8.18.0 4263 | zip-dir: 2.0.0 4264 | transitivePeerDependencies: 4265 | - bufferutil 4266 | - supports-color 4267 | - utf-8-validate 4268 | 4269 | webpack-virtual-modules@0.6.2: {} 4270 | 4271 | when@3.7.7: {} 4272 | 4273 | which@1.2.4: 4274 | dependencies: 4275 | is-absolute: 0.1.7 4276 | isexe: 1.1.2 4277 | 4278 | which@2.0.2: 4279 | dependencies: 4280 | isexe: 2.0.0 4281 | 4282 | widest-line@4.0.1: 4283 | dependencies: 4284 | string-width: 5.1.2 4285 | 4286 | winreg@0.0.12: {} 4287 | 4288 | wrap-ansi@7.0.0: 4289 | dependencies: 4290 | ansi-styles: 4.3.0 4291 | string-width: 4.2.3 4292 | strip-ansi: 6.0.1 4293 | 4294 | wrap-ansi@8.1.0: 4295 | dependencies: 4296 | ansi-styles: 6.2.1 4297 | string-width: 5.1.2 4298 | strip-ansi: 7.1.0 4299 | 4300 | wrap-ansi@9.0.0: 4301 | dependencies: 4302 | ansi-styles: 6.2.1 4303 | string-width: 7.2.0 4304 | strip-ansi: 7.1.0 4305 | 4306 | wrappy@1.0.2: {} 4307 | 4308 | write-file-atomic@3.0.3: 4309 | dependencies: 4310 | imurmurhash: 0.1.4 4311 | is-typedarray: 1.0.0 4312 | signal-exit: 3.0.7 4313 | typedarray-to-buffer: 3.1.5 4314 | 4315 | ws@8.18.0: {} 4316 | 4317 | wxt@0.20.0(@types/node@22.13.15)(jiti@2.4.2)(rollup@4.38.0): 4318 | dependencies: 4319 | '@1natsu/wait-element': 4.1.2 4320 | '@aklinker1/rollup-plugin-visualizer': 5.12.0(rollup@4.38.0) 4321 | '@webext-core/fake-browser': 1.3.2 4322 | '@webext-core/isolated-element': 1.1.2 4323 | '@webext-core/match-patterns': 1.0.3 4324 | '@wxt-dev/browser': 0.0.310 4325 | '@wxt-dev/storage': 1.1.1 4326 | async-mutex: 0.5.0 4327 | c12: 3.0.2(magicast@0.3.5) 4328 | cac: 6.7.14 4329 | chokidar: 4.0.3 4330 | ci-info: 4.2.0 4331 | consola: 3.4.2 4332 | defu: 6.1.4 4333 | dotenv: 16.4.7 4334 | dotenv-expand: 12.0.1 4335 | esbuild: 0.25.2 4336 | fast-glob: 3.3.3 4337 | filesize: 10.1.6 4338 | fs-extra: 11.3.0 4339 | get-port-please: 3.1.2 4340 | giget: 2.0.0 4341 | hookable: 5.5.3 4342 | import-meta-resolve: 4.1.0 4343 | is-wsl: 3.1.0 4344 | json5: 2.2.3 4345 | jszip: 3.10.1 4346 | linkedom: 0.18.9 4347 | magicast: 0.3.5 4348 | minimatch: 10.0.1 4349 | nano-spawn: 0.2.0 4350 | normalize-path: 3.0.0 4351 | nypm: 0.3.12 4352 | ohash: 1.1.6 4353 | open: 10.1.0 4354 | ora: 8.2.0 4355 | perfect-debounce: 1.0.0 4356 | picocolors: 1.1.1 4357 | prompts: 2.4.2 4358 | publish-browser-extension: 3.0.0 4359 | scule: 1.3.0 4360 | unimport: 4.1.3 4361 | vite: 6.2.4(@types/node@22.13.15)(jiti@2.4.2) 4362 | vite-node: 3.1.1(@types/node@22.13.15)(jiti@2.4.2) 4363 | web-ext-run: 0.2.2 4364 | transitivePeerDependencies: 4365 | - '@types/node' 4366 | - bufferutil 4367 | - jiti 4368 | - less 4369 | - lightningcss 4370 | - rollup 4371 | - sass 4372 | - sass-embedded 4373 | - stylus 4374 | - sugarss 4375 | - supports-color 4376 | - terser 4377 | - tsx 4378 | - utf-8-validate 4379 | - yaml 4380 | 4381 | xdg-basedir@5.1.0: {} 4382 | 4383 | xml2js@0.5.0: 4384 | dependencies: 4385 | sax: 1.4.1 4386 | xmlbuilder: 11.0.1 4387 | 4388 | xmlbuilder@11.0.1: {} 4389 | 4390 | y18n@5.0.8: {} 4391 | 4392 | yallist@3.1.1: {} 4393 | 4394 | yargs-parser@20.2.9: {} 4395 | 4396 | yargs-parser@21.1.1: {} 4397 | 4398 | yargs@16.2.0: 4399 | dependencies: 4400 | cliui: 7.0.4 4401 | escalade: 3.2.0 4402 | get-caller-file: 2.0.5 4403 | require-directory: 2.1.1 4404 | string-width: 4.2.3 4405 | y18n: 5.0.8 4406 | yargs-parser: 20.2.9 4407 | 4408 | yargs@17.7.2: 4409 | dependencies: 4410 | cliui: 8.0.1 4411 | escalade: 3.2.0 4412 | get-caller-file: 2.0.5 4413 | require-directory: 2.1.1 4414 | string-width: 4.2.3 4415 | y18n: 5.0.8 4416 | yargs-parser: 21.1.1 4417 | 4418 | yauzl@2.10.0: 4419 | dependencies: 4420 | buffer-crc32: 0.2.13 4421 | fd-slicer: 1.1.0 4422 | 4423 | zip-dir@2.0.0: 4424 | dependencies: 4425 | async: 3.2.6 4426 | jszip: 3.10.1 4427 | 4428 | zod@3.24.2: {} 4429 | -------------------------------------------------------------------------------- /public/icon/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djyde/browser-extension-development-guide/b99a809aeb7776428388890a74ffc1351afe333e/public/icon/128.png -------------------------------------------------------------------------------- /public/icon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djyde/browser-extension-development-guide/b99a809aeb7776428388890a74ffc1351afe333e/public/icon/16.png -------------------------------------------------------------------------------- /public/icon/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djyde/browser-extension-development-guide/b99a809aeb7776428388890a74ffc1351afe333e/public/icon/32.png -------------------------------------------------------------------------------- /public/icon/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djyde/browser-extension-development-guide/b99a809aeb7776428388890a74ffc1351afe333e/public/icon/48.png -------------------------------------------------------------------------------- /public/icon/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djyde/browser-extension-development-guide/b99a809aeb7776428388890a74ffc1351afe333e/public/icon/96.png -------------------------------------------------------------------------------- /public/wxt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.wxt/tsconfig.json", 3 | "compilerOptions": { 4 | "allowImportingTsExtensions": true, 5 | "jsx": "react-jsx" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /wxt.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'wxt'; 2 | 3 | // See https://wxt.dev/api/config.html 4 | export default defineConfig({ 5 | modules: ['@wxt-dev/module-react'], 6 | webExt: { 7 | binaries: { 8 | edge: "/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge", 9 | }, 10 | chromiumArgs: ['--user-data-dir=./.wxt/browser-data'], 11 | } 12 | }); 13 | --------------------------------------------------------------------------------