├── assets └── icon.png ├── screenshots └── preview.gif ├── pnpm-workspace.yaml ├── tsconfig.json ├── src ├── content.ts └── inject.ts ├── .gitignore ├── .github └── workflows │ ├── release.yml │ └── submit.yml ├── package.json ├── LICENSE ├── README.md └── pnpm-lock.yaml /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricsleo/webext-require/HEAD/assets/icon.png -------------------------------------------------------------------------------- /screenshots/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kricsleo/webext-require/HEAD/screenshots/preview.gif -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - '@parcel/watcher' 3 | - esbuild 4 | - lmdb 5 | - msgpackr-extract 6 | - sharp 7 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "plasmo/templates/tsconfig.base", 3 | "exclude": ["node_modules"], 4 | "include": ["./**/*.ts", "./**/*.tsx"], 5 | "compilerOptions": { 6 | "paths": { 7 | "~*": ["./src/*"] 8 | }, 9 | "baseUrl": "." 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- 1 | import type { PlasmoContentScript } from 'plasmo' 2 | import { injectRequire, listenRequire } from './inject' 3 | 4 | export const config: PlasmoContentScript = { 5 | matches: [""], 6 | match_about_blank: true 7 | } 8 | 9 | injectRequire() 10 | listenRequire() 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 3 | 4 | # dependencies 5 | /node_modules 6 | /.pnp 7 | .pnp.js 8 | 9 | # testing 10 | /coverage 11 | 12 | #cache 13 | .turbo 14 | 15 | # misc 16 | .DS_Store 17 | *.pem 18 | 19 | # debug 20 | npm-debug.log* 21 | yarn-debug.log* 22 | yarn-error.log* 23 | .pnpm-debug.log* 24 | 25 | # local env files 26 | .env* 27 | 28 | out/ 29 | build/ 30 | dist/ 31 | 32 | # plasmo - https://www.plasmo.com 33 | .plasmo 34 | 35 | # bpp - http://bpp.browser.market/ 36 | keys.json 37 | 38 | # typescript 39 | .tsbuildinfo 40 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | push: 5 | tags: 6 | - 'v*' 7 | 8 | jobs: 9 | release: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v3 13 | with: 14 | fetch-depth: 0 15 | 16 | - uses: actions/setup-node@v3 17 | with: 18 | node-version: 16.x 19 | 20 | - name: Setup 21 | run: npm i -g @antfu/ni 22 | 23 | - name: Install 24 | run: nci 25 | 26 | - name: Build 27 | run: nr package 28 | 29 | - name: Upload Assets 30 | uses: svenstaro/upload-release-action@v2 31 | with: 32 | repo_token: ${{ secrets.GITHUB_TOKEN }} 33 | file: build/*.zip 34 | file_glob: true 35 | tag: ${{ github.ref }} 36 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webext-require", 3 | "displayName": "Web Require", 4 | "version": "0.0.7", 5 | "description": "An extension to require npm packages in browser dev-tools.", 6 | "author": "Kricsleo ", 7 | "license": "MIT", 8 | "homepage": "https://github.com/kricsleo/webext-require#readme", 9 | "packageManager": "pnpm@10.11.0", 10 | "scripts": { 11 | "dev": "plasmo dev", 12 | "build": "plasmo build", 13 | "package": "npm run build && plasmo package", 14 | "release": "bumpp" 15 | }, 16 | "devDependencies": { 17 | "@types/chrome": "0.0.206", 18 | "@types/node": "18.11.18", 19 | "bumpp": "^10.1.1", 20 | "plasmo": "0.61.5", 21 | "typescript": "4.9.4" 22 | }, 23 | "dependencies": { 24 | "craie": "^1.0.1" 25 | }, 26 | "manifest": { 27 | "manifest_version": 2 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /.github/workflows/submit.yml: -------------------------------------------------------------------------------- 1 | name: "Submit to Web Store" 2 | on: 3 | workflow_dispatch: 4 | 5 | jobs: 6 | build: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v3 10 | - name: Cache pnpm modules 11 | uses: actions/cache@v3 12 | with: 13 | path: ~/.pnpm-store 14 | key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} 15 | restore-keys: | 16 | ${{ runner.os }}- 17 | - uses: pnpm/action-setup@v2.2.4 18 | with: 19 | version: latest 20 | run_install: true 21 | - name: Use Node.js 16.x 22 | uses: actions/setup-node@v3.4.1 23 | with: 24 | node-version: 16.x 25 | cache: "pnpm" 26 | - name: Build and zip extension artifact 27 | run: pnpm package 28 | - name: Browser Platform Publish 29 | uses: PlasmoHQ/bpp@v3 30 | with: 31 | keys: ${{ secrets.SUBMIT_KEYS }} 32 | artifact: build/chrome-mv3-prod.zip 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Kricsleo 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Web Extension Require 2 | 3 |

4 | 🚀 A web extension to require npm packages in browser dev-tools. 5 |

6 | 7 | 8 |

9 | preview 10 |

11 | 12 | ## Features 13 | 14 | - Support javascript and CSS packages in npm, like `_require('lodash')` or `_require('animate.css')` 15 | - Support npm package scope, like `_require('lodash@4.17.21')` or `_require('lodash@4')` 16 | - Support subpath in npm packages, like `_require('lodash/lodash.min.js')` 17 | - Support any CDN files, like `_require('https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js')` 18 | 19 | Javascript package needs to provide **UMD** or other browser format bundles so that they can be directly used in the browser. 20 | 21 | ## Usage 22 | 23 | 1. [Download](https://github.com/kricsleo/webext-require/releases) this extension and install it in the browser extension page(like `chrome://extensions/`). 24 | 2. Use `_require` in dev-tools to install packages from npm or CDN. 25 | 26 | ## TODO 27 | 28 | - [ ] Migrate to [WXT](https://github.com/wxt-dev/wxt) 29 | 30 | ## Thanks 31 | 32 | [jsDelivr](https://www.jsdelivr.com/) - All npm assets are provided by it. 33 | 34 | ## License 35 | 36 | [MIT](./LICENSE) License © 2022-Present [Kricsleo](https://github.com/kricsleo) 37 | -------------------------------------------------------------------------------- /src/inject.ts: -------------------------------------------------------------------------------- 1 | import craie from 'craie' 2 | 3 | const green = (message: string) => craie.bgEmerald.roundL.white(message) 4 | const red = (message: string) => craie.roundL.bgRed.white(message) 5 | const blue = (message: string) => craie.roundR.bgBlue.white(message) 6 | 7 | enum PKG_TYPE { 8 | CSS, 9 | JS, 10 | OTHER 11 | } 12 | 13 | async function fetchCDN(url: string) { 14 | const res = await fetch(url); 15 | const type = detectPkgType(res) 16 | const code = await res.text(); 17 | return { code, type, version: '', url }; 18 | } 19 | 20 | async function fetchNPM(pkg: string) { 21 | const url = `https://cdn.jsdelivr.net/npm/${pkg}` 22 | const res = await fetch(url); 23 | const type = detectPkgType(res) 24 | const version = detectPkgVersion(res) 25 | const code = await res.text(); 26 | return { code, type, version, url }; 27 | } 28 | 29 | function isCDN(pkg: string) { 30 | return /^https?:/.test(pkg) 31 | } 32 | 33 | function getPkgName(pkg: string) { 34 | // match pkgName@version 35 | const matches = pkg.match(/(^.+)(@[0-9]+($|\..*))/) 36 | return matches ? matches[1] : pkg 37 | } 38 | 39 | let injected = false 40 | async function require(pkg: string): Promise { 41 | craie.log(green('Fetching'), blue(pkg)) 42 | const isCDNPkg = isCDN(pkg) 43 | try { 44 | const { code, type, version, url } = isCDNPkg ? await fetchCDN(pkg) : await fetchNPM(pkg) 45 | const fullPkgName = isCDNPkg ? pkg : getPkgName(pkg) + (version ? `@${version}` : '') 46 | switch (type) { 47 | case PKG_TYPE.JS: { 48 | const detectVarsCode = `window.postMessage({ type: 'vars', data: { vars: Object.keys(window) } })` 49 | injectJS(detectVarsCode) 50 | const injectedCode = ` 51 | ${code} 52 | ;window.postMessage({ type: 'require_success', data: { pkg: '${fullPkgName}', vars: Object.keys(window) } }) 53 | ` 54 | injected = false 55 | injectJS(injectedCode) 56 | setTimeout(() => { 57 | if(!injected) { 58 | craie.log( red('⚠️ Failed'), blue(fullPkgName), craie.red(` \`${fullPkgName}\` may not support browser`) ) 59 | } 60 | }, 300) 61 | };break; 62 | case PKG_TYPE.CSS: { 63 | injectCSS(code) 64 | craie.log(green('Required'), blue(fullPkgName), craie.blue(' CSS has been injected into current page')) 65 | };break; 66 | default: craie.log(red('⚠️ Failed'), blue(fullPkgName), craie.red(` No supported content type auto-detected: ${url}`)) 67 | } 68 | } catch(e: any) { 69 | craie.log(red('⚠️ Failed'), blue(pkg), craie.red(' ' + e.message)) 70 | } 71 | } 72 | 73 | function detectPkgType(reponse: Response) { 74 | const contentType = reponse.headers.get('content-type') 75 | if(contentType.includes('text/css')) { 76 | return PKG_TYPE.CSS 77 | } else if(contentType.includes('application/javascript')) { 78 | return PKG_TYPE.JS 79 | } else { 80 | return PKG_TYPE.OTHER 81 | } 82 | } 83 | 84 | function detectPkgVersion(reponse: Response) { 85 | // header specified by https://cdn.jsdelivr.net 86 | const version = reponse.headers.get('x-jsd-version') 87 | return version 88 | } 89 | 90 | function injectJS(code: string) { 91 | const script = document.createElement('script') 92 | script.innerHTML = code 93 | document.body.appendChild(script) 94 | script.remove() 95 | } 96 | 97 | function injectCSS(code: string) { 98 | const style = document.createElement("style"); 99 | style.innerHTML = code 100 | document.head.appendChild(style); 101 | } 102 | 103 | export function injectRequire(namespace: string = '_require') { 104 | injectJS(` 105 | if(window.${namespace}) { 106 | window.postMessage({ type: 'conflict', data: { namespace: ${namespace} } }) 107 | } else { 108 | window.${namespace} = function(pkg) { 109 | window.postMessage({ type: 'require', data: { pkg } }) 110 | } 111 | } 112 | `) 113 | } 114 | 115 | export function listenRequire() { 116 | let prevVars = [] 117 | window.addEventListener("message", event => { 118 | if(event.source == window && event.data?.type === 'require') { 119 | const pkgArg = Array.isArray(event.data.data.pkg) ? event.data.data.pkg[0] : event.data.data.pkg 120 | const pkg = pkgArg ? pkgArg.trim() : '' 121 | if(!pkg) { 122 | craie.log(red('⚠️ Failed'), craie.red(` Missing package name`)) 123 | return 124 | } 125 | require(pkg) 126 | } 127 | if(event.source == window && event.data?.type === 'require_success') { 128 | injected = true 129 | const { vars, pkg } = event.data.data 130 | const addedVars = vars.filter(v => !prevVars.includes(v)) 131 | if(addedVars.length) { 132 | craie.log(green('Required'), blue(pkg), craie.blue(` Found added global namespace: ${addedVars.join(', ')}`)) 133 | } else { 134 | craie.log(green('Required'), blue(pkg), craie.red(` No added global namespace found`)) 135 | } 136 | } 137 | if(event.source == window && event.data?.type === 'vars') { 138 | prevVars = event.data.data.vars 139 | } 140 | if(event.source == window && event.data?.type === 'conflict') { 141 | const namespace = event.data.data.namespace 142 | craie.log(red('⚠️ Failed'), craie.red(`\`${namespace}\` already existed, won't inject anything`)) 143 | } 144 | }) 145 | } 146 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | craie: 12 | specifier: ^1.0.1 13 | version: 1.0.1 14 | devDependencies: 15 | '@types/chrome': 16 | specifier: 0.0.206 17 | version: 0.0.206 18 | '@types/node': 19 | specifier: 18.11.18 20 | version: 18.11.18 21 | bumpp: 22 | specifier: ^10.1.1 23 | version: 10.1.1 24 | plasmo: 25 | specifier: 0.61.5 26 | version: 0.61.5(lodash@4.17.21)(postcss@8.5.3)(terser@5.39.0) 27 | typescript: 28 | specifier: 4.9.4 29 | version: 4.9.4 30 | 31 | packages: 32 | 33 | '@babel/code-frame@7.26.2': 34 | resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 35 | engines: {node: '>=6.9.0'} 36 | 37 | '@babel/helper-string-parser@7.25.9': 38 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 39 | engines: {node: '>=6.9.0'} 40 | 41 | '@babel/helper-validator-identifier@7.25.9': 42 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 43 | engines: {node: '>=6.9.0'} 44 | 45 | '@babel/parser@7.27.0': 46 | resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==} 47 | engines: {node: '>=6.0.0'} 48 | hasBin: true 49 | 50 | '@babel/runtime@7.27.0': 51 | resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} 52 | engines: {node: '>=6.9.0'} 53 | 54 | '@babel/types@7.27.0': 55 | resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} 56 | engines: {node: '>=6.9.0'} 57 | 58 | '@esbuild/android-arm@0.15.18': 59 | resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==} 60 | engines: {node: '>=12'} 61 | cpu: [arm] 62 | os: [android] 63 | 64 | '@esbuild/linux-loong64@0.15.18': 65 | resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==} 66 | engines: {node: '>=12'} 67 | cpu: [loong64] 68 | os: [linux] 69 | 70 | '@expo/spawn-async@1.7.0': 71 | resolution: {integrity: sha512-sqPAjOEFTrjaTybrh9SnPFLInDXcoMC06psEFmH68jLTmoipSQCq8GCEfIoHhxRDALWB+DsiwXJSbXlE/iVIIQ==} 72 | engines: {node: '>=12'} 73 | 74 | '@isaacs/cliui@8.0.2': 75 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 76 | engines: {node: '>=12'} 77 | 78 | '@jridgewell/gen-mapping@0.3.8': 79 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 80 | engines: {node: '>=6.0.0'} 81 | 82 | '@jridgewell/resolve-uri@3.1.2': 83 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 84 | engines: {node: '>=6.0.0'} 85 | 86 | '@jridgewell/set-array@1.2.1': 87 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 88 | engines: {node: '>=6.0.0'} 89 | 90 | '@jridgewell/source-map@0.3.6': 91 | resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} 92 | 93 | '@jridgewell/sourcemap-codec@1.5.0': 94 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 95 | 96 | '@jridgewell/trace-mapping@0.3.25': 97 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 98 | 99 | '@lezer/common@0.15.12': 100 | resolution: {integrity: sha512-edfwCxNLnzq5pBA/yaIhwJ3U3Kz8VAUOTRg0hhxaizaI1N+qxV7EXDv/kLCkLeq2RzSFvxexlaj5Mzfn2kY0Ig==} 101 | 102 | '@lezer/common@1.2.3': 103 | resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==} 104 | 105 | '@lezer/lr@0.15.8': 106 | resolution: {integrity: sha512-bM6oE6VQZ6hIFxDNKk8bKPa14hqFrV07J/vHGOeiAbJReIaQXmkVb6xQu4MR+JBTLa5arGRyAAjJe1qaQt3Uvg==} 107 | 108 | '@lezer/lr@1.4.2': 109 | resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==} 110 | 111 | '@lmdb/lmdb-darwin-arm64@2.5.2': 112 | resolution: {integrity: sha512-+F8ioQIUN68B4UFiIBYu0QQvgb9FmlKw2ctQMSBfW2QBrZIxz9vD9jCGqTCPqZBRbPHAS/vG1zSXnKqnS2ch/A==} 113 | cpu: [arm64] 114 | os: [darwin] 115 | 116 | '@lmdb/lmdb-darwin-x64@2.5.2': 117 | resolution: {integrity: sha512-KvPH56KRLLx4KSfKBx0m1r7GGGUMXm0jrKmNE7plbHlesZMuPJICtn07HYgQhj1LNsK7Yqwuvnqh1QxhJnF1EA==} 118 | cpu: [x64] 119 | os: [darwin] 120 | 121 | '@lmdb/lmdb-linux-arm64@2.5.2': 122 | resolution: {integrity: sha512-aLl89VHL/wjhievEOlPocoefUyWdvzVrcQ/MHQYZm2JfV1jUsrbr/ZfkPPUFvZBf+VSE+Q0clWs9l29PCX1hTQ==} 123 | cpu: [arm64] 124 | os: [linux] 125 | 126 | '@lmdb/lmdb-linux-arm@2.5.2': 127 | resolution: {integrity: sha512-5kQAP21hAkfW5Bl+e0P57dV4dGYnkNIpR7f/GAh6QHlgXx+vp/teVj4PGRZaKAvt0GX6++N6hF8NnGElLDuIDw==} 128 | cpu: [arm] 129 | os: [linux] 130 | 131 | '@lmdb/lmdb-linux-x64@2.5.2': 132 | resolution: {integrity: sha512-xUdUfwDJLGjOUPH3BuPBt0NlIrR7f/QHKgu3GZIXswMMIihAekj2i97oI0iWG5Bok/b+OBjHPfa8IU9velnP/Q==} 133 | cpu: [x64] 134 | os: [linux] 135 | 136 | '@lmdb/lmdb-win32-x64@2.5.2': 137 | resolution: {integrity: sha512-zrBczSbXKxEyK2ijtbRdICDygRqWSRPpZMN5dD1T8VMEW5RIhIbwFWw2phDRXuBQdVDpSjalCIUMWMV2h3JaZA==} 138 | cpu: [x64] 139 | os: [win32] 140 | 141 | '@mischnic/json-sourcemap@0.1.0': 142 | resolution: {integrity: sha512-dQb3QnfNqmQNYA4nFSN/uLaByIic58gOXq4Y4XqLOWmOrw73KmJPt/HLyG0wvn1bnR6mBKs/Uwvkh+Hns1T0XA==} 143 | engines: {node: '>=12.0.0'} 144 | 145 | '@mischnic/json-sourcemap@0.1.1': 146 | resolution: {integrity: sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==} 147 | engines: {node: '>=12.0.0'} 148 | 149 | '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': 150 | resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==} 151 | cpu: [arm64] 152 | os: [darwin] 153 | 154 | '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3': 155 | resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==} 156 | cpu: [x64] 157 | os: [darwin] 158 | 159 | '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3': 160 | resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==} 161 | cpu: [arm64] 162 | os: [linux] 163 | 164 | '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3': 165 | resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==} 166 | cpu: [arm] 167 | os: [linux] 168 | 169 | '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3': 170 | resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==} 171 | cpu: [x64] 172 | os: [linux] 173 | 174 | '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3': 175 | resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==} 176 | cpu: [x64] 177 | os: [win32] 178 | 179 | '@nodelib/fs.scandir@2.1.5': 180 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 181 | engines: {node: '>= 8'} 182 | 183 | '@nodelib/fs.stat@2.0.5': 184 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 185 | engines: {node: '>= 8'} 186 | 187 | '@nodelib/fs.walk@1.2.8': 188 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 189 | engines: {node: '>= 8'} 190 | 191 | '@parcel/bundler-default@2.8.2': 192 | resolution: {integrity: sha512-/7ao0vc/v8WGHZaS1SyS5R8wzqmmXEr9mhIIB2cbLQ4LA2WUtKsYcvZ2gjJuiAAN1CHC6GxqwYjIJScQCk/QXg==} 193 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 194 | 195 | '@parcel/cache@2.8.2': 196 | resolution: {integrity: sha512-kiyoOgh1RXp5qp+wlb8Pi/Z7o9D82Oj5RlHnKSAauyR7jgnI8Vq8JTeBmlLqrf+kHxcDcp2p86hidSeANhlQNg==} 197 | engines: {node: '>= 12.0.0'} 198 | peerDependencies: 199 | '@parcel/core': ^2.8.2 200 | 201 | '@parcel/codeframe@2.8.2': 202 | resolution: {integrity: sha512-U2GT9gq1Zs3Gr83j8JIs10bLbGOHFl57Y8D57nrdR05F4iilV/UR6K7jkhdoiFc9WiHh3ewvrko5+pSdAVFPgQ==} 203 | engines: {node: '>= 12.0.0'} 204 | 205 | '@parcel/compressor-raw@2.8.2': 206 | resolution: {integrity: sha512-EFPTer/P+3axifH6LtYHS3E6ABgdZnjZomJZ/Nl19lypZh/NgZzmMZlINlEVqyYhCggoKfXzgeTgkIHPN2d5Vw==} 207 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 208 | 209 | '@parcel/config-default@2.8.2': 210 | resolution: {integrity: sha512-1ELJAHx37fKSZZkYKWy6UdcuLRv5vrZJc89tVS6eRvvMt+udbIoSgIUzPXu7XemkcchF7Tryw3u2pRyxyLyL3w==} 211 | peerDependencies: 212 | '@parcel/core': ^2.8.2 213 | 214 | '@parcel/core@2.8.2': 215 | resolution: {integrity: sha512-ZGuq6p+Lzx6fgufaVsuOBwgpU3hgskTvIDIMdIDi9gOZyhGPK7U2srXdX+VYUL5ZSGbX04/P6QlB9FMAXK+nEg==} 216 | engines: {node: '>= 12.0.0'} 217 | 218 | '@parcel/css@1.14.0': 219 | resolution: {integrity: sha512-r5tJWe6NF6lesfPw1N3g7N7WUKpHqi2ONnw9wl5ccSGGIxkmgcPaPQxfvmhdjXvQnktSuIOR0HjQXVXu+/en/w==} 220 | engines: {node: '>= 12.0.0'} 221 | 222 | '@parcel/diagnostic@2.8.2': 223 | resolution: {integrity: sha512-tGSMwM2rSYLjJW0fCd9gb3tNjfCX/83PZ10/5u2E33UZVkk8OIHsQmsrtq2H2g4oQL3rFxkfEx6nGPDGHwlx7A==} 224 | engines: {node: '>= 12.0.0'} 225 | 226 | '@parcel/events@2.8.2': 227 | resolution: {integrity: sha512-o5etrsKm16y8iRPnjtEBNy4lD0WAigD66yt/RZl9Rx0vPVDly/63Rr9+BrXWVW7bJ7x0S0VVpWW4j3f/qZOsXg==} 228 | engines: {node: '>= 12.0.0'} 229 | 230 | '@parcel/fs-search@2.8.2': 231 | resolution: {integrity: sha512-ovQnupRm/MoE/tbgH0Ivknk0QYenXAewjcog+T5umDmUlTmnIRZjURrgDf5Xtw8T/CD5Xv+HmIXpJ9Ez/LzJpw==} 232 | engines: {node: '>= 12.0.0'} 233 | 234 | '@parcel/fs@2.8.2': 235 | resolution: {integrity: sha512-aN8znbMndSqn1xwZEmMblzqmJsxcExv2jKLl/a9RUHAP7LaPYcPZIykDL3YwGCiKTCzjmRpXnNoyosjFFeBaHA==} 236 | engines: {node: '>= 12.0.0'} 237 | peerDependencies: 238 | '@parcel/core': ^2.8.2 239 | 240 | '@parcel/graph@2.8.2': 241 | resolution: {integrity: sha512-SLEvBQBgfkXgU4EBu30+CNanpuKjcNuEv/x8SwobCF0i3Rk+QKbe7T36bNR7727mao++2Ha69q93Dd9dTPw0kQ==} 242 | engines: {node: '>= 12.0.0'} 243 | 244 | '@parcel/hash@2.8.2': 245 | resolution: {integrity: sha512-NBnP8Hu0xvAqAfZXRaMM66i8nJyxpKS86BbhwkbgTGbwO1OY87GERliHeREJfcER0E0ZzwNow7MNR8ZDm6IvJQ==} 246 | engines: {node: '>= 12.0.0'} 247 | 248 | '@parcel/logger@2.8.2': 249 | resolution: {integrity: sha512-zlhK6QHxfFJMlVJxxcCw0xxBDrYPFPOhMxSD6p6b0z9Yct1l3NdpmfabgjKX8wnZmHokFsil6daleM+M80n2Ew==} 250 | engines: {node: '>= 12.0.0'} 251 | 252 | '@parcel/markdown-ansi@2.8.2': 253 | resolution: {integrity: sha512-5y29TXgRgG0ybuXaDsDk4Aofg/nDUeAAyVl9/toYCDDhxpQV4yZt8WNPu4PaNYKGLuNgXwsmz+ryZQHGmfbAIQ==} 254 | engines: {node: '>= 12.0.0'} 255 | 256 | '@parcel/namer-default@2.8.2': 257 | resolution: {integrity: sha512-sMLW/bDWXA6IE7TQKOsBnA5agZGNvZ9qIXKZEUTsTloUjMdAWI8NYA1s0i9HovnGxI5uGlgevrftK4S5V4AdkA==} 258 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 259 | 260 | '@parcel/node-resolver-core@2.8.2': 261 | resolution: {integrity: sha512-D/NJEz/h/C3RmUOWSTg0cLwG3uRVHY9PL+3YGO/c8tKu8PlS2j55XtntdiVfwkK+P6avLCnrJnv/gwTa79dOPw==} 262 | engines: {node: '>= 12.0.0'} 263 | 264 | '@parcel/optimizer-css@2.8.2': 265 | resolution: {integrity: sha512-pQEuKhk0PJuYI3hrXlf4gpuuPy+MZUDzC44ulQM7kVcVJ0OofuJQQeHfTLE+v5wClFDd29ZQZ7RsLP5RyUQ+Lg==} 266 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 267 | 268 | '@parcel/optimizer-data-url@2.8.2': 269 | resolution: {integrity: sha512-wFkwIOjh/kWwl9aQkhcNHH3VrGujW8AYQx8DFkcNaUaR6SPMRNXUZ3zLfDsHLvlRRL8YqYAvrGerQ0M5auChIQ==} 270 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 271 | 272 | '@parcel/optimizer-htmlnano@2.8.2': 273 | resolution: {integrity: sha512-4+3wi+Yi+hsf5/LolX59JXFe/7bLpI6NetUBgtoxOVm/EzFg1NGSNOcrthzEcgGj6+MMSdzBAxRTPObAfDxJCA==} 274 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 275 | 276 | '@parcel/optimizer-image@2.8.2': 277 | resolution: {integrity: sha512-/ICYG0smbMkli+su4m/ENQPxQDCPYYTJTjseKwl+t1vyj6wqNF99mNI4c0RE2TIPuDneGwSz7PlHhC2JmdgxfQ==} 278 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 279 | 280 | '@parcel/optimizer-svgo@2.8.2': 281 | resolution: {integrity: sha512-nFWyM+CBtgBixqknpbN4R92v8PK7Gjlrsb8vxN/IIr/3Pjk+DfoT51DnynhU7AixvDylYkgjjqrQ7uFYYl0OKA==} 282 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 283 | 284 | '@parcel/optimizer-terser@2.8.2': 285 | resolution: {integrity: sha512-jFAOh9WaO6oNc8B9qDsCWzNkH7nYlpvaPn0w3ZzpMDi0HWD+w+xgO737rWLJWZapqUDSOs0Q/hDFEZ82/z0yxA==} 286 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 287 | 288 | '@parcel/package-manager@2.8.2': 289 | resolution: {integrity: sha512-hx4Imi0yhsSS0aNZkEANPYNNKqBuR63EUNWSxMyHh4ZOvbHoOXnMn1ySGdx6v0oi9HvKymNsLMQ1T5CuI4l4Bw==} 290 | engines: {node: '>= 12.0.0'} 291 | peerDependencies: 292 | '@parcel/core': ^2.8.2 293 | 294 | '@parcel/packager-css@2.8.2': 295 | resolution: {integrity: sha512-l2fR5qr1moUWLOqQZPxtH6DBKbaKcxzEPAmQ+f15dHt8eQxU15MyQ4DHX41b5B7HwaumgCqe0NkuTF3DedpJKg==} 296 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 297 | 298 | '@parcel/packager-html@2.8.2': 299 | resolution: {integrity: sha512-/oiTsKZ5OyF9OwAVGHANNuW2TB3k3cVub1QfttSKJgG3sAhrOifb1dP8zBHMxvUrB0CJdYhGlgi1Jth9kjACCg==} 300 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 301 | 302 | '@parcel/packager-js@2.8.2': 303 | resolution: {integrity: sha512-48LtHP4lJn8J1aBeD4Ix/YjsRxrBUkzbx7czdUeRh2PlCqY4wwIhciVlEFipj/ANr3ieSX44lXyVPk/ttnSdrw==} 304 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 305 | 306 | '@parcel/packager-raw@2.8.2': 307 | resolution: {integrity: sha512-dGonfFptNV1lgqKaD17ecXBUyIfoG6cJI1cCE1sSoYCEt7r+Rq56X/Gq8oiA3+jjMC7QTls+SmFeMZh26fl77Q==} 308 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 309 | 310 | '@parcel/packager-svg@2.8.2': 311 | resolution: {integrity: sha512-k7LymTJ4XQA+UcPwFYqJfWs5/Awa4GirNxRWfiFflLqH3F1XvMiKSCIQXmrDM6IaeIqqDDsu6+P5U6YDAzzM3A==} 312 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 313 | 314 | '@parcel/plugin@2.8.2': 315 | resolution: {integrity: sha512-YG7TWfKsoNm72jbz3b3TLec0qJHVkuAWSzGzowdIhX37cP1kRfp6BU2VcH+qYPP/KYJLzhcZa9n3by147mGcxw==} 316 | engines: {node: '>= 12.0.0'} 317 | 318 | '@parcel/reporter-bundle-buddy@2.8.2': 319 | resolution: {integrity: sha512-sipkwo14+hRIQ7+A8645D6Iqlb0Z41rnSYh00oxJlW3i4ySLYpzY696vvuot7zAoMSjYxla/x0v7SmK4wHv/yQ==} 320 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 321 | 322 | '@parcel/reporter-dev-server@2.8.2': 323 | resolution: {integrity: sha512-A16pAQSAT8Yilo1yCPZcrtWbRhwyiMopEz0mOyGobA1ZDy6B3j4zjobIWzdPQCSIY7+v44vtWMDGbdGrxt6M1Q==} 324 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 325 | 326 | '@parcel/resolver-default@2.8.2': 327 | resolution: {integrity: sha512-mlowJMjFjyps9my8wd13kgeExJ5EgkPAuIxRSSWW+GPR7N3uA5DBJ+SB/CzdhCkPrXR6kwVWxNkkOch38pzOQQ==} 328 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 329 | 330 | '@parcel/runtime-browser-hmr@2.8.2': 331 | resolution: {integrity: sha512-VRM8mxakMglqRB0f5eAuwCigjJ5vlaJMwHy+JuzOsn/yVSELOb+6psRKl2B9hhxp9sJPt4IU6KDdH2IOrgx87Q==} 332 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 333 | 334 | '@parcel/runtime-js@2.8.2': 335 | resolution: {integrity: sha512-Vk3Gywn2M9qP5X4lF6tu8QXP4xNI90UOSOhKHQ9W5pCu+zvD0Gdvu7qwQPFuFjIAq08xU7+PvZzGnlnM+8NyRw==} 336 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 337 | 338 | '@parcel/runtime-react-refresh@2.8.2': 339 | resolution: {integrity: sha512-JjaMvBVx6v0zB1KHa7AopciIsl3FpjUMttr2tb6L7lzocti2muQGE6GBfinXOmD5oERwCf8HwGJ8SNFcIF0rKA==} 340 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 341 | 342 | '@parcel/runtime-service-worker@2.8.2': 343 | resolution: {integrity: sha512-KSxbOKV8nuH5JjFvcUlCtBYnVVlmxreXpMxRUPphPwJnyxRGA4E0jofbQxWY5KPgp7x/ZnZU/nyzCvqURH3kHA==} 344 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 345 | 346 | '@parcel/source-map@2.1.1': 347 | resolution: {integrity: sha512-Ejx1P/mj+kMjQb8/y5XxDUn4reGdr+WyKYloBljpppUy8gs42T+BNoEOuRYqDVdgPc6NxduzIDoJS9pOFfV5Ew==} 348 | engines: {node: ^12.18.3 || >=14} 349 | 350 | '@parcel/transformer-babel@2.8.2': 351 | resolution: {integrity: sha512-oL2BpvrPMwFiU9jUZ9UYGD1gRgvq9jLsOq+/PJl4GvPbOBVedIBE2nbHP/mYuWRpRnTTTiJQ/ItyOS0R2VQl7A==} 352 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 353 | 354 | '@parcel/transformer-css@2.8.2': 355 | resolution: {integrity: sha512-q8UDlX/TTCbuFBMU45q12/p92JNIz8MHkkH104dWDzXbRtvMKMg8jgNmr8S2bouZjtXMsSb2c54EO88DSM9G4A==} 356 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 357 | 358 | '@parcel/transformer-graphql@2.8.2': 359 | resolution: {integrity: sha512-j/1ANhcnVoA3optzYvTdhgUwYD8z/kBmtNIQaltTtWpMZpMqF5Y99P7VKkcGAuRQG5VDzHHyL2eRvF+/UUDe6g==} 360 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 361 | 362 | '@parcel/transformer-html@2.8.2': 363 | resolution: {integrity: sha512-QDgDw6+DAcllaRQiRteMX0VgPIsxRUTXFS8jcXhbGio41LbUkLcT09M04L/cfJAAzvIKhXqiOxfNnyajTvCPDQ==} 364 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 365 | 366 | '@parcel/transformer-image@2.8.2': 367 | resolution: {integrity: sha512-B/D9v/BVyN5jxoi+wHPbIRfMIylmC6adp8GP+BtChjbuRjukgGT8RlAVz4vDm1l0bboeyPL2IuoWRQgXKGuPVg==} 368 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 369 | peerDependencies: 370 | '@parcel/core': ^2.8.2 371 | 372 | '@parcel/transformer-inline-string@2.8.2': 373 | resolution: {integrity: sha512-140SRnwKktVJB/McYlN0ub4NpdXECu0NesVf3ORPaG1WLF/ZxYVpLl60XBptoze9ezUqR6B6Z34fWXZiOcW09Q==} 374 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 375 | 376 | '@parcel/transformer-js@2.8.2': 377 | resolution: {integrity: sha512-mLksi6gu/20JdCFDNPl7Y0HTwJOAvf2ybC2HaJcy69PJCeUrrstgiFTjsCwv1eKcesgEHi9kKX+sMHVAH3B/dA==} 378 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 379 | peerDependencies: 380 | '@parcel/core': ^2.8.2 381 | 382 | '@parcel/transformer-json@2.8.2': 383 | resolution: {integrity: sha512-eZuaY5tMxcMDJwpHJbPVTgSaBIO4mamwAa3VulN9kRRaf29nc+Q0iM7zMFVHWFQAi/mZZ194IIQXbDX3r6oSSQ==} 384 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 385 | 386 | '@parcel/transformer-less@2.8.2': 387 | resolution: {integrity: sha512-Y8HbXLZ+PYxbmb/Bc+MM0A6OuTQPkk1I+EdbTZsTCUsQAtg19P/5Pkl0E4Mab0GrVaM8pyZ+TiR69SKc1xHtFQ==} 388 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 389 | 390 | '@parcel/transformer-postcss@2.8.2': 391 | resolution: {integrity: sha512-0Vb4T2e0QinNDps1/PxYsZwEzWieVxoW++AAUD3gzg0MfSyRc72MPc27CLOnziiRDyOUl+62gqpnNzq9xaKExA==} 392 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 393 | 394 | '@parcel/transformer-posthtml@2.8.2': 395 | resolution: {integrity: sha512-Ub7o6QlH7+xHHHdhvR7MxTqjyLVqeJopPSzy4yP+Bd72tWVjaVm7f76SUl+p7VjhLTMkmczr9OxG3k0SFHEbGw==} 396 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 397 | 398 | '@parcel/transformer-raw@2.8.2': 399 | resolution: {integrity: sha512-xSzyZtrfisbx0R7xkuFJ/FksKyWaUFN18F9/0bLF8wo5LrOTQoYQatjun7/Rbq5mELBK/0ZPp7uJ02OqLRd2mA==} 400 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 401 | 402 | '@parcel/transformer-react-refresh-wrap@2.8.2': 403 | resolution: {integrity: sha512-UXBILYFXaj5zh1DzoYXoS3Wuq1+6WjoRQaFTUA5xrF3pjJb6LAXxWru3R20zR5INHIZXPxdQJB0b+epnmyjK4w==} 404 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 405 | 406 | '@parcel/transformer-sass@2.8.2': 407 | resolution: {integrity: sha512-GiTuLpkIIVjLUYM7kEWkGetQZSS6tSysokEvipSvST5LH3mXS7hV9d1kTE2DrvvN4SSgV1uougY7c4t1CexJZA==} 408 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 409 | 410 | '@parcel/transformer-svg@2.8.2': 411 | resolution: {integrity: sha512-FyliRrNHOF6tGzwHSzA2CTbkq3iMvS27eozf1kFj6gbO8gfJ5HXYoppQrTb237YZ/WXCHqe/3HVmGyJDZiLr+Q==} 412 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 413 | 414 | '@parcel/transformer-worklet@2.8.2': 415 | resolution: {integrity: sha512-GmJRy7bcqxfe2mzyNwWcYYeYYMhT++eg29kbeIX8ikj5N2YYB/yxMdilugJWbHrIMuPJUGUm/Houg6apr3z3+A==} 416 | engines: {node: '>= 12.0.0', parcel: ^2.8.2} 417 | 418 | '@parcel/types@2.8.2': 419 | resolution: {integrity: sha512-HAYhokWxM10raIhqaYj9VR9eAvJ+xP2sNfQ1IcQybHpq3qblcBe/4jDeuUpwIyKeQ4gorp7xY+q8KDoR20j43w==} 420 | 421 | '@parcel/utils@2.8.2': 422 | resolution: {integrity: sha512-Ufax7wZxC9FNsUpR0EU7Z22LEY/q9jjsDTwswctCdfpWb7TE/NudOfM9myycfRvwBVEYN50lPbkt1QltEVnXQQ==} 423 | engines: {node: '>= 12.0.0'} 424 | 425 | '@parcel/watcher-android-arm64@2.5.1': 426 | resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} 427 | engines: {node: '>= 10.0.0'} 428 | cpu: [arm64] 429 | os: [android] 430 | 431 | '@parcel/watcher-darwin-arm64@2.5.1': 432 | resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} 433 | engines: {node: '>= 10.0.0'} 434 | cpu: [arm64] 435 | os: [darwin] 436 | 437 | '@parcel/watcher-darwin-x64@2.5.1': 438 | resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} 439 | engines: {node: '>= 10.0.0'} 440 | cpu: [x64] 441 | os: [darwin] 442 | 443 | '@parcel/watcher-freebsd-x64@2.5.1': 444 | resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} 445 | engines: {node: '>= 10.0.0'} 446 | cpu: [x64] 447 | os: [freebsd] 448 | 449 | '@parcel/watcher-linux-arm-glibc@2.5.1': 450 | resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} 451 | engines: {node: '>= 10.0.0'} 452 | cpu: [arm] 453 | os: [linux] 454 | 455 | '@parcel/watcher-linux-arm-musl@2.5.1': 456 | resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} 457 | engines: {node: '>= 10.0.0'} 458 | cpu: [arm] 459 | os: [linux] 460 | 461 | '@parcel/watcher-linux-arm64-glibc@2.5.1': 462 | resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} 463 | engines: {node: '>= 10.0.0'} 464 | cpu: [arm64] 465 | os: [linux] 466 | 467 | '@parcel/watcher-linux-arm64-musl@2.5.1': 468 | resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} 469 | engines: {node: '>= 10.0.0'} 470 | cpu: [arm64] 471 | os: [linux] 472 | 473 | '@parcel/watcher-linux-x64-glibc@2.5.1': 474 | resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} 475 | engines: {node: '>= 10.0.0'} 476 | cpu: [x64] 477 | os: [linux] 478 | 479 | '@parcel/watcher-linux-x64-musl@2.5.1': 480 | resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} 481 | engines: {node: '>= 10.0.0'} 482 | cpu: [x64] 483 | os: [linux] 484 | 485 | '@parcel/watcher-win32-arm64@2.5.1': 486 | resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} 487 | engines: {node: '>= 10.0.0'} 488 | cpu: [arm64] 489 | os: [win32] 490 | 491 | '@parcel/watcher-win32-ia32@2.5.1': 492 | resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} 493 | engines: {node: '>= 10.0.0'} 494 | cpu: [ia32] 495 | os: [win32] 496 | 497 | '@parcel/watcher-win32-x64@2.5.1': 498 | resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} 499 | engines: {node: '>= 10.0.0'} 500 | cpu: [x64] 501 | os: [win32] 502 | 503 | '@parcel/watcher@2.1.0': 504 | resolution: {integrity: sha512-8s8yYjd19pDSsBpbkOHnT6Z2+UJSuLQx61pCFM0s5wSRvKCEMDjd/cHY3/GI1szHIWbpXpsJdg3V6ISGGx9xDw==} 505 | engines: {node: '>= 10.0.0'} 506 | 507 | '@parcel/watcher@2.5.1': 508 | resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} 509 | engines: {node: '>= 10.0.0'} 510 | 511 | '@parcel/workers@2.8.2': 512 | resolution: {integrity: sha512-Eg6CofIrJSNBa2fjXwvnzVLPKwR/6fkfQTFAm3Jl+4JYLVknBtTSFzQNp/Fa+HUEG889H9ucTk2CBi/fVPBAFw==} 513 | engines: {node: '>= 12.0.0'} 514 | peerDependencies: 515 | '@parcel/core': ^2.8.2 516 | 517 | '@pkgjs/parseargs@0.11.0': 518 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 519 | engines: {node: '>=14'} 520 | 521 | '@plasmohq/consolidate@0.17.0': 522 | resolution: {integrity: sha512-Na8imBnvzYPtzkK+9Uv9hPZ/oJti/0jgiQWD222SHxHw2QCVuR4KzslxXCy/rS8gGluSiTs1BGVvc3d2O6aJCA==} 523 | engines: {node: '>= 0.10.0'} 524 | peerDependencies: 525 | arc-templates: ^0.5.3 526 | atpl: '>=0.7.6' 527 | babel-core: ^6.26.3 528 | bracket-template: ^1.1.5 529 | coffeescript: ^2.7.0 530 | dot: ^1.1.3 531 | eco: ^1.1.0-rc-3 532 | ect: ^0.5.9 533 | ejs: ^3.1.5 534 | haml-coffee: ^1.14.1 535 | hamlet: ^0.3.3 536 | hamljs: ^0.6.2 537 | handlebars: ^4.7.6 538 | hogan.js: ^3.0.2 539 | htmling: ^0.0.8 540 | jazz: ^0.0.18 541 | jqtpl: ~1.1.0 542 | just: ^0.1.8 543 | liquid: ^5.1.1 544 | liquor: ^0.0.5 545 | lodash: ^4.17.20 546 | marko: ^3.14.4 547 | mote: ^0.2.0 548 | mustache: ^4.0.1 549 | nunjucks: ^3.2.2 550 | plates: ~0.4.11 551 | pug: ^3.0.0 552 | qejs: ^3.0.5 553 | ractive: ^1.3.12 554 | razor-tmpl: ^1.3.1 555 | react: ^18.2.0 556 | react-dom: ^18.2.0 557 | slm: ^2.0.0 558 | squirrelly: ^5.1.0 559 | teacup: ^2.0.0 560 | templayed: '>=0.2.3' 561 | then-pug: '*' 562 | tinyliquid: ^0.2.34 563 | toffee: ^0.3.6 564 | twig: ^1.15.2 565 | twing: ^5.0.2 566 | underscore: ^1.11.0 567 | vash: ^0.13.0 568 | velocityjs: ^2.0.1 569 | walrus: ^0.10.1 570 | whiskers: ^0.4.0 571 | peerDependenciesMeta: 572 | arc-templates: 573 | optional: true 574 | atpl: 575 | optional: true 576 | babel-core: 577 | optional: true 578 | bracket-template: 579 | optional: true 580 | coffeescript: 581 | optional: true 582 | dot: 583 | optional: true 584 | eco: 585 | optional: true 586 | ect: 587 | optional: true 588 | ejs: 589 | optional: true 590 | haml-coffee: 591 | optional: true 592 | hamlet: 593 | optional: true 594 | hamljs: 595 | optional: true 596 | handlebars: 597 | optional: true 598 | hogan.js: 599 | optional: true 600 | htmling: 601 | optional: true 602 | jazz: 603 | optional: true 604 | jqtpl: 605 | optional: true 606 | just: 607 | optional: true 608 | liquid: 609 | optional: true 610 | liquor: 611 | optional: true 612 | lodash: 613 | optional: true 614 | marko: 615 | optional: true 616 | mote: 617 | optional: true 618 | mustache: 619 | optional: true 620 | nunjucks: 621 | optional: true 622 | plates: 623 | optional: true 624 | pug: 625 | optional: true 626 | qejs: 627 | optional: true 628 | ractive: 629 | optional: true 630 | razor-tmpl: 631 | optional: true 632 | react: 633 | optional: true 634 | react-dom: 635 | optional: true 636 | slm: 637 | optional: true 638 | squirrelly: 639 | optional: true 640 | teacup: 641 | optional: true 642 | templayed: 643 | optional: true 644 | then-pug: 645 | optional: true 646 | tinyliquid: 647 | optional: true 648 | toffee: 649 | optional: true 650 | twig: 651 | optional: true 652 | twing: 653 | optional: true 654 | underscore: 655 | optional: true 656 | vash: 657 | optional: true 658 | velocityjs: 659 | optional: true 660 | walrus: 661 | optional: true 662 | whiskers: 663 | optional: true 664 | 665 | '@plasmohq/init@0.5.3': 666 | resolution: {integrity: sha512-LA6dfrBsLSgdOhgLJr8asBcs6gQd9ehb436DU2c1XecjYEmh5vkEr/YjxyECOg7Iz/AdtfUuBXEjH3GGS6qOMg==} 667 | 668 | '@plasmohq/parcel-bundler@0.4.5': 669 | resolution: {integrity: sha512-Iqt2kGD/XuCAVi4kTawqYL10GVnYmZMMU5c/VCItR6yjA4w5Jxocw9xLwQ1PLg/AnWnS+qk8PqJ0GOjlgRx51Q==} 670 | engines: {node: '>= 16.0.0', parcel: '>= 2.7.0'} 671 | 672 | '@plasmohq/parcel-config@0.28.8': 673 | resolution: {integrity: sha512-ormR7d5cf2IG4/Ls9hqMo9mRfEe1FzlTyDArvOdKPBIlRRuQ/FycI7JiQO4PgBZ8NnRvVTqnGrhnZ5J+9X4HGg==} 674 | 675 | '@plasmohq/parcel-namer-manifest@0.3.3': 676 | resolution: {integrity: sha512-CRafhqrsAbfFx5KZZ6WKZVMugO5S5XEnvRGQHG51TkxL3I2eCpU0OfLIW+Hl4UGLJ3cfEBcW2CYlV8doSzgkSg==} 677 | engines: {parcel: '>= 2.7.0'} 678 | 679 | '@plasmohq/parcel-optimizer-terser@0.0.4': 680 | resolution: {integrity: sha512-jeMJEIhE4czdEN6hWtr59CFMF6WXxGVH0nZSUtrcbymDp5TsETqfZvmrCqdDEQOGGDGY1zYJp2DjulB2hy5Xqw==} 681 | engines: {parcel: '>= 2.7.0'} 682 | 683 | '@plasmohq/parcel-packager@0.6.4': 684 | resolution: {integrity: sha512-g9fY/dlgVE4DF508+LjShgl+r19XVEPuuVAqhLAuqHPUK9R9tYzevy3uz+QBHWtQUfT5syNJ0H2uJVuDXKh+8Q==} 685 | engines: {parcel: '>= 2.7.0'} 686 | 687 | '@plasmohq/parcel-resolver-post@0.1.4': 688 | resolution: {integrity: sha512-Vj8hxz/L0mu0pdE2Ykp0oh3+s6pIe38JhIxrNBmdbMtAjCQnXkZARH7j6q30n9rFaexlfdHOBRfCyNoj5D+DVg==} 689 | engines: {parcel: '>= 2.7.0'} 690 | 691 | '@plasmohq/parcel-resolver@0.9.5': 692 | resolution: {integrity: sha512-QMmKG3wEmYEBWx5Ez2wsfnB/9O6ZVk5B0Iz3CqoSLIwhNc9WjkknbUHjq/MpG4X64PYfaE7YbSHQzEcpQ4joEg==} 693 | engines: {parcel: '>= 2.7.0'} 694 | 695 | '@plasmohq/parcel-runtime@0.15.5': 696 | resolution: {integrity: sha512-NnnDietLmPBN0H9N7t0skJbVh0qp+C99wTuh0M4y5kklzrwBWwGWfWRlRY/HjfgQnd7xZR3IUt6DtOPuimEy0g==} 697 | engines: {parcel: '>= 2.7.0'} 698 | 699 | '@plasmohq/parcel-transformer-inject-env@0.2.3': 700 | resolution: {integrity: sha512-rKvOqsosDo/edwh21aV2y4KvJM3F1rAJ6mCR5SAHdOnmQNRgRbbRPl71H0XWHBXRdhfPNksN++NXJsLT9/KMbw==} 701 | engines: {parcel: '>= 2.7.0'} 702 | 703 | '@plasmohq/parcel-transformer-inline-css@0.2.3': 704 | resolution: {integrity: sha512-WNvV974ViI0kddyn9YjJoFNdCueiFlRV0KQaaEaURLMDJJnrkx0TL/vd/FcOtUReJYdP8jb4TY9GF3qkBjeQSQ==} 705 | engines: {parcel: '>= 2.7.0'} 706 | 707 | '@plasmohq/parcel-transformer-manifest@0.13.3': 708 | resolution: {integrity: sha512-4d00pACP7ABKOPsFj5N2EAzuFhQmfFcyIYMNZR2vH1Dk7HbKVXFqMtfjdWVtCeH8Ki+CRLjBK9i+mVw5h1YsHQ==} 709 | engines: {parcel: '>= 2.7.0'} 710 | 711 | '@plasmohq/parcel-transformer-svelte3@0.4.1': 712 | resolution: {integrity: sha512-WHLsXRZDn/vJ0X9mQLvBWNZf78Y6/L6UpKVRdezkiCta3aXVBYNQZ+KdyTYuWGfDRRPJr2npBRj6X7ByfVyVaA==} 713 | engines: {parcel: '>= 2.7.0'} 714 | 715 | '@plasmohq/parcel-transformer-vue3@0.3.3': 716 | resolution: {integrity: sha512-WAFFXR4QanlVMe0fZOxN09vkgtyXiQY0YUxVjVvI0poaWaylL3dYguwpCzZdxFJsXpV1DchdDcebFu6dzU9dxw==} 717 | engines: {parcel: '>= 2.7.0'} 718 | 719 | '@pnpm/config.env-replace@1.1.0': 720 | resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} 721 | engines: {node: '>=12.22.0'} 722 | 723 | '@pnpm/network.ca-file@1.0.2': 724 | resolution: {integrity: sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==} 725 | engines: {node: '>=12.22.0'} 726 | 727 | '@pnpm/npm-conf@2.3.1': 728 | resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==} 729 | engines: {node: '>=12'} 730 | 731 | '@sindresorhus/is@5.6.0': 732 | resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} 733 | engines: {node: '>=14.16'} 734 | 735 | '@swc/helpers@0.4.14': 736 | resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} 737 | 738 | '@swc/helpers@0.4.37': 739 | resolution: {integrity: sha512-O4U8DmGtYvuWDrqmkAqhmA+sV8D3eJzvKSUgg5L5eaCCPdywZBLc97UgJT/fQaCkQ5onJzJWNojgErJk1bThaw==} 740 | 741 | '@szmarczak/http-timer@5.0.1': 742 | resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==} 743 | engines: {node: '>=14.16'} 744 | 745 | '@trysound/sax@0.2.0': 746 | resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} 747 | engines: {node: '>=10.13.0'} 748 | 749 | '@types/chrome@0.0.206': 750 | resolution: {integrity: sha512-fQnTFjghPB9S4UzbfublUB6KmsBkvvJeGXGaaoD5Qu+ZxrDUfgJnKN5egLSzDcGAH5YxQubDgbCdNwwUGewQHg==} 751 | 752 | '@types/filesystem@0.0.36': 753 | resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==} 754 | 755 | '@types/filewriter@0.0.33': 756 | resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==} 757 | 758 | '@types/har-format@1.2.16': 759 | resolution: {integrity: sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==} 760 | 761 | '@types/http-cache-semantics@4.0.4': 762 | resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} 763 | 764 | '@types/json-schema@7.0.15': 765 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 766 | 767 | '@types/node@18.11.18': 768 | resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} 769 | 770 | '@vue/compiler-core@3.2.45': 771 | resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} 772 | 773 | '@vue/compiler-dom@3.2.45': 774 | resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==} 775 | 776 | '@vue/compiler-sfc@3.2.45': 777 | resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} 778 | 779 | '@vue/compiler-ssr@3.2.45': 780 | resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==} 781 | 782 | '@vue/reactivity-transform@3.2.45': 783 | resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} 784 | 785 | '@vue/shared@3.2.45': 786 | resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==} 787 | 788 | abortcontroller-polyfill@1.7.8: 789 | resolution: {integrity: sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ==} 790 | 791 | acorn@8.14.1: 792 | resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} 793 | engines: {node: '>=0.4.0'} 794 | hasBin: true 795 | 796 | ansi-escapes@6.2.1: 797 | resolution: {integrity: sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==} 798 | engines: {node: '>=14.16'} 799 | 800 | ansi-regex@5.0.1: 801 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 802 | engines: {node: '>=8'} 803 | 804 | ansi-regex@6.1.0: 805 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 806 | engines: {node: '>=12'} 807 | 808 | ansi-styles@4.3.0: 809 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 810 | engines: {node: '>=8'} 811 | 812 | ansi-styles@6.2.1: 813 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 814 | engines: {node: '>=12'} 815 | 816 | ansis@4.0.0: 817 | resolution: {integrity: sha512-P8nrHI1EyW9OfBt1X7hMSwGN2vwRuqHSKJAT1gbLWZRzDa24oHjYwGHvEgHeBepupzk878yS/HBZ0NMPYtbolw==} 818 | engines: {node: '>=14'} 819 | 820 | any-promise@1.3.0: 821 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 822 | 823 | anymatch@3.1.3: 824 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 825 | engines: {node: '>= 8'} 826 | 827 | archiver-utils@2.1.0: 828 | resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==} 829 | engines: {node: '>= 6'} 830 | 831 | archiver-utils@3.0.4: 832 | resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==} 833 | engines: {node: '>= 10'} 834 | 835 | archiver@5.3.1: 836 | resolution: {integrity: sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==} 837 | engines: {node: '>= 10'} 838 | 839 | argparse@2.0.1: 840 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 841 | 842 | args-tokenizer@0.3.0: 843 | resolution: {integrity: sha512-xXAd7G2Mll5W8uo37GETpQ2VrE84M181Z7ugHFGQnJZ50M2mbOv0osSZ9VsSgPfJQ+LVG0prSi0th+ELMsno7Q==} 844 | 845 | array-union@2.1.0: 846 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 847 | engines: {node: '>=8'} 848 | 849 | async@3.2.6: 850 | resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} 851 | 852 | balanced-match@1.0.2: 853 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 854 | 855 | base-x@3.0.11: 856 | resolution: {integrity: sha512-xz7wQ8xDhdyP7tQxwdteLYeFfS68tSMNCZ/Y37WJ4bhGfKPpqEIlmIyueQHqOyoPhE6xNUqjzRr8ra0eF9VRvA==} 857 | 858 | base64-js@1.5.1: 859 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 860 | 861 | binary-extensions@2.3.0: 862 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 863 | engines: {node: '>=8'} 864 | 865 | bl@4.1.0: 866 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 867 | 868 | bl@5.1.0: 869 | resolution: {integrity: sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==} 870 | 871 | bluebird@3.7.2: 872 | resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} 873 | 874 | boolbase@1.0.0: 875 | resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 876 | 877 | brace-expansion@1.1.11: 878 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 879 | 880 | brace-expansion@2.0.1: 881 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 882 | 883 | braces@3.0.3: 884 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 885 | engines: {node: '>=8'} 886 | 887 | browserslist@4.24.4: 888 | resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==} 889 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 890 | hasBin: true 891 | 892 | buffer-crc32@0.2.13: 893 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} 894 | 895 | buffer-from@1.1.2: 896 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 897 | 898 | buffer@5.7.1: 899 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 900 | 901 | buffer@6.0.3: 902 | resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 903 | 904 | bumpp@10.1.1: 905 | resolution: {integrity: sha512-69ejE1J5O5qDN3oRu2jRas1nQmi5zEYepjzbYPpi1znuDnp+zZ9Yezsf/nYauWeoMNALQ5toniNGET05Txj2cQ==} 906 | engines: {node: '>=18'} 907 | hasBin: true 908 | 909 | bundle-require@3.1.2: 910 | resolution: {integrity: sha512-Of6l6JBAxiyQ5axFxUM6dYeP/W7X2Sozeo/4EYB9sJhL+dqL7TKjg+shwxp6jlu/6ZSERfsYtIpSJ1/x3XkAEA==} 911 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 912 | peerDependencies: 913 | esbuild: '>=0.13' 914 | 915 | c12@3.0.4: 916 | resolution: {integrity: sha512-t5FaZTYbbCtvxuZq9xxIruYydrAGsJ+8UdP0pZzMiK2xl/gNiSOy0OxhLzHUEEb0m1QXYqfzfvyIFEmz/g9lqg==} 917 | peerDependencies: 918 | magicast: ^0.3.5 919 | peerDependenciesMeta: 920 | magicast: 921 | optional: true 922 | 923 | cac@6.7.14: 924 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 925 | engines: {node: '>=8'} 926 | 927 | cacheable-lookup@7.0.0: 928 | resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==} 929 | engines: {node: '>=14.16'} 930 | 931 | cacheable-request@10.2.14: 932 | resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==} 933 | engines: {node: '>=14.16'} 934 | 935 | callsites@3.1.0: 936 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 937 | engines: {node: '>=6'} 938 | 939 | camel-case@4.1.2: 940 | resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} 941 | 942 | caniuse-lite@1.0.30001707: 943 | resolution: {integrity: sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==} 944 | 945 | capital-case@1.0.4: 946 | resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} 947 | 948 | chalk@4.1.2: 949 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 950 | engines: {node: '>=10'} 951 | 952 | chalk@5.2.0: 953 | resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==} 954 | engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 955 | 956 | change-case@4.1.2: 957 | resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} 958 | 959 | chardet@0.7.0: 960 | resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 961 | 962 | chokidar@3.6.0: 963 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 964 | engines: {node: '>= 8.10.0'} 965 | 966 | chokidar@4.0.3: 967 | resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 968 | engines: {node: '>= 14.16.0'} 969 | 970 | chownr@1.1.4: 971 | resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 972 | 973 | chrome-trace-event@1.0.4: 974 | resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} 975 | engines: {node: '>=6.0'} 976 | 977 | citty@0.1.6: 978 | resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} 979 | 980 | cli-cursor@4.0.0: 981 | resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} 982 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 983 | 984 | cli-spinners@2.9.2: 985 | resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} 986 | engines: {node: '>=6'} 987 | 988 | cli-width@4.1.0: 989 | resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} 990 | engines: {node: '>= 12'} 991 | 992 | clone@1.0.4: 993 | resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 994 | engines: {node: '>=0.8'} 995 | 996 | clone@2.1.2: 997 | resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} 998 | engines: {node: '>=0.8'} 999 | 1000 | color-convert@2.0.1: 1001 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1002 | engines: {node: '>=7.0.0'} 1003 | 1004 | color-name@1.1.4: 1005 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1006 | 1007 | color-string@1.9.1: 1008 | resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} 1009 | 1010 | color@4.2.3: 1011 | resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} 1012 | engines: {node: '>=12.5.0'} 1013 | 1014 | commander@2.20.3: 1015 | resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} 1016 | 1017 | commander@4.1.1: 1018 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 1019 | engines: {node: '>= 6'} 1020 | 1021 | commander@7.2.0: 1022 | resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} 1023 | engines: {node: '>= 10'} 1024 | 1025 | compress-commons@4.1.2: 1026 | resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==} 1027 | engines: {node: '>= 10'} 1028 | 1029 | concat-map@0.0.1: 1030 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 1031 | 1032 | confbox@0.2.2: 1033 | resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} 1034 | 1035 | config-chain@1.1.13: 1036 | resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} 1037 | 1038 | consola@3.4.2: 1039 | resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} 1040 | engines: {node: ^14.18.0 || >=16.10.0} 1041 | 1042 | constant-case@3.0.4: 1043 | resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} 1044 | 1045 | content-security-policy-parser@0.4.1: 1046 | resolution: {integrity: sha512-NNJS8XPnx3OKr/CUOSwDSJw+lWTrZMYnclLKj0Y9CYOfJNJTWLFGPg3u2hYgbXMXKVRkZR2fbyReNQ1mUff/Qg==} 1047 | engines: {node: '>=8.0.0'} 1048 | 1049 | copy-anything@2.0.6: 1050 | resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} 1051 | 1052 | core-util-is@1.0.3: 1053 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 1054 | 1055 | cosmiconfig@9.0.0: 1056 | resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} 1057 | engines: {node: '>=14'} 1058 | peerDependencies: 1059 | typescript: '>=4.9.5' 1060 | peerDependenciesMeta: 1061 | typescript: 1062 | optional: true 1063 | 1064 | craie@1.0.1: 1065 | resolution: {integrity: sha512-x94UW08Vu4tCxfTxnP+bv4XdlMWT0XaYVrjvZCEBzFheFphbkJRkRZzerTgXsMV5T2CUiqRYv4y4VKpSfucqkA==} 1066 | 1067 | crc-32@1.2.2: 1068 | resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} 1069 | engines: {node: '>=0.8'} 1070 | hasBin: true 1071 | 1072 | crc32-stream@4.0.3: 1073 | resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==} 1074 | engines: {node: '>= 10'} 1075 | 1076 | cross-spawn@7.0.6: 1077 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 1078 | engines: {node: '>= 8'} 1079 | 1080 | crypto-random-string@4.0.0: 1081 | resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} 1082 | engines: {node: '>=12'} 1083 | 1084 | css-select@4.3.0: 1085 | resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} 1086 | 1087 | css-tree@1.1.3: 1088 | resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} 1089 | engines: {node: '>=8.0.0'} 1090 | 1091 | css-what@6.1.0: 1092 | resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} 1093 | engines: {node: '>= 6'} 1094 | 1095 | csso@4.2.0: 1096 | resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} 1097 | engines: {node: '>=8.0.0'} 1098 | 1099 | debug@4.4.0: 1100 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 1101 | engines: {node: '>=6.0'} 1102 | peerDependencies: 1103 | supports-color: '*' 1104 | peerDependenciesMeta: 1105 | supports-color: 1106 | optional: true 1107 | 1108 | decompress-response@6.0.0: 1109 | resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 1110 | engines: {node: '>=10'} 1111 | 1112 | deep-extend@0.6.0: 1113 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 1114 | engines: {node: '>=4.0.0'} 1115 | 1116 | defaults@1.0.4: 1117 | resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 1118 | 1119 | defer-to-connect@2.0.1: 1120 | resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} 1121 | engines: {node: '>=10'} 1122 | 1123 | defu@6.1.4: 1124 | resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 1125 | 1126 | destr@2.0.3: 1127 | resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} 1128 | 1129 | detect-libc@1.0.3: 1130 | resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} 1131 | engines: {node: '>=0.10'} 1132 | hasBin: true 1133 | 1134 | detect-libc@2.0.3: 1135 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} 1136 | engines: {node: '>=8'} 1137 | 1138 | dir-glob@3.0.1: 1139 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1140 | engines: {node: '>=8'} 1141 | 1142 | dom-serializer@1.4.1: 1143 | resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} 1144 | 1145 | domelementtype@2.3.0: 1146 | resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} 1147 | 1148 | domhandler@4.3.1: 1149 | resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} 1150 | engines: {node: '>= 4'} 1151 | 1152 | domutils@2.8.0: 1153 | resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} 1154 | 1155 | dot-case@3.0.4: 1156 | resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} 1157 | 1158 | dotenv-expand@10.0.0: 1159 | resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} 1160 | engines: {node: '>=12'} 1161 | 1162 | dotenv-expand@5.1.0: 1163 | resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} 1164 | 1165 | dotenv@16.0.3: 1166 | resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} 1167 | engines: {node: '>=12'} 1168 | 1169 | dotenv@16.5.0: 1170 | resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} 1171 | engines: {node: '>=12'} 1172 | 1173 | dotenv@7.0.0: 1174 | resolution: {integrity: sha512-M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g==} 1175 | engines: {node: '>=6'} 1176 | 1177 | eastasianwidth@0.2.0: 1178 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 1179 | 1180 | electron-to-chromium@1.5.128: 1181 | resolution: {integrity: sha512-bo1A4HH/NS522Ws0QNFIzyPcyUUNV/yyy70Ho1xqfGYzPUme2F/xr4tlEOuM6/A538U1vDA7a4XfCd1CKRegKQ==} 1182 | 1183 | emoji-regex@8.0.0: 1184 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1185 | 1186 | emoji-regex@9.2.2: 1187 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1188 | 1189 | end-of-stream@1.4.4: 1190 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 1191 | 1192 | entities@2.2.0: 1193 | resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} 1194 | 1195 | entities@3.0.1: 1196 | resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} 1197 | engines: {node: '>=0.12'} 1198 | 1199 | env-paths@2.2.1: 1200 | resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} 1201 | engines: {node: '>=6'} 1202 | 1203 | errno@0.1.8: 1204 | resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} 1205 | hasBin: true 1206 | 1207 | error-ex@1.3.2: 1208 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 1209 | 1210 | esbuild-android-64@0.15.18: 1211 | resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==} 1212 | engines: {node: '>=12'} 1213 | cpu: [x64] 1214 | os: [android] 1215 | 1216 | esbuild-android-arm64@0.15.18: 1217 | resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==} 1218 | engines: {node: '>=12'} 1219 | cpu: [arm64] 1220 | os: [android] 1221 | 1222 | esbuild-darwin-64@0.15.18: 1223 | resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==} 1224 | engines: {node: '>=12'} 1225 | cpu: [x64] 1226 | os: [darwin] 1227 | 1228 | esbuild-darwin-arm64@0.15.18: 1229 | resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==} 1230 | engines: {node: '>=12'} 1231 | cpu: [arm64] 1232 | os: [darwin] 1233 | 1234 | esbuild-freebsd-64@0.15.18: 1235 | resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==} 1236 | engines: {node: '>=12'} 1237 | cpu: [x64] 1238 | os: [freebsd] 1239 | 1240 | esbuild-freebsd-arm64@0.15.18: 1241 | resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==} 1242 | engines: {node: '>=12'} 1243 | cpu: [arm64] 1244 | os: [freebsd] 1245 | 1246 | esbuild-linux-32@0.15.18: 1247 | resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==} 1248 | engines: {node: '>=12'} 1249 | cpu: [ia32] 1250 | os: [linux] 1251 | 1252 | esbuild-linux-64@0.15.18: 1253 | resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==} 1254 | engines: {node: '>=12'} 1255 | cpu: [x64] 1256 | os: [linux] 1257 | 1258 | esbuild-linux-arm64@0.15.18: 1259 | resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==} 1260 | engines: {node: '>=12'} 1261 | cpu: [arm64] 1262 | os: [linux] 1263 | 1264 | esbuild-linux-arm@0.15.18: 1265 | resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==} 1266 | engines: {node: '>=12'} 1267 | cpu: [arm] 1268 | os: [linux] 1269 | 1270 | esbuild-linux-mips64le@0.15.18: 1271 | resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==} 1272 | engines: {node: '>=12'} 1273 | cpu: [mips64el] 1274 | os: [linux] 1275 | 1276 | esbuild-linux-ppc64le@0.15.18: 1277 | resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==} 1278 | engines: {node: '>=12'} 1279 | cpu: [ppc64] 1280 | os: [linux] 1281 | 1282 | esbuild-linux-riscv64@0.15.18: 1283 | resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==} 1284 | engines: {node: '>=12'} 1285 | cpu: [riscv64] 1286 | os: [linux] 1287 | 1288 | esbuild-linux-s390x@0.15.18: 1289 | resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==} 1290 | engines: {node: '>=12'} 1291 | cpu: [s390x] 1292 | os: [linux] 1293 | 1294 | esbuild-netbsd-64@0.15.18: 1295 | resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==} 1296 | engines: {node: '>=12'} 1297 | cpu: [x64] 1298 | os: [netbsd] 1299 | 1300 | esbuild-openbsd-64@0.15.18: 1301 | resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==} 1302 | engines: {node: '>=12'} 1303 | cpu: [x64] 1304 | os: [openbsd] 1305 | 1306 | esbuild-sunos-64@0.15.18: 1307 | resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==} 1308 | engines: {node: '>=12'} 1309 | cpu: [x64] 1310 | os: [sunos] 1311 | 1312 | esbuild-windows-32@0.15.18: 1313 | resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==} 1314 | engines: {node: '>=12'} 1315 | cpu: [ia32] 1316 | os: [win32] 1317 | 1318 | esbuild-windows-64@0.15.18: 1319 | resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==} 1320 | engines: {node: '>=12'} 1321 | cpu: [x64] 1322 | os: [win32] 1323 | 1324 | esbuild-windows-arm64@0.15.18: 1325 | resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==} 1326 | engines: {node: '>=12'} 1327 | cpu: [arm64] 1328 | os: [win32] 1329 | 1330 | esbuild@0.15.18: 1331 | resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==} 1332 | engines: {node: '>=12'} 1333 | hasBin: true 1334 | 1335 | escalade@3.2.0: 1336 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 1337 | engines: {node: '>=6'} 1338 | 1339 | escape-string-regexp@5.0.0: 1340 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 1341 | engines: {node: '>=12'} 1342 | 1343 | estree-walker@2.0.2: 1344 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1345 | 1346 | events@3.3.0: 1347 | resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 1348 | engines: {node: '>=0.8.x'} 1349 | 1350 | execa@5.1.1: 1351 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1352 | engines: {node: '>=10'} 1353 | 1354 | expand-template@2.0.3: 1355 | resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} 1356 | engines: {node: '>=6'} 1357 | 1358 | exsolve@1.0.5: 1359 | resolution: {integrity: sha512-pz5dvkYYKQ1AHVrgOzBKWeP4u4FRb3a6DNK2ucr0OoNwYIU4QWsJ+NM36LLzORT+z845MzKHHhpXiUF5nvQoJg==} 1360 | 1361 | external-editor@3.1.0: 1362 | resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} 1363 | engines: {node: '>=4'} 1364 | 1365 | fast-glob@3.3.3: 1366 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 1367 | engines: {node: '>=8.6.0'} 1368 | 1369 | fastq@1.19.1: 1370 | resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 1371 | 1372 | fdir@6.4.4: 1373 | resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==} 1374 | peerDependencies: 1375 | picomatch: ^3 || ^4 1376 | peerDependenciesMeta: 1377 | picomatch: 1378 | optional: true 1379 | 1380 | fflate@0.7.4: 1381 | resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==} 1382 | 1383 | figures@5.0.0: 1384 | resolution: {integrity: sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==} 1385 | engines: {node: '>=14'} 1386 | 1387 | fill-range@7.1.1: 1388 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1389 | engines: {node: '>=8'} 1390 | 1391 | foreground-child@3.3.1: 1392 | resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 1393 | engines: {node: '>=14'} 1394 | 1395 | form-data-encoder@2.1.4: 1396 | resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} 1397 | engines: {node: '>= 14.17'} 1398 | 1399 | fs-constants@1.0.0: 1400 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 1401 | 1402 | fs.realpath@1.0.0: 1403 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1404 | 1405 | fsevents@2.3.3: 1406 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1407 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1408 | os: [darwin] 1409 | 1410 | get-port@6.1.2: 1411 | resolution: {integrity: sha512-BrGGraKm2uPqurfGVj/z97/zv8dPleC6x9JBNRTrDNtCkkRF4rPwrQXFgL7+I+q8QSdU4ntLQX2D7KIxSy8nGw==} 1412 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1413 | 1414 | get-stream@6.0.1: 1415 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1416 | engines: {node: '>=10'} 1417 | 1418 | giget@2.0.0: 1419 | resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==} 1420 | hasBin: true 1421 | 1422 | github-from-package@0.0.0: 1423 | resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 1424 | 1425 | glob-parent@5.1.2: 1426 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1427 | engines: {node: '>= 6'} 1428 | 1429 | glob@10.4.5: 1430 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 1431 | hasBin: true 1432 | 1433 | glob@7.2.3: 1434 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1435 | deprecated: Glob versions prior to v9 are no longer supported 1436 | 1437 | globals@13.24.0: 1438 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1439 | engines: {node: '>=8'} 1440 | 1441 | globalyzer@0.1.0: 1442 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 1443 | 1444 | globby@11.1.0: 1445 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1446 | engines: {node: '>=10'} 1447 | 1448 | globrex@0.1.2: 1449 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 1450 | 1451 | got@12.5.3: 1452 | resolution: {integrity: sha512-8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w==} 1453 | engines: {node: '>=14.16'} 1454 | 1455 | graceful-fs@4.2.10: 1456 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 1457 | 1458 | graceful-fs@4.2.11: 1459 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1460 | 1461 | graphql-import-macro@1.0.0: 1462 | resolution: {integrity: sha512-YK4g6iP60H++MpP93tb0VwOg7aM5iIC0hdSQKTrEDANeLWf0KFAT9dwlBeMDrhY+jcW7qsAEDtaw58cgVnQXAw==} 1463 | 1464 | graphql@15.10.1: 1465 | resolution: {integrity: sha512-BL/Xd/T9baO6NFzoMpiMD7YUZ62R6viR5tp/MULVEnbYJXZA//kRNW7J0j1w/wXArgL0sCxhDfK5dczSKn3+cg==} 1466 | engines: {node: '>= 10.x'} 1467 | 1468 | has-flag@4.0.0: 1469 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1470 | engines: {node: '>=8'} 1471 | 1472 | header-case@2.0.4: 1473 | resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} 1474 | 1475 | htmlnano@2.1.1: 1476 | resolution: {integrity: sha512-kAERyg/LuNZYmdqgCdYvugyLWNFAm8MWXpQMz1pLpetmCbFwoMxvkSoaAMlFrOC4OKTWI4KlZGT/RsNxg4ghOw==} 1477 | peerDependencies: 1478 | cssnano: ^7.0.0 1479 | postcss: ^8.3.11 1480 | purgecss: ^6.0.0 1481 | relateurl: ^0.2.7 1482 | srcset: 5.0.1 1483 | svgo: ^3.0.2 1484 | terser: ^5.10.0 1485 | uncss: ^0.17.3 1486 | peerDependenciesMeta: 1487 | cssnano: 1488 | optional: true 1489 | postcss: 1490 | optional: true 1491 | purgecss: 1492 | optional: true 1493 | relateurl: 1494 | optional: true 1495 | srcset: 1496 | optional: true 1497 | svgo: 1498 | optional: true 1499 | terser: 1500 | optional: true 1501 | uncss: 1502 | optional: true 1503 | 1504 | htmlparser2@7.2.0: 1505 | resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} 1506 | 1507 | http-cache-semantics@4.1.1: 1508 | resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} 1509 | 1510 | http2-wrapper@2.2.1: 1511 | resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} 1512 | engines: {node: '>=10.19.0'} 1513 | 1514 | human-signals@2.1.0: 1515 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1516 | engines: {node: '>=10.17.0'} 1517 | 1518 | iconv-lite@0.4.24: 1519 | resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 1520 | engines: {node: '>=0.10.0'} 1521 | 1522 | iconv-lite@0.6.3: 1523 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 1524 | engines: {node: '>=0.10.0'} 1525 | 1526 | ieee754@1.2.1: 1527 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1528 | 1529 | ignore@5.3.2: 1530 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1531 | engines: {node: '>= 4'} 1532 | 1533 | image-size@0.5.5: 1534 | resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} 1535 | engines: {node: '>=0.10.0'} 1536 | hasBin: true 1537 | 1538 | immutable@5.1.1: 1539 | resolution: {integrity: sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==} 1540 | 1541 | import-fresh@3.3.1: 1542 | resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} 1543 | engines: {node: '>=6'} 1544 | 1545 | inflight@1.0.6: 1546 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1547 | 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. 1548 | 1549 | inherits@2.0.4: 1550 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1551 | 1552 | ini@1.3.8: 1553 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 1554 | 1555 | inquirer@9.1.4: 1556 | resolution: {integrity: sha512-9hiJxE5gkK/cM2d1mTEnuurGTAoHebbkX0BYl3h7iEg7FYfuNIom+nDfBCSWtvSnoSrWCeBxqqBZu26xdlJlXA==} 1557 | engines: {node: '>=12.0.0'} 1558 | 1559 | is-arrayish@0.2.1: 1560 | resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} 1561 | 1562 | is-arrayish@0.3.2: 1563 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 1564 | 1565 | is-binary-path@2.1.0: 1566 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1567 | engines: {node: '>=8'} 1568 | 1569 | is-extglob@2.1.1: 1570 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1571 | engines: {node: '>=0.10.0'} 1572 | 1573 | is-fullwidth-code-point@3.0.0: 1574 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1575 | engines: {node: '>=8'} 1576 | 1577 | is-glob@4.0.3: 1578 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1579 | engines: {node: '>=0.10.0'} 1580 | 1581 | is-interactive@2.0.0: 1582 | resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} 1583 | engines: {node: '>=12'} 1584 | 1585 | is-json@2.0.1: 1586 | resolution: {integrity: sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==} 1587 | 1588 | is-number@7.0.0: 1589 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1590 | engines: {node: '>=0.12.0'} 1591 | 1592 | is-path-inside@4.0.0: 1593 | resolution: {integrity: sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==} 1594 | engines: {node: '>=12'} 1595 | 1596 | is-stream@2.0.1: 1597 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1598 | engines: {node: '>=8'} 1599 | 1600 | is-stream@3.0.0: 1601 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 1602 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1603 | 1604 | is-unicode-supported@1.3.0: 1605 | resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} 1606 | engines: {node: '>=12'} 1607 | 1608 | is-what@3.14.1: 1609 | resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} 1610 | 1611 | isarray@1.0.0: 1612 | resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 1613 | 1614 | isbinaryfile@4.0.10: 1615 | resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} 1616 | engines: {node: '>= 8.0.0'} 1617 | 1618 | isexe@2.0.0: 1619 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1620 | 1621 | jackspeak@3.4.3: 1622 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 1623 | 1624 | jiti@2.4.2: 1625 | resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} 1626 | hasBin: true 1627 | 1628 | joycon@3.1.1: 1629 | resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} 1630 | engines: {node: '>=10'} 1631 | 1632 | js-tokens@4.0.0: 1633 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1634 | 1635 | js-yaml@4.1.0: 1636 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1637 | hasBin: true 1638 | 1639 | json-buffer@3.0.1: 1640 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1641 | 1642 | json-parse-even-better-errors@2.3.1: 1643 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 1644 | 1645 | json-schema-to-ts@2.6.2: 1646 | resolution: {integrity: sha512-RrcvhZUcTAtfMVSvHIq3h/tELToha68V/1kGeQ2ggBv/4Bv31Zjbqis+b+Hiwibj6GO5WLA9PE4X93C8VTJ1TA==} 1647 | engines: {node: '>=16'} 1648 | 1649 | json5@2.2.3: 1650 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1651 | engines: {node: '>=6'} 1652 | hasBin: true 1653 | 1654 | jsonc-parser@3.3.1: 1655 | resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} 1656 | 1657 | keyv@4.5.4: 1658 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1659 | 1660 | lazystream@1.0.1: 1661 | resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} 1662 | engines: {node: '>= 0.6.3'} 1663 | 1664 | less@4.2.2: 1665 | resolution: {integrity: sha512-tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg==} 1666 | engines: {node: '>=6'} 1667 | hasBin: true 1668 | 1669 | lightningcss-darwin-arm64@1.29.3: 1670 | resolution: {integrity: sha512-fb7raKO3pXtlNbQbiMeEu8RbBVHnpyqAoxTyTRMEWFQWmscGC2wZxoHzZ+YKAepUuKT9uIW5vL2QbFivTgprZg==} 1671 | engines: {node: '>= 12.0.0'} 1672 | cpu: [arm64] 1673 | os: [darwin] 1674 | 1675 | lightningcss-darwin-x64@1.29.3: 1676 | resolution: {integrity: sha512-KF2XZ4ZdmDGGtEYmx5wpzn6u8vg7AdBHaEOvDKu8GOs7xDL/vcU2vMKtTeNe1d4dogkDdi3B9zC77jkatWBwEQ==} 1677 | engines: {node: '>= 12.0.0'} 1678 | cpu: [x64] 1679 | os: [darwin] 1680 | 1681 | lightningcss-freebsd-x64@1.29.3: 1682 | resolution: {integrity: sha512-VUWeVf+V1UM54jv9M4wen9vMlIAyT69Krl9XjI8SsRxz4tdNV/7QEPlW6JASev/pYdiynUCW0pwaFquDRYdxMw==} 1683 | engines: {node: '>= 12.0.0'} 1684 | cpu: [x64] 1685 | os: [freebsd] 1686 | 1687 | lightningcss-linux-arm-gnueabihf@1.29.3: 1688 | resolution: {integrity: sha512-UhgZ/XVNfXQVEJrMIWeK1Laj8KbhjbIz7F4znUk7G4zeGw7TRoJxhb66uWrEsonn1+O45w//0i0Fu0wIovYdYg==} 1689 | engines: {node: '>= 12.0.0'} 1690 | cpu: [arm] 1691 | os: [linux] 1692 | 1693 | lightningcss-linux-arm64-gnu@1.29.3: 1694 | resolution: {integrity: sha512-Pqau7jtgJNmQ/esugfmAT1aCFy/Gxc92FOxI+3n+LbMHBheBnk41xHDhc0HeYlx9G0xP5tK4t0Koy3QGGNqypw==} 1695 | engines: {node: '>= 12.0.0'} 1696 | cpu: [arm64] 1697 | os: [linux] 1698 | 1699 | lightningcss-linux-arm64-musl@1.29.3: 1700 | resolution: {integrity: sha512-dxakOk66pf7KLS7VRYFO7B8WOJLecE5OPL2YOk52eriFd/yeyxt2Km5H0BjLfElokIaR+qWi33gB8MQLrdAY3A==} 1701 | engines: {node: '>= 12.0.0'} 1702 | cpu: [arm64] 1703 | os: [linux] 1704 | 1705 | lightningcss-linux-x64-gnu@1.29.3: 1706 | resolution: {integrity: sha512-ySZTNCpbfbK8rqpKJeJR2S0g/8UqqV3QnzcuWvpI60LWxnFN91nxpSSwCbzfOXkzKfar9j5eOuOplf+klKtINg==} 1707 | engines: {node: '>= 12.0.0'} 1708 | cpu: [x64] 1709 | os: [linux] 1710 | 1711 | lightningcss-linux-x64-musl@1.29.3: 1712 | resolution: {integrity: sha512-3pVZhIzW09nzi10usAXfIGTTSTYQ141dk88vGFNCgawIzayiIzZQxEcxVtIkdvlEq2YuFsL9Wcj/h61JHHzuFQ==} 1713 | engines: {node: '>= 12.0.0'} 1714 | cpu: [x64] 1715 | os: [linux] 1716 | 1717 | lightningcss-win32-arm64-msvc@1.29.3: 1718 | resolution: {integrity: sha512-VRnkAvtIkeWuoBJeGOTrZxsNp4HogXtcaaLm8agmbYtLDOhQdpgxW6NjZZjDXbvGF+eOehGulXZ3C1TiwHY4QQ==} 1719 | engines: {node: '>= 12.0.0'} 1720 | cpu: [arm64] 1721 | os: [win32] 1722 | 1723 | lightningcss-win32-x64-msvc@1.29.3: 1724 | resolution: {integrity: sha512-IszwRPu2cPnDQsZpd7/EAr0x2W7jkaWqQ1SwCVIZ/tSbZVXPLt6k8s6FkcyBjViCzvB5CW0We0QbbP7zp2aBjQ==} 1725 | engines: {node: '>= 12.0.0'} 1726 | cpu: [x64] 1727 | os: [win32] 1728 | 1729 | lightningcss@1.29.3: 1730 | resolution: {integrity: sha512-GlOJwTIP6TMIlrTFsxTerwC0W6OpQpCGuX1ECRLBUVRh6fpJH3xTqjCjRgQHTb4ZXexH9rtHou1Lf03GKzmhhQ==} 1731 | engines: {node: '>= 12.0.0'} 1732 | 1733 | lilconfig@2.1.0: 1734 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1735 | engines: {node: '>=10'} 1736 | 1737 | lines-and-columns@1.2.4: 1738 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1739 | 1740 | lmdb@2.5.2: 1741 | resolution: {integrity: sha512-V5V5Xa2Hp9i2XsbDALkBTeHXnBXh/lEmk9p22zdr7jtuOIY9TGhjK6vAvTpOOx9IKU4hJkRWZxn/HsvR1ELLtA==} 1742 | 1743 | load-tsconfig@0.2.5: 1744 | resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} 1745 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1746 | 1747 | lodash.defaults@4.2.0: 1748 | resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} 1749 | 1750 | lodash.difference@4.5.0: 1751 | resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} 1752 | 1753 | lodash.flatten@4.4.0: 1754 | resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} 1755 | 1756 | lodash.isplainobject@4.0.6: 1757 | resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} 1758 | 1759 | lodash.sortby@4.7.0: 1760 | resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} 1761 | 1762 | lodash.union@4.6.0: 1763 | resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} 1764 | 1765 | lodash@4.17.21: 1766 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1767 | 1768 | log-symbols@5.1.0: 1769 | resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} 1770 | engines: {node: '>=12'} 1771 | 1772 | lower-case@2.0.2: 1773 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 1774 | 1775 | lowercase-keys@3.0.0: 1776 | resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} 1777 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1778 | 1779 | lru-cache@10.4.3: 1780 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 1781 | 1782 | lru-cache@6.0.0: 1783 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1784 | engines: {node: '>=10'} 1785 | 1786 | magic-string@0.25.9: 1787 | resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} 1788 | 1789 | make-dir@2.1.0: 1790 | resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} 1791 | engines: {node: '>=6'} 1792 | 1793 | mdn-data@2.0.14: 1794 | resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} 1795 | 1796 | merge-stream@2.0.0: 1797 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1798 | 1799 | merge2@1.4.1: 1800 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1801 | engines: {node: '>= 8'} 1802 | 1803 | micromatch@4.0.8: 1804 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1805 | engines: {node: '>=8.6'} 1806 | 1807 | mime@1.6.0: 1808 | resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 1809 | engines: {node: '>=4'} 1810 | hasBin: true 1811 | 1812 | mime@2.6.0: 1813 | resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} 1814 | engines: {node: '>=4.0.0'} 1815 | hasBin: true 1816 | 1817 | mimic-fn@2.1.0: 1818 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1819 | engines: {node: '>=6'} 1820 | 1821 | mimic-response@3.1.0: 1822 | resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 1823 | engines: {node: '>=10'} 1824 | 1825 | mimic-response@4.0.0: 1826 | resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} 1827 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1828 | 1829 | minimatch@3.1.2: 1830 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1831 | 1832 | minimatch@5.1.6: 1833 | resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} 1834 | engines: {node: '>=10'} 1835 | 1836 | minimatch@9.0.5: 1837 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1838 | engines: {node: '>=16 || 14 >=14.17'} 1839 | 1840 | minimist@1.2.8: 1841 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1842 | 1843 | minipass@7.1.2: 1844 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1845 | engines: {node: '>=16 || 14 >=14.17'} 1846 | 1847 | mkdirp-classic@0.5.3: 1848 | resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 1849 | 1850 | mnemonic-id@3.2.7: 1851 | resolution: {integrity: sha512-kysx9gAGbvrzuFYxKkcRjnsg/NK61ovJOV4F1cHTRl9T5leg+bo6WI0pWIvOFh1Z/yDL0cjA5R3EEGPPLDv/XA==} 1852 | 1853 | ms@2.1.3: 1854 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1855 | 1856 | msgpackr-extract@3.0.3: 1857 | resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==} 1858 | hasBin: true 1859 | 1860 | msgpackr@1.11.2: 1861 | resolution: {integrity: sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==} 1862 | 1863 | mute-stream@0.0.8: 1864 | resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} 1865 | 1866 | mz@2.7.0: 1867 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1868 | 1869 | nanoid@3.3.11: 1870 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1871 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1872 | hasBin: true 1873 | 1874 | napi-build-utils@2.0.0: 1875 | resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} 1876 | 1877 | needle@3.3.1: 1878 | resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} 1879 | engines: {node: '>= 4.4.x'} 1880 | hasBin: true 1881 | 1882 | no-case@3.0.4: 1883 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 1884 | 1885 | node-abi@3.74.0: 1886 | resolution: {integrity: sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==} 1887 | engines: {node: '>=10'} 1888 | 1889 | node-addon-api@3.2.1: 1890 | resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} 1891 | 1892 | node-addon-api@4.3.0: 1893 | resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==} 1894 | 1895 | node-addon-api@5.1.0: 1896 | resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} 1897 | 1898 | node-addon-api@7.1.1: 1899 | resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} 1900 | 1901 | node-fetch-native@1.6.6: 1902 | resolution: {integrity: sha512-8Mc2HhqPdlIfedsuZoc3yioPuzp6b+L5jRCRY1QzuWZh2EGJVQrGppC6V6cF0bLdbW0+O2YpqCA25aF/1lvipQ==} 1903 | 1904 | node-gyp-build-optional-packages@5.0.3: 1905 | resolution: {integrity: sha512-k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA==} 1906 | hasBin: true 1907 | 1908 | node-gyp-build-optional-packages@5.2.2: 1909 | resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==} 1910 | hasBin: true 1911 | 1912 | node-gyp-build@4.8.4: 1913 | resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} 1914 | hasBin: true 1915 | 1916 | node-object-hash@2.3.10: 1917 | resolution: {integrity: sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==} 1918 | engines: {node: '>=0.10.0'} 1919 | 1920 | node-releases@2.0.19: 1921 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} 1922 | 1923 | normalize-path@3.0.0: 1924 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1925 | engines: {node: '>=0.10.0'} 1926 | 1927 | normalize-url@8.0.1: 1928 | resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==} 1929 | engines: {node: '>=14.16'} 1930 | 1931 | npm-run-path@4.0.1: 1932 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 1933 | engines: {node: '>=8'} 1934 | 1935 | nth-check@2.1.1: 1936 | resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 1937 | 1938 | nullthrows@1.1.1: 1939 | resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} 1940 | 1941 | nypm@0.6.0: 1942 | resolution: {integrity: sha512-mn8wBFV9G9+UFHIrq+pZ2r2zL4aPau/by3kJb3cM7+5tQHMt6HGQB8FDIeKFYp8o0D2pnH6nVsO88N4AmUxIWg==} 1943 | engines: {node: ^14.16.0 || >=16.10.0} 1944 | hasBin: true 1945 | 1946 | object-assign@4.1.1: 1947 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1948 | engines: {node: '>=0.10.0'} 1949 | 1950 | ohash@2.0.11: 1951 | resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 1952 | 1953 | once@1.4.0: 1954 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1955 | 1956 | onetime@5.1.2: 1957 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 1958 | engines: {node: '>=6'} 1959 | 1960 | ora@6.3.1: 1961 | resolution: {integrity: sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==} 1962 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1963 | 1964 | ordered-binary@1.5.3: 1965 | resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==} 1966 | 1967 | os-tmpdir@1.0.2: 1968 | resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} 1969 | engines: {node: '>=0.10.0'} 1970 | 1971 | p-cancelable@3.0.0: 1972 | resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} 1973 | engines: {node: '>=12.20'} 1974 | 1975 | package-json-from-dist@1.0.1: 1976 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 1977 | 1978 | package-json@8.1.0: 1979 | resolution: {integrity: sha512-hySwcV8RAWeAfPsXb9/HGSPn8lwDnv6fabH+obUZKX169QknRkRhPxd1yMubpKDskLFATkl3jHpNtVtDPFA0Wg==} 1980 | engines: {node: '>=14.16'} 1981 | 1982 | package-manager-detector@1.3.0: 1983 | resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} 1984 | 1985 | param-case@3.0.4: 1986 | resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} 1987 | 1988 | parent-module@1.0.1: 1989 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1990 | engines: {node: '>=6'} 1991 | 1992 | parse-json@5.2.0: 1993 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 1994 | engines: {node: '>=8'} 1995 | 1996 | parse-node-version@1.0.1: 1997 | resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} 1998 | engines: {node: '>= 0.10'} 1999 | 2000 | pascal-case@3.1.2: 2001 | resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} 2002 | 2003 | path-case@3.0.4: 2004 | resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} 2005 | 2006 | path-is-absolute@1.0.1: 2007 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2008 | engines: {node: '>=0.10.0'} 2009 | 2010 | path-key@3.1.1: 2011 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2012 | engines: {node: '>=8'} 2013 | 2014 | path-scurry@1.11.1: 2015 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 2016 | engines: {node: '>=16 || 14 >=14.18'} 2017 | 2018 | path-type@4.0.0: 2019 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2020 | engines: {node: '>=8'} 2021 | 2022 | pathe@2.0.3: 2023 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 2024 | 2025 | perfect-debounce@1.0.0: 2026 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} 2027 | 2028 | picocolors@1.1.1: 2029 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 2030 | 2031 | picomatch@2.3.1: 2032 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2033 | engines: {node: '>=8.6'} 2034 | 2035 | picomatch@4.0.2: 2036 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 2037 | engines: {node: '>=12'} 2038 | 2039 | pify@4.0.1: 2040 | resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 2041 | engines: {node: '>=6'} 2042 | 2043 | pirates@4.0.7: 2044 | resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==} 2045 | engines: {node: '>= 6'} 2046 | 2047 | pkg-types@2.1.0: 2048 | resolution: {integrity: sha512-wmJwA+8ihJixSoHKxZJRBQG1oY8Yr9pGLzRmSsNms0iNWyHHAlZCa7mmKiFR10YPZuz/2k169JiS/inOjBCZ2A==} 2049 | 2050 | plasmo@0.61.5: 2051 | resolution: {integrity: sha512-CH3ezb/Wxr1GxY4uiMlpxn2K2vuZp9UpTJxVYR8KML/IdK0LENrhyjY8QNNbUlxCWzf5CqPVkbJ5Y4qHkPJNCg==} 2052 | hasBin: true 2053 | 2054 | postcss-load-config@3.1.4: 2055 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 2056 | engines: {node: '>= 10'} 2057 | peerDependencies: 2058 | postcss: '>=8.0.9' 2059 | ts-node: '>=9.0.0' 2060 | peerDependenciesMeta: 2061 | postcss: 2062 | optional: true 2063 | ts-node: 2064 | optional: true 2065 | 2066 | postcss-value-parser@4.2.0: 2067 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2068 | 2069 | postcss@8.5.3: 2070 | resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} 2071 | engines: {node: ^10 || ^12 || >=14} 2072 | 2073 | posthtml-parser@0.10.2: 2074 | resolution: {integrity: sha512-PId6zZ/2lyJi9LiKfe+i2xv57oEjJgWbsHGGANwos5AvdQp98i6AtamAl8gzSVFGfQ43Glb5D614cvZf012VKg==} 2075 | engines: {node: '>=12'} 2076 | 2077 | posthtml-parser@0.11.0: 2078 | resolution: {integrity: sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==} 2079 | engines: {node: '>=12'} 2080 | 2081 | posthtml-render@3.0.0: 2082 | resolution: {integrity: sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==} 2083 | engines: {node: '>=12'} 2084 | 2085 | posthtml@0.16.6: 2086 | resolution: {integrity: sha512-JcEmHlyLK/o0uGAlj65vgg+7LIms0xKXe60lcDOTU7oVX/3LuEuLwrQpW3VJ7de5TaFKiW4kWkaIpJL42FEgxQ==} 2087 | engines: {node: '>=12.0.0'} 2088 | 2089 | prebuild-install@7.1.3: 2090 | resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} 2091 | engines: {node: '>=10'} 2092 | hasBin: true 2093 | 2094 | process-nextick-args@2.0.1: 2095 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 2096 | 2097 | process@0.11.10: 2098 | resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 2099 | engines: {node: '>= 0.6.0'} 2100 | 2101 | proto-list@1.2.4: 2102 | resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} 2103 | 2104 | prr@1.0.1: 2105 | resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} 2106 | 2107 | pump@3.0.2: 2108 | resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} 2109 | 2110 | punycode@2.3.1: 2111 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2112 | engines: {node: '>=6'} 2113 | 2114 | queue-microtask@1.2.3: 2115 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2116 | 2117 | quick-lru@5.1.1: 2118 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} 2119 | engines: {node: '>=10'} 2120 | 2121 | rc9@2.1.2: 2122 | resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} 2123 | 2124 | rc@1.2.8: 2125 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 2126 | hasBin: true 2127 | 2128 | react-error-overlay@6.0.9: 2129 | resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==} 2130 | 2131 | react-refresh@0.14.0: 2132 | resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} 2133 | engines: {node: '>=0.10.0'} 2134 | 2135 | react-refresh@0.9.0: 2136 | resolution: {integrity: sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ==} 2137 | engines: {node: '>=0.10.0'} 2138 | 2139 | readable-stream@2.3.8: 2140 | resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 2141 | 2142 | readable-stream@3.6.2: 2143 | resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 2144 | engines: {node: '>= 6'} 2145 | 2146 | readdir-glob@1.1.3: 2147 | resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} 2148 | 2149 | readdirp@3.6.0: 2150 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2151 | engines: {node: '>=8.10.0'} 2152 | 2153 | readdirp@4.1.2: 2154 | resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 2155 | engines: {node: '>= 14.18.0'} 2156 | 2157 | regenerator-runtime@0.13.11: 2158 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 2159 | 2160 | regenerator-runtime@0.14.1: 2161 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 2162 | 2163 | registry-auth-token@5.1.0: 2164 | resolution: {integrity: sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==} 2165 | engines: {node: '>=14'} 2166 | 2167 | registry-url@6.0.1: 2168 | resolution: {integrity: sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==} 2169 | engines: {node: '>=12'} 2170 | 2171 | resolve-alpn@1.2.1: 2172 | resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} 2173 | 2174 | resolve-from@4.0.0: 2175 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2176 | engines: {node: '>=4'} 2177 | 2178 | resolve-from@5.0.0: 2179 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 2180 | engines: {node: '>=8'} 2181 | 2182 | responselike@3.0.0: 2183 | resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} 2184 | engines: {node: '>=14.16'} 2185 | 2186 | restore-cursor@4.0.0: 2187 | resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} 2188 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2189 | 2190 | reusify@1.1.0: 2191 | resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 2192 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2193 | 2194 | rollup@3.29.5: 2195 | resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} 2196 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 2197 | hasBin: true 2198 | 2199 | run-async@2.4.1: 2200 | resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} 2201 | engines: {node: '>=0.12.0'} 2202 | 2203 | run-parallel@1.2.0: 2204 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2205 | 2206 | rxjs@7.8.2: 2207 | resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} 2208 | 2209 | safe-buffer@5.1.2: 2210 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 2211 | 2212 | safe-buffer@5.2.1: 2213 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 2214 | 2215 | safer-buffer@2.1.2: 2216 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 2217 | 2218 | sass@1.86.0: 2219 | resolution: {integrity: sha512-zV8vGUld/+mP4KbMLJMX7TyGCuUp7hnkOScgCMsWuHtns8CWBoz+vmEhoGMXsaJrbUP8gj+F1dLvVe79sK8UdA==} 2220 | engines: {node: '>=14.0.0'} 2221 | hasBin: true 2222 | 2223 | sax@1.4.1: 2224 | resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 2225 | 2226 | semver@5.7.2: 2227 | resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 2228 | hasBin: true 2229 | 2230 | semver@7.3.8: 2231 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} 2232 | engines: {node: '>=10'} 2233 | hasBin: true 2234 | 2235 | semver@7.7.2: 2236 | resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 2237 | engines: {node: '>=10'} 2238 | hasBin: true 2239 | 2240 | sentence-case@3.0.4: 2241 | resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} 2242 | 2243 | sharp@0.31.1: 2244 | resolution: {integrity: sha512-GR8M1wBwOiFKLkm9JPun27OQnNRZdHfSf9VwcdZX6UrRmM1/XnOrLFTF0GAil+y/YK4E6qcM/ugxs80QirsHxg==} 2245 | engines: {node: '>=14.15.0'} 2246 | 2247 | shebang-command@2.0.0: 2248 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2249 | engines: {node: '>=8'} 2250 | 2251 | shebang-regex@3.0.0: 2252 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2253 | engines: {node: '>=8'} 2254 | 2255 | signal-exit@3.0.7: 2256 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2257 | 2258 | signal-exit@4.1.0: 2259 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 2260 | engines: {node: '>=14'} 2261 | 2262 | simple-concat@1.0.1: 2263 | resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} 2264 | 2265 | simple-get@4.0.1: 2266 | resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} 2267 | 2268 | simple-swizzle@0.2.2: 2269 | resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} 2270 | 2271 | slash@3.0.0: 2272 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2273 | engines: {node: '>=8'} 2274 | 2275 | snake-case@3.0.4: 2276 | resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} 2277 | 2278 | source-map-js@1.2.1: 2279 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 2280 | engines: {node: '>=0.10.0'} 2281 | 2282 | source-map-support@0.5.21: 2283 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} 2284 | 2285 | source-map@0.6.1: 2286 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 2287 | engines: {node: '>=0.10.0'} 2288 | 2289 | source-map@0.8.0-beta.0: 2290 | resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} 2291 | engines: {node: '>= 8'} 2292 | 2293 | sourcemap-codec@1.4.8: 2294 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 2295 | deprecated: Please use @jridgewell/sourcemap-codec instead 2296 | 2297 | stable@0.1.8: 2298 | resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} 2299 | deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' 2300 | 2301 | stdin-discarder@0.1.0: 2302 | resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==} 2303 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2304 | 2305 | string-width@4.2.3: 2306 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2307 | engines: {node: '>=8'} 2308 | 2309 | string-width@5.1.2: 2310 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 2311 | engines: {node: '>=12'} 2312 | 2313 | string_decoder@1.1.1: 2314 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 2315 | 2316 | string_decoder@1.3.0: 2317 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 2318 | 2319 | strip-ansi@6.0.1: 2320 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2321 | engines: {node: '>=8'} 2322 | 2323 | strip-ansi@7.1.0: 2324 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 2325 | engines: {node: '>=12'} 2326 | 2327 | strip-final-newline@2.0.0: 2328 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 2329 | engines: {node: '>=6'} 2330 | 2331 | strip-json-comments@2.0.1: 2332 | resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 2333 | engines: {node: '>=0.10.0'} 2334 | 2335 | sucrase@3.35.0: 2336 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} 2337 | engines: {node: '>=16 || 14 >=14.17'} 2338 | hasBin: true 2339 | 2340 | supports-color@7.2.0: 2341 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2342 | engines: {node: '>=8'} 2343 | 2344 | svgo@2.8.0: 2345 | resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} 2346 | engines: {node: '>=10.13.0'} 2347 | hasBin: true 2348 | 2349 | tar-fs@2.1.2: 2350 | resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==} 2351 | 2352 | tar-stream@2.2.0: 2353 | resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 2354 | engines: {node: '>=6'} 2355 | 2356 | temp-dir@2.0.0: 2357 | resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} 2358 | engines: {node: '>=8'} 2359 | 2360 | tempy@3.0.0: 2361 | resolution: {integrity: sha512-B2I9X7+o2wOaW4r/CWMkpOO9mdiTRCxXNgob6iGvPmfPWgH/KyUD6Uy5crtWBxIBe3YrNZKR2lSzv1JJKWD4vA==} 2362 | engines: {node: '>=14.16'} 2363 | 2364 | terser@5.16.1: 2365 | resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} 2366 | engines: {node: '>=10'} 2367 | hasBin: true 2368 | 2369 | terser@5.39.0: 2370 | resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==} 2371 | engines: {node: '>=10'} 2372 | hasBin: true 2373 | 2374 | thenify-all@1.6.0: 2375 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2376 | engines: {node: '>=0.8'} 2377 | 2378 | thenify@3.3.1: 2379 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2380 | 2381 | through@2.3.8: 2382 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 2383 | 2384 | timsort@0.3.0: 2385 | resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==} 2386 | 2387 | tiny-glob@0.2.9: 2388 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} 2389 | 2390 | tinyexec@0.3.2: 2391 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 2392 | 2393 | tinyexec@1.0.1: 2394 | resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==} 2395 | 2396 | tinyglobby@0.2.13: 2397 | resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} 2398 | engines: {node: '>=12.0.0'} 2399 | 2400 | tmp@0.0.33: 2401 | resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} 2402 | engines: {node: '>=0.6.0'} 2403 | 2404 | to-regex-range@5.0.1: 2405 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2406 | engines: {node: '>=8.0'} 2407 | 2408 | tr46@1.0.1: 2409 | resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} 2410 | 2411 | tree-kill@1.2.2: 2412 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 2413 | hasBin: true 2414 | 2415 | ts-algebra@1.2.2: 2416 | resolution: {integrity: sha512-kloPhf1hq3JbCPOTYoOWDKxebWjNb2o/LKnNfkWhxVVisFFmMJPPdJeGoGmM+iRLyoXAR61e08Pb+vUXINg8aA==} 2417 | 2418 | ts-interface-checker@0.1.13: 2419 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2420 | 2421 | ts-toolbelt@9.6.0: 2422 | resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} 2423 | 2424 | tslib@2.8.1: 2425 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 2426 | 2427 | tsup@6.5.0: 2428 | resolution: {integrity: sha512-36u82r7rYqRHFkD15R20Cd4ercPkbYmuvRkz3Q1LCm5BsiFNUgpo36zbjVhCOgvjyxNBWNKHsaD5Rl8SykfzNA==} 2429 | engines: {node: '>=14'} 2430 | hasBin: true 2431 | peerDependencies: 2432 | '@swc/core': ^1 2433 | postcss: ^8.4.12 2434 | typescript: ^4.1.0 2435 | peerDependenciesMeta: 2436 | '@swc/core': 2437 | optional: true 2438 | postcss: 2439 | optional: true 2440 | typescript: 2441 | optional: true 2442 | 2443 | tunnel-agent@0.6.0: 2444 | resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 2445 | 2446 | type-fest@0.20.2: 2447 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2448 | engines: {node: '>=10'} 2449 | 2450 | type-fest@1.4.0: 2451 | resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} 2452 | engines: {node: '>=10'} 2453 | 2454 | type-fest@2.19.0: 2455 | resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} 2456 | engines: {node: '>=12.20'} 2457 | 2458 | typescript@4.9.4: 2459 | resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} 2460 | engines: {node: '>=4.2.0'} 2461 | hasBin: true 2462 | 2463 | unique-string@3.0.0: 2464 | resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} 2465 | engines: {node: '>=12'} 2466 | 2467 | update-browserslist-db@1.1.3: 2468 | resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 2469 | hasBin: true 2470 | peerDependencies: 2471 | browserslist: '>= 4.21.0' 2472 | 2473 | upper-case-first@2.0.2: 2474 | resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} 2475 | 2476 | upper-case@2.0.2: 2477 | resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} 2478 | 2479 | util-deprecate@1.0.2: 2480 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2481 | 2482 | utility-types@3.11.0: 2483 | resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} 2484 | engines: {node: '>= 4'} 2485 | 2486 | wcwidth@1.0.1: 2487 | resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 2488 | 2489 | weak-lru-cache@1.2.2: 2490 | resolution: {integrity: sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==} 2491 | 2492 | webidl-conversions@4.0.2: 2493 | resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} 2494 | 2495 | whatwg-url@7.1.0: 2496 | resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 2497 | 2498 | which@2.0.2: 2499 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2500 | engines: {node: '>= 8'} 2501 | hasBin: true 2502 | 2503 | wrap-ansi@7.0.0: 2504 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2505 | engines: {node: '>=10'} 2506 | 2507 | wrap-ansi@8.1.0: 2508 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 2509 | engines: {node: '>=12'} 2510 | 2511 | wrappy@1.0.2: 2512 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2513 | 2514 | ws@8.11.0: 2515 | resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} 2516 | engines: {node: '>=10.0.0'} 2517 | peerDependencies: 2518 | bufferutil: ^4.0.1 2519 | utf-8-validate: ^5.0.2 2520 | peerDependenciesMeta: 2521 | bufferutil: 2522 | optional: true 2523 | utf-8-validate: 2524 | optional: true 2525 | 2526 | xxhash-wasm@0.4.2: 2527 | resolution: {integrity: sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA==} 2528 | 2529 | yallist@4.0.0: 2530 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2531 | 2532 | yaml@1.10.2: 2533 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 2534 | engines: {node: '>= 6'} 2535 | 2536 | yaml@2.8.0: 2537 | resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==} 2538 | engines: {node: '>= 14.6'} 2539 | hasBin: true 2540 | 2541 | zip-stream@4.1.1: 2542 | resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==} 2543 | engines: {node: '>= 10'} 2544 | 2545 | snapshots: 2546 | 2547 | '@babel/code-frame@7.26.2': 2548 | dependencies: 2549 | '@babel/helper-validator-identifier': 7.25.9 2550 | js-tokens: 4.0.0 2551 | picocolors: 1.1.1 2552 | 2553 | '@babel/helper-string-parser@7.25.9': {} 2554 | 2555 | '@babel/helper-validator-identifier@7.25.9': {} 2556 | 2557 | '@babel/parser@7.27.0': 2558 | dependencies: 2559 | '@babel/types': 7.27.0 2560 | 2561 | '@babel/runtime@7.27.0': 2562 | dependencies: 2563 | regenerator-runtime: 0.14.1 2564 | 2565 | '@babel/types@7.27.0': 2566 | dependencies: 2567 | '@babel/helper-string-parser': 7.25.9 2568 | '@babel/helper-validator-identifier': 7.25.9 2569 | 2570 | '@esbuild/android-arm@0.15.18': 2571 | optional: true 2572 | 2573 | '@esbuild/linux-loong64@0.15.18': 2574 | optional: true 2575 | 2576 | '@expo/spawn-async@1.7.0': 2577 | dependencies: 2578 | cross-spawn: 7.0.6 2579 | 2580 | '@isaacs/cliui@8.0.2': 2581 | dependencies: 2582 | string-width: 5.1.2 2583 | string-width-cjs: string-width@4.2.3 2584 | strip-ansi: 7.1.0 2585 | strip-ansi-cjs: strip-ansi@6.0.1 2586 | wrap-ansi: 8.1.0 2587 | wrap-ansi-cjs: wrap-ansi@7.0.0 2588 | 2589 | '@jridgewell/gen-mapping@0.3.8': 2590 | dependencies: 2591 | '@jridgewell/set-array': 1.2.1 2592 | '@jridgewell/sourcemap-codec': 1.5.0 2593 | '@jridgewell/trace-mapping': 0.3.25 2594 | 2595 | '@jridgewell/resolve-uri@3.1.2': {} 2596 | 2597 | '@jridgewell/set-array@1.2.1': {} 2598 | 2599 | '@jridgewell/source-map@0.3.6': 2600 | dependencies: 2601 | '@jridgewell/gen-mapping': 0.3.8 2602 | '@jridgewell/trace-mapping': 0.3.25 2603 | 2604 | '@jridgewell/sourcemap-codec@1.5.0': {} 2605 | 2606 | '@jridgewell/trace-mapping@0.3.25': 2607 | dependencies: 2608 | '@jridgewell/resolve-uri': 3.1.2 2609 | '@jridgewell/sourcemap-codec': 1.5.0 2610 | 2611 | '@lezer/common@0.15.12': {} 2612 | 2613 | '@lezer/common@1.2.3': {} 2614 | 2615 | '@lezer/lr@0.15.8': 2616 | dependencies: 2617 | '@lezer/common': 0.15.12 2618 | 2619 | '@lezer/lr@1.4.2': 2620 | dependencies: 2621 | '@lezer/common': 1.2.3 2622 | 2623 | '@lmdb/lmdb-darwin-arm64@2.5.2': 2624 | optional: true 2625 | 2626 | '@lmdb/lmdb-darwin-x64@2.5.2': 2627 | optional: true 2628 | 2629 | '@lmdb/lmdb-linux-arm64@2.5.2': 2630 | optional: true 2631 | 2632 | '@lmdb/lmdb-linux-arm@2.5.2': 2633 | optional: true 2634 | 2635 | '@lmdb/lmdb-linux-x64@2.5.2': 2636 | optional: true 2637 | 2638 | '@lmdb/lmdb-win32-x64@2.5.2': 2639 | optional: true 2640 | 2641 | '@mischnic/json-sourcemap@0.1.0': 2642 | dependencies: 2643 | '@lezer/common': 0.15.12 2644 | '@lezer/lr': 0.15.8 2645 | json5: 2.2.3 2646 | 2647 | '@mischnic/json-sourcemap@0.1.1': 2648 | dependencies: 2649 | '@lezer/common': 1.2.3 2650 | '@lezer/lr': 1.4.2 2651 | json5: 2.2.3 2652 | 2653 | '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': 2654 | optional: true 2655 | 2656 | '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3': 2657 | optional: true 2658 | 2659 | '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3': 2660 | optional: true 2661 | 2662 | '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3': 2663 | optional: true 2664 | 2665 | '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3': 2666 | optional: true 2667 | 2668 | '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3': 2669 | optional: true 2670 | 2671 | '@nodelib/fs.scandir@2.1.5': 2672 | dependencies: 2673 | '@nodelib/fs.stat': 2.0.5 2674 | run-parallel: 1.2.0 2675 | 2676 | '@nodelib/fs.stat@2.0.5': {} 2677 | 2678 | '@nodelib/fs.walk@1.2.8': 2679 | dependencies: 2680 | '@nodelib/fs.scandir': 2.1.5 2681 | fastq: 1.19.1 2682 | 2683 | '@parcel/bundler-default@2.8.2(@parcel/core@2.8.2)': 2684 | dependencies: 2685 | '@parcel/diagnostic': 2.8.2 2686 | '@parcel/graph': 2.8.2 2687 | '@parcel/hash': 2.8.2 2688 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2689 | '@parcel/utils': 2.8.2 2690 | nullthrows: 1.1.1 2691 | transitivePeerDependencies: 2692 | - '@parcel/core' 2693 | 2694 | '@parcel/cache@2.8.2(@parcel/core@2.8.2)': 2695 | dependencies: 2696 | '@parcel/core': 2.8.2 2697 | '@parcel/fs': 2.8.2(@parcel/core@2.8.2) 2698 | '@parcel/logger': 2.8.2 2699 | '@parcel/utils': 2.8.2 2700 | lmdb: 2.5.2 2701 | 2702 | '@parcel/codeframe@2.8.2': 2703 | dependencies: 2704 | chalk: 4.1.2 2705 | 2706 | '@parcel/compressor-raw@2.8.2(@parcel/core@2.8.2)': 2707 | dependencies: 2708 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2709 | transitivePeerDependencies: 2710 | - '@parcel/core' 2711 | 2712 | '@parcel/config-default@2.8.2(@parcel/core@2.8.2)(postcss@8.5.3)(terser@5.39.0)(typescript@4.9.4)': 2713 | dependencies: 2714 | '@parcel/bundler-default': 2.8.2(@parcel/core@2.8.2) 2715 | '@parcel/compressor-raw': 2.8.2(@parcel/core@2.8.2) 2716 | '@parcel/core': 2.8.2 2717 | '@parcel/namer-default': 2.8.2(@parcel/core@2.8.2) 2718 | '@parcel/optimizer-css': 2.8.2(@parcel/core@2.8.2) 2719 | '@parcel/optimizer-htmlnano': 2.8.2(@parcel/core@2.8.2)(postcss@8.5.3)(terser@5.39.0)(typescript@4.9.4) 2720 | '@parcel/optimizer-image': 2.8.2(@parcel/core@2.8.2) 2721 | '@parcel/optimizer-svgo': 2.8.2(@parcel/core@2.8.2) 2722 | '@parcel/optimizer-terser': 2.8.2(@parcel/core@2.8.2) 2723 | '@parcel/packager-css': 2.8.2(@parcel/core@2.8.2) 2724 | '@parcel/packager-html': 2.8.2(@parcel/core@2.8.2) 2725 | '@parcel/packager-js': 2.8.2(@parcel/core@2.8.2) 2726 | '@parcel/packager-raw': 2.8.2(@parcel/core@2.8.2) 2727 | '@parcel/packager-svg': 2.8.2(@parcel/core@2.8.2) 2728 | '@parcel/reporter-dev-server': 2.8.2(@parcel/core@2.8.2) 2729 | '@parcel/resolver-default': 2.8.2(@parcel/core@2.8.2) 2730 | '@parcel/runtime-browser-hmr': 2.8.2(@parcel/core@2.8.2) 2731 | '@parcel/runtime-js': 2.8.2(@parcel/core@2.8.2) 2732 | '@parcel/runtime-react-refresh': 2.8.2(@parcel/core@2.8.2) 2733 | '@parcel/runtime-service-worker': 2.8.2(@parcel/core@2.8.2) 2734 | '@parcel/transformer-babel': 2.8.2(@parcel/core@2.8.2) 2735 | '@parcel/transformer-css': 2.8.2(@parcel/core@2.8.2) 2736 | '@parcel/transformer-html': 2.8.2(@parcel/core@2.8.2) 2737 | '@parcel/transformer-image': 2.8.2(@parcel/core@2.8.2) 2738 | '@parcel/transformer-js': 2.8.2(@parcel/core@2.8.2) 2739 | '@parcel/transformer-json': 2.8.2(@parcel/core@2.8.2) 2740 | '@parcel/transformer-postcss': 2.8.2(@parcel/core@2.8.2) 2741 | '@parcel/transformer-posthtml': 2.8.2(@parcel/core@2.8.2) 2742 | '@parcel/transformer-raw': 2.8.2(@parcel/core@2.8.2) 2743 | '@parcel/transformer-react-refresh-wrap': 2.8.2(@parcel/core@2.8.2) 2744 | '@parcel/transformer-svg': 2.8.2(@parcel/core@2.8.2) 2745 | transitivePeerDependencies: 2746 | - cssnano 2747 | - postcss 2748 | - purgecss 2749 | - relateurl 2750 | - srcset 2751 | - terser 2752 | - typescript 2753 | - uncss 2754 | 2755 | '@parcel/core@2.8.2': 2756 | dependencies: 2757 | '@mischnic/json-sourcemap': 0.1.1 2758 | '@parcel/cache': 2.8.2(@parcel/core@2.8.2) 2759 | '@parcel/diagnostic': 2.8.2 2760 | '@parcel/events': 2.8.2 2761 | '@parcel/fs': 2.8.2(@parcel/core@2.8.2) 2762 | '@parcel/graph': 2.8.2 2763 | '@parcel/hash': 2.8.2 2764 | '@parcel/logger': 2.8.2 2765 | '@parcel/package-manager': 2.8.2(@parcel/core@2.8.2) 2766 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2767 | '@parcel/source-map': 2.1.1 2768 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 2769 | '@parcel/utils': 2.8.2 2770 | '@parcel/workers': 2.8.2(@parcel/core@2.8.2) 2771 | abortcontroller-polyfill: 1.7.8 2772 | base-x: 3.0.11 2773 | browserslist: 4.24.4 2774 | clone: 2.1.2 2775 | dotenv: 7.0.0 2776 | dotenv-expand: 5.1.0 2777 | json5: 2.2.3 2778 | msgpackr: 1.11.2 2779 | nullthrows: 1.1.1 2780 | semver: 5.7.2 2781 | 2782 | '@parcel/css@1.14.0': 2783 | dependencies: 2784 | lightningcss: 1.29.3 2785 | 2786 | '@parcel/diagnostic@2.8.2': 2787 | dependencies: 2788 | '@mischnic/json-sourcemap': 0.1.1 2789 | nullthrows: 1.1.1 2790 | 2791 | '@parcel/events@2.8.2': {} 2792 | 2793 | '@parcel/fs-search@2.8.2': 2794 | dependencies: 2795 | detect-libc: 1.0.3 2796 | 2797 | '@parcel/fs@2.8.2(@parcel/core@2.8.2)': 2798 | dependencies: 2799 | '@parcel/core': 2.8.2 2800 | '@parcel/fs-search': 2.8.2 2801 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 2802 | '@parcel/utils': 2.8.2 2803 | '@parcel/watcher': 2.1.0 2804 | '@parcel/workers': 2.8.2(@parcel/core@2.8.2) 2805 | 2806 | '@parcel/graph@2.8.2': 2807 | dependencies: 2808 | nullthrows: 1.1.1 2809 | 2810 | '@parcel/hash@2.8.2': 2811 | dependencies: 2812 | detect-libc: 1.0.3 2813 | xxhash-wasm: 0.4.2 2814 | 2815 | '@parcel/logger@2.8.2': 2816 | dependencies: 2817 | '@parcel/diagnostic': 2.8.2 2818 | '@parcel/events': 2.8.2 2819 | 2820 | '@parcel/markdown-ansi@2.8.2': 2821 | dependencies: 2822 | chalk: 4.1.2 2823 | 2824 | '@parcel/namer-default@2.8.2(@parcel/core@2.8.2)': 2825 | dependencies: 2826 | '@parcel/diagnostic': 2.8.2 2827 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2828 | nullthrows: 1.1.1 2829 | transitivePeerDependencies: 2830 | - '@parcel/core' 2831 | 2832 | '@parcel/node-resolver-core@2.8.2': 2833 | dependencies: 2834 | '@parcel/diagnostic': 2.8.2 2835 | '@parcel/utils': 2.8.2 2836 | nullthrows: 1.1.1 2837 | semver: 5.7.2 2838 | 2839 | '@parcel/optimizer-css@2.8.2(@parcel/core@2.8.2)': 2840 | dependencies: 2841 | '@parcel/diagnostic': 2.8.2 2842 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2843 | '@parcel/source-map': 2.1.1 2844 | '@parcel/utils': 2.8.2 2845 | browserslist: 4.24.4 2846 | lightningcss: 1.29.3 2847 | nullthrows: 1.1.1 2848 | transitivePeerDependencies: 2849 | - '@parcel/core' 2850 | 2851 | '@parcel/optimizer-data-url@2.8.2(@parcel/core@2.8.2)': 2852 | dependencies: 2853 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2854 | '@parcel/utils': 2.8.2 2855 | isbinaryfile: 4.0.10 2856 | mime: 2.6.0 2857 | transitivePeerDependencies: 2858 | - '@parcel/core' 2859 | 2860 | '@parcel/optimizer-htmlnano@2.8.2(@parcel/core@2.8.2)(postcss@8.5.3)(terser@5.39.0)(typescript@4.9.4)': 2861 | dependencies: 2862 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2863 | htmlnano: 2.1.1(postcss@8.5.3)(svgo@2.8.0)(terser@5.39.0)(typescript@4.9.4) 2864 | nullthrows: 1.1.1 2865 | posthtml: 0.16.6 2866 | svgo: 2.8.0 2867 | transitivePeerDependencies: 2868 | - '@parcel/core' 2869 | - cssnano 2870 | - postcss 2871 | - purgecss 2872 | - relateurl 2873 | - srcset 2874 | - terser 2875 | - typescript 2876 | - uncss 2877 | 2878 | '@parcel/optimizer-image@2.8.2(@parcel/core@2.8.2)': 2879 | dependencies: 2880 | '@parcel/diagnostic': 2.8.2 2881 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2882 | '@parcel/utils': 2.8.2 2883 | '@parcel/workers': 2.8.2(@parcel/core@2.8.2) 2884 | detect-libc: 1.0.3 2885 | transitivePeerDependencies: 2886 | - '@parcel/core' 2887 | 2888 | '@parcel/optimizer-svgo@2.8.2(@parcel/core@2.8.2)': 2889 | dependencies: 2890 | '@parcel/diagnostic': 2.8.2 2891 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2892 | '@parcel/utils': 2.8.2 2893 | svgo: 2.8.0 2894 | transitivePeerDependencies: 2895 | - '@parcel/core' 2896 | 2897 | '@parcel/optimizer-terser@2.8.2(@parcel/core@2.8.2)': 2898 | dependencies: 2899 | '@parcel/diagnostic': 2.8.2 2900 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2901 | '@parcel/source-map': 2.1.1 2902 | '@parcel/utils': 2.8.2 2903 | nullthrows: 1.1.1 2904 | terser: 5.39.0 2905 | transitivePeerDependencies: 2906 | - '@parcel/core' 2907 | 2908 | '@parcel/package-manager@2.8.2(@parcel/core@2.8.2)': 2909 | dependencies: 2910 | '@parcel/core': 2.8.2 2911 | '@parcel/diagnostic': 2.8.2 2912 | '@parcel/fs': 2.8.2(@parcel/core@2.8.2) 2913 | '@parcel/logger': 2.8.2 2914 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 2915 | '@parcel/utils': 2.8.2 2916 | '@parcel/workers': 2.8.2(@parcel/core@2.8.2) 2917 | semver: 5.7.2 2918 | 2919 | '@parcel/packager-css@2.8.2(@parcel/core@2.8.2)': 2920 | dependencies: 2921 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2922 | '@parcel/source-map': 2.1.1 2923 | '@parcel/utils': 2.8.2 2924 | nullthrows: 1.1.1 2925 | transitivePeerDependencies: 2926 | - '@parcel/core' 2927 | 2928 | '@parcel/packager-html@2.8.2(@parcel/core@2.8.2)': 2929 | dependencies: 2930 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2931 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 2932 | '@parcel/utils': 2.8.2 2933 | nullthrows: 1.1.1 2934 | posthtml: 0.16.6 2935 | transitivePeerDependencies: 2936 | - '@parcel/core' 2937 | 2938 | '@parcel/packager-js@2.8.2(@parcel/core@2.8.2)': 2939 | dependencies: 2940 | '@parcel/diagnostic': 2.8.2 2941 | '@parcel/hash': 2.8.2 2942 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2943 | '@parcel/source-map': 2.1.1 2944 | '@parcel/utils': 2.8.2 2945 | globals: 13.24.0 2946 | nullthrows: 1.1.1 2947 | transitivePeerDependencies: 2948 | - '@parcel/core' 2949 | 2950 | '@parcel/packager-raw@2.8.2(@parcel/core@2.8.2)': 2951 | dependencies: 2952 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2953 | transitivePeerDependencies: 2954 | - '@parcel/core' 2955 | 2956 | '@parcel/packager-svg@2.8.2(@parcel/core@2.8.2)': 2957 | dependencies: 2958 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2959 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 2960 | '@parcel/utils': 2.8.2 2961 | posthtml: 0.16.6 2962 | transitivePeerDependencies: 2963 | - '@parcel/core' 2964 | 2965 | '@parcel/plugin@2.8.2(@parcel/core@2.8.2)': 2966 | dependencies: 2967 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 2968 | transitivePeerDependencies: 2969 | - '@parcel/core' 2970 | 2971 | '@parcel/reporter-bundle-buddy@2.8.2(@parcel/core@2.8.2)': 2972 | dependencies: 2973 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2974 | transitivePeerDependencies: 2975 | - '@parcel/core' 2976 | 2977 | '@parcel/reporter-dev-server@2.8.2(@parcel/core@2.8.2)': 2978 | dependencies: 2979 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2980 | '@parcel/utils': 2.8.2 2981 | transitivePeerDependencies: 2982 | - '@parcel/core' 2983 | 2984 | '@parcel/resolver-default@2.8.2(@parcel/core@2.8.2)': 2985 | dependencies: 2986 | '@parcel/node-resolver-core': 2.8.2 2987 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2988 | transitivePeerDependencies: 2989 | - '@parcel/core' 2990 | 2991 | '@parcel/runtime-browser-hmr@2.8.2(@parcel/core@2.8.2)': 2992 | dependencies: 2993 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 2994 | '@parcel/utils': 2.8.2 2995 | transitivePeerDependencies: 2996 | - '@parcel/core' 2997 | 2998 | '@parcel/runtime-js@2.8.2(@parcel/core@2.8.2)': 2999 | dependencies: 3000 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3001 | '@parcel/utils': 2.8.2 3002 | nullthrows: 1.1.1 3003 | transitivePeerDependencies: 3004 | - '@parcel/core' 3005 | 3006 | '@parcel/runtime-react-refresh@2.8.2(@parcel/core@2.8.2)': 3007 | dependencies: 3008 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3009 | '@parcel/utils': 2.8.2 3010 | react-error-overlay: 6.0.9 3011 | react-refresh: 0.9.0 3012 | transitivePeerDependencies: 3013 | - '@parcel/core' 3014 | 3015 | '@parcel/runtime-service-worker@2.8.2(@parcel/core@2.8.2)': 3016 | dependencies: 3017 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3018 | '@parcel/utils': 2.8.2 3019 | nullthrows: 1.1.1 3020 | transitivePeerDependencies: 3021 | - '@parcel/core' 3022 | 3023 | '@parcel/source-map@2.1.1': 3024 | dependencies: 3025 | detect-libc: 1.0.3 3026 | 3027 | '@parcel/transformer-babel@2.8.2(@parcel/core@2.8.2)': 3028 | dependencies: 3029 | '@parcel/diagnostic': 2.8.2 3030 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3031 | '@parcel/source-map': 2.1.1 3032 | '@parcel/utils': 2.8.2 3033 | browserslist: 4.24.4 3034 | json5: 2.2.3 3035 | nullthrows: 1.1.1 3036 | semver: 5.7.2 3037 | transitivePeerDependencies: 3038 | - '@parcel/core' 3039 | 3040 | '@parcel/transformer-css@2.8.2(@parcel/core@2.8.2)': 3041 | dependencies: 3042 | '@parcel/diagnostic': 2.8.2 3043 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3044 | '@parcel/source-map': 2.1.1 3045 | '@parcel/utils': 2.8.2 3046 | browserslist: 4.24.4 3047 | lightningcss: 1.29.3 3048 | nullthrows: 1.1.1 3049 | transitivePeerDependencies: 3050 | - '@parcel/core' 3051 | 3052 | '@parcel/transformer-graphql@2.8.2(@parcel/core@2.8.2)': 3053 | dependencies: 3054 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3055 | graphql: 15.10.1 3056 | graphql-import-macro: 1.0.0 3057 | transitivePeerDependencies: 3058 | - '@parcel/core' 3059 | 3060 | '@parcel/transformer-html@2.8.2(@parcel/core@2.8.2)': 3061 | dependencies: 3062 | '@parcel/diagnostic': 2.8.2 3063 | '@parcel/hash': 2.8.2 3064 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3065 | nullthrows: 1.1.1 3066 | posthtml: 0.16.6 3067 | posthtml-parser: 0.10.2 3068 | posthtml-render: 3.0.0 3069 | semver: 5.7.2 3070 | transitivePeerDependencies: 3071 | - '@parcel/core' 3072 | 3073 | '@parcel/transformer-image@2.8.2(@parcel/core@2.8.2)': 3074 | dependencies: 3075 | '@parcel/core': 2.8.2 3076 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3077 | '@parcel/utils': 2.8.2 3078 | '@parcel/workers': 2.8.2(@parcel/core@2.8.2) 3079 | nullthrows: 1.1.1 3080 | 3081 | '@parcel/transformer-inline-string@2.8.2(@parcel/core@2.8.2)': 3082 | dependencies: 3083 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3084 | transitivePeerDependencies: 3085 | - '@parcel/core' 3086 | 3087 | '@parcel/transformer-js@2.8.2(@parcel/core@2.8.2)': 3088 | dependencies: 3089 | '@parcel/core': 2.8.2 3090 | '@parcel/diagnostic': 2.8.2 3091 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3092 | '@parcel/source-map': 2.1.1 3093 | '@parcel/utils': 2.8.2 3094 | '@parcel/workers': 2.8.2(@parcel/core@2.8.2) 3095 | '@swc/helpers': 0.4.37 3096 | browserslist: 4.24.4 3097 | detect-libc: 1.0.3 3098 | nullthrows: 1.1.1 3099 | regenerator-runtime: 0.13.11 3100 | semver: 5.7.2 3101 | 3102 | '@parcel/transformer-json@2.8.2(@parcel/core@2.8.2)': 3103 | dependencies: 3104 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3105 | json5: 2.2.3 3106 | transitivePeerDependencies: 3107 | - '@parcel/core' 3108 | 3109 | '@parcel/transformer-less@2.8.2(@parcel/core@2.8.2)': 3110 | dependencies: 3111 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3112 | '@parcel/source-map': 2.1.1 3113 | less: 4.2.2 3114 | transitivePeerDependencies: 3115 | - '@parcel/core' 3116 | 3117 | '@parcel/transformer-postcss@2.8.2(@parcel/core@2.8.2)': 3118 | dependencies: 3119 | '@parcel/diagnostic': 2.8.2 3120 | '@parcel/hash': 2.8.2 3121 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3122 | '@parcel/utils': 2.8.2 3123 | clone: 2.1.2 3124 | nullthrows: 1.1.1 3125 | postcss-value-parser: 4.2.0 3126 | semver: 5.7.2 3127 | transitivePeerDependencies: 3128 | - '@parcel/core' 3129 | 3130 | '@parcel/transformer-posthtml@2.8.2(@parcel/core@2.8.2)': 3131 | dependencies: 3132 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3133 | '@parcel/utils': 2.8.2 3134 | nullthrows: 1.1.1 3135 | posthtml: 0.16.6 3136 | posthtml-parser: 0.10.2 3137 | posthtml-render: 3.0.0 3138 | semver: 5.7.2 3139 | transitivePeerDependencies: 3140 | - '@parcel/core' 3141 | 3142 | '@parcel/transformer-raw@2.8.2(@parcel/core@2.8.2)': 3143 | dependencies: 3144 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3145 | transitivePeerDependencies: 3146 | - '@parcel/core' 3147 | 3148 | '@parcel/transformer-react-refresh-wrap@2.8.2(@parcel/core@2.8.2)': 3149 | dependencies: 3150 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3151 | '@parcel/utils': 2.8.2 3152 | react-refresh: 0.9.0 3153 | transitivePeerDependencies: 3154 | - '@parcel/core' 3155 | 3156 | '@parcel/transformer-sass@2.8.2(@parcel/core@2.8.2)': 3157 | dependencies: 3158 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3159 | '@parcel/source-map': 2.1.1 3160 | sass: 1.86.0 3161 | transitivePeerDependencies: 3162 | - '@parcel/core' 3163 | 3164 | '@parcel/transformer-svg@2.8.2(@parcel/core@2.8.2)': 3165 | dependencies: 3166 | '@parcel/diagnostic': 2.8.2 3167 | '@parcel/hash': 2.8.2 3168 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3169 | nullthrows: 1.1.1 3170 | posthtml: 0.16.6 3171 | posthtml-parser: 0.10.2 3172 | posthtml-render: 3.0.0 3173 | semver: 5.7.2 3174 | transitivePeerDependencies: 3175 | - '@parcel/core' 3176 | 3177 | '@parcel/transformer-worklet@2.8.2(@parcel/core@2.8.2)': 3178 | dependencies: 3179 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3180 | transitivePeerDependencies: 3181 | - '@parcel/core' 3182 | 3183 | '@parcel/types@2.8.2(@parcel/core@2.8.2)': 3184 | dependencies: 3185 | '@parcel/cache': 2.8.2(@parcel/core@2.8.2) 3186 | '@parcel/diagnostic': 2.8.2 3187 | '@parcel/fs': 2.8.2(@parcel/core@2.8.2) 3188 | '@parcel/package-manager': 2.8.2(@parcel/core@2.8.2) 3189 | '@parcel/source-map': 2.1.1 3190 | '@parcel/workers': 2.8.2(@parcel/core@2.8.2) 3191 | utility-types: 3.11.0 3192 | transitivePeerDependencies: 3193 | - '@parcel/core' 3194 | 3195 | '@parcel/utils@2.8.2': 3196 | dependencies: 3197 | '@parcel/codeframe': 2.8.2 3198 | '@parcel/diagnostic': 2.8.2 3199 | '@parcel/hash': 2.8.2 3200 | '@parcel/logger': 2.8.2 3201 | '@parcel/markdown-ansi': 2.8.2 3202 | '@parcel/source-map': 2.1.1 3203 | chalk: 4.1.2 3204 | 3205 | '@parcel/watcher-android-arm64@2.5.1': 3206 | optional: true 3207 | 3208 | '@parcel/watcher-darwin-arm64@2.5.1': 3209 | optional: true 3210 | 3211 | '@parcel/watcher-darwin-x64@2.5.1': 3212 | optional: true 3213 | 3214 | '@parcel/watcher-freebsd-x64@2.5.1': 3215 | optional: true 3216 | 3217 | '@parcel/watcher-linux-arm-glibc@2.5.1': 3218 | optional: true 3219 | 3220 | '@parcel/watcher-linux-arm-musl@2.5.1': 3221 | optional: true 3222 | 3223 | '@parcel/watcher-linux-arm64-glibc@2.5.1': 3224 | optional: true 3225 | 3226 | '@parcel/watcher-linux-arm64-musl@2.5.1': 3227 | optional: true 3228 | 3229 | '@parcel/watcher-linux-x64-glibc@2.5.1': 3230 | optional: true 3231 | 3232 | '@parcel/watcher-linux-x64-musl@2.5.1': 3233 | optional: true 3234 | 3235 | '@parcel/watcher-win32-arm64@2.5.1': 3236 | optional: true 3237 | 3238 | '@parcel/watcher-win32-ia32@2.5.1': 3239 | optional: true 3240 | 3241 | '@parcel/watcher-win32-x64@2.5.1': 3242 | optional: true 3243 | 3244 | '@parcel/watcher@2.1.0': 3245 | dependencies: 3246 | is-glob: 4.0.3 3247 | micromatch: 4.0.8 3248 | node-addon-api: 3.2.1 3249 | node-gyp-build: 4.8.4 3250 | 3251 | '@parcel/watcher@2.5.1': 3252 | dependencies: 3253 | detect-libc: 1.0.3 3254 | is-glob: 4.0.3 3255 | micromatch: 4.0.8 3256 | node-addon-api: 7.1.1 3257 | optionalDependencies: 3258 | '@parcel/watcher-android-arm64': 2.5.1 3259 | '@parcel/watcher-darwin-arm64': 2.5.1 3260 | '@parcel/watcher-darwin-x64': 2.5.1 3261 | '@parcel/watcher-freebsd-x64': 2.5.1 3262 | '@parcel/watcher-linux-arm-glibc': 2.5.1 3263 | '@parcel/watcher-linux-arm-musl': 2.5.1 3264 | '@parcel/watcher-linux-arm64-glibc': 2.5.1 3265 | '@parcel/watcher-linux-arm64-musl': 2.5.1 3266 | '@parcel/watcher-linux-x64-glibc': 2.5.1 3267 | '@parcel/watcher-linux-x64-musl': 2.5.1 3268 | '@parcel/watcher-win32-arm64': 2.5.1 3269 | '@parcel/watcher-win32-ia32': 2.5.1 3270 | '@parcel/watcher-win32-x64': 2.5.1 3271 | optional: true 3272 | 3273 | '@parcel/workers@2.8.2(@parcel/core@2.8.2)': 3274 | dependencies: 3275 | '@parcel/core': 2.8.2 3276 | '@parcel/diagnostic': 2.8.2 3277 | '@parcel/logger': 2.8.2 3278 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3279 | '@parcel/utils': 2.8.2 3280 | chrome-trace-event: 1.0.4 3281 | nullthrows: 1.1.1 3282 | 3283 | '@pkgjs/parseargs@0.11.0': 3284 | optional: true 3285 | 3286 | '@plasmohq/consolidate@0.17.0(lodash@4.17.21)': 3287 | dependencies: 3288 | bluebird: 3.7.2 3289 | optionalDependencies: 3290 | lodash: 4.17.21 3291 | 3292 | '@plasmohq/init@0.5.3': {} 3293 | 3294 | '@plasmohq/parcel-bundler@0.4.5': 3295 | dependencies: 3296 | '@parcel/core': 2.8.2 3297 | '@parcel/diagnostic': 2.8.2 3298 | '@parcel/graph': 2.8.2 3299 | '@parcel/hash': 2.8.2 3300 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3301 | '@parcel/utils': 2.8.2 3302 | nullthrows: 1.1.1 3303 | 3304 | '@plasmohq/parcel-config@0.28.8(lodash@4.17.21)(postcss@8.5.3)(terser@5.39.0)(typescript@4.9.4)': 3305 | dependencies: 3306 | '@parcel/config-default': 2.8.2(@parcel/core@2.8.2)(postcss@8.5.3)(terser@5.39.0)(typescript@4.9.4) 3307 | '@parcel/core': 2.8.2 3308 | '@parcel/optimizer-data-url': 2.8.2(@parcel/core@2.8.2) 3309 | '@parcel/reporter-bundle-buddy': 2.8.2(@parcel/core@2.8.2) 3310 | '@parcel/runtime-js': 2.8.2(@parcel/core@2.8.2) 3311 | '@parcel/runtime-service-worker': 2.8.2(@parcel/core@2.8.2) 3312 | '@parcel/source-map': 2.1.1 3313 | '@parcel/transformer-css': 2.8.2(@parcel/core@2.8.2) 3314 | '@parcel/transformer-graphql': 2.8.2(@parcel/core@2.8.2) 3315 | '@parcel/transformer-inline-string': 2.8.2(@parcel/core@2.8.2) 3316 | '@parcel/transformer-less': 2.8.2(@parcel/core@2.8.2) 3317 | '@parcel/transformer-postcss': 2.8.2(@parcel/core@2.8.2) 3318 | '@parcel/transformer-raw': 2.8.2(@parcel/core@2.8.2) 3319 | '@parcel/transformer-sass': 2.8.2(@parcel/core@2.8.2) 3320 | '@parcel/transformer-worklet': 2.8.2(@parcel/core@2.8.2) 3321 | '@plasmohq/parcel-bundler': 0.4.5 3322 | '@plasmohq/parcel-namer-manifest': 0.3.3 3323 | '@plasmohq/parcel-optimizer-terser': 0.0.4 3324 | '@plasmohq/parcel-packager': 0.6.4 3325 | '@plasmohq/parcel-resolver': 0.9.5 3326 | '@plasmohq/parcel-resolver-post': 0.1.4(postcss@8.5.3) 3327 | '@plasmohq/parcel-runtime': 0.15.5 3328 | '@plasmohq/parcel-transformer-inject-env': 0.2.3 3329 | '@plasmohq/parcel-transformer-inline-css': 0.2.3 3330 | '@plasmohq/parcel-transformer-manifest': 0.13.3 3331 | '@plasmohq/parcel-transformer-svelte3': 0.4.1 3332 | '@plasmohq/parcel-transformer-vue3': 0.3.3(lodash@4.17.21) 3333 | transitivePeerDependencies: 3334 | - '@swc/core' 3335 | - arc-templates 3336 | - atpl 3337 | - babel-core 3338 | - bracket-template 3339 | - coffeescript 3340 | - cssnano 3341 | - dot 3342 | - eco 3343 | - ect 3344 | - ejs 3345 | - haml-coffee 3346 | - hamlet 3347 | - hamljs 3348 | - handlebars 3349 | - hogan.js 3350 | - htmling 3351 | - jazz 3352 | - jqtpl 3353 | - just 3354 | - liquid 3355 | - liquor 3356 | - lodash 3357 | - marko 3358 | - mote 3359 | - mustache 3360 | - nunjucks 3361 | - plates 3362 | - postcss 3363 | - pug 3364 | - purgecss 3365 | - qejs 3366 | - ractive 3367 | - razor-tmpl 3368 | - react 3369 | - react-dom 3370 | - relateurl 3371 | - slm 3372 | - squirrelly 3373 | - srcset 3374 | - supports-color 3375 | - teacup 3376 | - templayed 3377 | - terser 3378 | - then-pug 3379 | - tinyliquid 3380 | - toffee 3381 | - ts-node 3382 | - twig 3383 | - twing 3384 | - typescript 3385 | - uncss 3386 | - underscore 3387 | - vash 3388 | - velocityjs 3389 | - walrus 3390 | - whiskers 3391 | 3392 | '@plasmohq/parcel-namer-manifest@0.3.3': 3393 | dependencies: 3394 | '@parcel/core': 2.8.2 3395 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3396 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3397 | '@parcel/utils': 2.8.2 3398 | 3399 | '@plasmohq/parcel-optimizer-terser@0.0.4': 3400 | dependencies: 3401 | '@parcel/core': 2.8.2 3402 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3403 | '@parcel/source-map': 2.1.1 3404 | '@parcel/utils': 2.8.2 3405 | nullthrows: 1.1.1 3406 | terser: 5.16.1 3407 | 3408 | '@plasmohq/parcel-packager@0.6.4': 3409 | dependencies: 3410 | '@parcel/core': 2.8.2 3411 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3412 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3413 | '@parcel/utils': 2.8.2 3414 | nullthrows: 1.1.1 3415 | 3416 | '@plasmohq/parcel-resolver-post@0.1.4(postcss@8.5.3)': 3417 | dependencies: 3418 | '@parcel/core': 2.8.2 3419 | '@parcel/hash': 2.8.2 3420 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3421 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3422 | '@parcel/utils': 2.8.2 3423 | tsup: 6.5.0(postcss@8.5.3)(typescript@4.9.4) 3424 | typescript: 4.9.4 3425 | transitivePeerDependencies: 3426 | - '@swc/core' 3427 | - postcss 3428 | - supports-color 3429 | - ts-node 3430 | 3431 | '@plasmohq/parcel-resolver@0.9.5': 3432 | dependencies: 3433 | '@parcel/core': 2.8.2 3434 | '@parcel/hash': 2.8.2 3435 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3436 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3437 | got: 12.5.3 3438 | tiny-glob: 0.2.9 3439 | 3440 | '@plasmohq/parcel-runtime@0.15.5': 3441 | dependencies: 3442 | '@parcel/core': 2.8.2 3443 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3444 | react-refresh: 0.14.0 3445 | 3446 | '@plasmohq/parcel-transformer-inject-env@0.2.3': 3447 | dependencies: 3448 | '@parcel/core': 2.8.2 3449 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3450 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3451 | 3452 | '@plasmohq/parcel-transformer-inline-css@0.2.3': 3453 | dependencies: 3454 | '@parcel/core': 2.8.2 3455 | '@parcel/css': 1.14.0 3456 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3457 | '@parcel/utils': 2.8.2 3458 | 3459 | '@plasmohq/parcel-transformer-manifest@0.13.3': 3460 | dependencies: 3461 | '@mischnic/json-sourcemap': 0.1.0 3462 | '@parcel/core': 2.8.2 3463 | '@parcel/diagnostic': 2.8.2 3464 | '@parcel/fs': 2.8.2(@parcel/core@2.8.2) 3465 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3466 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3467 | '@parcel/utils': 2.8.2 3468 | content-security-policy-parser: 0.4.1 3469 | json-schema-to-ts: 2.6.2 3470 | nullthrows: 1.1.1 3471 | 3472 | '@plasmohq/parcel-transformer-svelte3@0.4.1': 3473 | dependencies: 3474 | '@parcel/core': 2.8.2 3475 | '@parcel/diagnostic': 2.8.2 3476 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3477 | '@parcel/source-map': 2.1.1 3478 | '@parcel/utils': 2.8.2 3479 | 3480 | '@plasmohq/parcel-transformer-vue3@0.3.3(lodash@4.17.21)': 3481 | dependencies: 3482 | '@parcel/core': 2.8.2 3483 | '@parcel/diagnostic': 2.8.2 3484 | '@parcel/plugin': 2.8.2(@parcel/core@2.8.2) 3485 | '@parcel/source-map': 2.1.1 3486 | '@parcel/types': 2.8.2(@parcel/core@2.8.2) 3487 | '@parcel/utils': 2.8.2 3488 | '@plasmohq/consolidate': 0.17.0(lodash@4.17.21) 3489 | '@vue/compiler-sfc': 3.2.45 3490 | nullthrows: 1.1.1 3491 | semver: 7.3.8 3492 | transitivePeerDependencies: 3493 | - arc-templates 3494 | - atpl 3495 | - babel-core 3496 | - bracket-template 3497 | - coffeescript 3498 | - dot 3499 | - eco 3500 | - ect 3501 | - ejs 3502 | - haml-coffee 3503 | - hamlet 3504 | - hamljs 3505 | - handlebars 3506 | - hogan.js 3507 | - htmling 3508 | - jazz 3509 | - jqtpl 3510 | - just 3511 | - liquid 3512 | - liquor 3513 | - lodash 3514 | - marko 3515 | - mote 3516 | - mustache 3517 | - nunjucks 3518 | - plates 3519 | - pug 3520 | - qejs 3521 | - ractive 3522 | - razor-tmpl 3523 | - react 3524 | - react-dom 3525 | - slm 3526 | - squirrelly 3527 | - teacup 3528 | - templayed 3529 | - then-pug 3530 | - tinyliquid 3531 | - toffee 3532 | - twig 3533 | - twing 3534 | - underscore 3535 | - vash 3536 | - velocityjs 3537 | - walrus 3538 | - whiskers 3539 | 3540 | '@pnpm/config.env-replace@1.1.0': {} 3541 | 3542 | '@pnpm/network.ca-file@1.0.2': 3543 | dependencies: 3544 | graceful-fs: 4.2.10 3545 | 3546 | '@pnpm/npm-conf@2.3.1': 3547 | dependencies: 3548 | '@pnpm/config.env-replace': 1.1.0 3549 | '@pnpm/network.ca-file': 1.0.2 3550 | config-chain: 1.1.13 3551 | 3552 | '@sindresorhus/is@5.6.0': {} 3553 | 3554 | '@swc/helpers@0.4.14': 3555 | dependencies: 3556 | tslib: 2.8.1 3557 | 3558 | '@swc/helpers@0.4.37': 3559 | dependencies: 3560 | '@swc/legacy-helpers': '@swc/helpers@0.4.14' 3561 | tslib: 2.8.1 3562 | 3563 | '@szmarczak/http-timer@5.0.1': 3564 | dependencies: 3565 | defer-to-connect: 2.0.1 3566 | 3567 | '@trysound/sax@0.2.0': {} 3568 | 3569 | '@types/chrome@0.0.206': 3570 | dependencies: 3571 | '@types/filesystem': 0.0.36 3572 | '@types/har-format': 1.2.16 3573 | 3574 | '@types/filesystem@0.0.36': 3575 | dependencies: 3576 | '@types/filewriter': 0.0.33 3577 | 3578 | '@types/filewriter@0.0.33': {} 3579 | 3580 | '@types/har-format@1.2.16': {} 3581 | 3582 | '@types/http-cache-semantics@4.0.4': {} 3583 | 3584 | '@types/json-schema@7.0.15': {} 3585 | 3586 | '@types/node@18.11.18': {} 3587 | 3588 | '@vue/compiler-core@3.2.45': 3589 | dependencies: 3590 | '@babel/parser': 7.27.0 3591 | '@vue/shared': 3.2.45 3592 | estree-walker: 2.0.2 3593 | source-map: 0.6.1 3594 | 3595 | '@vue/compiler-dom@3.2.45': 3596 | dependencies: 3597 | '@vue/compiler-core': 3.2.45 3598 | '@vue/shared': 3.2.45 3599 | 3600 | '@vue/compiler-sfc@3.2.45': 3601 | dependencies: 3602 | '@babel/parser': 7.27.0 3603 | '@vue/compiler-core': 3.2.45 3604 | '@vue/compiler-dom': 3.2.45 3605 | '@vue/compiler-ssr': 3.2.45 3606 | '@vue/reactivity-transform': 3.2.45 3607 | '@vue/shared': 3.2.45 3608 | estree-walker: 2.0.2 3609 | magic-string: 0.25.9 3610 | postcss: 8.5.3 3611 | source-map: 0.6.1 3612 | 3613 | '@vue/compiler-ssr@3.2.45': 3614 | dependencies: 3615 | '@vue/compiler-dom': 3.2.45 3616 | '@vue/shared': 3.2.45 3617 | 3618 | '@vue/reactivity-transform@3.2.45': 3619 | dependencies: 3620 | '@babel/parser': 7.27.0 3621 | '@vue/compiler-core': 3.2.45 3622 | '@vue/shared': 3.2.45 3623 | estree-walker: 2.0.2 3624 | magic-string: 0.25.9 3625 | 3626 | '@vue/shared@3.2.45': {} 3627 | 3628 | abortcontroller-polyfill@1.7.8: {} 3629 | 3630 | acorn@8.14.1: {} 3631 | 3632 | ansi-escapes@6.2.1: {} 3633 | 3634 | ansi-regex@5.0.1: {} 3635 | 3636 | ansi-regex@6.1.0: {} 3637 | 3638 | ansi-styles@4.3.0: 3639 | dependencies: 3640 | color-convert: 2.0.1 3641 | 3642 | ansi-styles@6.2.1: {} 3643 | 3644 | ansis@4.0.0: {} 3645 | 3646 | any-promise@1.3.0: {} 3647 | 3648 | anymatch@3.1.3: 3649 | dependencies: 3650 | normalize-path: 3.0.0 3651 | picomatch: 2.3.1 3652 | 3653 | archiver-utils@2.1.0: 3654 | dependencies: 3655 | glob: 7.2.3 3656 | graceful-fs: 4.2.11 3657 | lazystream: 1.0.1 3658 | lodash.defaults: 4.2.0 3659 | lodash.difference: 4.5.0 3660 | lodash.flatten: 4.4.0 3661 | lodash.isplainobject: 4.0.6 3662 | lodash.union: 4.6.0 3663 | normalize-path: 3.0.0 3664 | readable-stream: 2.3.8 3665 | 3666 | archiver-utils@3.0.4: 3667 | dependencies: 3668 | glob: 7.2.3 3669 | graceful-fs: 4.2.11 3670 | lazystream: 1.0.1 3671 | lodash.defaults: 4.2.0 3672 | lodash.difference: 4.5.0 3673 | lodash.flatten: 4.4.0 3674 | lodash.isplainobject: 4.0.6 3675 | lodash.union: 4.6.0 3676 | normalize-path: 3.0.0 3677 | readable-stream: 3.6.2 3678 | 3679 | archiver@5.3.1: 3680 | dependencies: 3681 | archiver-utils: 2.1.0 3682 | async: 3.2.6 3683 | buffer-crc32: 0.2.13 3684 | readable-stream: 3.6.2 3685 | readdir-glob: 1.1.3 3686 | tar-stream: 2.2.0 3687 | zip-stream: 4.1.1 3688 | 3689 | argparse@2.0.1: {} 3690 | 3691 | args-tokenizer@0.3.0: {} 3692 | 3693 | array-union@2.1.0: {} 3694 | 3695 | async@3.2.6: {} 3696 | 3697 | balanced-match@1.0.2: {} 3698 | 3699 | base-x@3.0.11: 3700 | dependencies: 3701 | safe-buffer: 5.2.1 3702 | 3703 | base64-js@1.5.1: {} 3704 | 3705 | binary-extensions@2.3.0: {} 3706 | 3707 | bl@4.1.0: 3708 | dependencies: 3709 | buffer: 5.7.1 3710 | inherits: 2.0.4 3711 | readable-stream: 3.6.2 3712 | 3713 | bl@5.1.0: 3714 | dependencies: 3715 | buffer: 6.0.3 3716 | inherits: 2.0.4 3717 | readable-stream: 3.6.2 3718 | 3719 | bluebird@3.7.2: {} 3720 | 3721 | boolbase@1.0.0: {} 3722 | 3723 | brace-expansion@1.1.11: 3724 | dependencies: 3725 | balanced-match: 1.0.2 3726 | concat-map: 0.0.1 3727 | 3728 | brace-expansion@2.0.1: 3729 | dependencies: 3730 | balanced-match: 1.0.2 3731 | 3732 | braces@3.0.3: 3733 | dependencies: 3734 | fill-range: 7.1.1 3735 | 3736 | browserslist@4.24.4: 3737 | dependencies: 3738 | caniuse-lite: 1.0.30001707 3739 | electron-to-chromium: 1.5.128 3740 | node-releases: 2.0.19 3741 | update-browserslist-db: 1.1.3(browserslist@4.24.4) 3742 | 3743 | buffer-crc32@0.2.13: {} 3744 | 3745 | buffer-from@1.1.2: {} 3746 | 3747 | buffer@5.7.1: 3748 | dependencies: 3749 | base64-js: 1.5.1 3750 | ieee754: 1.2.1 3751 | 3752 | buffer@6.0.3: 3753 | dependencies: 3754 | base64-js: 1.5.1 3755 | ieee754: 1.2.1 3756 | 3757 | bumpp@10.1.1: 3758 | dependencies: 3759 | ansis: 4.0.0 3760 | args-tokenizer: 0.3.0 3761 | c12: 3.0.4 3762 | cac: 6.7.14 3763 | escalade: 3.2.0 3764 | jsonc-parser: 3.3.1 3765 | package-manager-detector: 1.3.0 3766 | semver: 7.7.2 3767 | tinyexec: 1.0.1 3768 | tinyglobby: 0.2.13 3769 | yaml: 2.8.0 3770 | transitivePeerDependencies: 3771 | - magicast 3772 | 3773 | bundle-require@3.1.2(esbuild@0.15.18): 3774 | dependencies: 3775 | esbuild: 0.15.18 3776 | load-tsconfig: 0.2.5 3777 | 3778 | c12@3.0.4: 3779 | dependencies: 3780 | chokidar: 4.0.3 3781 | confbox: 0.2.2 3782 | defu: 6.1.4 3783 | dotenv: 16.5.0 3784 | exsolve: 1.0.5 3785 | giget: 2.0.0 3786 | jiti: 2.4.2 3787 | ohash: 2.0.11 3788 | pathe: 2.0.3 3789 | perfect-debounce: 1.0.0 3790 | pkg-types: 2.1.0 3791 | rc9: 2.1.2 3792 | 3793 | cac@6.7.14: {} 3794 | 3795 | cacheable-lookup@7.0.0: {} 3796 | 3797 | cacheable-request@10.2.14: 3798 | dependencies: 3799 | '@types/http-cache-semantics': 4.0.4 3800 | get-stream: 6.0.1 3801 | http-cache-semantics: 4.1.1 3802 | keyv: 4.5.4 3803 | mimic-response: 4.0.0 3804 | normalize-url: 8.0.1 3805 | responselike: 3.0.0 3806 | 3807 | callsites@3.1.0: {} 3808 | 3809 | camel-case@4.1.2: 3810 | dependencies: 3811 | pascal-case: 3.1.2 3812 | tslib: 2.8.1 3813 | 3814 | caniuse-lite@1.0.30001707: {} 3815 | 3816 | capital-case@1.0.4: 3817 | dependencies: 3818 | no-case: 3.0.4 3819 | tslib: 2.8.1 3820 | upper-case-first: 2.0.2 3821 | 3822 | chalk@4.1.2: 3823 | dependencies: 3824 | ansi-styles: 4.3.0 3825 | supports-color: 7.2.0 3826 | 3827 | chalk@5.2.0: {} 3828 | 3829 | change-case@4.1.2: 3830 | dependencies: 3831 | camel-case: 4.1.2 3832 | capital-case: 1.0.4 3833 | constant-case: 3.0.4 3834 | dot-case: 3.0.4 3835 | header-case: 2.0.4 3836 | no-case: 3.0.4 3837 | param-case: 3.0.4 3838 | pascal-case: 3.1.2 3839 | path-case: 3.0.4 3840 | sentence-case: 3.0.4 3841 | snake-case: 3.0.4 3842 | tslib: 2.8.1 3843 | 3844 | chardet@0.7.0: {} 3845 | 3846 | chokidar@3.6.0: 3847 | dependencies: 3848 | anymatch: 3.1.3 3849 | braces: 3.0.3 3850 | glob-parent: 5.1.2 3851 | is-binary-path: 2.1.0 3852 | is-glob: 4.0.3 3853 | normalize-path: 3.0.0 3854 | readdirp: 3.6.0 3855 | optionalDependencies: 3856 | fsevents: 2.3.3 3857 | 3858 | chokidar@4.0.3: 3859 | dependencies: 3860 | readdirp: 4.1.2 3861 | 3862 | chownr@1.1.4: {} 3863 | 3864 | chrome-trace-event@1.0.4: {} 3865 | 3866 | citty@0.1.6: 3867 | dependencies: 3868 | consola: 3.4.2 3869 | 3870 | cli-cursor@4.0.0: 3871 | dependencies: 3872 | restore-cursor: 4.0.0 3873 | 3874 | cli-spinners@2.9.2: {} 3875 | 3876 | cli-width@4.1.0: {} 3877 | 3878 | clone@1.0.4: {} 3879 | 3880 | clone@2.1.2: {} 3881 | 3882 | color-convert@2.0.1: 3883 | dependencies: 3884 | color-name: 1.1.4 3885 | 3886 | color-name@1.1.4: {} 3887 | 3888 | color-string@1.9.1: 3889 | dependencies: 3890 | color-name: 1.1.4 3891 | simple-swizzle: 0.2.2 3892 | 3893 | color@4.2.3: 3894 | dependencies: 3895 | color-convert: 2.0.1 3896 | color-string: 1.9.1 3897 | 3898 | commander@2.20.3: {} 3899 | 3900 | commander@4.1.1: {} 3901 | 3902 | commander@7.2.0: {} 3903 | 3904 | compress-commons@4.1.2: 3905 | dependencies: 3906 | buffer-crc32: 0.2.13 3907 | crc32-stream: 4.0.3 3908 | normalize-path: 3.0.0 3909 | readable-stream: 3.6.2 3910 | 3911 | concat-map@0.0.1: {} 3912 | 3913 | confbox@0.2.2: {} 3914 | 3915 | config-chain@1.1.13: 3916 | dependencies: 3917 | ini: 1.3.8 3918 | proto-list: 1.2.4 3919 | 3920 | consola@3.4.2: {} 3921 | 3922 | constant-case@3.0.4: 3923 | dependencies: 3924 | no-case: 3.0.4 3925 | tslib: 2.8.1 3926 | upper-case: 2.0.2 3927 | 3928 | content-security-policy-parser@0.4.1: {} 3929 | 3930 | copy-anything@2.0.6: 3931 | dependencies: 3932 | is-what: 3.14.1 3933 | 3934 | core-util-is@1.0.3: {} 3935 | 3936 | cosmiconfig@9.0.0(typescript@4.9.4): 3937 | dependencies: 3938 | env-paths: 2.2.1 3939 | import-fresh: 3.3.1 3940 | js-yaml: 4.1.0 3941 | parse-json: 5.2.0 3942 | optionalDependencies: 3943 | typescript: 4.9.4 3944 | 3945 | craie@1.0.1: {} 3946 | 3947 | crc-32@1.2.2: {} 3948 | 3949 | crc32-stream@4.0.3: 3950 | dependencies: 3951 | crc-32: 1.2.2 3952 | readable-stream: 3.6.2 3953 | 3954 | cross-spawn@7.0.6: 3955 | dependencies: 3956 | path-key: 3.1.1 3957 | shebang-command: 2.0.0 3958 | which: 2.0.2 3959 | 3960 | crypto-random-string@4.0.0: 3961 | dependencies: 3962 | type-fest: 1.4.0 3963 | 3964 | css-select@4.3.0: 3965 | dependencies: 3966 | boolbase: 1.0.0 3967 | css-what: 6.1.0 3968 | domhandler: 4.3.1 3969 | domutils: 2.8.0 3970 | nth-check: 2.1.1 3971 | 3972 | css-tree@1.1.3: 3973 | dependencies: 3974 | mdn-data: 2.0.14 3975 | source-map: 0.6.1 3976 | 3977 | css-what@6.1.0: {} 3978 | 3979 | csso@4.2.0: 3980 | dependencies: 3981 | css-tree: 1.1.3 3982 | 3983 | debug@4.4.0: 3984 | dependencies: 3985 | ms: 2.1.3 3986 | 3987 | decompress-response@6.0.0: 3988 | dependencies: 3989 | mimic-response: 3.1.0 3990 | 3991 | deep-extend@0.6.0: {} 3992 | 3993 | defaults@1.0.4: 3994 | dependencies: 3995 | clone: 1.0.4 3996 | 3997 | defer-to-connect@2.0.1: {} 3998 | 3999 | defu@6.1.4: {} 4000 | 4001 | destr@2.0.3: {} 4002 | 4003 | detect-libc@1.0.3: {} 4004 | 4005 | detect-libc@2.0.3: {} 4006 | 4007 | dir-glob@3.0.1: 4008 | dependencies: 4009 | path-type: 4.0.0 4010 | 4011 | dom-serializer@1.4.1: 4012 | dependencies: 4013 | domelementtype: 2.3.0 4014 | domhandler: 4.3.1 4015 | entities: 2.2.0 4016 | 4017 | domelementtype@2.3.0: {} 4018 | 4019 | domhandler@4.3.1: 4020 | dependencies: 4021 | domelementtype: 2.3.0 4022 | 4023 | domutils@2.8.0: 4024 | dependencies: 4025 | dom-serializer: 1.4.1 4026 | domelementtype: 2.3.0 4027 | domhandler: 4.3.1 4028 | 4029 | dot-case@3.0.4: 4030 | dependencies: 4031 | no-case: 3.0.4 4032 | tslib: 2.8.1 4033 | 4034 | dotenv-expand@10.0.0: {} 4035 | 4036 | dotenv-expand@5.1.0: {} 4037 | 4038 | dotenv@16.0.3: {} 4039 | 4040 | dotenv@16.5.0: {} 4041 | 4042 | dotenv@7.0.0: {} 4043 | 4044 | eastasianwidth@0.2.0: {} 4045 | 4046 | electron-to-chromium@1.5.128: {} 4047 | 4048 | emoji-regex@8.0.0: {} 4049 | 4050 | emoji-regex@9.2.2: {} 4051 | 4052 | end-of-stream@1.4.4: 4053 | dependencies: 4054 | once: 1.4.0 4055 | 4056 | entities@2.2.0: {} 4057 | 4058 | entities@3.0.1: {} 4059 | 4060 | env-paths@2.2.1: {} 4061 | 4062 | errno@0.1.8: 4063 | dependencies: 4064 | prr: 1.0.1 4065 | optional: true 4066 | 4067 | error-ex@1.3.2: 4068 | dependencies: 4069 | is-arrayish: 0.2.1 4070 | 4071 | esbuild-android-64@0.15.18: 4072 | optional: true 4073 | 4074 | esbuild-android-arm64@0.15.18: 4075 | optional: true 4076 | 4077 | esbuild-darwin-64@0.15.18: 4078 | optional: true 4079 | 4080 | esbuild-darwin-arm64@0.15.18: 4081 | optional: true 4082 | 4083 | esbuild-freebsd-64@0.15.18: 4084 | optional: true 4085 | 4086 | esbuild-freebsd-arm64@0.15.18: 4087 | optional: true 4088 | 4089 | esbuild-linux-32@0.15.18: 4090 | optional: true 4091 | 4092 | esbuild-linux-64@0.15.18: 4093 | optional: true 4094 | 4095 | esbuild-linux-arm64@0.15.18: 4096 | optional: true 4097 | 4098 | esbuild-linux-arm@0.15.18: 4099 | optional: true 4100 | 4101 | esbuild-linux-mips64le@0.15.18: 4102 | optional: true 4103 | 4104 | esbuild-linux-ppc64le@0.15.18: 4105 | optional: true 4106 | 4107 | esbuild-linux-riscv64@0.15.18: 4108 | optional: true 4109 | 4110 | esbuild-linux-s390x@0.15.18: 4111 | optional: true 4112 | 4113 | esbuild-netbsd-64@0.15.18: 4114 | optional: true 4115 | 4116 | esbuild-openbsd-64@0.15.18: 4117 | optional: true 4118 | 4119 | esbuild-sunos-64@0.15.18: 4120 | optional: true 4121 | 4122 | esbuild-windows-32@0.15.18: 4123 | optional: true 4124 | 4125 | esbuild-windows-64@0.15.18: 4126 | optional: true 4127 | 4128 | esbuild-windows-arm64@0.15.18: 4129 | optional: true 4130 | 4131 | esbuild@0.15.18: 4132 | optionalDependencies: 4133 | '@esbuild/android-arm': 0.15.18 4134 | '@esbuild/linux-loong64': 0.15.18 4135 | esbuild-android-64: 0.15.18 4136 | esbuild-android-arm64: 0.15.18 4137 | esbuild-darwin-64: 0.15.18 4138 | esbuild-darwin-arm64: 0.15.18 4139 | esbuild-freebsd-64: 0.15.18 4140 | esbuild-freebsd-arm64: 0.15.18 4141 | esbuild-linux-32: 0.15.18 4142 | esbuild-linux-64: 0.15.18 4143 | esbuild-linux-arm: 0.15.18 4144 | esbuild-linux-arm64: 0.15.18 4145 | esbuild-linux-mips64le: 0.15.18 4146 | esbuild-linux-ppc64le: 0.15.18 4147 | esbuild-linux-riscv64: 0.15.18 4148 | esbuild-linux-s390x: 0.15.18 4149 | esbuild-netbsd-64: 0.15.18 4150 | esbuild-openbsd-64: 0.15.18 4151 | esbuild-sunos-64: 0.15.18 4152 | esbuild-windows-32: 0.15.18 4153 | esbuild-windows-64: 0.15.18 4154 | esbuild-windows-arm64: 0.15.18 4155 | 4156 | escalade@3.2.0: {} 4157 | 4158 | escape-string-regexp@5.0.0: {} 4159 | 4160 | estree-walker@2.0.2: {} 4161 | 4162 | events@3.3.0: {} 4163 | 4164 | execa@5.1.1: 4165 | dependencies: 4166 | cross-spawn: 7.0.6 4167 | get-stream: 6.0.1 4168 | human-signals: 2.1.0 4169 | is-stream: 2.0.1 4170 | merge-stream: 2.0.0 4171 | npm-run-path: 4.0.1 4172 | onetime: 5.1.2 4173 | signal-exit: 3.0.7 4174 | strip-final-newline: 2.0.0 4175 | 4176 | expand-template@2.0.3: {} 4177 | 4178 | exsolve@1.0.5: {} 4179 | 4180 | external-editor@3.1.0: 4181 | dependencies: 4182 | chardet: 0.7.0 4183 | iconv-lite: 0.4.24 4184 | tmp: 0.0.33 4185 | 4186 | fast-glob@3.3.3: 4187 | dependencies: 4188 | '@nodelib/fs.stat': 2.0.5 4189 | '@nodelib/fs.walk': 1.2.8 4190 | glob-parent: 5.1.2 4191 | merge2: 1.4.1 4192 | micromatch: 4.0.8 4193 | 4194 | fastq@1.19.1: 4195 | dependencies: 4196 | reusify: 1.1.0 4197 | 4198 | fdir@6.4.4(picomatch@4.0.2): 4199 | optionalDependencies: 4200 | picomatch: 4.0.2 4201 | 4202 | fflate@0.7.4: {} 4203 | 4204 | figures@5.0.0: 4205 | dependencies: 4206 | escape-string-regexp: 5.0.0 4207 | is-unicode-supported: 1.3.0 4208 | 4209 | fill-range@7.1.1: 4210 | dependencies: 4211 | to-regex-range: 5.0.1 4212 | 4213 | foreground-child@3.3.1: 4214 | dependencies: 4215 | cross-spawn: 7.0.6 4216 | signal-exit: 4.1.0 4217 | 4218 | form-data-encoder@2.1.4: {} 4219 | 4220 | fs-constants@1.0.0: {} 4221 | 4222 | fs.realpath@1.0.0: {} 4223 | 4224 | fsevents@2.3.3: 4225 | optional: true 4226 | 4227 | get-port@6.1.2: {} 4228 | 4229 | get-stream@6.0.1: {} 4230 | 4231 | giget@2.0.0: 4232 | dependencies: 4233 | citty: 0.1.6 4234 | consola: 3.4.2 4235 | defu: 6.1.4 4236 | node-fetch-native: 1.6.6 4237 | nypm: 0.6.0 4238 | pathe: 2.0.3 4239 | 4240 | github-from-package@0.0.0: {} 4241 | 4242 | glob-parent@5.1.2: 4243 | dependencies: 4244 | is-glob: 4.0.3 4245 | 4246 | glob@10.4.5: 4247 | dependencies: 4248 | foreground-child: 3.3.1 4249 | jackspeak: 3.4.3 4250 | minimatch: 9.0.5 4251 | minipass: 7.1.2 4252 | package-json-from-dist: 1.0.1 4253 | path-scurry: 1.11.1 4254 | 4255 | glob@7.2.3: 4256 | dependencies: 4257 | fs.realpath: 1.0.0 4258 | inflight: 1.0.6 4259 | inherits: 2.0.4 4260 | minimatch: 3.1.2 4261 | once: 1.4.0 4262 | path-is-absolute: 1.0.1 4263 | 4264 | globals@13.24.0: 4265 | dependencies: 4266 | type-fest: 0.20.2 4267 | 4268 | globalyzer@0.1.0: {} 4269 | 4270 | globby@11.1.0: 4271 | dependencies: 4272 | array-union: 2.1.0 4273 | dir-glob: 3.0.1 4274 | fast-glob: 3.3.3 4275 | ignore: 5.3.2 4276 | merge2: 1.4.1 4277 | slash: 3.0.0 4278 | 4279 | globrex@0.1.2: {} 4280 | 4281 | got@12.5.3: 4282 | dependencies: 4283 | '@sindresorhus/is': 5.6.0 4284 | '@szmarczak/http-timer': 5.0.1 4285 | cacheable-lookup: 7.0.0 4286 | cacheable-request: 10.2.14 4287 | decompress-response: 6.0.0 4288 | form-data-encoder: 2.1.4 4289 | get-stream: 6.0.1 4290 | http2-wrapper: 2.2.1 4291 | lowercase-keys: 3.0.0 4292 | p-cancelable: 3.0.0 4293 | responselike: 3.0.0 4294 | 4295 | graceful-fs@4.2.10: {} 4296 | 4297 | graceful-fs@4.2.11: {} 4298 | 4299 | graphql-import-macro@1.0.0: 4300 | dependencies: 4301 | graphql: 15.10.1 4302 | 4303 | graphql@15.10.1: {} 4304 | 4305 | has-flag@4.0.0: {} 4306 | 4307 | header-case@2.0.4: 4308 | dependencies: 4309 | capital-case: 1.0.4 4310 | tslib: 2.8.1 4311 | 4312 | htmlnano@2.1.1(postcss@8.5.3)(svgo@2.8.0)(terser@5.39.0)(typescript@4.9.4): 4313 | dependencies: 4314 | cosmiconfig: 9.0.0(typescript@4.9.4) 4315 | posthtml: 0.16.6 4316 | timsort: 0.3.0 4317 | optionalDependencies: 4318 | postcss: 8.5.3 4319 | svgo: 2.8.0 4320 | terser: 5.39.0 4321 | transitivePeerDependencies: 4322 | - typescript 4323 | 4324 | htmlparser2@7.2.0: 4325 | dependencies: 4326 | domelementtype: 2.3.0 4327 | domhandler: 4.3.1 4328 | domutils: 2.8.0 4329 | entities: 3.0.1 4330 | 4331 | http-cache-semantics@4.1.1: {} 4332 | 4333 | http2-wrapper@2.2.1: 4334 | dependencies: 4335 | quick-lru: 5.1.1 4336 | resolve-alpn: 1.2.1 4337 | 4338 | human-signals@2.1.0: {} 4339 | 4340 | iconv-lite@0.4.24: 4341 | dependencies: 4342 | safer-buffer: 2.1.2 4343 | 4344 | iconv-lite@0.6.3: 4345 | dependencies: 4346 | safer-buffer: 2.1.2 4347 | optional: true 4348 | 4349 | ieee754@1.2.1: {} 4350 | 4351 | ignore@5.3.2: {} 4352 | 4353 | image-size@0.5.5: 4354 | optional: true 4355 | 4356 | immutable@5.1.1: {} 4357 | 4358 | import-fresh@3.3.1: 4359 | dependencies: 4360 | parent-module: 1.0.1 4361 | resolve-from: 4.0.0 4362 | 4363 | inflight@1.0.6: 4364 | dependencies: 4365 | once: 1.4.0 4366 | wrappy: 1.0.2 4367 | 4368 | inherits@2.0.4: {} 4369 | 4370 | ini@1.3.8: {} 4371 | 4372 | inquirer@9.1.4: 4373 | dependencies: 4374 | ansi-escapes: 6.2.1 4375 | chalk: 5.2.0 4376 | cli-cursor: 4.0.0 4377 | cli-width: 4.1.0 4378 | external-editor: 3.1.0 4379 | figures: 5.0.0 4380 | lodash: 4.17.21 4381 | mute-stream: 0.0.8 4382 | ora: 6.3.1 4383 | run-async: 2.4.1 4384 | rxjs: 7.8.2 4385 | string-width: 5.1.2 4386 | strip-ansi: 7.1.0 4387 | through: 2.3.8 4388 | wrap-ansi: 8.1.0 4389 | 4390 | is-arrayish@0.2.1: {} 4391 | 4392 | is-arrayish@0.3.2: {} 4393 | 4394 | is-binary-path@2.1.0: 4395 | dependencies: 4396 | binary-extensions: 2.3.0 4397 | 4398 | is-extglob@2.1.1: {} 4399 | 4400 | is-fullwidth-code-point@3.0.0: {} 4401 | 4402 | is-glob@4.0.3: 4403 | dependencies: 4404 | is-extglob: 2.1.1 4405 | 4406 | is-interactive@2.0.0: {} 4407 | 4408 | is-json@2.0.1: {} 4409 | 4410 | is-number@7.0.0: {} 4411 | 4412 | is-path-inside@4.0.0: {} 4413 | 4414 | is-stream@2.0.1: {} 4415 | 4416 | is-stream@3.0.0: {} 4417 | 4418 | is-unicode-supported@1.3.0: {} 4419 | 4420 | is-what@3.14.1: {} 4421 | 4422 | isarray@1.0.0: {} 4423 | 4424 | isbinaryfile@4.0.10: {} 4425 | 4426 | isexe@2.0.0: {} 4427 | 4428 | jackspeak@3.4.3: 4429 | dependencies: 4430 | '@isaacs/cliui': 8.0.2 4431 | optionalDependencies: 4432 | '@pkgjs/parseargs': 0.11.0 4433 | 4434 | jiti@2.4.2: {} 4435 | 4436 | joycon@3.1.1: {} 4437 | 4438 | js-tokens@4.0.0: {} 4439 | 4440 | js-yaml@4.1.0: 4441 | dependencies: 4442 | argparse: 2.0.1 4443 | 4444 | json-buffer@3.0.1: {} 4445 | 4446 | json-parse-even-better-errors@2.3.1: {} 4447 | 4448 | json-schema-to-ts@2.6.2: 4449 | dependencies: 4450 | '@babel/runtime': 7.27.0 4451 | '@types/json-schema': 7.0.15 4452 | ts-algebra: 1.2.2 4453 | ts-toolbelt: 9.6.0 4454 | 4455 | json5@2.2.3: {} 4456 | 4457 | jsonc-parser@3.3.1: {} 4458 | 4459 | keyv@4.5.4: 4460 | dependencies: 4461 | json-buffer: 3.0.1 4462 | 4463 | lazystream@1.0.1: 4464 | dependencies: 4465 | readable-stream: 2.3.8 4466 | 4467 | less@4.2.2: 4468 | dependencies: 4469 | copy-anything: 2.0.6 4470 | parse-node-version: 1.0.1 4471 | tslib: 2.8.1 4472 | optionalDependencies: 4473 | errno: 0.1.8 4474 | graceful-fs: 4.2.11 4475 | image-size: 0.5.5 4476 | make-dir: 2.1.0 4477 | mime: 1.6.0 4478 | needle: 3.3.1 4479 | source-map: 0.6.1 4480 | 4481 | lightningcss-darwin-arm64@1.29.3: 4482 | optional: true 4483 | 4484 | lightningcss-darwin-x64@1.29.3: 4485 | optional: true 4486 | 4487 | lightningcss-freebsd-x64@1.29.3: 4488 | optional: true 4489 | 4490 | lightningcss-linux-arm-gnueabihf@1.29.3: 4491 | optional: true 4492 | 4493 | lightningcss-linux-arm64-gnu@1.29.3: 4494 | optional: true 4495 | 4496 | lightningcss-linux-arm64-musl@1.29.3: 4497 | optional: true 4498 | 4499 | lightningcss-linux-x64-gnu@1.29.3: 4500 | optional: true 4501 | 4502 | lightningcss-linux-x64-musl@1.29.3: 4503 | optional: true 4504 | 4505 | lightningcss-win32-arm64-msvc@1.29.3: 4506 | optional: true 4507 | 4508 | lightningcss-win32-x64-msvc@1.29.3: 4509 | optional: true 4510 | 4511 | lightningcss@1.29.3: 4512 | dependencies: 4513 | detect-libc: 2.0.3 4514 | optionalDependencies: 4515 | lightningcss-darwin-arm64: 1.29.3 4516 | lightningcss-darwin-x64: 1.29.3 4517 | lightningcss-freebsd-x64: 1.29.3 4518 | lightningcss-linux-arm-gnueabihf: 1.29.3 4519 | lightningcss-linux-arm64-gnu: 1.29.3 4520 | lightningcss-linux-arm64-musl: 1.29.3 4521 | lightningcss-linux-x64-gnu: 1.29.3 4522 | lightningcss-linux-x64-musl: 1.29.3 4523 | lightningcss-win32-arm64-msvc: 1.29.3 4524 | lightningcss-win32-x64-msvc: 1.29.3 4525 | 4526 | lilconfig@2.1.0: {} 4527 | 4528 | lines-and-columns@1.2.4: {} 4529 | 4530 | lmdb@2.5.2: 4531 | dependencies: 4532 | msgpackr: 1.11.2 4533 | node-addon-api: 4.3.0 4534 | node-gyp-build-optional-packages: 5.0.3 4535 | ordered-binary: 1.5.3 4536 | weak-lru-cache: 1.2.2 4537 | optionalDependencies: 4538 | '@lmdb/lmdb-darwin-arm64': 2.5.2 4539 | '@lmdb/lmdb-darwin-x64': 2.5.2 4540 | '@lmdb/lmdb-linux-arm': 2.5.2 4541 | '@lmdb/lmdb-linux-arm64': 2.5.2 4542 | '@lmdb/lmdb-linux-x64': 2.5.2 4543 | '@lmdb/lmdb-win32-x64': 2.5.2 4544 | 4545 | load-tsconfig@0.2.5: {} 4546 | 4547 | lodash.defaults@4.2.0: {} 4548 | 4549 | lodash.difference@4.5.0: {} 4550 | 4551 | lodash.flatten@4.4.0: {} 4552 | 4553 | lodash.isplainobject@4.0.6: {} 4554 | 4555 | lodash.sortby@4.7.0: {} 4556 | 4557 | lodash.union@4.6.0: {} 4558 | 4559 | lodash@4.17.21: {} 4560 | 4561 | log-symbols@5.1.0: 4562 | dependencies: 4563 | chalk: 5.2.0 4564 | is-unicode-supported: 1.3.0 4565 | 4566 | lower-case@2.0.2: 4567 | dependencies: 4568 | tslib: 2.8.1 4569 | 4570 | lowercase-keys@3.0.0: {} 4571 | 4572 | lru-cache@10.4.3: {} 4573 | 4574 | lru-cache@6.0.0: 4575 | dependencies: 4576 | yallist: 4.0.0 4577 | 4578 | magic-string@0.25.9: 4579 | dependencies: 4580 | sourcemap-codec: 1.4.8 4581 | 4582 | make-dir@2.1.0: 4583 | dependencies: 4584 | pify: 4.0.1 4585 | semver: 5.7.2 4586 | optional: true 4587 | 4588 | mdn-data@2.0.14: {} 4589 | 4590 | merge-stream@2.0.0: {} 4591 | 4592 | merge2@1.4.1: {} 4593 | 4594 | micromatch@4.0.8: 4595 | dependencies: 4596 | braces: 3.0.3 4597 | picomatch: 2.3.1 4598 | 4599 | mime@1.6.0: 4600 | optional: true 4601 | 4602 | mime@2.6.0: {} 4603 | 4604 | mimic-fn@2.1.0: {} 4605 | 4606 | mimic-response@3.1.0: {} 4607 | 4608 | mimic-response@4.0.0: {} 4609 | 4610 | minimatch@3.1.2: 4611 | dependencies: 4612 | brace-expansion: 1.1.11 4613 | 4614 | minimatch@5.1.6: 4615 | dependencies: 4616 | brace-expansion: 2.0.1 4617 | 4618 | minimatch@9.0.5: 4619 | dependencies: 4620 | brace-expansion: 2.0.1 4621 | 4622 | minimist@1.2.8: {} 4623 | 4624 | minipass@7.1.2: {} 4625 | 4626 | mkdirp-classic@0.5.3: {} 4627 | 4628 | mnemonic-id@3.2.7: {} 4629 | 4630 | ms@2.1.3: {} 4631 | 4632 | msgpackr-extract@3.0.3: 4633 | dependencies: 4634 | node-gyp-build-optional-packages: 5.2.2 4635 | optionalDependencies: 4636 | '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3 4637 | '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3 4638 | '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3 4639 | '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3 4640 | '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3 4641 | '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3 4642 | optional: true 4643 | 4644 | msgpackr@1.11.2: 4645 | optionalDependencies: 4646 | msgpackr-extract: 3.0.3 4647 | 4648 | mute-stream@0.0.8: {} 4649 | 4650 | mz@2.7.0: 4651 | dependencies: 4652 | any-promise: 1.3.0 4653 | object-assign: 4.1.1 4654 | thenify-all: 1.6.0 4655 | 4656 | nanoid@3.3.11: {} 4657 | 4658 | napi-build-utils@2.0.0: {} 4659 | 4660 | needle@3.3.1: 4661 | dependencies: 4662 | iconv-lite: 0.6.3 4663 | sax: 1.4.1 4664 | optional: true 4665 | 4666 | no-case@3.0.4: 4667 | dependencies: 4668 | lower-case: 2.0.2 4669 | tslib: 2.8.1 4670 | 4671 | node-abi@3.74.0: 4672 | dependencies: 4673 | semver: 7.3.8 4674 | 4675 | node-addon-api@3.2.1: {} 4676 | 4677 | node-addon-api@4.3.0: {} 4678 | 4679 | node-addon-api@5.1.0: {} 4680 | 4681 | node-addon-api@7.1.1: 4682 | optional: true 4683 | 4684 | node-fetch-native@1.6.6: {} 4685 | 4686 | node-gyp-build-optional-packages@5.0.3: {} 4687 | 4688 | node-gyp-build-optional-packages@5.2.2: 4689 | dependencies: 4690 | detect-libc: 2.0.3 4691 | optional: true 4692 | 4693 | node-gyp-build@4.8.4: {} 4694 | 4695 | node-object-hash@2.3.10: {} 4696 | 4697 | node-releases@2.0.19: {} 4698 | 4699 | normalize-path@3.0.0: {} 4700 | 4701 | normalize-url@8.0.1: {} 4702 | 4703 | npm-run-path@4.0.1: 4704 | dependencies: 4705 | path-key: 3.1.1 4706 | 4707 | nth-check@2.1.1: 4708 | dependencies: 4709 | boolbase: 1.0.0 4710 | 4711 | nullthrows@1.1.1: {} 4712 | 4713 | nypm@0.6.0: 4714 | dependencies: 4715 | citty: 0.1.6 4716 | consola: 3.4.2 4717 | pathe: 2.0.3 4718 | pkg-types: 2.1.0 4719 | tinyexec: 0.3.2 4720 | 4721 | object-assign@4.1.1: {} 4722 | 4723 | ohash@2.0.11: {} 4724 | 4725 | once@1.4.0: 4726 | dependencies: 4727 | wrappy: 1.0.2 4728 | 4729 | onetime@5.1.2: 4730 | dependencies: 4731 | mimic-fn: 2.1.0 4732 | 4733 | ora@6.3.1: 4734 | dependencies: 4735 | chalk: 5.2.0 4736 | cli-cursor: 4.0.0 4737 | cli-spinners: 2.9.2 4738 | is-interactive: 2.0.0 4739 | is-unicode-supported: 1.3.0 4740 | log-symbols: 5.1.0 4741 | stdin-discarder: 0.1.0 4742 | strip-ansi: 7.1.0 4743 | wcwidth: 1.0.1 4744 | 4745 | ordered-binary@1.5.3: {} 4746 | 4747 | os-tmpdir@1.0.2: {} 4748 | 4749 | p-cancelable@3.0.0: {} 4750 | 4751 | package-json-from-dist@1.0.1: {} 4752 | 4753 | package-json@8.1.0: 4754 | dependencies: 4755 | got: 12.5.3 4756 | registry-auth-token: 5.1.0 4757 | registry-url: 6.0.1 4758 | semver: 7.3.8 4759 | 4760 | package-manager-detector@1.3.0: {} 4761 | 4762 | param-case@3.0.4: 4763 | dependencies: 4764 | dot-case: 3.0.4 4765 | tslib: 2.8.1 4766 | 4767 | parent-module@1.0.1: 4768 | dependencies: 4769 | callsites: 3.1.0 4770 | 4771 | parse-json@5.2.0: 4772 | dependencies: 4773 | '@babel/code-frame': 7.26.2 4774 | error-ex: 1.3.2 4775 | json-parse-even-better-errors: 2.3.1 4776 | lines-and-columns: 1.2.4 4777 | 4778 | parse-node-version@1.0.1: {} 4779 | 4780 | pascal-case@3.1.2: 4781 | dependencies: 4782 | no-case: 3.0.4 4783 | tslib: 2.8.1 4784 | 4785 | path-case@3.0.4: 4786 | dependencies: 4787 | dot-case: 3.0.4 4788 | tslib: 2.8.1 4789 | 4790 | path-is-absolute@1.0.1: {} 4791 | 4792 | path-key@3.1.1: {} 4793 | 4794 | path-scurry@1.11.1: 4795 | dependencies: 4796 | lru-cache: 10.4.3 4797 | minipass: 7.1.2 4798 | 4799 | path-type@4.0.0: {} 4800 | 4801 | pathe@2.0.3: {} 4802 | 4803 | perfect-debounce@1.0.0: {} 4804 | 4805 | picocolors@1.1.1: {} 4806 | 4807 | picomatch@2.3.1: {} 4808 | 4809 | picomatch@4.0.2: {} 4810 | 4811 | pify@4.0.1: 4812 | optional: true 4813 | 4814 | pirates@4.0.7: {} 4815 | 4816 | pkg-types@2.1.0: 4817 | dependencies: 4818 | confbox: 0.2.2 4819 | exsolve: 1.0.5 4820 | pathe: 2.0.3 4821 | 4822 | plasmo@0.61.5(lodash@4.17.21)(postcss@8.5.3)(terser@5.39.0): 4823 | dependencies: 4824 | '@expo/spawn-async': 1.7.0 4825 | '@parcel/core': 2.8.2 4826 | '@parcel/fs': 2.8.2(@parcel/core@2.8.2) 4827 | '@parcel/package-manager': 2.8.2(@parcel/core@2.8.2) 4828 | '@parcel/watcher': 2.1.0 4829 | '@plasmohq/init': 0.5.3 4830 | '@plasmohq/parcel-config': 0.28.8(lodash@4.17.21)(postcss@8.5.3)(terser@5.39.0)(typescript@4.9.4) 4831 | archiver: 5.3.1 4832 | buffer: 6.0.3 4833 | chalk: 5.2.0 4834 | change-case: 4.1.2 4835 | dotenv: 16.0.3 4836 | dotenv-expand: 10.0.0 4837 | events: 3.3.0 4838 | fflate: 0.7.4 4839 | get-port: 6.1.2 4840 | got: 12.5.3 4841 | inquirer: 9.1.4 4842 | is-path-inside: 4.0.0 4843 | json5: 2.2.3 4844 | mnemonic-id: 3.2.7 4845 | node-object-hash: 2.3.10 4846 | package-json: 8.1.0 4847 | process: 0.11.10 4848 | semver: 7.3.8 4849 | sharp: 0.31.1 4850 | tempy: 3.0.0 4851 | tiny-glob: 0.2.9 4852 | typescript: 4.9.4 4853 | ws: 8.11.0 4854 | transitivePeerDependencies: 4855 | - '@swc/core' 4856 | - arc-templates 4857 | - atpl 4858 | - babel-core 4859 | - bracket-template 4860 | - bufferutil 4861 | - coffeescript 4862 | - cssnano 4863 | - dot 4864 | - eco 4865 | - ect 4866 | - ejs 4867 | - haml-coffee 4868 | - hamlet 4869 | - hamljs 4870 | - handlebars 4871 | - hogan.js 4872 | - htmling 4873 | - jazz 4874 | - jqtpl 4875 | - just 4876 | - liquid 4877 | - liquor 4878 | - lodash 4879 | - marko 4880 | - mote 4881 | - mustache 4882 | - nunjucks 4883 | - plates 4884 | - postcss 4885 | - pug 4886 | - purgecss 4887 | - qejs 4888 | - ractive 4889 | - razor-tmpl 4890 | - react 4891 | - react-dom 4892 | - relateurl 4893 | - slm 4894 | - squirrelly 4895 | - srcset 4896 | - supports-color 4897 | - teacup 4898 | - templayed 4899 | - terser 4900 | - then-pug 4901 | - tinyliquid 4902 | - toffee 4903 | - ts-node 4904 | - twig 4905 | - twing 4906 | - uncss 4907 | - underscore 4908 | - utf-8-validate 4909 | - vash 4910 | - velocityjs 4911 | - walrus 4912 | - whiskers 4913 | 4914 | postcss-load-config@3.1.4(postcss@8.5.3): 4915 | dependencies: 4916 | lilconfig: 2.1.0 4917 | yaml: 1.10.2 4918 | optionalDependencies: 4919 | postcss: 8.5.3 4920 | 4921 | postcss-value-parser@4.2.0: {} 4922 | 4923 | postcss@8.5.3: 4924 | dependencies: 4925 | nanoid: 3.3.11 4926 | picocolors: 1.1.1 4927 | source-map-js: 1.2.1 4928 | 4929 | posthtml-parser@0.10.2: 4930 | dependencies: 4931 | htmlparser2: 7.2.0 4932 | 4933 | posthtml-parser@0.11.0: 4934 | dependencies: 4935 | htmlparser2: 7.2.0 4936 | 4937 | posthtml-render@3.0.0: 4938 | dependencies: 4939 | is-json: 2.0.1 4940 | 4941 | posthtml@0.16.6: 4942 | dependencies: 4943 | posthtml-parser: 0.11.0 4944 | posthtml-render: 3.0.0 4945 | 4946 | prebuild-install@7.1.3: 4947 | dependencies: 4948 | detect-libc: 2.0.3 4949 | expand-template: 2.0.3 4950 | github-from-package: 0.0.0 4951 | minimist: 1.2.8 4952 | mkdirp-classic: 0.5.3 4953 | napi-build-utils: 2.0.0 4954 | node-abi: 3.74.0 4955 | pump: 3.0.2 4956 | rc: 1.2.8 4957 | simple-get: 4.0.1 4958 | tar-fs: 2.1.2 4959 | tunnel-agent: 0.6.0 4960 | 4961 | process-nextick-args@2.0.1: {} 4962 | 4963 | process@0.11.10: {} 4964 | 4965 | proto-list@1.2.4: {} 4966 | 4967 | prr@1.0.1: 4968 | optional: true 4969 | 4970 | pump@3.0.2: 4971 | dependencies: 4972 | end-of-stream: 1.4.4 4973 | once: 1.4.0 4974 | 4975 | punycode@2.3.1: {} 4976 | 4977 | queue-microtask@1.2.3: {} 4978 | 4979 | quick-lru@5.1.1: {} 4980 | 4981 | rc9@2.1.2: 4982 | dependencies: 4983 | defu: 6.1.4 4984 | destr: 2.0.3 4985 | 4986 | rc@1.2.8: 4987 | dependencies: 4988 | deep-extend: 0.6.0 4989 | ini: 1.3.8 4990 | minimist: 1.2.8 4991 | strip-json-comments: 2.0.1 4992 | 4993 | react-error-overlay@6.0.9: {} 4994 | 4995 | react-refresh@0.14.0: {} 4996 | 4997 | react-refresh@0.9.0: {} 4998 | 4999 | readable-stream@2.3.8: 5000 | dependencies: 5001 | core-util-is: 1.0.3 5002 | inherits: 2.0.4 5003 | isarray: 1.0.0 5004 | process-nextick-args: 2.0.1 5005 | safe-buffer: 5.1.2 5006 | string_decoder: 1.1.1 5007 | util-deprecate: 1.0.2 5008 | 5009 | readable-stream@3.6.2: 5010 | dependencies: 5011 | inherits: 2.0.4 5012 | string_decoder: 1.3.0 5013 | util-deprecate: 1.0.2 5014 | 5015 | readdir-glob@1.1.3: 5016 | dependencies: 5017 | minimatch: 5.1.6 5018 | 5019 | readdirp@3.6.0: 5020 | dependencies: 5021 | picomatch: 2.3.1 5022 | 5023 | readdirp@4.1.2: {} 5024 | 5025 | regenerator-runtime@0.13.11: {} 5026 | 5027 | regenerator-runtime@0.14.1: {} 5028 | 5029 | registry-auth-token@5.1.0: 5030 | dependencies: 5031 | '@pnpm/npm-conf': 2.3.1 5032 | 5033 | registry-url@6.0.1: 5034 | dependencies: 5035 | rc: 1.2.8 5036 | 5037 | resolve-alpn@1.2.1: {} 5038 | 5039 | resolve-from@4.0.0: {} 5040 | 5041 | resolve-from@5.0.0: {} 5042 | 5043 | responselike@3.0.0: 5044 | dependencies: 5045 | lowercase-keys: 3.0.0 5046 | 5047 | restore-cursor@4.0.0: 5048 | dependencies: 5049 | onetime: 5.1.2 5050 | signal-exit: 3.0.7 5051 | 5052 | reusify@1.1.0: {} 5053 | 5054 | rollup@3.29.5: 5055 | optionalDependencies: 5056 | fsevents: 2.3.3 5057 | 5058 | run-async@2.4.1: {} 5059 | 5060 | run-parallel@1.2.0: 5061 | dependencies: 5062 | queue-microtask: 1.2.3 5063 | 5064 | rxjs@7.8.2: 5065 | dependencies: 5066 | tslib: 2.8.1 5067 | 5068 | safe-buffer@5.1.2: {} 5069 | 5070 | safe-buffer@5.2.1: {} 5071 | 5072 | safer-buffer@2.1.2: {} 5073 | 5074 | sass@1.86.0: 5075 | dependencies: 5076 | chokidar: 4.0.3 5077 | immutable: 5.1.1 5078 | source-map-js: 1.2.1 5079 | optionalDependencies: 5080 | '@parcel/watcher': 2.5.1 5081 | 5082 | sax@1.4.1: 5083 | optional: true 5084 | 5085 | semver@5.7.2: {} 5086 | 5087 | semver@7.3.8: 5088 | dependencies: 5089 | lru-cache: 6.0.0 5090 | 5091 | semver@7.7.2: {} 5092 | 5093 | sentence-case@3.0.4: 5094 | dependencies: 5095 | no-case: 3.0.4 5096 | tslib: 2.8.1 5097 | upper-case-first: 2.0.2 5098 | 5099 | sharp@0.31.1: 5100 | dependencies: 5101 | color: 4.2.3 5102 | detect-libc: 2.0.3 5103 | node-addon-api: 5.1.0 5104 | prebuild-install: 7.1.3 5105 | semver: 7.3.8 5106 | simple-get: 4.0.1 5107 | tar-fs: 2.1.2 5108 | tunnel-agent: 0.6.0 5109 | 5110 | shebang-command@2.0.0: 5111 | dependencies: 5112 | shebang-regex: 3.0.0 5113 | 5114 | shebang-regex@3.0.0: {} 5115 | 5116 | signal-exit@3.0.7: {} 5117 | 5118 | signal-exit@4.1.0: {} 5119 | 5120 | simple-concat@1.0.1: {} 5121 | 5122 | simple-get@4.0.1: 5123 | dependencies: 5124 | decompress-response: 6.0.0 5125 | once: 1.4.0 5126 | simple-concat: 1.0.1 5127 | 5128 | simple-swizzle@0.2.2: 5129 | dependencies: 5130 | is-arrayish: 0.3.2 5131 | 5132 | slash@3.0.0: {} 5133 | 5134 | snake-case@3.0.4: 5135 | dependencies: 5136 | dot-case: 3.0.4 5137 | tslib: 2.8.1 5138 | 5139 | source-map-js@1.2.1: {} 5140 | 5141 | source-map-support@0.5.21: 5142 | dependencies: 5143 | buffer-from: 1.1.2 5144 | source-map: 0.6.1 5145 | 5146 | source-map@0.6.1: {} 5147 | 5148 | source-map@0.8.0-beta.0: 5149 | dependencies: 5150 | whatwg-url: 7.1.0 5151 | 5152 | sourcemap-codec@1.4.8: {} 5153 | 5154 | stable@0.1.8: {} 5155 | 5156 | stdin-discarder@0.1.0: 5157 | dependencies: 5158 | bl: 5.1.0 5159 | 5160 | string-width@4.2.3: 5161 | dependencies: 5162 | emoji-regex: 8.0.0 5163 | is-fullwidth-code-point: 3.0.0 5164 | strip-ansi: 6.0.1 5165 | 5166 | string-width@5.1.2: 5167 | dependencies: 5168 | eastasianwidth: 0.2.0 5169 | emoji-regex: 9.2.2 5170 | strip-ansi: 7.1.0 5171 | 5172 | string_decoder@1.1.1: 5173 | dependencies: 5174 | safe-buffer: 5.1.2 5175 | 5176 | string_decoder@1.3.0: 5177 | dependencies: 5178 | safe-buffer: 5.2.1 5179 | 5180 | strip-ansi@6.0.1: 5181 | dependencies: 5182 | ansi-regex: 5.0.1 5183 | 5184 | strip-ansi@7.1.0: 5185 | dependencies: 5186 | ansi-regex: 6.1.0 5187 | 5188 | strip-final-newline@2.0.0: {} 5189 | 5190 | strip-json-comments@2.0.1: {} 5191 | 5192 | sucrase@3.35.0: 5193 | dependencies: 5194 | '@jridgewell/gen-mapping': 0.3.8 5195 | commander: 4.1.1 5196 | glob: 10.4.5 5197 | lines-and-columns: 1.2.4 5198 | mz: 2.7.0 5199 | pirates: 4.0.7 5200 | ts-interface-checker: 0.1.13 5201 | 5202 | supports-color@7.2.0: 5203 | dependencies: 5204 | has-flag: 4.0.0 5205 | 5206 | svgo@2.8.0: 5207 | dependencies: 5208 | '@trysound/sax': 0.2.0 5209 | commander: 7.2.0 5210 | css-select: 4.3.0 5211 | css-tree: 1.1.3 5212 | csso: 4.2.0 5213 | picocolors: 1.1.1 5214 | stable: 0.1.8 5215 | 5216 | tar-fs@2.1.2: 5217 | dependencies: 5218 | chownr: 1.1.4 5219 | mkdirp-classic: 0.5.3 5220 | pump: 3.0.2 5221 | tar-stream: 2.2.0 5222 | 5223 | tar-stream@2.2.0: 5224 | dependencies: 5225 | bl: 4.1.0 5226 | end-of-stream: 1.4.4 5227 | fs-constants: 1.0.0 5228 | inherits: 2.0.4 5229 | readable-stream: 3.6.2 5230 | 5231 | temp-dir@2.0.0: {} 5232 | 5233 | tempy@3.0.0: 5234 | dependencies: 5235 | is-stream: 3.0.0 5236 | temp-dir: 2.0.0 5237 | type-fest: 2.19.0 5238 | unique-string: 3.0.0 5239 | 5240 | terser@5.16.1: 5241 | dependencies: 5242 | '@jridgewell/source-map': 0.3.6 5243 | acorn: 8.14.1 5244 | commander: 2.20.3 5245 | source-map-support: 0.5.21 5246 | 5247 | terser@5.39.0: 5248 | dependencies: 5249 | '@jridgewell/source-map': 0.3.6 5250 | acorn: 8.14.1 5251 | commander: 2.20.3 5252 | source-map-support: 0.5.21 5253 | 5254 | thenify-all@1.6.0: 5255 | dependencies: 5256 | thenify: 3.3.1 5257 | 5258 | thenify@3.3.1: 5259 | dependencies: 5260 | any-promise: 1.3.0 5261 | 5262 | through@2.3.8: {} 5263 | 5264 | timsort@0.3.0: {} 5265 | 5266 | tiny-glob@0.2.9: 5267 | dependencies: 5268 | globalyzer: 0.1.0 5269 | globrex: 0.1.2 5270 | 5271 | tinyexec@0.3.2: {} 5272 | 5273 | tinyexec@1.0.1: {} 5274 | 5275 | tinyglobby@0.2.13: 5276 | dependencies: 5277 | fdir: 6.4.4(picomatch@4.0.2) 5278 | picomatch: 4.0.2 5279 | 5280 | tmp@0.0.33: 5281 | dependencies: 5282 | os-tmpdir: 1.0.2 5283 | 5284 | to-regex-range@5.0.1: 5285 | dependencies: 5286 | is-number: 7.0.0 5287 | 5288 | tr46@1.0.1: 5289 | dependencies: 5290 | punycode: 2.3.1 5291 | 5292 | tree-kill@1.2.2: {} 5293 | 5294 | ts-algebra@1.2.2: {} 5295 | 5296 | ts-interface-checker@0.1.13: {} 5297 | 5298 | ts-toolbelt@9.6.0: {} 5299 | 5300 | tslib@2.8.1: {} 5301 | 5302 | tsup@6.5.0(postcss@8.5.3)(typescript@4.9.4): 5303 | dependencies: 5304 | bundle-require: 3.1.2(esbuild@0.15.18) 5305 | cac: 6.7.14 5306 | chokidar: 3.6.0 5307 | debug: 4.4.0 5308 | esbuild: 0.15.18 5309 | execa: 5.1.1 5310 | globby: 11.1.0 5311 | joycon: 3.1.1 5312 | postcss-load-config: 3.1.4(postcss@8.5.3) 5313 | resolve-from: 5.0.0 5314 | rollup: 3.29.5 5315 | source-map: 0.8.0-beta.0 5316 | sucrase: 3.35.0 5317 | tree-kill: 1.2.2 5318 | optionalDependencies: 5319 | postcss: 8.5.3 5320 | typescript: 4.9.4 5321 | transitivePeerDependencies: 5322 | - supports-color 5323 | - ts-node 5324 | 5325 | tunnel-agent@0.6.0: 5326 | dependencies: 5327 | safe-buffer: 5.2.1 5328 | 5329 | type-fest@0.20.2: {} 5330 | 5331 | type-fest@1.4.0: {} 5332 | 5333 | type-fest@2.19.0: {} 5334 | 5335 | typescript@4.9.4: {} 5336 | 5337 | unique-string@3.0.0: 5338 | dependencies: 5339 | crypto-random-string: 4.0.0 5340 | 5341 | update-browserslist-db@1.1.3(browserslist@4.24.4): 5342 | dependencies: 5343 | browserslist: 4.24.4 5344 | escalade: 3.2.0 5345 | picocolors: 1.1.1 5346 | 5347 | upper-case-first@2.0.2: 5348 | dependencies: 5349 | tslib: 2.8.1 5350 | 5351 | upper-case@2.0.2: 5352 | dependencies: 5353 | tslib: 2.8.1 5354 | 5355 | util-deprecate@1.0.2: {} 5356 | 5357 | utility-types@3.11.0: {} 5358 | 5359 | wcwidth@1.0.1: 5360 | dependencies: 5361 | defaults: 1.0.4 5362 | 5363 | weak-lru-cache@1.2.2: {} 5364 | 5365 | webidl-conversions@4.0.2: {} 5366 | 5367 | whatwg-url@7.1.0: 5368 | dependencies: 5369 | lodash.sortby: 4.7.0 5370 | tr46: 1.0.1 5371 | webidl-conversions: 4.0.2 5372 | 5373 | which@2.0.2: 5374 | dependencies: 5375 | isexe: 2.0.0 5376 | 5377 | wrap-ansi@7.0.0: 5378 | dependencies: 5379 | ansi-styles: 4.3.0 5380 | string-width: 4.2.3 5381 | strip-ansi: 6.0.1 5382 | 5383 | wrap-ansi@8.1.0: 5384 | dependencies: 5385 | ansi-styles: 6.2.1 5386 | string-width: 5.1.2 5387 | strip-ansi: 7.1.0 5388 | 5389 | wrappy@1.0.2: {} 5390 | 5391 | ws@8.11.0: {} 5392 | 5393 | xxhash-wasm@0.4.2: {} 5394 | 5395 | yallist@4.0.0: {} 5396 | 5397 | yaml@1.10.2: {} 5398 | 5399 | yaml@2.8.0: {} 5400 | 5401 | zip-stream@4.1.1: 5402 | dependencies: 5403 | archiver-utils: 3.0.4 5404 | compress-commons: 4.1.2 5405 | readable-stream: 3.6.2 5406 | --------------------------------------------------------------------------------