├── .editorconfig ├── .vscode └── settings.json ├── src ├── types.ts ├── index.ts ├── import-maps.ts ├── preload-helper.ts └── bare-modules.ts ├── tsconfig.json ├── .github └── workflows │ └── release.yaml ├── LICENSE ├── package.json ├── .gitignore ├── README.md └── pnpm-lock.yaml /.editorconfig: -------------------------------------------------------------------------------- 1 | root=true 2 | 3 | [*] 4 | indent_style=space 5 | indent_size=2 6 | end_of_line=lf 7 | charset=utf-8 8 | trim_trailing_whitespace=true 9 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "json.schemas": [ 3 | { 4 | "url": "https://cdn.jsdelivr.net/npm/tsup/schema.json", 5 | "fileMatch": ["package.json", "tsup.config.json"] 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | export interface BareModules { 2 | defaultGroup: string 3 | groups: Record> 4 | } 5 | 6 | export interface PluginOptions { 7 | snippetFile: string 8 | themeRoot: string 9 | bareModules: boolean | BareModules 10 | modulePreload: boolean 11 | } 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "module": "esnext", 5 | "lib": [ 6 | "esnext", 7 | "DOM" 8 | ], 9 | "types": [ 10 | "node" 11 | ], 12 | "moduleResolution": "node", 13 | "esModuleInterop": true, 14 | "strict": true, 15 | "strictNullChecks": true, 16 | "resolveJsonModule": true, 17 | "skipLibCheck": true, 18 | "skipDefaultLibCheck": true 19 | }, 20 | "exclude": [ 21 | "node_modules", 22 | "dist" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | permissions: 4 | contents: write 5 | 6 | on: 7 | push: 8 | tags: 9 | - 'v*' 10 | 11 | jobs: 12 | release: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v3 16 | with: 17 | fetch-depth: 0 18 | 19 | - name: Install pnpm 20 | uses: pnpm/action-setup@v2 21 | 22 | - name: Set node 23 | uses: actions/setup-node@v3 24 | with: 25 | node-version: 18.x 26 | 27 | - run: pnpm dlx changelogithub 28 | env: 29 | GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Slava Maksimov 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 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import type { Plugin } from 'vite' 2 | import type { BareModules, PluginOptions } from './types' 3 | import preloadHelper from './preload-helper' 4 | import importMaps from './import-maps' 5 | import bareModules from './bare-modules' 6 | 7 | /** 8 | * The Vite plugin enhances Shopify themes by adding support for import maps, 9 | * which can be used to control the resolution of module specifiers. 10 | * @see {@link https://github.com/slavamak/vite-plugin-shopify-import-maps GitHub} 11 | */ 12 | const vitePluginShopifyImportMaps = (userOptions?: Partial): Plugin[] => { 13 | const { 14 | snippetFile = 'importmap.liquid', 15 | themeRoot = './', 16 | modulePreload = false, 17 | bareModules: bareModulesOption = false 18 | } = userOptions ?? {} 19 | 20 | const plugins = [ 21 | preloadHelper(), 22 | importMaps({ snippetFile, themeRoot, modulePreload, bareModules: bareModulesOption }) 23 | ] 24 | 25 | if (bareModulesOption !== false) { 26 | plugins.push(bareModules({ 27 | snippetFile, 28 | themeRoot, 29 | modulePreload, 30 | bareModules: { ...{ defaultGroup: 'main', groups: {} }, ...(bareModulesOption as BareModules) } 31 | })) 32 | } 33 | 34 | return plugins 35 | } 36 | 37 | export default vitePluginShopifyImportMaps 38 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vite-plugin-shopify-import-maps", 3 | "version": "0.5.4", 4 | "description": "Enhances Shopify theme development by adding support for import-maps", 5 | "license": "MIT", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/slavamak/vite-plugin-shopify-import-maps.git" 9 | }, 10 | "bugs": { 11 | "url": "https://github.com/slavamak/vite-plugin-shopify-import-maps/issues" 12 | }, 13 | "homepage": "https://github.com/slavamak/vite-plugin-shopify-import-maps#readme", 14 | "author": "Slava Maksimov ", 15 | "keywords": [ 16 | "vite", 17 | "plugin", 18 | "shopify", 19 | "import-maps", 20 | "shopify-import-maps" 21 | ], 22 | "type": "module", 23 | "main": "./dist/index.js", 24 | "exports": { 25 | ".": { 26 | "default": "./dist/index.js", 27 | "types": "./dist/index.d.ts" 28 | } 29 | }, 30 | "files": [ 31 | "dist" 32 | ], 33 | "scripts": { 34 | "build": "tsup", 35 | "dev": "tsup --watch", 36 | "lint": "eslint --ext .ts .", 37 | "prepublish": "tsup", 38 | "release": "bumpp && pnpm publish" 39 | }, 40 | "eslintConfig": { 41 | "root": true, 42 | "env": { 43 | "node": true 44 | }, 45 | "extends": [ 46 | "standard-with-typescript" 47 | ], 48 | "parserOptions": { 49 | "ecmaVersion": "latest", 50 | "sourceType": "module", 51 | "project": "./tsconfig.json" 52 | }, 53 | "ignorePatterns": [ 54 | "dist" 55 | ] 56 | }, 57 | "packageManager": "pnpm@9.0.1", 58 | "tsup": { 59 | "entry": [ 60 | "./src/index.ts" 61 | ], 62 | "format": "esm", 63 | "dts": true, 64 | "clean": true 65 | }, 66 | "types": "./dist/index.d.ts", 67 | "devDependencies": { 68 | "@types/node": "^20.5.9", 69 | "bumpp": "^9.2.0", 70 | "es-module-lexer": "^1.3.1", 71 | "eslint": "^8.48.0", 72 | "eslint-config-standard-with-typescript": "^39.0.0", 73 | "magic-string": "^0.30.5", 74 | "tsup": "^7.2.0", 75 | "typescript": "^5.2.2", 76 | "vite": "^5.0.10" 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /src/import-maps.ts: -------------------------------------------------------------------------------- 1 | import type { Plugin, ResolvedConfig } from 'vite' 2 | import type { PluginOptions } from './types' 3 | import path from 'node:path' 4 | import fs from 'node:fs/promises' 5 | 6 | /** 7 | * Generates an import map file from a Vite bundle. 8 | */ 9 | export default function importMaps (options: PluginOptions): Plugin { 10 | const outDir = path.resolve(options.themeRoot, 'snippets') 11 | const importMapFile = path.join(outDir, options.snippetFile) 12 | 13 | let config: ResolvedConfig 14 | let moduleSpecifierMap: Map 15 | 16 | return { 17 | name: 'vite-plugin-shopify-import-maps:import-maps', 18 | enforce: 'post', 19 | configResolved (resolvedConfig) { 20 | config = resolvedConfig 21 | }, 22 | async buildStart () { 23 | if (options.bareModules !== false) { 24 | const bareModulesPlugin = config.plugins.find((plugin) => plugin.name.includes('bare-modules')) 25 | if (bareModulesPlugin !== undefined) { 26 | moduleSpecifierMap = bareModulesPlugin.api.moduleSpecifierMap 27 | } 28 | } 29 | 30 | if (config.command === 'serve') { 31 | await fs.writeFile( 32 | importMapFile, 33 | '' 34 | ) 35 | } 36 | }, 37 | async writeBundle (_, bundle) { 38 | const importMap = new Map() 39 | const modulePreloadTags: string[] = [] 40 | 41 | const chunks = Object.entries(bundle) 42 | .filter(([_, chunk]) => chunk.type === 'chunk') 43 | .map(([fileName]) => { 44 | const specifier = moduleSpecifierMap?.get(fileName) 45 | const specifierKey = options.bareModules === false || specifier === undefined 46 | ? config.base + fileName 47 | : specifier 48 | 49 | return [fileName, specifierKey] 50 | }) 51 | 52 | const sortedChunks = chunks.sort((a, b) => a[1].localeCompare(b[1])) 53 | 54 | await Promise.allSettled( 55 | sortedChunks.map(async ([fileName, specifierKey]) => { 56 | importMap.set(specifierKey, `{{ '${fileName}' | asset_url }}`) 57 | 58 | if (options.bareModules === false) { 59 | importMap.set(`{{ '${fileName}' | asset_url | split: '?' | first }}`, `{{ '${fileName}' | asset_url }}`) 60 | } 61 | 62 | if (options.modulePreload) { 63 | modulePreloadTags.push(``) 64 | } 65 | }) 66 | ) 67 | 68 | const json = JSON.stringify({ imports: Object.fromEntries(importMap) }, null, 2) 69 | const scriptTag = `` 70 | const fileContents = options.modulePreload ? scriptTag + '\n\n' + modulePreloadTags.join('\n') : scriptTag 71 | 72 | await fs.writeFile( 73 | importMapFile, 74 | fileContents, 75 | { encoding: 'utf8' } 76 | ) 77 | 78 | console.info(`[import-maps]: Successfully wrote to ${importMapFile}`) 79 | } 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /src/preload-helper.ts: -------------------------------------------------------------------------------- 1 | import type { Plugin } from 'vite' 2 | 3 | const preloadMethod = '__vitePreload' 4 | const preloadHelperId = '\0vite/preload-helper' 5 | 6 | /** 7 | * Customizes the Vite preload helper to work with import-maps. 8 | * @see {@link https://github.com/vitejs/vite/blob/main/packages/vite/src/node/plugins/importAnalysisBuild.ts Source code} 9 | */ 10 | export default function preloadHelper (): Plugin { 11 | const preloadCode = ` 12 | const assetsURL = ${assetsURL.toString()} 13 | const seen = {} 14 | export const ${preloadMethod} = ${preload.toString()} 15 | ` 16 | 17 | return { 18 | name: 'vite-plugin-shopify-import-maps:preload-helper', 19 | apply: 'build', 20 | enforce: 'post', 21 | resolveId (id) { 22 | if (id === preloadHelperId) { 23 | return id 24 | } 25 | }, 26 | load (id) { 27 | if (id === preloadHelperId) { 28 | return preloadCode 29 | } 30 | } 31 | } 32 | } 33 | 34 | const assetsURL = function (dep: string, importerUrl?: string): string { 35 | // @ts-expect-error import.meta.resolve return a string 36 | return import.meta.resolve(dep, importerUrl) 37 | } 38 | 39 | declare const seen: Record 40 | 41 | function preload (baseModule: () => Promise, deps: string[], importerUrl?: string): Promise | undefined { 42 | if (deps === undefined || deps.length === 0) { 43 | return baseModule() 44 | } 45 | 46 | const links = document.getElementsByTagName('link') 47 | 48 | return Promise.all( 49 | deps.map(async (dep) => { 50 | const depUrl = assetsURL(dep, importerUrl) 51 | 52 | if (dep in seen) { 53 | return dep 54 | } 55 | 56 | seen[dep] = true 57 | 58 | const isCss = dep.endsWith('.css') 59 | const cssSelector = isCss ? '[rel="stylesheet"]' : '' 60 | const isBaseRelative = !(importerUrl === null) 61 | 62 | if (isBaseRelative) { 63 | for (let i = links.length - 1; i >= 0; i--) { 64 | const link = links[i] 65 | 66 | if (link.href === dep && (!isCss || link.rel === 'stylesheet')) { 67 | return dep 68 | } 69 | } 70 | } else if (document.querySelector(`link[href="${dep}"]${cssSelector}`) !== null) { 71 | return dep 72 | } 73 | 74 | const link = document.createElement('link') 75 | link.rel = isCss ? 'stylesheet' : 'modulepreload' 76 | 77 | if (!isCss) { 78 | link.as = 'script' 79 | link.crossOrigin = '' 80 | } 81 | 82 | link.href = depUrl 83 | 84 | document.head.appendChild(link) 85 | 86 | if (isCss) { 87 | return await new Promise((resolve, reject) => { 88 | link.addEventListener('load', resolve) 89 | link.addEventListener('error', () => { reject(new Error(`Unable to preload CSS for ${dep}`)) } 90 | ) 91 | }) 92 | } 93 | 94 | return dep 95 | }) 96 | ) 97 | .then(async () => await baseModule()) 98 | .catch((err) => { 99 | const e = new Event('vite:preloadError', { cancelable: true }) 100 | // @ts-expect-error custom payload 101 | e.payload = err 102 | window.dispatchEvent(e) 103 | if (!e.defaultPrevented) { 104 | throw err 105 | } 106 | }) 107 | } 108 | -------------------------------------------------------------------------------- /src/bare-modules.ts: -------------------------------------------------------------------------------- 1 | import type { Plugin, Rollup } from 'vite' 2 | import type { BareModules, PluginOptions } from './types' 3 | import path from 'node:path' 4 | import { parse } from 'es-module-lexer' 5 | import MagicString from 'magic-string' 6 | 7 | /** 8 | * Use bare specifier in import module statements defined in bareModules option groups. 9 | */ 10 | export default function bareModules (options: PluginOptions): Plugin { 11 | const moduleSpecifierMap = new Map() 12 | 13 | return { 14 | name: 'vite-plugin-shopify-import-maps:bare-modules', 15 | api: { 16 | get moduleSpecifierMap () { 17 | return moduleSpecifierMap 18 | } 19 | }, 20 | renderChunk (_, chunk) { 21 | const bareModules = options.bareModules as BareModules 22 | const groups = bareModules.groups 23 | const moduleId = chunk.facadeModuleId ?? chunk.moduleIds.at(-1) 24 | 25 | let specifierKey: string | undefined 26 | 27 | if (moduleId !== undefined) { 28 | for (const group in groups) { 29 | const value = groups[group] 30 | 31 | if (typeof specifierKey === 'string') { 32 | continue 33 | } 34 | 35 | if (Array.isArray(value)) { 36 | const arrayTestPassed = value.some((element) => { 37 | return ( 38 | (element instanceof RegExp && element.test(moduleId)) || 39 | (typeof element === 'string' && moduleId.includes(element)) 40 | ) 41 | }) 42 | 43 | if (arrayTestPassed) { 44 | specifierKey = buildSpecifierKey(chunk.name, group) 45 | break 46 | } 47 | } else { 48 | const regexpTestPassed = value instanceof RegExp && value.test(moduleId) 49 | const stringTestPassed = typeof value === 'string' && moduleId.includes(value) 50 | 51 | if (regexpTestPassed || stringTestPassed) { 52 | specifierKey = buildSpecifierKey(chunk.name, group) 53 | break 54 | } 55 | } 56 | } 57 | } 58 | 59 | if (specifierKey === undefined) { 60 | specifierKey = buildSpecifierKey(chunk.name, bareModules.defaultGroup) 61 | } 62 | 63 | moduleSpecifierMap.set(chunk.fileName, specifierKey) 64 | }, 65 | generateBundle (options, bundle) { 66 | Object.keys(bundle).forEach((fileName) => { 67 | const chunk = bundle[fileName] 68 | 69 | if (chunk.type === 'chunk') { 70 | const code = new MagicString(chunk.code) 71 | const [imports] = parse(chunk.code) 72 | 73 | for (let { s, e, d, n } of imports) { 74 | const name = path.parse(n ?? '').base 75 | const specifier = moduleSpecifierMap.get(name) 76 | 77 | if (specifier !== undefined) { 78 | // Keep quotes for dynamic import. 79 | // https://github.com/guybedford/es-module-lexer/issues/144 80 | if (d > -1) { 81 | s += 1 82 | e -= 1 83 | } 84 | 85 | code.overwrite(s, e, specifier) 86 | } 87 | } 88 | 89 | if (code.hasChanged()) { 90 | chunk.code = code.toString() 91 | 92 | if (options.sourcemap !== false) { 93 | chunk.map = code.generateMap({ hires: true }) as Rollup.SourceMap 94 | } 95 | } 96 | } 97 | }) 98 | } 99 | } 100 | } 101 | 102 | function buildSpecifierKey (name: string, group: string): string { 103 | return group + '/' + name 104 | } 105 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/node,macos,linux 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,linux 3 | 4 | ### Linux ### 5 | *~ 6 | 7 | # temporary files which can be created if a process still has a handle open of a deleted file 8 | .fuse_hidden* 9 | 10 | # KDE directory preferences 11 | .directory 12 | 13 | # Linux trash folder which might appear on any partition or disk 14 | .Trash-* 15 | 16 | # .nfs files are created when an open file is removed but is still being accessed 17 | .nfs* 18 | 19 | ### macOS ### 20 | # General 21 | .DS_Store 22 | .AppleDouble 23 | .LSOverride 24 | 25 | # Icon must end with two \r 26 | Icon 27 | 28 | 29 | # Thumbnails 30 | ._* 31 | 32 | # Files that might appear in the root of a volume 33 | .DocumentRevisions-V100 34 | .fseventsd 35 | .Spotlight-V100 36 | .TemporaryItems 37 | .Trashes 38 | .VolumeIcon.icns 39 | .com.apple.timemachine.donotpresent 40 | 41 | # Directories potentially created on remote AFP share 42 | .AppleDB 43 | .AppleDesktop 44 | Network Trash Folder 45 | Temporary Items 46 | .apdisk 47 | 48 | ### macOS Patch ### 49 | # iCloud generated files 50 | *.icloud 51 | 52 | ### Node ### 53 | # Logs 54 | logs 55 | *.log 56 | npm-debug.log* 57 | yarn-debug.log* 58 | yarn-error.log* 59 | lerna-debug.log* 60 | .pnpm-debug.log* 61 | 62 | # Diagnostic reports (https://nodejs.org/api/report.html) 63 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 64 | 65 | # Runtime data 66 | pids 67 | *.pid 68 | *.seed 69 | *.pid.lock 70 | 71 | # Directory for instrumented libs generated by jscoverage/JSCover 72 | lib-cov 73 | 74 | # Coverage directory used by tools like istanbul 75 | coverage 76 | *.lcov 77 | 78 | # nyc test coverage 79 | .nyc_output 80 | 81 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 82 | .grunt 83 | 84 | # Bower dependency directory (https://bower.io/) 85 | bower_components 86 | 87 | # node-waf configuration 88 | .lock-wscript 89 | 90 | # Compiled binary addons (https://nodejs.org/api/addons.html) 91 | build/Release 92 | 93 | # Dependency directories 94 | node_modules/ 95 | jspm_packages/ 96 | 97 | # Snowpack dependency directory (https://snowpack.dev/) 98 | web_modules/ 99 | 100 | # TypeScript cache 101 | *.tsbuildinfo 102 | 103 | # Optional npm cache directory 104 | .npm 105 | 106 | # Optional eslint cache 107 | .eslintcache 108 | 109 | # Optional stylelint cache 110 | .stylelintcache 111 | 112 | # Microbundle cache 113 | .rpt2_cache/ 114 | .rts2_cache_cjs/ 115 | .rts2_cache_es/ 116 | .rts2_cache_umd/ 117 | 118 | # Optional REPL history 119 | .node_repl_history 120 | 121 | # Output of 'npm pack' 122 | *.tgz 123 | 124 | # Yarn Integrity file 125 | .yarn-integrity 126 | 127 | # dotenv environment variable files 128 | .env 129 | .env.development.local 130 | .env.test.local 131 | .env.production.local 132 | .env.local 133 | 134 | # parcel-bundler cache (https://parceljs.org/) 135 | .cache 136 | .parcel-cache 137 | 138 | # Next.js build output 139 | .next 140 | out 141 | 142 | # Nuxt.js build / generate output 143 | .nuxt 144 | dist 145 | 146 | # Gatsby files 147 | .cache/ 148 | # Comment in the public line in if your project uses Gatsby and not Next.js 149 | # https://nextjs.org/blog/next-9-1#public-directory-support 150 | # public 151 | 152 | # vuepress build output 153 | .vuepress/dist 154 | 155 | # vuepress v2.x temp and cache directory 156 | .temp 157 | 158 | # Docusaurus cache and generated files 159 | .docusaurus 160 | 161 | # Serverless directories 162 | .serverless/ 163 | 164 | # FuseBox cache 165 | .fusebox/ 166 | 167 | # DynamoDB Local files 168 | .dynamodb/ 169 | 170 | # TernJS port file 171 | .tern-port 172 | 173 | # Stores VSCode versions used for testing VSCode extensions 174 | .vscode-test 175 | 176 | # yarn v2 177 | .yarn/cache 178 | .yarn/unplugged 179 | .yarn/build-state.yml 180 | .yarn/install-state.gz 181 | .pnp.* 182 | 183 | ### Node Patch ### 184 | # Serverless Webpack directories 185 | .webpack/ 186 | 187 | # Optional stylelint cache 188 | 189 | # SvelteKit build / generate output 190 | .svelte-kit 191 | 192 | # End of https://www.toptal.com/developers/gitignore/api/node,macos,linux -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![npm](https://img.shields.io/npm/v/vite-plugin-shopify-import-maps?color=brightgreen)](https://www.npmjs.com/package/vite-plugin-shopify-import-maps) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://standardjs.com) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) 2 | 3 | # vite-plugin-shopify-import-maps 4 | 5 | The `vite-plugin-shopify-import-maps` enhances Shopify theme development by adding support for [import-maps](https://github.com/WICG/import-maps) which can be used to control the resolution of module specifiers. 6 | 7 | ## Requirements 8 | 9 | Before using this plugin, make sure you have the [vite-plugin-shopify](https://github.com/barrel/shopify-vite/tree/main/packages/vite-plugin-shopify) installed. This plugin provides the necessary underlying setup for developing Shopify themes with Vite. 10 | 11 | ## Install 12 | 13 | ```bash 14 | npm i -D vite-plugin-shopify-import-maps 15 | 16 | # yarn 17 | yarn add -D vite-plugin-shopify-import-maps 18 | 19 | # pnpm 20 | pnpm add -D vite-plugin-shopify-import-maps 21 | ``` 22 | 23 | ## Usage 24 | 25 | 1. Add [ES Module Shims](https://github.com/guybedford/es-module-shims#usage) to the `` tag in your `theme.liquid` file. 26 | 27 | 2. Render the `importmap` snippet file **before** performing any imports: 28 | 29 | ```liquid 30 | 31 | 32 | {% liquid 33 | render 'importmap' 34 | render 'vite-tag' with 'theme.js' 35 | render 'vite-tag' with 'customers.js' 36 | %} 37 | ``` 38 | 39 | 3. Add the `vite-plugin-shopify-import-maps` to your `vite.config.js` file: 40 | 41 | ```js 42 | import { defineConfig } from 'vite' 43 | import shopify from 'vite-plugin-shopify' 44 | import importMaps from 'vite-plugin-shopify-import-maps' 45 | 46 | // Recommended configuration 47 | export default defineConfig({ 48 | build: { 49 | rollupOptions: { 50 | output: { 51 | entryFileNames: '[name].js', 52 | chunkFileNames: '[name].js', 53 | assetFileNames: '[name].[ext]' 54 | } 55 | } 56 | }, 57 | plugins: [ 58 | shopify({ versionNumbers: true }), 59 | importMaps({ bareModules: true }) 60 | ] 61 | }) 62 | ``` 63 | 64 | After executing the build command, the `importmap.liquid` file will be generated in the `snippets` folder in your theme root directory. 65 | 66 | ## Options 67 | 68 | ### themeRoot 69 | 70 | - **Type:** `string` 71 | - **Default:** `'./'` 72 | 73 | Root path to your Shopify theme directory. 74 | 75 | ### snippetFile 76 | 77 | - **Type:** `string` 78 | - **Default:** `'importmap.liquid'` 79 | 80 | Specifies the file name of the snippet that include import map. 81 | 82 | ### bareModules 83 | 84 | - **Type:** `boolean | BareModules` 85 | - **Default:** `false` 86 | 87 | ```ts 88 | export interface BareModules { 89 | defaultGroup: string 90 | groups: Record> 91 | } 92 | ``` 93 | 94 | Configure bare specifier remapping for JavaScript modules. 95 | 96 | Example: 97 | 98 | ```ts 99 | export default defineConfig({ 100 | plugins: [ 101 | importMap({ 102 | bareModules: { 103 | defaultGroup: 'main', // By default is 'main' 104 | groups: { 105 | helpers: /frontend\/lib/, // RegExp pattern 106 | vendors: 'node_modules', // String 107 | general: ['frontend/entrypoints', /vite/] // Array of string or RegExp pattern 108 | } 109 | } 110 | }) 111 | ] 112 | }) 113 | ``` 114 | 115 | This generates the `importmap.liquid` file: 116 | 117 | ```liquid 118 | 134 | ``` 135 | 136 | ### modulePreload 137 | 138 | - **Type:** `boolean` 139 | - **Default:** `false` 140 | 141 | This option when set to `true`, generates `modulepreload` link tags below the import map script tag. 142 | 143 | ```liquid 144 | 145 | 146 | ``` 147 | 148 | ## Troubleshooting 149 | 150 | If you have any problems or have suggestions, welcome to [issues](https://github.com/slavamak/vite-plugin-shopify-import-maps/issues). 151 | 152 | ### Importing asset files (e.g. fonts, images) does not use the version parameter from Shopify CDN 153 | 154 | This is not the scope of import map, as it is are designed to manage javascript modules. But you can load assets from Liquid files using the `asset_url` filter and consume them via CSS variables: 155 | 156 | ```liquid 157 | {% #theme.liquid %} 158 | 159 | {% style %} 160 | @font-face { 161 | font-family: 'Anton'; 162 | src: url("{{ 'anton-v23-latin-regular.woff2' | asset_url }}") format('woff2'); 163 | font-display: swap; 164 | } 165 | 166 | :root { 167 | --font-heading-family: 'Anton', sans-serif; 168 | --background-image: url('{{ 'background-image.svg' | asset_url }}'); 169 | } 170 | {% endstyle %} 171 | ``` 172 | 173 | ```css 174 | /* styles.css */ 175 | 176 | h1, 177 | h2, 178 | h3 { 179 | font-family: var(--font-heading-family); 180 | } 181 | 182 | body { 183 | background-image: var(--background-image); 184 | } 185 | ``` 186 | 187 | ## Acknowledges 188 | 189 | - [vite-plugin-shopify](https://github.com/barrel/shopify-vite) - Shopify theme development using Vite 190 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@types/node': 12 | specifier: ^20.5.9 13 | version: 20.5.9 14 | bumpp: 15 | specifier: ^9.2.0 16 | version: 9.2.0 17 | es-module-lexer: 18 | specifier: ^1.3.1 19 | version: 1.3.1 20 | eslint: 21 | specifier: ^8.48.0 22 | version: 8.48.0 23 | eslint-config-standard-with-typescript: 24 | specifier: ^39.0.0 25 | version: 39.0.0(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0))(eslint-plugin-n@16.0.2(eslint@8.48.0))(eslint-plugin-promise@6.1.1(eslint@8.48.0))(eslint@8.48.0)(typescript@5.2.2) 26 | magic-string: 27 | specifier: ^0.30.5 28 | version: 0.30.5 29 | tsup: 30 | specifier: ^7.2.0 31 | version: 7.2.0(postcss@8.5.3)(typescript@5.2.2) 32 | typescript: 33 | specifier: ^5.2.2 34 | version: 5.2.2 35 | vite: 36 | specifier: ^5.0.10 37 | version: 5.4.18(@types/node@20.5.9) 38 | 39 | packages: 40 | 41 | '@aashutoshrathi/word-wrap@1.2.6': 42 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 43 | engines: {node: '>=0.10.0'} 44 | 45 | '@esbuild/aix-ppc64@0.21.5': 46 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 47 | engines: {node: '>=12'} 48 | cpu: [ppc64] 49 | os: [aix] 50 | 51 | '@esbuild/android-arm64@0.18.20': 52 | resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} 53 | engines: {node: '>=12'} 54 | cpu: [arm64] 55 | os: [android] 56 | 57 | '@esbuild/android-arm64@0.21.5': 58 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 59 | engines: {node: '>=12'} 60 | cpu: [arm64] 61 | os: [android] 62 | 63 | '@esbuild/android-arm@0.18.20': 64 | resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} 65 | engines: {node: '>=12'} 66 | cpu: [arm] 67 | os: [android] 68 | 69 | '@esbuild/android-arm@0.21.5': 70 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 71 | engines: {node: '>=12'} 72 | cpu: [arm] 73 | os: [android] 74 | 75 | '@esbuild/android-x64@0.18.20': 76 | resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} 77 | engines: {node: '>=12'} 78 | cpu: [x64] 79 | os: [android] 80 | 81 | '@esbuild/android-x64@0.21.5': 82 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 83 | engines: {node: '>=12'} 84 | cpu: [x64] 85 | os: [android] 86 | 87 | '@esbuild/darwin-arm64@0.18.20': 88 | resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} 89 | engines: {node: '>=12'} 90 | cpu: [arm64] 91 | os: [darwin] 92 | 93 | '@esbuild/darwin-arm64@0.21.5': 94 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 95 | engines: {node: '>=12'} 96 | cpu: [arm64] 97 | os: [darwin] 98 | 99 | '@esbuild/darwin-x64@0.18.20': 100 | resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} 101 | engines: {node: '>=12'} 102 | cpu: [x64] 103 | os: [darwin] 104 | 105 | '@esbuild/darwin-x64@0.21.5': 106 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 107 | engines: {node: '>=12'} 108 | cpu: [x64] 109 | os: [darwin] 110 | 111 | '@esbuild/freebsd-arm64@0.18.20': 112 | resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} 113 | engines: {node: '>=12'} 114 | cpu: [arm64] 115 | os: [freebsd] 116 | 117 | '@esbuild/freebsd-arm64@0.21.5': 118 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 119 | engines: {node: '>=12'} 120 | cpu: [arm64] 121 | os: [freebsd] 122 | 123 | '@esbuild/freebsd-x64@0.18.20': 124 | resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} 125 | engines: {node: '>=12'} 126 | cpu: [x64] 127 | os: [freebsd] 128 | 129 | '@esbuild/freebsd-x64@0.21.5': 130 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 131 | engines: {node: '>=12'} 132 | cpu: [x64] 133 | os: [freebsd] 134 | 135 | '@esbuild/linux-arm64@0.18.20': 136 | resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} 137 | engines: {node: '>=12'} 138 | cpu: [arm64] 139 | os: [linux] 140 | 141 | '@esbuild/linux-arm64@0.21.5': 142 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 143 | engines: {node: '>=12'} 144 | cpu: [arm64] 145 | os: [linux] 146 | 147 | '@esbuild/linux-arm@0.18.20': 148 | resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} 149 | engines: {node: '>=12'} 150 | cpu: [arm] 151 | os: [linux] 152 | 153 | '@esbuild/linux-arm@0.21.5': 154 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 155 | engines: {node: '>=12'} 156 | cpu: [arm] 157 | os: [linux] 158 | 159 | '@esbuild/linux-ia32@0.18.20': 160 | resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} 161 | engines: {node: '>=12'} 162 | cpu: [ia32] 163 | os: [linux] 164 | 165 | '@esbuild/linux-ia32@0.21.5': 166 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 167 | engines: {node: '>=12'} 168 | cpu: [ia32] 169 | os: [linux] 170 | 171 | '@esbuild/linux-loong64@0.18.20': 172 | resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} 173 | engines: {node: '>=12'} 174 | cpu: [loong64] 175 | os: [linux] 176 | 177 | '@esbuild/linux-loong64@0.21.5': 178 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 179 | engines: {node: '>=12'} 180 | cpu: [loong64] 181 | os: [linux] 182 | 183 | '@esbuild/linux-mips64el@0.18.20': 184 | resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} 185 | engines: {node: '>=12'} 186 | cpu: [mips64el] 187 | os: [linux] 188 | 189 | '@esbuild/linux-mips64el@0.21.5': 190 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 191 | engines: {node: '>=12'} 192 | cpu: [mips64el] 193 | os: [linux] 194 | 195 | '@esbuild/linux-ppc64@0.18.20': 196 | resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} 197 | engines: {node: '>=12'} 198 | cpu: [ppc64] 199 | os: [linux] 200 | 201 | '@esbuild/linux-ppc64@0.21.5': 202 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 203 | engines: {node: '>=12'} 204 | cpu: [ppc64] 205 | os: [linux] 206 | 207 | '@esbuild/linux-riscv64@0.18.20': 208 | resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} 209 | engines: {node: '>=12'} 210 | cpu: [riscv64] 211 | os: [linux] 212 | 213 | '@esbuild/linux-riscv64@0.21.5': 214 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 215 | engines: {node: '>=12'} 216 | cpu: [riscv64] 217 | os: [linux] 218 | 219 | '@esbuild/linux-s390x@0.18.20': 220 | resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} 221 | engines: {node: '>=12'} 222 | cpu: [s390x] 223 | os: [linux] 224 | 225 | '@esbuild/linux-s390x@0.21.5': 226 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 227 | engines: {node: '>=12'} 228 | cpu: [s390x] 229 | os: [linux] 230 | 231 | '@esbuild/linux-x64@0.18.20': 232 | resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} 233 | engines: {node: '>=12'} 234 | cpu: [x64] 235 | os: [linux] 236 | 237 | '@esbuild/linux-x64@0.21.5': 238 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 239 | engines: {node: '>=12'} 240 | cpu: [x64] 241 | os: [linux] 242 | 243 | '@esbuild/netbsd-x64@0.18.20': 244 | resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} 245 | engines: {node: '>=12'} 246 | cpu: [x64] 247 | os: [netbsd] 248 | 249 | '@esbuild/netbsd-x64@0.21.5': 250 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 251 | engines: {node: '>=12'} 252 | cpu: [x64] 253 | os: [netbsd] 254 | 255 | '@esbuild/openbsd-x64@0.18.20': 256 | resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} 257 | engines: {node: '>=12'} 258 | cpu: [x64] 259 | os: [openbsd] 260 | 261 | '@esbuild/openbsd-x64@0.21.5': 262 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 263 | engines: {node: '>=12'} 264 | cpu: [x64] 265 | os: [openbsd] 266 | 267 | '@esbuild/sunos-x64@0.18.20': 268 | resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} 269 | engines: {node: '>=12'} 270 | cpu: [x64] 271 | os: [sunos] 272 | 273 | '@esbuild/sunos-x64@0.21.5': 274 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 275 | engines: {node: '>=12'} 276 | cpu: [x64] 277 | os: [sunos] 278 | 279 | '@esbuild/win32-arm64@0.18.20': 280 | resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} 281 | engines: {node: '>=12'} 282 | cpu: [arm64] 283 | os: [win32] 284 | 285 | '@esbuild/win32-arm64@0.21.5': 286 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 287 | engines: {node: '>=12'} 288 | cpu: [arm64] 289 | os: [win32] 290 | 291 | '@esbuild/win32-ia32@0.18.20': 292 | resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} 293 | engines: {node: '>=12'} 294 | cpu: [ia32] 295 | os: [win32] 296 | 297 | '@esbuild/win32-ia32@0.21.5': 298 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 299 | engines: {node: '>=12'} 300 | cpu: [ia32] 301 | os: [win32] 302 | 303 | '@esbuild/win32-x64@0.18.20': 304 | resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} 305 | engines: {node: '>=12'} 306 | cpu: [x64] 307 | os: [win32] 308 | 309 | '@esbuild/win32-x64@0.21.5': 310 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 311 | engines: {node: '>=12'} 312 | cpu: [x64] 313 | os: [win32] 314 | 315 | '@eslint-community/eslint-utils@4.4.0': 316 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 317 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 318 | peerDependencies: 319 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 320 | 321 | '@eslint-community/eslint-utils@4.6.1': 322 | resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==} 323 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 324 | peerDependencies: 325 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 326 | 327 | '@eslint-community/regexpp@4.12.1': 328 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 329 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 330 | 331 | '@eslint-community/regexpp@4.8.0': 332 | resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==} 333 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 334 | 335 | '@eslint/eslintrc@2.1.2': 336 | resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} 337 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 338 | 339 | '@eslint/js@8.48.0': 340 | resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==} 341 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 342 | 343 | '@humanwhocodes/config-array@0.11.11': 344 | resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} 345 | engines: {node: '>=10.10.0'} 346 | deprecated: Use @eslint/config-array instead 347 | 348 | '@humanwhocodes/module-importer@1.0.1': 349 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 350 | engines: {node: '>=12.22'} 351 | 352 | '@humanwhocodes/object-schema@1.2.1': 353 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 354 | deprecated: Use @eslint/object-schema instead 355 | 356 | '@jridgewell/gen-mapping@0.3.3': 357 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 358 | engines: {node: '>=6.0.0'} 359 | 360 | '@jridgewell/resolve-uri@3.1.1': 361 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 362 | engines: {node: '>=6.0.0'} 363 | 364 | '@jridgewell/set-array@1.1.2': 365 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 366 | engines: {node: '>=6.0.0'} 367 | 368 | '@jridgewell/sourcemap-codec@1.4.15': 369 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 370 | 371 | '@jridgewell/trace-mapping@0.3.19': 372 | resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} 373 | 374 | '@jsdevtools/ez-spawn@3.0.4': 375 | resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==} 376 | engines: {node: '>=10'} 377 | 378 | '@nodelib/fs.scandir@2.1.5': 379 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 380 | engines: {node: '>= 8'} 381 | 382 | '@nodelib/fs.stat@2.0.5': 383 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 384 | engines: {node: '>= 8'} 385 | 386 | '@nodelib/fs.walk@1.2.8': 387 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 388 | engines: {node: '>= 8'} 389 | 390 | '@rollup/rollup-android-arm-eabi@4.40.1': 391 | resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==} 392 | cpu: [arm] 393 | os: [android] 394 | 395 | '@rollup/rollup-android-arm64@4.40.1': 396 | resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==} 397 | cpu: [arm64] 398 | os: [android] 399 | 400 | '@rollup/rollup-darwin-arm64@4.40.1': 401 | resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==} 402 | cpu: [arm64] 403 | os: [darwin] 404 | 405 | '@rollup/rollup-darwin-x64@4.40.1': 406 | resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==} 407 | cpu: [x64] 408 | os: [darwin] 409 | 410 | '@rollup/rollup-freebsd-arm64@4.40.1': 411 | resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==} 412 | cpu: [arm64] 413 | os: [freebsd] 414 | 415 | '@rollup/rollup-freebsd-x64@4.40.1': 416 | resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==} 417 | cpu: [x64] 418 | os: [freebsd] 419 | 420 | '@rollup/rollup-linux-arm-gnueabihf@4.40.1': 421 | resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==} 422 | cpu: [arm] 423 | os: [linux] 424 | 425 | '@rollup/rollup-linux-arm-musleabihf@4.40.1': 426 | resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==} 427 | cpu: [arm] 428 | os: [linux] 429 | 430 | '@rollup/rollup-linux-arm64-gnu@4.40.1': 431 | resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==} 432 | cpu: [arm64] 433 | os: [linux] 434 | 435 | '@rollup/rollup-linux-arm64-musl@4.40.1': 436 | resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==} 437 | cpu: [arm64] 438 | os: [linux] 439 | 440 | '@rollup/rollup-linux-loongarch64-gnu@4.40.1': 441 | resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==} 442 | cpu: [loong64] 443 | os: [linux] 444 | 445 | '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': 446 | resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==} 447 | cpu: [ppc64] 448 | os: [linux] 449 | 450 | '@rollup/rollup-linux-riscv64-gnu@4.40.1': 451 | resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==} 452 | cpu: [riscv64] 453 | os: [linux] 454 | 455 | '@rollup/rollup-linux-riscv64-musl@4.40.1': 456 | resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==} 457 | cpu: [riscv64] 458 | os: [linux] 459 | 460 | '@rollup/rollup-linux-s390x-gnu@4.40.1': 461 | resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==} 462 | cpu: [s390x] 463 | os: [linux] 464 | 465 | '@rollup/rollup-linux-x64-gnu@4.40.1': 466 | resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==} 467 | cpu: [x64] 468 | os: [linux] 469 | 470 | '@rollup/rollup-linux-x64-musl@4.40.1': 471 | resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==} 472 | cpu: [x64] 473 | os: [linux] 474 | 475 | '@rollup/rollup-win32-arm64-msvc@4.40.1': 476 | resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==} 477 | cpu: [arm64] 478 | os: [win32] 479 | 480 | '@rollup/rollup-win32-ia32-msvc@4.40.1': 481 | resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==} 482 | cpu: [ia32] 483 | os: [win32] 484 | 485 | '@rollup/rollup-win32-x64-msvc@4.40.1': 486 | resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==} 487 | cpu: [x64] 488 | os: [win32] 489 | 490 | '@types/estree@1.0.7': 491 | resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} 492 | 493 | '@types/json-schema@7.0.15': 494 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 495 | 496 | '@types/json5@0.0.29': 497 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 498 | 499 | '@types/node@20.5.9': 500 | resolution: {integrity: sha512-PcGNd//40kHAS3sTlzKB9C9XL4K0sTup8nbG5lC14kzEteTNuAFh9u5nA0o5TWnSG2r/JNPRXFVcHJIIeRlmqQ==} 501 | 502 | '@types/semver@7.7.0': 503 | resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==} 504 | 505 | '@typescript-eslint/eslint-plugin@6.6.0': 506 | resolution: {integrity: sha512-CW9YDGTQnNYMIo5lMeuiIG08p4E0cXrXTbcZ2saT/ETE7dWUrNxlijsQeU04qAAKkILiLzdQz+cGFxCJjaZUmA==} 507 | engines: {node: ^16.0.0 || >=18.0.0} 508 | peerDependencies: 509 | '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha 510 | eslint: ^7.0.0 || ^8.0.0 511 | typescript: '*' 512 | peerDependenciesMeta: 513 | typescript: 514 | optional: true 515 | 516 | '@typescript-eslint/parser@6.6.0': 517 | resolution: {integrity: sha512-setq5aJgUwtzGrhW177/i+DMLqBaJbdwGj2CPIVFFLE0NCliy5ujIdLHd2D1ysmlmsjdL2GWW+hR85neEfc12w==} 518 | engines: {node: ^16.0.0 || >=18.0.0} 519 | peerDependencies: 520 | eslint: ^7.0.0 || ^8.0.0 521 | typescript: '*' 522 | peerDependenciesMeta: 523 | typescript: 524 | optional: true 525 | 526 | '@typescript-eslint/scope-manager@6.6.0': 527 | resolution: {integrity: sha512-pT08u5W/GT4KjPUmEtc2kSYvrH8x89cVzkA0Sy2aaOUIw6YxOIjA8ilwLr/1fLjOedX1QAuBpG9XggWqIIfERw==} 528 | engines: {node: ^16.0.0 || >=18.0.0} 529 | 530 | '@typescript-eslint/type-utils@6.6.0': 531 | resolution: {integrity: sha512-8m16fwAcEnQc69IpeDyokNO+D5spo0w1jepWWY2Q6y5ZKNuj5EhVQXjtVAeDDqvW6Yg7dhclbsz6rTtOvcwpHg==} 532 | engines: {node: ^16.0.0 || >=18.0.0} 533 | peerDependencies: 534 | eslint: ^7.0.0 || ^8.0.0 535 | typescript: '*' 536 | peerDependenciesMeta: 537 | typescript: 538 | optional: true 539 | 540 | '@typescript-eslint/types@6.6.0': 541 | resolution: {integrity: sha512-CB6QpJQ6BAHlJXdwUmiaXDBmTqIE2bzGTDLADgvqtHWuhfNP3rAOK7kAgRMAET5rDRr9Utt+qAzRBdu3AhR3sg==} 542 | engines: {node: ^16.0.0 || >=18.0.0} 543 | 544 | '@typescript-eslint/typescript-estree@6.6.0': 545 | resolution: {integrity: sha512-hMcTQ6Al8MP2E6JKBAaSxSVw5bDhdmbCEhGW/V8QXkb9oNsFkA4SBuOMYVPxD3jbtQ4R/vSODBsr76R6fP3tbA==} 546 | engines: {node: ^16.0.0 || >=18.0.0} 547 | peerDependencies: 548 | typescript: '*' 549 | peerDependenciesMeta: 550 | typescript: 551 | optional: true 552 | 553 | '@typescript-eslint/utils@6.6.0': 554 | resolution: {integrity: sha512-mPHFoNa2bPIWWglWYdR0QfY9GN0CfvvXX1Sv6DlSTive3jlMTUy+an67//Gysc+0Me9pjitrq0LJp0nGtLgftw==} 555 | engines: {node: ^16.0.0 || >=18.0.0} 556 | peerDependencies: 557 | eslint: ^7.0.0 || ^8.0.0 558 | 559 | '@typescript-eslint/visitor-keys@6.6.0': 560 | resolution: {integrity: sha512-L61uJT26cMOfFQ+lMZKoJNbAEckLe539VhTxiGHrWl5XSKQgA0RTBZJW2HFPy5T0ZvPVSD93QsrTKDkfNwJGyQ==} 561 | engines: {node: ^16.0.0 || >=18.0.0} 562 | 563 | acorn-jsx@5.3.2: 564 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 565 | peerDependencies: 566 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 567 | 568 | acorn@8.10.0: 569 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 570 | engines: {node: '>=0.4.0'} 571 | hasBin: true 572 | 573 | agent-base@6.0.2: 574 | resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} 575 | engines: {node: '>= 6.0.0'} 576 | 577 | ajv@6.12.6: 578 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 579 | 580 | ansi-regex@5.0.1: 581 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 582 | engines: {node: '>=8'} 583 | 584 | ansi-styles@4.3.0: 585 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 586 | engines: {node: '>=8'} 587 | 588 | any-promise@1.3.0: 589 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 590 | 591 | anymatch@3.1.3: 592 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 593 | engines: {node: '>= 8'} 594 | 595 | argparse@2.0.1: 596 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 597 | 598 | array-buffer-byte-length@1.0.2: 599 | resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} 600 | engines: {node: '>= 0.4'} 601 | 602 | array-includes@3.1.8: 603 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 604 | engines: {node: '>= 0.4'} 605 | 606 | array-union@2.1.0: 607 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 608 | engines: {node: '>=8'} 609 | 610 | array.prototype.findlastindex@1.2.6: 611 | resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} 612 | engines: {node: '>= 0.4'} 613 | 614 | array.prototype.flat@1.3.3: 615 | resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} 616 | engines: {node: '>= 0.4'} 617 | 618 | array.prototype.flatmap@1.3.3: 619 | resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} 620 | engines: {node: '>= 0.4'} 621 | 622 | arraybuffer.prototype.slice@1.0.4: 623 | resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} 624 | engines: {node: '>= 0.4'} 625 | 626 | async-function@1.0.0: 627 | resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} 628 | engines: {node: '>= 0.4'} 629 | 630 | available-typed-arrays@1.0.7: 631 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 632 | engines: {node: '>= 0.4'} 633 | 634 | balanced-match@1.0.2: 635 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 636 | 637 | binary-extensions@2.2.0: 638 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 639 | engines: {node: '>=8'} 640 | 641 | brace-expansion@1.1.11: 642 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 643 | 644 | braces@3.0.3: 645 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 646 | engines: {node: '>=8'} 647 | 648 | builtins@5.1.0: 649 | resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} 650 | 651 | bumpp@9.2.0: 652 | resolution: {integrity: sha512-pgp7y3jp33QTaXFVDrE0IKuZF5Y8EsIz+ywZXFALW2nD+ZD+4crxJe/GypBQBoJuZrr5dc6TGrR3wl7fk3+C6w==} 653 | engines: {node: '>=10'} 654 | hasBin: true 655 | 656 | bundle-require@4.0.1: 657 | resolution: {integrity: sha512-9NQkRHlNdNpDBGmLpngF3EFDcwodhMUuLz9PaWYciVcQF9SE4LFjM2DB/xV1Li5JiuDMv7ZUWuC3rGbqR0MAXQ==} 658 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 659 | peerDependencies: 660 | esbuild: '>=0.17' 661 | 662 | c12@1.4.2: 663 | resolution: {integrity: sha512-3IP/MuamSVRVw8W8+CHWAz9gKN4gd+voF2zm/Ln6D25C2RhytEZ1ABbC8MjKr4BR9rhoV1JQ7jJA158LDiTkLg==} 664 | 665 | cac@6.7.14: 666 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 667 | engines: {node: '>=8'} 668 | 669 | call-bind-apply-helpers@1.0.2: 670 | resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 671 | engines: {node: '>= 0.4'} 672 | 673 | call-bind@1.0.8: 674 | resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 675 | engines: {node: '>= 0.4'} 676 | 677 | call-bound@1.0.4: 678 | resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} 679 | engines: {node: '>= 0.4'} 680 | 681 | call-me-maybe@1.0.2: 682 | resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} 683 | 684 | callsites@3.1.0: 685 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 686 | engines: {node: '>=6'} 687 | 688 | chalk@4.1.2: 689 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 690 | engines: {node: '>=10'} 691 | 692 | chokidar@3.5.3: 693 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 694 | engines: {node: '>= 8.10.0'} 695 | 696 | chownr@2.0.0: 697 | resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} 698 | engines: {node: '>=10'} 699 | 700 | color-convert@2.0.1: 701 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 702 | engines: {node: '>=7.0.0'} 703 | 704 | color-name@1.1.4: 705 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 706 | 707 | colorette@2.0.20: 708 | resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 709 | 710 | commander@4.1.1: 711 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 712 | engines: {node: '>= 6'} 713 | 714 | concat-map@0.0.1: 715 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 716 | 717 | cross-spawn@7.0.3: 718 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 719 | engines: {node: '>= 8'} 720 | 721 | data-view-buffer@1.0.2: 722 | resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} 723 | engines: {node: '>= 0.4'} 724 | 725 | data-view-byte-length@1.0.2: 726 | resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} 727 | engines: {node: '>= 0.4'} 728 | 729 | data-view-byte-offset@1.0.1: 730 | resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} 731 | engines: {node: '>= 0.4'} 732 | 733 | debug@3.2.7: 734 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 735 | peerDependencies: 736 | supports-color: '*' 737 | peerDependenciesMeta: 738 | supports-color: 739 | optional: true 740 | 741 | debug@4.3.4: 742 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 743 | engines: {node: '>=6.0'} 744 | peerDependencies: 745 | supports-color: '*' 746 | peerDependenciesMeta: 747 | supports-color: 748 | optional: true 749 | 750 | debug@4.4.0: 751 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 752 | engines: {node: '>=6.0'} 753 | peerDependencies: 754 | supports-color: '*' 755 | peerDependenciesMeta: 756 | supports-color: 757 | optional: true 758 | 759 | deep-is@0.1.4: 760 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 761 | 762 | define-data-property@1.1.4: 763 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 764 | engines: {node: '>= 0.4'} 765 | 766 | define-properties@1.2.1: 767 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 768 | engines: {node: '>= 0.4'} 769 | 770 | defu@6.1.2: 771 | resolution: {integrity: sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==} 772 | 773 | destr@2.0.1: 774 | resolution: {integrity: sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA==} 775 | 776 | dir-glob@3.0.1: 777 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 778 | engines: {node: '>=8'} 779 | 780 | doctrine@2.1.0: 781 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 782 | engines: {node: '>=0.10.0'} 783 | 784 | doctrine@3.0.0: 785 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 786 | engines: {node: '>=6.0.0'} 787 | 788 | dotenv@16.3.1: 789 | resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} 790 | engines: {node: '>=12'} 791 | 792 | dunder-proto@1.0.1: 793 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 794 | engines: {node: '>= 0.4'} 795 | 796 | es-abstract@1.23.9: 797 | resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} 798 | engines: {node: '>= 0.4'} 799 | 800 | es-define-property@1.0.1: 801 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 802 | engines: {node: '>= 0.4'} 803 | 804 | es-errors@1.3.0: 805 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 806 | engines: {node: '>= 0.4'} 807 | 808 | es-module-lexer@1.3.1: 809 | resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} 810 | 811 | es-object-atoms@1.1.1: 812 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 813 | engines: {node: '>= 0.4'} 814 | 815 | es-set-tostringtag@2.1.0: 816 | resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} 817 | engines: {node: '>= 0.4'} 818 | 819 | es-shim-unscopables@1.1.0: 820 | resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} 821 | engines: {node: '>= 0.4'} 822 | 823 | es-to-primitive@1.3.0: 824 | resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} 825 | engines: {node: '>= 0.4'} 826 | 827 | esbuild@0.18.20: 828 | resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} 829 | engines: {node: '>=12'} 830 | hasBin: true 831 | 832 | esbuild@0.21.5: 833 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 834 | engines: {node: '>=12'} 835 | hasBin: true 836 | 837 | escape-string-regexp@4.0.0: 838 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 839 | engines: {node: '>=10'} 840 | 841 | eslint-compat-utils@0.5.1: 842 | resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} 843 | engines: {node: '>=12'} 844 | peerDependencies: 845 | eslint: '>=6.0.0' 846 | 847 | eslint-config-standard-with-typescript@39.0.0: 848 | resolution: {integrity: sha512-CiV2LS4NUeeRmDTDf1ocUMpMxitSyW0g+Y/N7ecElwGj188GahbcQgqfBNyVsIXQxHlZVBlOjkbg3oUI0R3KBg==} 849 | deprecated: Please use eslint-config-love, instead. 850 | peerDependencies: 851 | '@typescript-eslint/eslint-plugin': ^6.4.0 852 | eslint: ^8.0.1 853 | eslint-plugin-import: ^2.25.2 854 | eslint-plugin-n: '^15.0.0 || ^16.0.0 ' 855 | eslint-plugin-promise: ^6.0.0 856 | typescript: '*' 857 | 858 | eslint-config-standard@17.1.0: 859 | resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==} 860 | engines: {node: '>=12.0.0'} 861 | peerDependencies: 862 | eslint: ^8.0.1 863 | eslint-plugin-import: ^2.25.2 864 | eslint-plugin-n: '^15.0.0 || ^16.0.0 ' 865 | eslint-plugin-promise: ^6.0.0 866 | 867 | eslint-import-resolver-node@0.3.9: 868 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 869 | 870 | eslint-module-utils@2.12.0: 871 | resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} 872 | engines: {node: '>=4'} 873 | peerDependencies: 874 | '@typescript-eslint/parser': '*' 875 | eslint: '*' 876 | eslint-import-resolver-node: '*' 877 | eslint-import-resolver-typescript: '*' 878 | eslint-import-resolver-webpack: '*' 879 | peerDependenciesMeta: 880 | '@typescript-eslint/parser': 881 | optional: true 882 | eslint: 883 | optional: true 884 | eslint-import-resolver-node: 885 | optional: true 886 | eslint-import-resolver-typescript: 887 | optional: true 888 | eslint-import-resolver-webpack: 889 | optional: true 890 | 891 | eslint-plugin-es-x@7.8.0: 892 | resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} 893 | engines: {node: ^14.18.0 || >=16.0.0} 894 | peerDependencies: 895 | eslint: '>=8' 896 | 897 | eslint-plugin-import@2.28.1: 898 | resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} 899 | engines: {node: '>=4'} 900 | peerDependencies: 901 | '@typescript-eslint/parser': '*' 902 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 903 | peerDependenciesMeta: 904 | '@typescript-eslint/parser': 905 | optional: true 906 | 907 | eslint-plugin-n@16.0.2: 908 | resolution: {integrity: sha512-Y66uDfUNbBzypsr0kELWrIz+5skicECrLUqlWuXawNSLUq3ltGlCwu6phboYYOTSnoTdHgTLrc+5Ydo6KjzZog==} 909 | engines: {node: '>=16.0.0'} 910 | peerDependencies: 911 | eslint: '>=7.0.0' 912 | 913 | eslint-plugin-promise@6.1.1: 914 | resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} 915 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 916 | peerDependencies: 917 | eslint: ^7.0.0 || ^8.0.0 918 | 919 | eslint-scope@7.2.2: 920 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 921 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 922 | 923 | eslint-visitor-keys@3.4.3: 924 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 925 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 926 | 927 | eslint@8.48.0: 928 | resolution: {integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==} 929 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 930 | deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. 931 | hasBin: true 932 | 933 | espree@9.6.1: 934 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 935 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 936 | 937 | esquery@1.5.0: 938 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 939 | engines: {node: '>=0.10'} 940 | 941 | esrecurse@4.3.0: 942 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 943 | engines: {node: '>=4.0'} 944 | 945 | estraverse@5.3.0: 946 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 947 | engines: {node: '>=4.0'} 948 | 949 | esutils@2.0.3: 950 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 951 | engines: {node: '>=0.10.0'} 952 | 953 | execa@5.1.1: 954 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 955 | engines: {node: '>=10'} 956 | 957 | fast-deep-equal@3.1.3: 958 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 959 | 960 | fast-glob@3.3.1: 961 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 962 | engines: {node: '>=8.6.0'} 963 | 964 | fast-json-stable-stringify@2.1.0: 965 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 966 | 967 | fast-levenshtein@2.0.6: 968 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 969 | 970 | fastq@1.15.0: 971 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 972 | 973 | file-entry-cache@6.0.1: 974 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 975 | engines: {node: ^10.12.0 || >=12.0.0} 976 | 977 | fill-range@7.1.1: 978 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 979 | engines: {node: '>=8'} 980 | 981 | find-up@5.0.0: 982 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 983 | engines: {node: '>=10'} 984 | 985 | flat-cache@3.1.0: 986 | resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==} 987 | engines: {node: '>=12.0.0'} 988 | 989 | flat@5.0.2: 990 | resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} 991 | hasBin: true 992 | 993 | flatted@3.2.7: 994 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 995 | 996 | for-each@0.3.5: 997 | resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} 998 | engines: {node: '>= 0.4'} 999 | 1000 | fs-minipass@2.1.0: 1001 | resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 1002 | engines: {node: '>= 8'} 1003 | 1004 | fs.realpath@1.0.0: 1005 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1006 | 1007 | fsevents@2.3.3: 1008 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1009 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1010 | os: [darwin] 1011 | 1012 | function-bind@1.1.2: 1013 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1014 | 1015 | function.prototype.name@1.1.8: 1016 | resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} 1017 | engines: {node: '>= 0.4'} 1018 | 1019 | functions-have-names@1.2.3: 1020 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1021 | 1022 | get-intrinsic@1.3.0: 1023 | resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 1024 | engines: {node: '>= 0.4'} 1025 | 1026 | get-proto@1.0.1: 1027 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 1028 | engines: {node: '>= 0.4'} 1029 | 1030 | get-stream@6.0.1: 1031 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1032 | engines: {node: '>=10'} 1033 | 1034 | get-symbol-description@1.1.0: 1035 | resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} 1036 | engines: {node: '>= 0.4'} 1037 | 1038 | giget@1.1.2: 1039 | resolution: {integrity: sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==} 1040 | hasBin: true 1041 | 1042 | glob-parent@5.1.2: 1043 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1044 | engines: {node: '>= 6'} 1045 | 1046 | glob-parent@6.0.2: 1047 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1048 | engines: {node: '>=10.13.0'} 1049 | 1050 | glob@7.1.6: 1051 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 1052 | deprecated: Glob versions prior to v9 are no longer supported 1053 | 1054 | globals@13.21.0: 1055 | resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==} 1056 | engines: {node: '>=8'} 1057 | 1058 | globalthis@1.0.4: 1059 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 1060 | engines: {node: '>= 0.4'} 1061 | 1062 | globby@11.1.0: 1063 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1064 | engines: {node: '>=10'} 1065 | 1066 | gopd@1.2.0: 1067 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 1068 | engines: {node: '>= 0.4'} 1069 | 1070 | graphemer@1.4.0: 1071 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1072 | 1073 | has-bigints@1.1.0: 1074 | resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} 1075 | engines: {node: '>= 0.4'} 1076 | 1077 | has-flag@4.0.0: 1078 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1079 | engines: {node: '>=8'} 1080 | 1081 | has-property-descriptors@1.0.2: 1082 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1083 | 1084 | has-proto@1.2.0: 1085 | resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} 1086 | engines: {node: '>= 0.4'} 1087 | 1088 | has-symbols@1.1.0: 1089 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 1090 | engines: {node: '>= 0.4'} 1091 | 1092 | has-tostringtag@1.0.2: 1093 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1094 | engines: {node: '>= 0.4'} 1095 | 1096 | has@1.0.4: 1097 | resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} 1098 | engines: {node: '>= 0.4.0'} 1099 | 1100 | hasown@2.0.2: 1101 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1102 | engines: {node: '>= 0.4'} 1103 | 1104 | https-proxy-agent@5.0.1: 1105 | resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} 1106 | engines: {node: '>= 6'} 1107 | 1108 | human-signals@2.1.0: 1109 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1110 | engines: {node: '>=10.17.0'} 1111 | 1112 | ignore@5.2.4: 1113 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1114 | engines: {node: '>= 4'} 1115 | 1116 | ignore@5.3.2: 1117 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1118 | engines: {node: '>= 4'} 1119 | 1120 | import-fresh@3.3.0: 1121 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1122 | engines: {node: '>=6'} 1123 | 1124 | imurmurhash@0.1.4: 1125 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1126 | engines: {node: '>=0.8.19'} 1127 | 1128 | inflight@1.0.6: 1129 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1130 | 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. 1131 | 1132 | inherits@2.0.4: 1133 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1134 | 1135 | internal-slot@1.1.0: 1136 | resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} 1137 | engines: {node: '>= 0.4'} 1138 | 1139 | is-array-buffer@3.0.5: 1140 | resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} 1141 | engines: {node: '>= 0.4'} 1142 | 1143 | is-async-function@2.1.1: 1144 | resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} 1145 | engines: {node: '>= 0.4'} 1146 | 1147 | is-bigint@1.1.0: 1148 | resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} 1149 | engines: {node: '>= 0.4'} 1150 | 1151 | is-binary-path@2.1.0: 1152 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1153 | engines: {node: '>=8'} 1154 | 1155 | is-boolean-object@1.2.2: 1156 | resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} 1157 | engines: {node: '>= 0.4'} 1158 | 1159 | is-callable@1.2.7: 1160 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1161 | engines: {node: '>= 0.4'} 1162 | 1163 | is-core-module@2.16.1: 1164 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 1165 | engines: {node: '>= 0.4'} 1166 | 1167 | is-data-view@1.0.2: 1168 | resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} 1169 | engines: {node: '>= 0.4'} 1170 | 1171 | is-date-object@1.1.0: 1172 | resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} 1173 | engines: {node: '>= 0.4'} 1174 | 1175 | is-extglob@2.1.1: 1176 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1177 | engines: {node: '>=0.10.0'} 1178 | 1179 | is-finalizationregistry@1.1.1: 1180 | resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} 1181 | engines: {node: '>= 0.4'} 1182 | 1183 | is-generator-function@1.1.0: 1184 | resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} 1185 | engines: {node: '>= 0.4'} 1186 | 1187 | is-glob@4.0.3: 1188 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1189 | engines: {node: '>=0.10.0'} 1190 | 1191 | is-map@2.0.3: 1192 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1193 | engines: {node: '>= 0.4'} 1194 | 1195 | is-number-object@1.1.1: 1196 | resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 1197 | engines: {node: '>= 0.4'} 1198 | 1199 | is-number@7.0.0: 1200 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1201 | engines: {node: '>=0.12.0'} 1202 | 1203 | is-path-inside@3.0.3: 1204 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1205 | engines: {node: '>=8'} 1206 | 1207 | is-regex@1.2.1: 1208 | resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 1209 | engines: {node: '>= 0.4'} 1210 | 1211 | is-set@2.0.3: 1212 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1213 | engines: {node: '>= 0.4'} 1214 | 1215 | is-shared-array-buffer@1.0.4: 1216 | resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} 1217 | engines: {node: '>= 0.4'} 1218 | 1219 | is-stream@2.0.1: 1220 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1221 | engines: {node: '>=8'} 1222 | 1223 | is-string@1.1.1: 1224 | resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} 1225 | engines: {node: '>= 0.4'} 1226 | 1227 | is-symbol@1.1.1: 1228 | resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} 1229 | engines: {node: '>= 0.4'} 1230 | 1231 | is-typed-array@1.1.15: 1232 | resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 1233 | engines: {node: '>= 0.4'} 1234 | 1235 | is-weakmap@2.0.2: 1236 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1237 | engines: {node: '>= 0.4'} 1238 | 1239 | is-weakref@1.1.1: 1240 | resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} 1241 | engines: {node: '>= 0.4'} 1242 | 1243 | is-weakset@2.0.4: 1244 | resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} 1245 | engines: {node: '>= 0.4'} 1246 | 1247 | isarray@2.0.5: 1248 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1249 | 1250 | isexe@2.0.0: 1251 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1252 | 1253 | jiti@1.20.0: 1254 | resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==} 1255 | hasBin: true 1256 | 1257 | joycon@3.1.1: 1258 | resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} 1259 | engines: {node: '>=10'} 1260 | 1261 | js-yaml@4.1.0: 1262 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1263 | hasBin: true 1264 | 1265 | json-buffer@3.0.1: 1266 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1267 | 1268 | json-schema-traverse@0.4.1: 1269 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1270 | 1271 | json-stable-stringify-without-jsonify@1.0.1: 1272 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1273 | 1274 | json5@1.0.2: 1275 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1276 | hasBin: true 1277 | 1278 | jsonc-parser@3.2.0: 1279 | resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} 1280 | 1281 | keyv@4.5.3: 1282 | resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==} 1283 | 1284 | kleur@3.0.3: 1285 | resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 1286 | engines: {node: '>=6'} 1287 | 1288 | levn@0.4.1: 1289 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1290 | engines: {node: '>= 0.8.0'} 1291 | 1292 | lilconfig@2.1.0: 1293 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1294 | engines: {node: '>=10'} 1295 | 1296 | lines-and-columns@1.2.4: 1297 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1298 | 1299 | load-tsconfig@0.2.5: 1300 | resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} 1301 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1302 | 1303 | locate-path@6.0.0: 1304 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1305 | engines: {node: '>=10'} 1306 | 1307 | lodash.merge@4.6.2: 1308 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1309 | 1310 | lodash.sortby@4.7.0: 1311 | resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} 1312 | 1313 | lru-cache@6.0.0: 1314 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1315 | engines: {node: '>=10'} 1316 | 1317 | magic-string@0.30.5: 1318 | resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} 1319 | engines: {node: '>=12'} 1320 | 1321 | math-intrinsics@1.1.0: 1322 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 1323 | engines: {node: '>= 0.4'} 1324 | 1325 | merge-stream@2.0.0: 1326 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1327 | 1328 | merge2@1.4.1: 1329 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1330 | engines: {node: '>= 8'} 1331 | 1332 | micromatch@4.0.5: 1333 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1334 | engines: {node: '>=8.6'} 1335 | 1336 | mimic-fn@2.1.0: 1337 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1338 | engines: {node: '>=6'} 1339 | 1340 | minimatch@3.1.2: 1341 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1342 | 1343 | minimist@1.2.8: 1344 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1345 | 1346 | minipass@3.3.6: 1347 | resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} 1348 | engines: {node: '>=8'} 1349 | 1350 | minipass@5.0.0: 1351 | resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} 1352 | engines: {node: '>=8'} 1353 | 1354 | minizlib@2.1.2: 1355 | resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 1356 | engines: {node: '>= 8'} 1357 | 1358 | mkdirp@1.0.4: 1359 | resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} 1360 | engines: {node: '>=10'} 1361 | hasBin: true 1362 | 1363 | mlly@1.4.2: 1364 | resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==} 1365 | 1366 | mri@1.2.0: 1367 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 1368 | engines: {node: '>=4'} 1369 | 1370 | ms@2.1.2: 1371 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1372 | 1373 | ms@2.1.3: 1374 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1375 | 1376 | mz@2.7.0: 1377 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1378 | 1379 | nanoid@3.3.11: 1380 | resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1381 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1382 | hasBin: true 1383 | 1384 | natural-compare@1.4.0: 1385 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1386 | 1387 | node-fetch-native@1.4.0: 1388 | resolution: {integrity: sha512-F5kfEj95kX8tkDhUCYdV8dg3/8Olx/94zB8+ZNthFs6Bz31UpUi8Xh40TN3thLwXgrwXry1pEg9lJ++tLWTcqA==} 1389 | 1390 | normalize-path@3.0.0: 1391 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1392 | engines: {node: '>=0.10.0'} 1393 | 1394 | npm-run-path@4.0.1: 1395 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 1396 | engines: {node: '>=8'} 1397 | 1398 | object-assign@4.1.1: 1399 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1400 | engines: {node: '>=0.10.0'} 1401 | 1402 | object-inspect@1.13.4: 1403 | resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 1404 | engines: {node: '>= 0.4'} 1405 | 1406 | object-keys@1.1.1: 1407 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1408 | engines: {node: '>= 0.4'} 1409 | 1410 | object.assign@4.1.7: 1411 | resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 1412 | engines: {node: '>= 0.4'} 1413 | 1414 | object.fromentries@2.0.8: 1415 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1416 | engines: {node: '>= 0.4'} 1417 | 1418 | object.groupby@1.0.3: 1419 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1420 | engines: {node: '>= 0.4'} 1421 | 1422 | object.values@1.2.1: 1423 | resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} 1424 | engines: {node: '>= 0.4'} 1425 | 1426 | ohash@1.1.3: 1427 | resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} 1428 | 1429 | once@1.4.0: 1430 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1431 | 1432 | onetime@5.1.2: 1433 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 1434 | engines: {node: '>=6'} 1435 | 1436 | optionator@0.9.3: 1437 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 1438 | engines: {node: '>= 0.8.0'} 1439 | 1440 | own-keys@1.0.1: 1441 | resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} 1442 | engines: {node: '>= 0.4'} 1443 | 1444 | p-limit@3.1.0: 1445 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1446 | engines: {node: '>=10'} 1447 | 1448 | p-locate@5.0.0: 1449 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1450 | engines: {node: '>=10'} 1451 | 1452 | parent-module@1.0.1: 1453 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1454 | engines: {node: '>=6'} 1455 | 1456 | path-exists@4.0.0: 1457 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1458 | engines: {node: '>=8'} 1459 | 1460 | path-is-absolute@1.0.1: 1461 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1462 | engines: {node: '>=0.10.0'} 1463 | 1464 | path-key@3.1.1: 1465 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1466 | engines: {node: '>=8'} 1467 | 1468 | path-parse@1.0.7: 1469 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1470 | 1471 | path-type@4.0.0: 1472 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 1473 | engines: {node: '>=8'} 1474 | 1475 | pathe@1.1.1: 1476 | resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} 1477 | 1478 | perfect-debounce@1.0.0: 1479 | resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} 1480 | 1481 | picocolors@1.1.1: 1482 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1483 | 1484 | picomatch@2.3.1: 1485 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1486 | engines: {node: '>=8.6'} 1487 | 1488 | pirates@4.0.6: 1489 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 1490 | engines: {node: '>= 6'} 1491 | 1492 | pkg-types@1.0.3: 1493 | resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} 1494 | 1495 | possible-typed-array-names@1.1.0: 1496 | resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} 1497 | engines: {node: '>= 0.4'} 1498 | 1499 | postcss-load-config@4.0.1: 1500 | resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} 1501 | engines: {node: '>= 14'} 1502 | peerDependencies: 1503 | postcss: '>=8.0.9' 1504 | ts-node: '>=9.0.0' 1505 | peerDependenciesMeta: 1506 | postcss: 1507 | optional: true 1508 | ts-node: 1509 | optional: true 1510 | 1511 | postcss@8.5.3: 1512 | resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} 1513 | engines: {node: ^10 || ^12 || >=14} 1514 | 1515 | prelude-ls@1.2.1: 1516 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1517 | engines: {node: '>= 0.8.0'} 1518 | 1519 | prompts@2.4.2: 1520 | resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 1521 | engines: {node: '>= 6'} 1522 | 1523 | punycode@2.3.0: 1524 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 1525 | engines: {node: '>=6'} 1526 | 1527 | queue-microtask@1.2.3: 1528 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1529 | 1530 | rc9@2.1.1: 1531 | resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==} 1532 | 1533 | readdirp@3.6.0: 1534 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1535 | engines: {node: '>=8.10.0'} 1536 | 1537 | reflect.getprototypeof@1.0.10: 1538 | resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} 1539 | engines: {node: '>= 0.4'} 1540 | 1541 | regexp.prototype.flags@1.5.4: 1542 | resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} 1543 | engines: {node: '>= 0.4'} 1544 | 1545 | resolve-from@4.0.0: 1546 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1547 | engines: {node: '>=4'} 1548 | 1549 | resolve-from@5.0.0: 1550 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 1551 | engines: {node: '>=8'} 1552 | 1553 | resolve@1.22.10: 1554 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 1555 | engines: {node: '>= 0.4'} 1556 | hasBin: true 1557 | 1558 | reusify@1.0.4: 1559 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1560 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1561 | 1562 | rimraf@3.0.2: 1563 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1564 | deprecated: Rimraf versions prior to v4 are no longer supported 1565 | hasBin: true 1566 | 1567 | rollup@3.29.0: 1568 | resolution: {integrity: sha512-nszM8DINnx1vSS+TpbWKMkxem0CDWk3cSit/WWCBVs9/JZ1I/XLwOsiUglYuYReaeWWSsW9kge5zE5NZtf/a4w==} 1569 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 1570 | hasBin: true 1571 | 1572 | rollup@4.40.1: 1573 | resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==} 1574 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1575 | hasBin: true 1576 | 1577 | run-parallel@1.2.0: 1578 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1579 | 1580 | safe-array-concat@1.1.3: 1581 | resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} 1582 | engines: {node: '>=0.4'} 1583 | 1584 | safe-push-apply@1.0.0: 1585 | resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} 1586 | engines: {node: '>= 0.4'} 1587 | 1588 | safe-regex-test@1.1.0: 1589 | resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 1590 | engines: {node: '>= 0.4'} 1591 | 1592 | semver@6.3.1: 1593 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1594 | hasBin: true 1595 | 1596 | semver@7.5.4: 1597 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 1598 | engines: {node: '>=10'} 1599 | hasBin: true 1600 | 1601 | semver@7.7.1: 1602 | resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} 1603 | engines: {node: '>=10'} 1604 | hasBin: true 1605 | 1606 | set-function-length@1.2.2: 1607 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1608 | engines: {node: '>= 0.4'} 1609 | 1610 | set-function-name@2.0.2: 1611 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1612 | engines: {node: '>= 0.4'} 1613 | 1614 | set-proto@1.0.0: 1615 | resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} 1616 | engines: {node: '>= 0.4'} 1617 | 1618 | shebang-command@2.0.0: 1619 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1620 | engines: {node: '>=8'} 1621 | 1622 | shebang-regex@3.0.0: 1623 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1624 | engines: {node: '>=8'} 1625 | 1626 | side-channel-list@1.0.0: 1627 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 1628 | engines: {node: '>= 0.4'} 1629 | 1630 | side-channel-map@1.0.1: 1631 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 1632 | engines: {node: '>= 0.4'} 1633 | 1634 | side-channel-weakmap@1.0.2: 1635 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 1636 | engines: {node: '>= 0.4'} 1637 | 1638 | side-channel@1.1.0: 1639 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 1640 | engines: {node: '>= 0.4'} 1641 | 1642 | signal-exit@3.0.7: 1643 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 1644 | 1645 | sisteransi@1.0.5: 1646 | resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 1647 | 1648 | slash@3.0.0: 1649 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1650 | engines: {node: '>=8'} 1651 | 1652 | source-map-js@1.2.1: 1653 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1654 | engines: {node: '>=0.10.0'} 1655 | 1656 | source-map@0.8.0-beta.0: 1657 | resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} 1658 | engines: {node: '>= 8'} 1659 | 1660 | string-argv@0.3.2: 1661 | resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 1662 | engines: {node: '>=0.6.19'} 1663 | 1664 | string.prototype.trim@1.2.10: 1665 | resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} 1666 | engines: {node: '>= 0.4'} 1667 | 1668 | string.prototype.trimend@1.0.9: 1669 | resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} 1670 | engines: {node: '>= 0.4'} 1671 | 1672 | string.prototype.trimstart@1.0.8: 1673 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1674 | engines: {node: '>= 0.4'} 1675 | 1676 | strip-ansi@6.0.1: 1677 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1678 | engines: {node: '>=8'} 1679 | 1680 | strip-bom@3.0.0: 1681 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1682 | engines: {node: '>=4'} 1683 | 1684 | strip-final-newline@2.0.0: 1685 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 1686 | engines: {node: '>=6'} 1687 | 1688 | strip-json-comments@3.1.1: 1689 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1690 | engines: {node: '>=8'} 1691 | 1692 | sucrase@3.34.0: 1693 | resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} 1694 | engines: {node: '>=8'} 1695 | hasBin: true 1696 | 1697 | supports-color@7.2.0: 1698 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1699 | engines: {node: '>=8'} 1700 | 1701 | supports-preserve-symlinks-flag@1.0.0: 1702 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1703 | engines: {node: '>= 0.4'} 1704 | 1705 | tar@6.2.1: 1706 | resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} 1707 | engines: {node: '>=10'} 1708 | 1709 | text-table@0.2.0: 1710 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1711 | 1712 | thenify-all@1.6.0: 1713 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 1714 | engines: {node: '>=0.8'} 1715 | 1716 | thenify@3.3.1: 1717 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 1718 | 1719 | to-regex-range@5.0.1: 1720 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1721 | engines: {node: '>=8.0'} 1722 | 1723 | tr46@1.0.1: 1724 | resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} 1725 | 1726 | tree-kill@1.2.2: 1727 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 1728 | hasBin: true 1729 | 1730 | ts-api-utils@1.0.3: 1731 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} 1732 | engines: {node: '>=16.13.0'} 1733 | peerDependencies: 1734 | typescript: '>=4.2.0' 1735 | 1736 | ts-api-utils@1.4.3: 1737 | resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} 1738 | engines: {node: '>=16'} 1739 | peerDependencies: 1740 | typescript: '>=4.2.0' 1741 | 1742 | ts-interface-checker@0.1.13: 1743 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 1744 | 1745 | tsconfig-paths@3.15.0: 1746 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1747 | 1748 | tsup@7.2.0: 1749 | resolution: {integrity: sha512-vDHlczXbgUvY3rWvqFEbSqmC1L7woozbzngMqTtL2PGBODTtWlRwGDDawhvWzr5c1QjKe4OAKqJGfE1xeXUvtQ==} 1750 | engines: {node: '>=16.14'} 1751 | hasBin: true 1752 | peerDependencies: 1753 | '@swc/core': ^1 1754 | postcss: ^8.4.12 1755 | typescript: '>=4.1.0' 1756 | peerDependenciesMeta: 1757 | '@swc/core': 1758 | optional: true 1759 | postcss: 1760 | optional: true 1761 | typescript: 1762 | optional: true 1763 | 1764 | type-check@0.4.0: 1765 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1766 | engines: {node: '>= 0.8.0'} 1767 | 1768 | type-detect@4.0.8: 1769 | resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} 1770 | engines: {node: '>=4'} 1771 | 1772 | type-fest@0.20.2: 1773 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1774 | engines: {node: '>=10'} 1775 | 1776 | typed-array-buffer@1.0.3: 1777 | resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 1778 | engines: {node: '>= 0.4'} 1779 | 1780 | typed-array-byte-length@1.0.3: 1781 | resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} 1782 | engines: {node: '>= 0.4'} 1783 | 1784 | typed-array-byte-offset@1.0.4: 1785 | resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} 1786 | engines: {node: '>= 0.4'} 1787 | 1788 | typed-array-length@1.0.7: 1789 | resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} 1790 | engines: {node: '>= 0.4'} 1791 | 1792 | typescript@5.2.2: 1793 | resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} 1794 | engines: {node: '>=14.17'} 1795 | hasBin: true 1796 | 1797 | ufo@1.3.0: 1798 | resolution: {integrity: sha512-bRn3CsoojyNStCZe0BG0Mt4Nr/4KF+rhFlnNXybgqt5pXHNFRlqinSoQaTrGyzE4X8aHplSb+TorH+COin9Yxw==} 1799 | 1800 | unbox-primitive@1.1.0: 1801 | resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} 1802 | engines: {node: '>= 0.4'} 1803 | 1804 | uri-js@4.4.1: 1805 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1806 | 1807 | vite@5.4.18: 1808 | resolution: {integrity: sha512-1oDcnEp3lVyHCuQ2YFelM4Alm2o91xNoMncRm1U7S+JdYfYOvbiGZ3/CxGttrOu2M/KcGz7cRC2DoNUA6urmMA==} 1809 | engines: {node: ^18.0.0 || >=20.0.0} 1810 | hasBin: true 1811 | peerDependencies: 1812 | '@types/node': ^18.0.0 || >=20.0.0 1813 | less: '*' 1814 | lightningcss: ^1.21.0 1815 | sass: '*' 1816 | sass-embedded: '*' 1817 | stylus: '*' 1818 | sugarss: '*' 1819 | terser: ^5.4.0 1820 | peerDependenciesMeta: 1821 | '@types/node': 1822 | optional: true 1823 | less: 1824 | optional: true 1825 | lightningcss: 1826 | optional: true 1827 | sass: 1828 | optional: true 1829 | sass-embedded: 1830 | optional: true 1831 | stylus: 1832 | optional: true 1833 | sugarss: 1834 | optional: true 1835 | terser: 1836 | optional: true 1837 | 1838 | webidl-conversions@4.0.2: 1839 | resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} 1840 | 1841 | whatwg-url@7.1.0: 1842 | resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 1843 | 1844 | which-boxed-primitive@1.1.1: 1845 | resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} 1846 | engines: {node: '>= 0.4'} 1847 | 1848 | which-builtin-type@1.2.1: 1849 | resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} 1850 | engines: {node: '>= 0.4'} 1851 | 1852 | which-collection@1.0.2: 1853 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1854 | engines: {node: '>= 0.4'} 1855 | 1856 | which-typed-array@1.1.19: 1857 | resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} 1858 | engines: {node: '>= 0.4'} 1859 | 1860 | which@2.0.2: 1861 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1862 | engines: {node: '>= 8'} 1863 | hasBin: true 1864 | 1865 | wrappy@1.0.2: 1866 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1867 | 1868 | yallist@4.0.0: 1869 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 1870 | 1871 | yaml@2.3.2: 1872 | resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==} 1873 | engines: {node: '>= 14'} 1874 | 1875 | yocto-queue@0.1.0: 1876 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1877 | engines: {node: '>=10'} 1878 | 1879 | snapshots: 1880 | 1881 | '@aashutoshrathi/word-wrap@1.2.6': {} 1882 | 1883 | '@esbuild/aix-ppc64@0.21.5': 1884 | optional: true 1885 | 1886 | '@esbuild/android-arm64@0.18.20': 1887 | optional: true 1888 | 1889 | '@esbuild/android-arm64@0.21.5': 1890 | optional: true 1891 | 1892 | '@esbuild/android-arm@0.18.20': 1893 | optional: true 1894 | 1895 | '@esbuild/android-arm@0.21.5': 1896 | optional: true 1897 | 1898 | '@esbuild/android-x64@0.18.20': 1899 | optional: true 1900 | 1901 | '@esbuild/android-x64@0.21.5': 1902 | optional: true 1903 | 1904 | '@esbuild/darwin-arm64@0.18.20': 1905 | optional: true 1906 | 1907 | '@esbuild/darwin-arm64@0.21.5': 1908 | optional: true 1909 | 1910 | '@esbuild/darwin-x64@0.18.20': 1911 | optional: true 1912 | 1913 | '@esbuild/darwin-x64@0.21.5': 1914 | optional: true 1915 | 1916 | '@esbuild/freebsd-arm64@0.18.20': 1917 | optional: true 1918 | 1919 | '@esbuild/freebsd-arm64@0.21.5': 1920 | optional: true 1921 | 1922 | '@esbuild/freebsd-x64@0.18.20': 1923 | optional: true 1924 | 1925 | '@esbuild/freebsd-x64@0.21.5': 1926 | optional: true 1927 | 1928 | '@esbuild/linux-arm64@0.18.20': 1929 | optional: true 1930 | 1931 | '@esbuild/linux-arm64@0.21.5': 1932 | optional: true 1933 | 1934 | '@esbuild/linux-arm@0.18.20': 1935 | optional: true 1936 | 1937 | '@esbuild/linux-arm@0.21.5': 1938 | optional: true 1939 | 1940 | '@esbuild/linux-ia32@0.18.20': 1941 | optional: true 1942 | 1943 | '@esbuild/linux-ia32@0.21.5': 1944 | optional: true 1945 | 1946 | '@esbuild/linux-loong64@0.18.20': 1947 | optional: true 1948 | 1949 | '@esbuild/linux-loong64@0.21.5': 1950 | optional: true 1951 | 1952 | '@esbuild/linux-mips64el@0.18.20': 1953 | optional: true 1954 | 1955 | '@esbuild/linux-mips64el@0.21.5': 1956 | optional: true 1957 | 1958 | '@esbuild/linux-ppc64@0.18.20': 1959 | optional: true 1960 | 1961 | '@esbuild/linux-ppc64@0.21.5': 1962 | optional: true 1963 | 1964 | '@esbuild/linux-riscv64@0.18.20': 1965 | optional: true 1966 | 1967 | '@esbuild/linux-riscv64@0.21.5': 1968 | optional: true 1969 | 1970 | '@esbuild/linux-s390x@0.18.20': 1971 | optional: true 1972 | 1973 | '@esbuild/linux-s390x@0.21.5': 1974 | optional: true 1975 | 1976 | '@esbuild/linux-x64@0.18.20': 1977 | optional: true 1978 | 1979 | '@esbuild/linux-x64@0.21.5': 1980 | optional: true 1981 | 1982 | '@esbuild/netbsd-x64@0.18.20': 1983 | optional: true 1984 | 1985 | '@esbuild/netbsd-x64@0.21.5': 1986 | optional: true 1987 | 1988 | '@esbuild/openbsd-x64@0.18.20': 1989 | optional: true 1990 | 1991 | '@esbuild/openbsd-x64@0.21.5': 1992 | optional: true 1993 | 1994 | '@esbuild/sunos-x64@0.18.20': 1995 | optional: true 1996 | 1997 | '@esbuild/sunos-x64@0.21.5': 1998 | optional: true 1999 | 2000 | '@esbuild/win32-arm64@0.18.20': 2001 | optional: true 2002 | 2003 | '@esbuild/win32-arm64@0.21.5': 2004 | optional: true 2005 | 2006 | '@esbuild/win32-ia32@0.18.20': 2007 | optional: true 2008 | 2009 | '@esbuild/win32-ia32@0.21.5': 2010 | optional: true 2011 | 2012 | '@esbuild/win32-x64@0.18.20': 2013 | optional: true 2014 | 2015 | '@esbuild/win32-x64@0.21.5': 2016 | optional: true 2017 | 2018 | '@eslint-community/eslint-utils@4.4.0(eslint@8.48.0)': 2019 | dependencies: 2020 | eslint: 8.48.0 2021 | eslint-visitor-keys: 3.4.3 2022 | 2023 | '@eslint-community/eslint-utils@4.6.1(eslint@8.48.0)': 2024 | dependencies: 2025 | eslint: 8.48.0 2026 | eslint-visitor-keys: 3.4.3 2027 | 2028 | '@eslint-community/regexpp@4.12.1': {} 2029 | 2030 | '@eslint-community/regexpp@4.8.0': {} 2031 | 2032 | '@eslint/eslintrc@2.1.2': 2033 | dependencies: 2034 | ajv: 6.12.6 2035 | debug: 4.3.4 2036 | espree: 9.6.1 2037 | globals: 13.21.0 2038 | ignore: 5.2.4 2039 | import-fresh: 3.3.0 2040 | js-yaml: 4.1.0 2041 | minimatch: 3.1.2 2042 | strip-json-comments: 3.1.1 2043 | transitivePeerDependencies: 2044 | - supports-color 2045 | 2046 | '@eslint/js@8.48.0': {} 2047 | 2048 | '@humanwhocodes/config-array@0.11.11': 2049 | dependencies: 2050 | '@humanwhocodes/object-schema': 1.2.1 2051 | debug: 4.3.4 2052 | minimatch: 3.1.2 2053 | transitivePeerDependencies: 2054 | - supports-color 2055 | 2056 | '@humanwhocodes/module-importer@1.0.1': {} 2057 | 2058 | '@humanwhocodes/object-schema@1.2.1': {} 2059 | 2060 | '@jridgewell/gen-mapping@0.3.3': 2061 | dependencies: 2062 | '@jridgewell/set-array': 1.1.2 2063 | '@jridgewell/sourcemap-codec': 1.4.15 2064 | '@jridgewell/trace-mapping': 0.3.19 2065 | 2066 | '@jridgewell/resolve-uri@3.1.1': {} 2067 | 2068 | '@jridgewell/set-array@1.1.2': {} 2069 | 2070 | '@jridgewell/sourcemap-codec@1.4.15': {} 2071 | 2072 | '@jridgewell/trace-mapping@0.3.19': 2073 | dependencies: 2074 | '@jridgewell/resolve-uri': 3.1.1 2075 | '@jridgewell/sourcemap-codec': 1.4.15 2076 | 2077 | '@jsdevtools/ez-spawn@3.0.4': 2078 | dependencies: 2079 | call-me-maybe: 1.0.2 2080 | cross-spawn: 7.0.3 2081 | string-argv: 0.3.2 2082 | type-detect: 4.0.8 2083 | 2084 | '@nodelib/fs.scandir@2.1.5': 2085 | dependencies: 2086 | '@nodelib/fs.stat': 2.0.5 2087 | run-parallel: 1.2.0 2088 | 2089 | '@nodelib/fs.stat@2.0.5': {} 2090 | 2091 | '@nodelib/fs.walk@1.2.8': 2092 | dependencies: 2093 | '@nodelib/fs.scandir': 2.1.5 2094 | fastq: 1.15.0 2095 | 2096 | '@rollup/rollup-android-arm-eabi@4.40.1': 2097 | optional: true 2098 | 2099 | '@rollup/rollup-android-arm64@4.40.1': 2100 | optional: true 2101 | 2102 | '@rollup/rollup-darwin-arm64@4.40.1': 2103 | optional: true 2104 | 2105 | '@rollup/rollup-darwin-x64@4.40.1': 2106 | optional: true 2107 | 2108 | '@rollup/rollup-freebsd-arm64@4.40.1': 2109 | optional: true 2110 | 2111 | '@rollup/rollup-freebsd-x64@4.40.1': 2112 | optional: true 2113 | 2114 | '@rollup/rollup-linux-arm-gnueabihf@4.40.1': 2115 | optional: true 2116 | 2117 | '@rollup/rollup-linux-arm-musleabihf@4.40.1': 2118 | optional: true 2119 | 2120 | '@rollup/rollup-linux-arm64-gnu@4.40.1': 2121 | optional: true 2122 | 2123 | '@rollup/rollup-linux-arm64-musl@4.40.1': 2124 | optional: true 2125 | 2126 | '@rollup/rollup-linux-loongarch64-gnu@4.40.1': 2127 | optional: true 2128 | 2129 | '@rollup/rollup-linux-powerpc64le-gnu@4.40.1': 2130 | optional: true 2131 | 2132 | '@rollup/rollup-linux-riscv64-gnu@4.40.1': 2133 | optional: true 2134 | 2135 | '@rollup/rollup-linux-riscv64-musl@4.40.1': 2136 | optional: true 2137 | 2138 | '@rollup/rollup-linux-s390x-gnu@4.40.1': 2139 | optional: true 2140 | 2141 | '@rollup/rollup-linux-x64-gnu@4.40.1': 2142 | optional: true 2143 | 2144 | '@rollup/rollup-linux-x64-musl@4.40.1': 2145 | optional: true 2146 | 2147 | '@rollup/rollup-win32-arm64-msvc@4.40.1': 2148 | optional: true 2149 | 2150 | '@rollup/rollup-win32-ia32-msvc@4.40.1': 2151 | optional: true 2152 | 2153 | '@rollup/rollup-win32-x64-msvc@4.40.1': 2154 | optional: true 2155 | 2156 | '@types/estree@1.0.7': {} 2157 | 2158 | '@types/json-schema@7.0.15': {} 2159 | 2160 | '@types/json5@0.0.29': {} 2161 | 2162 | '@types/node@20.5.9': {} 2163 | 2164 | '@types/semver@7.7.0': {} 2165 | 2166 | '@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0)(typescript@5.2.2)': 2167 | dependencies: 2168 | '@eslint-community/regexpp': 4.12.1 2169 | '@typescript-eslint/parser': 6.6.0(eslint@8.48.0)(typescript@5.2.2) 2170 | '@typescript-eslint/scope-manager': 6.6.0 2171 | '@typescript-eslint/type-utils': 6.6.0(eslint@8.48.0)(typescript@5.2.2) 2172 | '@typescript-eslint/utils': 6.6.0(eslint@8.48.0)(typescript@5.2.2) 2173 | '@typescript-eslint/visitor-keys': 6.6.0 2174 | debug: 4.4.0 2175 | eslint: 8.48.0 2176 | graphemer: 1.4.0 2177 | ignore: 5.3.2 2178 | natural-compare: 1.4.0 2179 | semver: 7.7.1 2180 | ts-api-utils: 1.4.3(typescript@5.2.2) 2181 | optionalDependencies: 2182 | typescript: 5.2.2 2183 | transitivePeerDependencies: 2184 | - supports-color 2185 | 2186 | '@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2)': 2187 | dependencies: 2188 | '@typescript-eslint/scope-manager': 6.6.0 2189 | '@typescript-eslint/types': 6.6.0 2190 | '@typescript-eslint/typescript-estree': 6.6.0(typescript@5.2.2) 2191 | '@typescript-eslint/visitor-keys': 6.6.0 2192 | debug: 4.3.4 2193 | eslint: 8.48.0 2194 | optionalDependencies: 2195 | typescript: 5.2.2 2196 | transitivePeerDependencies: 2197 | - supports-color 2198 | 2199 | '@typescript-eslint/scope-manager@6.6.0': 2200 | dependencies: 2201 | '@typescript-eslint/types': 6.6.0 2202 | '@typescript-eslint/visitor-keys': 6.6.0 2203 | 2204 | '@typescript-eslint/type-utils@6.6.0(eslint@8.48.0)(typescript@5.2.2)': 2205 | dependencies: 2206 | '@typescript-eslint/typescript-estree': 6.6.0(typescript@5.2.2) 2207 | '@typescript-eslint/utils': 6.6.0(eslint@8.48.0)(typescript@5.2.2) 2208 | debug: 4.4.0 2209 | eslint: 8.48.0 2210 | ts-api-utils: 1.4.3(typescript@5.2.2) 2211 | optionalDependencies: 2212 | typescript: 5.2.2 2213 | transitivePeerDependencies: 2214 | - supports-color 2215 | 2216 | '@typescript-eslint/types@6.6.0': {} 2217 | 2218 | '@typescript-eslint/typescript-estree@6.6.0(typescript@5.2.2)': 2219 | dependencies: 2220 | '@typescript-eslint/types': 6.6.0 2221 | '@typescript-eslint/visitor-keys': 6.6.0 2222 | debug: 4.3.4 2223 | globby: 11.1.0 2224 | is-glob: 4.0.3 2225 | semver: 7.5.4 2226 | ts-api-utils: 1.0.3(typescript@5.2.2) 2227 | optionalDependencies: 2228 | typescript: 5.2.2 2229 | transitivePeerDependencies: 2230 | - supports-color 2231 | 2232 | '@typescript-eslint/utils@6.6.0(eslint@8.48.0)(typescript@5.2.2)': 2233 | dependencies: 2234 | '@eslint-community/eslint-utils': 4.6.1(eslint@8.48.0) 2235 | '@types/json-schema': 7.0.15 2236 | '@types/semver': 7.7.0 2237 | '@typescript-eslint/scope-manager': 6.6.0 2238 | '@typescript-eslint/types': 6.6.0 2239 | '@typescript-eslint/typescript-estree': 6.6.0(typescript@5.2.2) 2240 | eslint: 8.48.0 2241 | semver: 7.7.1 2242 | transitivePeerDependencies: 2243 | - supports-color 2244 | - typescript 2245 | 2246 | '@typescript-eslint/visitor-keys@6.6.0': 2247 | dependencies: 2248 | '@typescript-eslint/types': 6.6.0 2249 | eslint-visitor-keys: 3.4.3 2250 | 2251 | acorn-jsx@5.3.2(acorn@8.10.0): 2252 | dependencies: 2253 | acorn: 8.10.0 2254 | 2255 | acorn@8.10.0: {} 2256 | 2257 | agent-base@6.0.2: 2258 | dependencies: 2259 | debug: 4.3.4 2260 | transitivePeerDependencies: 2261 | - supports-color 2262 | 2263 | ajv@6.12.6: 2264 | dependencies: 2265 | fast-deep-equal: 3.1.3 2266 | fast-json-stable-stringify: 2.1.0 2267 | json-schema-traverse: 0.4.1 2268 | uri-js: 4.4.1 2269 | 2270 | ansi-regex@5.0.1: {} 2271 | 2272 | ansi-styles@4.3.0: 2273 | dependencies: 2274 | color-convert: 2.0.1 2275 | 2276 | any-promise@1.3.0: {} 2277 | 2278 | anymatch@3.1.3: 2279 | dependencies: 2280 | normalize-path: 3.0.0 2281 | picomatch: 2.3.1 2282 | 2283 | argparse@2.0.1: {} 2284 | 2285 | array-buffer-byte-length@1.0.2: 2286 | dependencies: 2287 | call-bound: 1.0.4 2288 | is-array-buffer: 3.0.5 2289 | 2290 | array-includes@3.1.8: 2291 | dependencies: 2292 | call-bind: 1.0.8 2293 | define-properties: 1.2.1 2294 | es-abstract: 1.23.9 2295 | es-object-atoms: 1.1.1 2296 | get-intrinsic: 1.3.0 2297 | is-string: 1.1.1 2298 | 2299 | array-union@2.1.0: {} 2300 | 2301 | array.prototype.findlastindex@1.2.6: 2302 | dependencies: 2303 | call-bind: 1.0.8 2304 | call-bound: 1.0.4 2305 | define-properties: 1.2.1 2306 | es-abstract: 1.23.9 2307 | es-errors: 1.3.0 2308 | es-object-atoms: 1.1.1 2309 | es-shim-unscopables: 1.1.0 2310 | 2311 | array.prototype.flat@1.3.3: 2312 | dependencies: 2313 | call-bind: 1.0.8 2314 | define-properties: 1.2.1 2315 | es-abstract: 1.23.9 2316 | es-shim-unscopables: 1.1.0 2317 | 2318 | array.prototype.flatmap@1.3.3: 2319 | dependencies: 2320 | call-bind: 1.0.8 2321 | define-properties: 1.2.1 2322 | es-abstract: 1.23.9 2323 | es-shim-unscopables: 1.1.0 2324 | 2325 | arraybuffer.prototype.slice@1.0.4: 2326 | dependencies: 2327 | array-buffer-byte-length: 1.0.2 2328 | call-bind: 1.0.8 2329 | define-properties: 1.2.1 2330 | es-abstract: 1.23.9 2331 | es-errors: 1.3.0 2332 | get-intrinsic: 1.3.0 2333 | is-array-buffer: 3.0.5 2334 | 2335 | async-function@1.0.0: {} 2336 | 2337 | available-typed-arrays@1.0.7: 2338 | dependencies: 2339 | possible-typed-array-names: 1.1.0 2340 | 2341 | balanced-match@1.0.2: {} 2342 | 2343 | binary-extensions@2.2.0: {} 2344 | 2345 | brace-expansion@1.1.11: 2346 | dependencies: 2347 | balanced-match: 1.0.2 2348 | concat-map: 0.0.1 2349 | 2350 | braces@3.0.3: 2351 | dependencies: 2352 | fill-range: 7.1.1 2353 | 2354 | builtins@5.1.0: 2355 | dependencies: 2356 | semver: 7.7.1 2357 | 2358 | bumpp@9.2.0: 2359 | dependencies: 2360 | '@jsdevtools/ez-spawn': 3.0.4 2361 | c12: 1.4.2 2362 | cac: 6.7.14 2363 | fast-glob: 3.3.1 2364 | prompts: 2.4.2 2365 | semver: 7.5.4 2366 | transitivePeerDependencies: 2367 | - supports-color 2368 | 2369 | bundle-require@4.0.1(esbuild@0.18.20): 2370 | dependencies: 2371 | esbuild: 0.18.20 2372 | load-tsconfig: 0.2.5 2373 | 2374 | c12@1.4.2: 2375 | dependencies: 2376 | chokidar: 3.5.3 2377 | defu: 6.1.2 2378 | dotenv: 16.3.1 2379 | giget: 1.1.2 2380 | jiti: 1.20.0 2381 | mlly: 1.4.2 2382 | ohash: 1.1.3 2383 | pathe: 1.1.1 2384 | perfect-debounce: 1.0.0 2385 | pkg-types: 1.0.3 2386 | rc9: 2.1.1 2387 | transitivePeerDependencies: 2388 | - supports-color 2389 | 2390 | cac@6.7.14: {} 2391 | 2392 | call-bind-apply-helpers@1.0.2: 2393 | dependencies: 2394 | es-errors: 1.3.0 2395 | function-bind: 1.1.2 2396 | 2397 | call-bind@1.0.8: 2398 | dependencies: 2399 | call-bind-apply-helpers: 1.0.2 2400 | es-define-property: 1.0.1 2401 | get-intrinsic: 1.3.0 2402 | set-function-length: 1.2.2 2403 | 2404 | call-bound@1.0.4: 2405 | dependencies: 2406 | call-bind-apply-helpers: 1.0.2 2407 | get-intrinsic: 1.3.0 2408 | 2409 | call-me-maybe@1.0.2: {} 2410 | 2411 | callsites@3.1.0: {} 2412 | 2413 | chalk@4.1.2: 2414 | dependencies: 2415 | ansi-styles: 4.3.0 2416 | supports-color: 7.2.0 2417 | 2418 | chokidar@3.5.3: 2419 | dependencies: 2420 | anymatch: 3.1.3 2421 | braces: 3.0.3 2422 | glob-parent: 5.1.2 2423 | is-binary-path: 2.1.0 2424 | is-glob: 4.0.3 2425 | normalize-path: 3.0.0 2426 | readdirp: 3.6.0 2427 | optionalDependencies: 2428 | fsevents: 2.3.3 2429 | 2430 | chownr@2.0.0: {} 2431 | 2432 | color-convert@2.0.1: 2433 | dependencies: 2434 | color-name: 1.1.4 2435 | 2436 | color-name@1.1.4: {} 2437 | 2438 | colorette@2.0.20: {} 2439 | 2440 | commander@4.1.1: {} 2441 | 2442 | concat-map@0.0.1: {} 2443 | 2444 | cross-spawn@7.0.3: 2445 | dependencies: 2446 | path-key: 3.1.1 2447 | shebang-command: 2.0.0 2448 | which: 2.0.2 2449 | 2450 | data-view-buffer@1.0.2: 2451 | dependencies: 2452 | call-bound: 1.0.4 2453 | es-errors: 1.3.0 2454 | is-data-view: 1.0.2 2455 | 2456 | data-view-byte-length@1.0.2: 2457 | dependencies: 2458 | call-bound: 1.0.4 2459 | es-errors: 1.3.0 2460 | is-data-view: 1.0.2 2461 | 2462 | data-view-byte-offset@1.0.1: 2463 | dependencies: 2464 | call-bound: 1.0.4 2465 | es-errors: 1.3.0 2466 | is-data-view: 1.0.2 2467 | 2468 | debug@3.2.7: 2469 | dependencies: 2470 | ms: 2.1.3 2471 | 2472 | debug@4.3.4: 2473 | dependencies: 2474 | ms: 2.1.2 2475 | 2476 | debug@4.4.0: 2477 | dependencies: 2478 | ms: 2.1.3 2479 | 2480 | deep-is@0.1.4: {} 2481 | 2482 | define-data-property@1.1.4: 2483 | dependencies: 2484 | es-define-property: 1.0.1 2485 | es-errors: 1.3.0 2486 | gopd: 1.2.0 2487 | 2488 | define-properties@1.2.1: 2489 | dependencies: 2490 | define-data-property: 1.1.4 2491 | has-property-descriptors: 1.0.2 2492 | object-keys: 1.1.1 2493 | 2494 | defu@6.1.2: {} 2495 | 2496 | destr@2.0.1: {} 2497 | 2498 | dir-glob@3.0.1: 2499 | dependencies: 2500 | path-type: 4.0.0 2501 | 2502 | doctrine@2.1.0: 2503 | dependencies: 2504 | esutils: 2.0.3 2505 | 2506 | doctrine@3.0.0: 2507 | dependencies: 2508 | esutils: 2.0.3 2509 | 2510 | dotenv@16.3.1: {} 2511 | 2512 | dunder-proto@1.0.1: 2513 | dependencies: 2514 | call-bind-apply-helpers: 1.0.2 2515 | es-errors: 1.3.0 2516 | gopd: 1.2.0 2517 | 2518 | es-abstract@1.23.9: 2519 | dependencies: 2520 | array-buffer-byte-length: 1.0.2 2521 | arraybuffer.prototype.slice: 1.0.4 2522 | available-typed-arrays: 1.0.7 2523 | call-bind: 1.0.8 2524 | call-bound: 1.0.4 2525 | data-view-buffer: 1.0.2 2526 | data-view-byte-length: 1.0.2 2527 | data-view-byte-offset: 1.0.1 2528 | es-define-property: 1.0.1 2529 | es-errors: 1.3.0 2530 | es-object-atoms: 1.1.1 2531 | es-set-tostringtag: 2.1.0 2532 | es-to-primitive: 1.3.0 2533 | function.prototype.name: 1.1.8 2534 | get-intrinsic: 1.3.0 2535 | get-proto: 1.0.1 2536 | get-symbol-description: 1.1.0 2537 | globalthis: 1.0.4 2538 | gopd: 1.2.0 2539 | has-property-descriptors: 1.0.2 2540 | has-proto: 1.2.0 2541 | has-symbols: 1.1.0 2542 | hasown: 2.0.2 2543 | internal-slot: 1.1.0 2544 | is-array-buffer: 3.0.5 2545 | is-callable: 1.2.7 2546 | is-data-view: 1.0.2 2547 | is-regex: 1.2.1 2548 | is-shared-array-buffer: 1.0.4 2549 | is-string: 1.1.1 2550 | is-typed-array: 1.1.15 2551 | is-weakref: 1.1.1 2552 | math-intrinsics: 1.1.0 2553 | object-inspect: 1.13.4 2554 | object-keys: 1.1.1 2555 | object.assign: 4.1.7 2556 | own-keys: 1.0.1 2557 | regexp.prototype.flags: 1.5.4 2558 | safe-array-concat: 1.1.3 2559 | safe-push-apply: 1.0.0 2560 | safe-regex-test: 1.1.0 2561 | set-proto: 1.0.0 2562 | string.prototype.trim: 1.2.10 2563 | string.prototype.trimend: 1.0.9 2564 | string.prototype.trimstart: 1.0.8 2565 | typed-array-buffer: 1.0.3 2566 | typed-array-byte-length: 1.0.3 2567 | typed-array-byte-offset: 1.0.4 2568 | typed-array-length: 1.0.7 2569 | unbox-primitive: 1.1.0 2570 | which-typed-array: 1.1.19 2571 | 2572 | es-define-property@1.0.1: {} 2573 | 2574 | es-errors@1.3.0: {} 2575 | 2576 | es-module-lexer@1.3.1: {} 2577 | 2578 | es-object-atoms@1.1.1: 2579 | dependencies: 2580 | es-errors: 1.3.0 2581 | 2582 | es-set-tostringtag@2.1.0: 2583 | dependencies: 2584 | es-errors: 1.3.0 2585 | get-intrinsic: 1.3.0 2586 | has-tostringtag: 1.0.2 2587 | hasown: 2.0.2 2588 | 2589 | es-shim-unscopables@1.1.0: 2590 | dependencies: 2591 | hasown: 2.0.2 2592 | 2593 | es-to-primitive@1.3.0: 2594 | dependencies: 2595 | is-callable: 1.2.7 2596 | is-date-object: 1.1.0 2597 | is-symbol: 1.1.1 2598 | 2599 | esbuild@0.18.20: 2600 | optionalDependencies: 2601 | '@esbuild/android-arm': 0.18.20 2602 | '@esbuild/android-arm64': 0.18.20 2603 | '@esbuild/android-x64': 0.18.20 2604 | '@esbuild/darwin-arm64': 0.18.20 2605 | '@esbuild/darwin-x64': 0.18.20 2606 | '@esbuild/freebsd-arm64': 0.18.20 2607 | '@esbuild/freebsd-x64': 0.18.20 2608 | '@esbuild/linux-arm': 0.18.20 2609 | '@esbuild/linux-arm64': 0.18.20 2610 | '@esbuild/linux-ia32': 0.18.20 2611 | '@esbuild/linux-loong64': 0.18.20 2612 | '@esbuild/linux-mips64el': 0.18.20 2613 | '@esbuild/linux-ppc64': 0.18.20 2614 | '@esbuild/linux-riscv64': 0.18.20 2615 | '@esbuild/linux-s390x': 0.18.20 2616 | '@esbuild/linux-x64': 0.18.20 2617 | '@esbuild/netbsd-x64': 0.18.20 2618 | '@esbuild/openbsd-x64': 0.18.20 2619 | '@esbuild/sunos-x64': 0.18.20 2620 | '@esbuild/win32-arm64': 0.18.20 2621 | '@esbuild/win32-ia32': 0.18.20 2622 | '@esbuild/win32-x64': 0.18.20 2623 | 2624 | esbuild@0.21.5: 2625 | optionalDependencies: 2626 | '@esbuild/aix-ppc64': 0.21.5 2627 | '@esbuild/android-arm': 0.21.5 2628 | '@esbuild/android-arm64': 0.21.5 2629 | '@esbuild/android-x64': 0.21.5 2630 | '@esbuild/darwin-arm64': 0.21.5 2631 | '@esbuild/darwin-x64': 0.21.5 2632 | '@esbuild/freebsd-arm64': 0.21.5 2633 | '@esbuild/freebsd-x64': 0.21.5 2634 | '@esbuild/linux-arm': 0.21.5 2635 | '@esbuild/linux-arm64': 0.21.5 2636 | '@esbuild/linux-ia32': 0.21.5 2637 | '@esbuild/linux-loong64': 0.21.5 2638 | '@esbuild/linux-mips64el': 0.21.5 2639 | '@esbuild/linux-ppc64': 0.21.5 2640 | '@esbuild/linux-riscv64': 0.21.5 2641 | '@esbuild/linux-s390x': 0.21.5 2642 | '@esbuild/linux-x64': 0.21.5 2643 | '@esbuild/netbsd-x64': 0.21.5 2644 | '@esbuild/openbsd-x64': 0.21.5 2645 | '@esbuild/sunos-x64': 0.21.5 2646 | '@esbuild/win32-arm64': 0.21.5 2647 | '@esbuild/win32-ia32': 0.21.5 2648 | '@esbuild/win32-x64': 0.21.5 2649 | 2650 | escape-string-regexp@4.0.0: {} 2651 | 2652 | eslint-compat-utils@0.5.1(eslint@8.48.0): 2653 | dependencies: 2654 | eslint: 8.48.0 2655 | semver: 7.7.1 2656 | 2657 | eslint-config-standard-with-typescript@39.0.0(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0))(eslint-plugin-n@16.0.2(eslint@8.48.0))(eslint-plugin-promise@6.1.1(eslint@8.48.0))(eslint@8.48.0)(typescript@5.2.2): 2658 | dependencies: 2659 | '@typescript-eslint/eslint-plugin': 6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0)(typescript@5.2.2) 2660 | '@typescript-eslint/parser': 6.6.0(eslint@8.48.0)(typescript@5.2.2) 2661 | eslint: 8.48.0 2662 | eslint-config-standard: 17.1.0(eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0))(eslint-plugin-n@16.0.2(eslint@8.48.0))(eslint-plugin-promise@6.1.1(eslint@8.48.0))(eslint@8.48.0) 2663 | eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0) 2664 | eslint-plugin-n: 16.0.2(eslint@8.48.0) 2665 | eslint-plugin-promise: 6.1.1(eslint@8.48.0) 2666 | typescript: 5.2.2 2667 | transitivePeerDependencies: 2668 | - supports-color 2669 | 2670 | eslint-config-standard@17.1.0(eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0))(eslint-plugin-n@16.0.2(eslint@8.48.0))(eslint-plugin-promise@6.1.1(eslint@8.48.0))(eslint@8.48.0): 2671 | dependencies: 2672 | eslint: 8.48.0 2673 | eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0) 2674 | eslint-plugin-n: 16.0.2(eslint@8.48.0) 2675 | eslint-plugin-promise: 6.1.1(eslint@8.48.0) 2676 | 2677 | eslint-import-resolver-node@0.3.9: 2678 | dependencies: 2679 | debug: 3.2.7 2680 | is-core-module: 2.16.1 2681 | resolve: 1.22.10 2682 | transitivePeerDependencies: 2683 | - supports-color 2684 | 2685 | eslint-module-utils@2.12.0(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint@8.48.0): 2686 | dependencies: 2687 | debug: 3.2.7 2688 | optionalDependencies: 2689 | '@typescript-eslint/parser': 6.6.0(eslint@8.48.0)(typescript@5.2.2) 2690 | eslint: 8.48.0 2691 | eslint-import-resolver-node: 0.3.9 2692 | transitivePeerDependencies: 2693 | - supports-color 2694 | 2695 | eslint-plugin-es-x@7.8.0(eslint@8.48.0): 2696 | dependencies: 2697 | '@eslint-community/eslint-utils': 4.6.1(eslint@8.48.0) 2698 | '@eslint-community/regexpp': 4.12.1 2699 | eslint: 8.48.0 2700 | eslint-compat-utils: 0.5.1(eslint@8.48.0) 2701 | 2702 | eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint@8.48.0): 2703 | dependencies: 2704 | array-includes: 3.1.8 2705 | array.prototype.findlastindex: 1.2.6 2706 | array.prototype.flat: 1.3.3 2707 | array.prototype.flatmap: 1.3.3 2708 | debug: 3.2.7 2709 | doctrine: 2.1.0 2710 | eslint: 8.48.0 2711 | eslint-import-resolver-node: 0.3.9 2712 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.6.0(eslint@8.48.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint@8.48.0) 2713 | has: 1.0.4 2714 | is-core-module: 2.16.1 2715 | is-glob: 4.0.3 2716 | minimatch: 3.1.2 2717 | object.fromentries: 2.0.8 2718 | object.groupby: 1.0.3 2719 | object.values: 1.2.1 2720 | semver: 6.3.1 2721 | tsconfig-paths: 3.15.0 2722 | optionalDependencies: 2723 | '@typescript-eslint/parser': 6.6.0(eslint@8.48.0)(typescript@5.2.2) 2724 | transitivePeerDependencies: 2725 | - eslint-import-resolver-typescript 2726 | - eslint-import-resolver-webpack 2727 | - supports-color 2728 | 2729 | eslint-plugin-n@16.0.2(eslint@8.48.0): 2730 | dependencies: 2731 | '@eslint-community/eslint-utils': 4.6.1(eslint@8.48.0) 2732 | builtins: 5.1.0 2733 | eslint: 8.48.0 2734 | eslint-plugin-es-x: 7.8.0(eslint@8.48.0) 2735 | ignore: 5.3.2 2736 | is-core-module: 2.16.1 2737 | minimatch: 3.1.2 2738 | resolve: 1.22.10 2739 | semver: 7.7.1 2740 | 2741 | eslint-plugin-promise@6.1.1(eslint@8.48.0): 2742 | dependencies: 2743 | eslint: 8.48.0 2744 | 2745 | eslint-scope@7.2.2: 2746 | dependencies: 2747 | esrecurse: 4.3.0 2748 | estraverse: 5.3.0 2749 | 2750 | eslint-visitor-keys@3.4.3: {} 2751 | 2752 | eslint@8.48.0: 2753 | dependencies: 2754 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.48.0) 2755 | '@eslint-community/regexpp': 4.8.0 2756 | '@eslint/eslintrc': 2.1.2 2757 | '@eslint/js': 8.48.0 2758 | '@humanwhocodes/config-array': 0.11.11 2759 | '@humanwhocodes/module-importer': 1.0.1 2760 | '@nodelib/fs.walk': 1.2.8 2761 | ajv: 6.12.6 2762 | chalk: 4.1.2 2763 | cross-spawn: 7.0.3 2764 | debug: 4.3.4 2765 | doctrine: 3.0.0 2766 | escape-string-regexp: 4.0.0 2767 | eslint-scope: 7.2.2 2768 | eslint-visitor-keys: 3.4.3 2769 | espree: 9.6.1 2770 | esquery: 1.5.0 2771 | esutils: 2.0.3 2772 | fast-deep-equal: 3.1.3 2773 | file-entry-cache: 6.0.1 2774 | find-up: 5.0.0 2775 | glob-parent: 6.0.2 2776 | globals: 13.21.0 2777 | graphemer: 1.4.0 2778 | ignore: 5.2.4 2779 | imurmurhash: 0.1.4 2780 | is-glob: 4.0.3 2781 | is-path-inside: 3.0.3 2782 | js-yaml: 4.1.0 2783 | json-stable-stringify-without-jsonify: 1.0.1 2784 | levn: 0.4.1 2785 | lodash.merge: 4.6.2 2786 | minimatch: 3.1.2 2787 | natural-compare: 1.4.0 2788 | optionator: 0.9.3 2789 | strip-ansi: 6.0.1 2790 | text-table: 0.2.0 2791 | transitivePeerDependencies: 2792 | - supports-color 2793 | 2794 | espree@9.6.1: 2795 | dependencies: 2796 | acorn: 8.10.0 2797 | acorn-jsx: 5.3.2(acorn@8.10.0) 2798 | eslint-visitor-keys: 3.4.3 2799 | 2800 | esquery@1.5.0: 2801 | dependencies: 2802 | estraverse: 5.3.0 2803 | 2804 | esrecurse@4.3.0: 2805 | dependencies: 2806 | estraverse: 5.3.0 2807 | 2808 | estraverse@5.3.0: {} 2809 | 2810 | esutils@2.0.3: {} 2811 | 2812 | execa@5.1.1: 2813 | dependencies: 2814 | cross-spawn: 7.0.3 2815 | get-stream: 6.0.1 2816 | human-signals: 2.1.0 2817 | is-stream: 2.0.1 2818 | merge-stream: 2.0.0 2819 | npm-run-path: 4.0.1 2820 | onetime: 5.1.2 2821 | signal-exit: 3.0.7 2822 | strip-final-newline: 2.0.0 2823 | 2824 | fast-deep-equal@3.1.3: {} 2825 | 2826 | fast-glob@3.3.1: 2827 | dependencies: 2828 | '@nodelib/fs.stat': 2.0.5 2829 | '@nodelib/fs.walk': 1.2.8 2830 | glob-parent: 5.1.2 2831 | merge2: 1.4.1 2832 | micromatch: 4.0.5 2833 | 2834 | fast-json-stable-stringify@2.1.0: {} 2835 | 2836 | fast-levenshtein@2.0.6: {} 2837 | 2838 | fastq@1.15.0: 2839 | dependencies: 2840 | reusify: 1.0.4 2841 | 2842 | file-entry-cache@6.0.1: 2843 | dependencies: 2844 | flat-cache: 3.1.0 2845 | 2846 | fill-range@7.1.1: 2847 | dependencies: 2848 | to-regex-range: 5.0.1 2849 | 2850 | find-up@5.0.0: 2851 | dependencies: 2852 | locate-path: 6.0.0 2853 | path-exists: 4.0.0 2854 | 2855 | flat-cache@3.1.0: 2856 | dependencies: 2857 | flatted: 3.2.7 2858 | keyv: 4.5.3 2859 | rimraf: 3.0.2 2860 | 2861 | flat@5.0.2: {} 2862 | 2863 | flatted@3.2.7: {} 2864 | 2865 | for-each@0.3.5: 2866 | dependencies: 2867 | is-callable: 1.2.7 2868 | 2869 | fs-minipass@2.1.0: 2870 | dependencies: 2871 | minipass: 3.3.6 2872 | 2873 | fs.realpath@1.0.0: {} 2874 | 2875 | fsevents@2.3.3: 2876 | optional: true 2877 | 2878 | function-bind@1.1.2: {} 2879 | 2880 | function.prototype.name@1.1.8: 2881 | dependencies: 2882 | call-bind: 1.0.8 2883 | call-bound: 1.0.4 2884 | define-properties: 1.2.1 2885 | functions-have-names: 1.2.3 2886 | hasown: 2.0.2 2887 | is-callable: 1.2.7 2888 | 2889 | functions-have-names@1.2.3: {} 2890 | 2891 | get-intrinsic@1.3.0: 2892 | dependencies: 2893 | call-bind-apply-helpers: 1.0.2 2894 | es-define-property: 1.0.1 2895 | es-errors: 1.3.0 2896 | es-object-atoms: 1.1.1 2897 | function-bind: 1.1.2 2898 | get-proto: 1.0.1 2899 | gopd: 1.2.0 2900 | has-symbols: 1.1.0 2901 | hasown: 2.0.2 2902 | math-intrinsics: 1.1.0 2903 | 2904 | get-proto@1.0.1: 2905 | dependencies: 2906 | dunder-proto: 1.0.1 2907 | es-object-atoms: 1.1.1 2908 | 2909 | get-stream@6.0.1: {} 2910 | 2911 | get-symbol-description@1.1.0: 2912 | dependencies: 2913 | call-bound: 1.0.4 2914 | es-errors: 1.3.0 2915 | get-intrinsic: 1.3.0 2916 | 2917 | giget@1.1.2: 2918 | dependencies: 2919 | colorette: 2.0.20 2920 | defu: 6.1.2 2921 | https-proxy-agent: 5.0.1 2922 | mri: 1.2.0 2923 | node-fetch-native: 1.4.0 2924 | pathe: 1.1.1 2925 | tar: 6.2.1 2926 | transitivePeerDependencies: 2927 | - supports-color 2928 | 2929 | glob-parent@5.1.2: 2930 | dependencies: 2931 | is-glob: 4.0.3 2932 | 2933 | glob-parent@6.0.2: 2934 | dependencies: 2935 | is-glob: 4.0.3 2936 | 2937 | glob@7.1.6: 2938 | dependencies: 2939 | fs.realpath: 1.0.0 2940 | inflight: 1.0.6 2941 | inherits: 2.0.4 2942 | minimatch: 3.1.2 2943 | once: 1.4.0 2944 | path-is-absolute: 1.0.1 2945 | 2946 | globals@13.21.0: 2947 | dependencies: 2948 | type-fest: 0.20.2 2949 | 2950 | globalthis@1.0.4: 2951 | dependencies: 2952 | define-properties: 1.2.1 2953 | gopd: 1.2.0 2954 | 2955 | globby@11.1.0: 2956 | dependencies: 2957 | array-union: 2.1.0 2958 | dir-glob: 3.0.1 2959 | fast-glob: 3.3.1 2960 | ignore: 5.2.4 2961 | merge2: 1.4.1 2962 | slash: 3.0.0 2963 | 2964 | gopd@1.2.0: {} 2965 | 2966 | graphemer@1.4.0: {} 2967 | 2968 | has-bigints@1.1.0: {} 2969 | 2970 | has-flag@4.0.0: {} 2971 | 2972 | has-property-descriptors@1.0.2: 2973 | dependencies: 2974 | es-define-property: 1.0.1 2975 | 2976 | has-proto@1.2.0: 2977 | dependencies: 2978 | dunder-proto: 1.0.1 2979 | 2980 | has-symbols@1.1.0: {} 2981 | 2982 | has-tostringtag@1.0.2: 2983 | dependencies: 2984 | has-symbols: 1.1.0 2985 | 2986 | has@1.0.4: {} 2987 | 2988 | hasown@2.0.2: 2989 | dependencies: 2990 | function-bind: 1.1.2 2991 | 2992 | https-proxy-agent@5.0.1: 2993 | dependencies: 2994 | agent-base: 6.0.2 2995 | debug: 4.3.4 2996 | transitivePeerDependencies: 2997 | - supports-color 2998 | 2999 | human-signals@2.1.0: {} 3000 | 3001 | ignore@5.2.4: {} 3002 | 3003 | ignore@5.3.2: {} 3004 | 3005 | import-fresh@3.3.0: 3006 | dependencies: 3007 | parent-module: 1.0.1 3008 | resolve-from: 4.0.0 3009 | 3010 | imurmurhash@0.1.4: {} 3011 | 3012 | inflight@1.0.6: 3013 | dependencies: 3014 | once: 1.4.0 3015 | wrappy: 1.0.2 3016 | 3017 | inherits@2.0.4: {} 3018 | 3019 | internal-slot@1.1.0: 3020 | dependencies: 3021 | es-errors: 1.3.0 3022 | hasown: 2.0.2 3023 | side-channel: 1.1.0 3024 | 3025 | is-array-buffer@3.0.5: 3026 | dependencies: 3027 | call-bind: 1.0.8 3028 | call-bound: 1.0.4 3029 | get-intrinsic: 1.3.0 3030 | 3031 | is-async-function@2.1.1: 3032 | dependencies: 3033 | async-function: 1.0.0 3034 | call-bound: 1.0.4 3035 | get-proto: 1.0.1 3036 | has-tostringtag: 1.0.2 3037 | safe-regex-test: 1.1.0 3038 | 3039 | is-bigint@1.1.0: 3040 | dependencies: 3041 | has-bigints: 1.1.0 3042 | 3043 | is-binary-path@2.1.0: 3044 | dependencies: 3045 | binary-extensions: 2.2.0 3046 | 3047 | is-boolean-object@1.2.2: 3048 | dependencies: 3049 | call-bound: 1.0.4 3050 | has-tostringtag: 1.0.2 3051 | 3052 | is-callable@1.2.7: {} 3053 | 3054 | is-core-module@2.16.1: 3055 | dependencies: 3056 | hasown: 2.0.2 3057 | 3058 | is-data-view@1.0.2: 3059 | dependencies: 3060 | call-bound: 1.0.4 3061 | get-intrinsic: 1.3.0 3062 | is-typed-array: 1.1.15 3063 | 3064 | is-date-object@1.1.0: 3065 | dependencies: 3066 | call-bound: 1.0.4 3067 | has-tostringtag: 1.0.2 3068 | 3069 | is-extglob@2.1.1: {} 3070 | 3071 | is-finalizationregistry@1.1.1: 3072 | dependencies: 3073 | call-bound: 1.0.4 3074 | 3075 | is-generator-function@1.1.0: 3076 | dependencies: 3077 | call-bound: 1.0.4 3078 | get-proto: 1.0.1 3079 | has-tostringtag: 1.0.2 3080 | safe-regex-test: 1.1.0 3081 | 3082 | is-glob@4.0.3: 3083 | dependencies: 3084 | is-extglob: 2.1.1 3085 | 3086 | is-map@2.0.3: {} 3087 | 3088 | is-number-object@1.1.1: 3089 | dependencies: 3090 | call-bound: 1.0.4 3091 | has-tostringtag: 1.0.2 3092 | 3093 | is-number@7.0.0: {} 3094 | 3095 | is-path-inside@3.0.3: {} 3096 | 3097 | is-regex@1.2.1: 3098 | dependencies: 3099 | call-bound: 1.0.4 3100 | gopd: 1.2.0 3101 | has-tostringtag: 1.0.2 3102 | hasown: 2.0.2 3103 | 3104 | is-set@2.0.3: {} 3105 | 3106 | is-shared-array-buffer@1.0.4: 3107 | dependencies: 3108 | call-bound: 1.0.4 3109 | 3110 | is-stream@2.0.1: {} 3111 | 3112 | is-string@1.1.1: 3113 | dependencies: 3114 | call-bound: 1.0.4 3115 | has-tostringtag: 1.0.2 3116 | 3117 | is-symbol@1.1.1: 3118 | dependencies: 3119 | call-bound: 1.0.4 3120 | has-symbols: 1.1.0 3121 | safe-regex-test: 1.1.0 3122 | 3123 | is-typed-array@1.1.15: 3124 | dependencies: 3125 | which-typed-array: 1.1.19 3126 | 3127 | is-weakmap@2.0.2: {} 3128 | 3129 | is-weakref@1.1.1: 3130 | dependencies: 3131 | call-bound: 1.0.4 3132 | 3133 | is-weakset@2.0.4: 3134 | dependencies: 3135 | call-bound: 1.0.4 3136 | get-intrinsic: 1.3.0 3137 | 3138 | isarray@2.0.5: {} 3139 | 3140 | isexe@2.0.0: {} 3141 | 3142 | jiti@1.20.0: {} 3143 | 3144 | joycon@3.1.1: {} 3145 | 3146 | js-yaml@4.1.0: 3147 | dependencies: 3148 | argparse: 2.0.1 3149 | 3150 | json-buffer@3.0.1: {} 3151 | 3152 | json-schema-traverse@0.4.1: {} 3153 | 3154 | json-stable-stringify-without-jsonify@1.0.1: {} 3155 | 3156 | json5@1.0.2: 3157 | dependencies: 3158 | minimist: 1.2.8 3159 | 3160 | jsonc-parser@3.2.0: {} 3161 | 3162 | keyv@4.5.3: 3163 | dependencies: 3164 | json-buffer: 3.0.1 3165 | 3166 | kleur@3.0.3: {} 3167 | 3168 | levn@0.4.1: 3169 | dependencies: 3170 | prelude-ls: 1.2.1 3171 | type-check: 0.4.0 3172 | 3173 | lilconfig@2.1.0: {} 3174 | 3175 | lines-and-columns@1.2.4: {} 3176 | 3177 | load-tsconfig@0.2.5: {} 3178 | 3179 | locate-path@6.0.0: 3180 | dependencies: 3181 | p-locate: 5.0.0 3182 | 3183 | lodash.merge@4.6.2: {} 3184 | 3185 | lodash.sortby@4.7.0: {} 3186 | 3187 | lru-cache@6.0.0: 3188 | dependencies: 3189 | yallist: 4.0.0 3190 | 3191 | magic-string@0.30.5: 3192 | dependencies: 3193 | '@jridgewell/sourcemap-codec': 1.4.15 3194 | 3195 | math-intrinsics@1.1.0: {} 3196 | 3197 | merge-stream@2.0.0: {} 3198 | 3199 | merge2@1.4.1: {} 3200 | 3201 | micromatch@4.0.5: 3202 | dependencies: 3203 | braces: 3.0.3 3204 | picomatch: 2.3.1 3205 | 3206 | mimic-fn@2.1.0: {} 3207 | 3208 | minimatch@3.1.2: 3209 | dependencies: 3210 | brace-expansion: 1.1.11 3211 | 3212 | minimist@1.2.8: {} 3213 | 3214 | minipass@3.3.6: 3215 | dependencies: 3216 | yallist: 4.0.0 3217 | 3218 | minipass@5.0.0: {} 3219 | 3220 | minizlib@2.1.2: 3221 | dependencies: 3222 | minipass: 3.3.6 3223 | yallist: 4.0.0 3224 | 3225 | mkdirp@1.0.4: {} 3226 | 3227 | mlly@1.4.2: 3228 | dependencies: 3229 | acorn: 8.10.0 3230 | pathe: 1.1.1 3231 | pkg-types: 1.0.3 3232 | ufo: 1.3.0 3233 | 3234 | mri@1.2.0: {} 3235 | 3236 | ms@2.1.2: {} 3237 | 3238 | ms@2.1.3: {} 3239 | 3240 | mz@2.7.0: 3241 | dependencies: 3242 | any-promise: 1.3.0 3243 | object-assign: 4.1.1 3244 | thenify-all: 1.6.0 3245 | 3246 | nanoid@3.3.11: {} 3247 | 3248 | natural-compare@1.4.0: {} 3249 | 3250 | node-fetch-native@1.4.0: {} 3251 | 3252 | normalize-path@3.0.0: {} 3253 | 3254 | npm-run-path@4.0.1: 3255 | dependencies: 3256 | path-key: 3.1.1 3257 | 3258 | object-assign@4.1.1: {} 3259 | 3260 | object-inspect@1.13.4: {} 3261 | 3262 | object-keys@1.1.1: {} 3263 | 3264 | object.assign@4.1.7: 3265 | dependencies: 3266 | call-bind: 1.0.8 3267 | call-bound: 1.0.4 3268 | define-properties: 1.2.1 3269 | es-object-atoms: 1.1.1 3270 | has-symbols: 1.1.0 3271 | object-keys: 1.1.1 3272 | 3273 | object.fromentries@2.0.8: 3274 | dependencies: 3275 | call-bind: 1.0.8 3276 | define-properties: 1.2.1 3277 | es-abstract: 1.23.9 3278 | es-object-atoms: 1.1.1 3279 | 3280 | object.groupby@1.0.3: 3281 | dependencies: 3282 | call-bind: 1.0.8 3283 | define-properties: 1.2.1 3284 | es-abstract: 1.23.9 3285 | 3286 | object.values@1.2.1: 3287 | dependencies: 3288 | call-bind: 1.0.8 3289 | call-bound: 1.0.4 3290 | define-properties: 1.2.1 3291 | es-object-atoms: 1.1.1 3292 | 3293 | ohash@1.1.3: {} 3294 | 3295 | once@1.4.0: 3296 | dependencies: 3297 | wrappy: 1.0.2 3298 | 3299 | onetime@5.1.2: 3300 | dependencies: 3301 | mimic-fn: 2.1.0 3302 | 3303 | optionator@0.9.3: 3304 | dependencies: 3305 | '@aashutoshrathi/word-wrap': 1.2.6 3306 | deep-is: 0.1.4 3307 | fast-levenshtein: 2.0.6 3308 | levn: 0.4.1 3309 | prelude-ls: 1.2.1 3310 | type-check: 0.4.0 3311 | 3312 | own-keys@1.0.1: 3313 | dependencies: 3314 | get-intrinsic: 1.3.0 3315 | object-keys: 1.1.1 3316 | safe-push-apply: 1.0.0 3317 | 3318 | p-limit@3.1.0: 3319 | dependencies: 3320 | yocto-queue: 0.1.0 3321 | 3322 | p-locate@5.0.0: 3323 | dependencies: 3324 | p-limit: 3.1.0 3325 | 3326 | parent-module@1.0.1: 3327 | dependencies: 3328 | callsites: 3.1.0 3329 | 3330 | path-exists@4.0.0: {} 3331 | 3332 | path-is-absolute@1.0.1: {} 3333 | 3334 | path-key@3.1.1: {} 3335 | 3336 | path-parse@1.0.7: {} 3337 | 3338 | path-type@4.0.0: {} 3339 | 3340 | pathe@1.1.1: {} 3341 | 3342 | perfect-debounce@1.0.0: {} 3343 | 3344 | picocolors@1.1.1: {} 3345 | 3346 | picomatch@2.3.1: {} 3347 | 3348 | pirates@4.0.6: {} 3349 | 3350 | pkg-types@1.0.3: 3351 | dependencies: 3352 | jsonc-parser: 3.2.0 3353 | mlly: 1.4.2 3354 | pathe: 1.1.1 3355 | 3356 | possible-typed-array-names@1.1.0: {} 3357 | 3358 | postcss-load-config@4.0.1(postcss@8.5.3): 3359 | dependencies: 3360 | lilconfig: 2.1.0 3361 | yaml: 2.3.2 3362 | optionalDependencies: 3363 | postcss: 8.5.3 3364 | 3365 | postcss@8.5.3: 3366 | dependencies: 3367 | nanoid: 3.3.11 3368 | picocolors: 1.1.1 3369 | source-map-js: 1.2.1 3370 | 3371 | prelude-ls@1.2.1: {} 3372 | 3373 | prompts@2.4.2: 3374 | dependencies: 3375 | kleur: 3.0.3 3376 | sisteransi: 1.0.5 3377 | 3378 | punycode@2.3.0: {} 3379 | 3380 | queue-microtask@1.2.3: {} 3381 | 3382 | rc9@2.1.1: 3383 | dependencies: 3384 | defu: 6.1.2 3385 | destr: 2.0.1 3386 | flat: 5.0.2 3387 | 3388 | readdirp@3.6.0: 3389 | dependencies: 3390 | picomatch: 2.3.1 3391 | 3392 | reflect.getprototypeof@1.0.10: 3393 | dependencies: 3394 | call-bind: 1.0.8 3395 | define-properties: 1.2.1 3396 | es-abstract: 1.23.9 3397 | es-errors: 1.3.0 3398 | es-object-atoms: 1.1.1 3399 | get-intrinsic: 1.3.0 3400 | get-proto: 1.0.1 3401 | which-builtin-type: 1.2.1 3402 | 3403 | regexp.prototype.flags@1.5.4: 3404 | dependencies: 3405 | call-bind: 1.0.8 3406 | define-properties: 1.2.1 3407 | es-errors: 1.3.0 3408 | get-proto: 1.0.1 3409 | gopd: 1.2.0 3410 | set-function-name: 2.0.2 3411 | 3412 | resolve-from@4.0.0: {} 3413 | 3414 | resolve-from@5.0.0: {} 3415 | 3416 | resolve@1.22.10: 3417 | dependencies: 3418 | is-core-module: 2.16.1 3419 | path-parse: 1.0.7 3420 | supports-preserve-symlinks-flag: 1.0.0 3421 | 3422 | reusify@1.0.4: {} 3423 | 3424 | rimraf@3.0.2: 3425 | dependencies: 3426 | glob: 7.1.6 3427 | 3428 | rollup@3.29.0: 3429 | optionalDependencies: 3430 | fsevents: 2.3.3 3431 | 3432 | rollup@4.40.1: 3433 | dependencies: 3434 | '@types/estree': 1.0.7 3435 | optionalDependencies: 3436 | '@rollup/rollup-android-arm-eabi': 4.40.1 3437 | '@rollup/rollup-android-arm64': 4.40.1 3438 | '@rollup/rollup-darwin-arm64': 4.40.1 3439 | '@rollup/rollup-darwin-x64': 4.40.1 3440 | '@rollup/rollup-freebsd-arm64': 4.40.1 3441 | '@rollup/rollup-freebsd-x64': 4.40.1 3442 | '@rollup/rollup-linux-arm-gnueabihf': 4.40.1 3443 | '@rollup/rollup-linux-arm-musleabihf': 4.40.1 3444 | '@rollup/rollup-linux-arm64-gnu': 4.40.1 3445 | '@rollup/rollup-linux-arm64-musl': 4.40.1 3446 | '@rollup/rollup-linux-loongarch64-gnu': 4.40.1 3447 | '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1 3448 | '@rollup/rollup-linux-riscv64-gnu': 4.40.1 3449 | '@rollup/rollup-linux-riscv64-musl': 4.40.1 3450 | '@rollup/rollup-linux-s390x-gnu': 4.40.1 3451 | '@rollup/rollup-linux-x64-gnu': 4.40.1 3452 | '@rollup/rollup-linux-x64-musl': 4.40.1 3453 | '@rollup/rollup-win32-arm64-msvc': 4.40.1 3454 | '@rollup/rollup-win32-ia32-msvc': 4.40.1 3455 | '@rollup/rollup-win32-x64-msvc': 4.40.1 3456 | fsevents: 2.3.3 3457 | 3458 | run-parallel@1.2.0: 3459 | dependencies: 3460 | queue-microtask: 1.2.3 3461 | 3462 | safe-array-concat@1.1.3: 3463 | dependencies: 3464 | call-bind: 1.0.8 3465 | call-bound: 1.0.4 3466 | get-intrinsic: 1.3.0 3467 | has-symbols: 1.1.0 3468 | isarray: 2.0.5 3469 | 3470 | safe-push-apply@1.0.0: 3471 | dependencies: 3472 | es-errors: 1.3.0 3473 | isarray: 2.0.5 3474 | 3475 | safe-regex-test@1.1.0: 3476 | dependencies: 3477 | call-bound: 1.0.4 3478 | es-errors: 1.3.0 3479 | is-regex: 1.2.1 3480 | 3481 | semver@6.3.1: {} 3482 | 3483 | semver@7.5.4: 3484 | dependencies: 3485 | lru-cache: 6.0.0 3486 | 3487 | semver@7.7.1: {} 3488 | 3489 | set-function-length@1.2.2: 3490 | dependencies: 3491 | define-data-property: 1.1.4 3492 | es-errors: 1.3.0 3493 | function-bind: 1.1.2 3494 | get-intrinsic: 1.3.0 3495 | gopd: 1.2.0 3496 | has-property-descriptors: 1.0.2 3497 | 3498 | set-function-name@2.0.2: 3499 | dependencies: 3500 | define-data-property: 1.1.4 3501 | es-errors: 1.3.0 3502 | functions-have-names: 1.2.3 3503 | has-property-descriptors: 1.0.2 3504 | 3505 | set-proto@1.0.0: 3506 | dependencies: 3507 | dunder-proto: 1.0.1 3508 | es-errors: 1.3.0 3509 | es-object-atoms: 1.1.1 3510 | 3511 | shebang-command@2.0.0: 3512 | dependencies: 3513 | shebang-regex: 3.0.0 3514 | 3515 | shebang-regex@3.0.0: {} 3516 | 3517 | side-channel-list@1.0.0: 3518 | dependencies: 3519 | es-errors: 1.3.0 3520 | object-inspect: 1.13.4 3521 | 3522 | side-channel-map@1.0.1: 3523 | dependencies: 3524 | call-bound: 1.0.4 3525 | es-errors: 1.3.0 3526 | get-intrinsic: 1.3.0 3527 | object-inspect: 1.13.4 3528 | 3529 | side-channel-weakmap@1.0.2: 3530 | dependencies: 3531 | call-bound: 1.0.4 3532 | es-errors: 1.3.0 3533 | get-intrinsic: 1.3.0 3534 | object-inspect: 1.13.4 3535 | side-channel-map: 1.0.1 3536 | 3537 | side-channel@1.1.0: 3538 | dependencies: 3539 | es-errors: 1.3.0 3540 | object-inspect: 1.13.4 3541 | side-channel-list: 1.0.0 3542 | side-channel-map: 1.0.1 3543 | side-channel-weakmap: 1.0.2 3544 | 3545 | signal-exit@3.0.7: {} 3546 | 3547 | sisteransi@1.0.5: {} 3548 | 3549 | slash@3.0.0: {} 3550 | 3551 | source-map-js@1.2.1: {} 3552 | 3553 | source-map@0.8.0-beta.0: 3554 | dependencies: 3555 | whatwg-url: 7.1.0 3556 | 3557 | string-argv@0.3.2: {} 3558 | 3559 | string.prototype.trim@1.2.10: 3560 | dependencies: 3561 | call-bind: 1.0.8 3562 | call-bound: 1.0.4 3563 | define-data-property: 1.1.4 3564 | define-properties: 1.2.1 3565 | es-abstract: 1.23.9 3566 | es-object-atoms: 1.1.1 3567 | has-property-descriptors: 1.0.2 3568 | 3569 | string.prototype.trimend@1.0.9: 3570 | dependencies: 3571 | call-bind: 1.0.8 3572 | call-bound: 1.0.4 3573 | define-properties: 1.2.1 3574 | es-object-atoms: 1.1.1 3575 | 3576 | string.prototype.trimstart@1.0.8: 3577 | dependencies: 3578 | call-bind: 1.0.8 3579 | define-properties: 1.2.1 3580 | es-object-atoms: 1.1.1 3581 | 3582 | strip-ansi@6.0.1: 3583 | dependencies: 3584 | ansi-regex: 5.0.1 3585 | 3586 | strip-bom@3.0.0: {} 3587 | 3588 | strip-final-newline@2.0.0: {} 3589 | 3590 | strip-json-comments@3.1.1: {} 3591 | 3592 | sucrase@3.34.0: 3593 | dependencies: 3594 | '@jridgewell/gen-mapping': 0.3.3 3595 | commander: 4.1.1 3596 | glob: 7.1.6 3597 | lines-and-columns: 1.2.4 3598 | mz: 2.7.0 3599 | pirates: 4.0.6 3600 | ts-interface-checker: 0.1.13 3601 | 3602 | supports-color@7.2.0: 3603 | dependencies: 3604 | has-flag: 4.0.0 3605 | 3606 | supports-preserve-symlinks-flag@1.0.0: {} 3607 | 3608 | tar@6.2.1: 3609 | dependencies: 3610 | chownr: 2.0.0 3611 | fs-minipass: 2.1.0 3612 | minipass: 5.0.0 3613 | minizlib: 2.1.2 3614 | mkdirp: 1.0.4 3615 | yallist: 4.0.0 3616 | 3617 | text-table@0.2.0: {} 3618 | 3619 | thenify-all@1.6.0: 3620 | dependencies: 3621 | thenify: 3.3.1 3622 | 3623 | thenify@3.3.1: 3624 | dependencies: 3625 | any-promise: 1.3.0 3626 | 3627 | to-regex-range@5.0.1: 3628 | dependencies: 3629 | is-number: 7.0.0 3630 | 3631 | tr46@1.0.1: 3632 | dependencies: 3633 | punycode: 2.3.0 3634 | 3635 | tree-kill@1.2.2: {} 3636 | 3637 | ts-api-utils@1.0.3(typescript@5.2.2): 3638 | dependencies: 3639 | typescript: 5.2.2 3640 | 3641 | ts-api-utils@1.4.3(typescript@5.2.2): 3642 | dependencies: 3643 | typescript: 5.2.2 3644 | 3645 | ts-interface-checker@0.1.13: {} 3646 | 3647 | tsconfig-paths@3.15.0: 3648 | dependencies: 3649 | '@types/json5': 0.0.29 3650 | json5: 1.0.2 3651 | minimist: 1.2.8 3652 | strip-bom: 3.0.0 3653 | 3654 | tsup@7.2.0(postcss@8.5.3)(typescript@5.2.2): 3655 | dependencies: 3656 | bundle-require: 4.0.1(esbuild@0.18.20) 3657 | cac: 6.7.14 3658 | chokidar: 3.5.3 3659 | debug: 4.3.4 3660 | esbuild: 0.18.20 3661 | execa: 5.1.1 3662 | globby: 11.1.0 3663 | joycon: 3.1.1 3664 | postcss-load-config: 4.0.1(postcss@8.5.3) 3665 | resolve-from: 5.0.0 3666 | rollup: 3.29.0 3667 | source-map: 0.8.0-beta.0 3668 | sucrase: 3.34.0 3669 | tree-kill: 1.2.2 3670 | optionalDependencies: 3671 | postcss: 8.5.3 3672 | typescript: 5.2.2 3673 | transitivePeerDependencies: 3674 | - supports-color 3675 | - ts-node 3676 | 3677 | type-check@0.4.0: 3678 | dependencies: 3679 | prelude-ls: 1.2.1 3680 | 3681 | type-detect@4.0.8: {} 3682 | 3683 | type-fest@0.20.2: {} 3684 | 3685 | typed-array-buffer@1.0.3: 3686 | dependencies: 3687 | call-bound: 1.0.4 3688 | es-errors: 1.3.0 3689 | is-typed-array: 1.1.15 3690 | 3691 | typed-array-byte-length@1.0.3: 3692 | dependencies: 3693 | call-bind: 1.0.8 3694 | for-each: 0.3.5 3695 | gopd: 1.2.0 3696 | has-proto: 1.2.0 3697 | is-typed-array: 1.1.15 3698 | 3699 | typed-array-byte-offset@1.0.4: 3700 | dependencies: 3701 | available-typed-arrays: 1.0.7 3702 | call-bind: 1.0.8 3703 | for-each: 0.3.5 3704 | gopd: 1.2.0 3705 | has-proto: 1.2.0 3706 | is-typed-array: 1.1.15 3707 | reflect.getprototypeof: 1.0.10 3708 | 3709 | typed-array-length@1.0.7: 3710 | dependencies: 3711 | call-bind: 1.0.8 3712 | for-each: 0.3.5 3713 | gopd: 1.2.0 3714 | is-typed-array: 1.1.15 3715 | possible-typed-array-names: 1.1.0 3716 | reflect.getprototypeof: 1.0.10 3717 | 3718 | typescript@5.2.2: {} 3719 | 3720 | ufo@1.3.0: {} 3721 | 3722 | unbox-primitive@1.1.0: 3723 | dependencies: 3724 | call-bound: 1.0.4 3725 | has-bigints: 1.1.0 3726 | has-symbols: 1.1.0 3727 | which-boxed-primitive: 1.1.1 3728 | 3729 | uri-js@4.4.1: 3730 | dependencies: 3731 | punycode: 2.3.0 3732 | 3733 | vite@5.4.18(@types/node@20.5.9): 3734 | dependencies: 3735 | esbuild: 0.21.5 3736 | postcss: 8.5.3 3737 | rollup: 4.40.1 3738 | optionalDependencies: 3739 | '@types/node': 20.5.9 3740 | fsevents: 2.3.3 3741 | 3742 | webidl-conversions@4.0.2: {} 3743 | 3744 | whatwg-url@7.1.0: 3745 | dependencies: 3746 | lodash.sortby: 4.7.0 3747 | tr46: 1.0.1 3748 | webidl-conversions: 4.0.2 3749 | 3750 | which-boxed-primitive@1.1.1: 3751 | dependencies: 3752 | is-bigint: 1.1.0 3753 | is-boolean-object: 1.2.2 3754 | is-number-object: 1.1.1 3755 | is-string: 1.1.1 3756 | is-symbol: 1.1.1 3757 | 3758 | which-builtin-type@1.2.1: 3759 | dependencies: 3760 | call-bound: 1.0.4 3761 | function.prototype.name: 1.1.8 3762 | has-tostringtag: 1.0.2 3763 | is-async-function: 2.1.1 3764 | is-date-object: 1.1.0 3765 | is-finalizationregistry: 1.1.1 3766 | is-generator-function: 1.1.0 3767 | is-regex: 1.2.1 3768 | is-weakref: 1.1.1 3769 | isarray: 2.0.5 3770 | which-boxed-primitive: 1.1.1 3771 | which-collection: 1.0.2 3772 | which-typed-array: 1.1.19 3773 | 3774 | which-collection@1.0.2: 3775 | dependencies: 3776 | is-map: 2.0.3 3777 | is-set: 2.0.3 3778 | is-weakmap: 2.0.2 3779 | is-weakset: 2.0.4 3780 | 3781 | which-typed-array@1.1.19: 3782 | dependencies: 3783 | available-typed-arrays: 1.0.7 3784 | call-bind: 1.0.8 3785 | call-bound: 1.0.4 3786 | for-each: 0.3.5 3787 | get-proto: 1.0.1 3788 | gopd: 1.2.0 3789 | has-tostringtag: 1.0.2 3790 | 3791 | which@2.0.2: 3792 | dependencies: 3793 | isexe: 2.0.0 3794 | 3795 | wrappy@1.0.2: {} 3796 | 3797 | yallist@4.0.0: {} 3798 | 3799 | yaml@2.3.2: {} 3800 | 3801 | yocto-queue@0.1.0: {} 3802 | --------------------------------------------------------------------------------