├── .eslintignore ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── playground ├── hmr │ ├── hmrNestedDep.js │ ├── customFile.js │ ├── index.html │ ├── package.json │ ├── hmrDep.js │ ├── vite.config.js │ └── hmr.js ├── basic │ ├── index.js │ ├── vite.config.ts │ ├── package.json │ └── index.html └── vue │ ├── public │ └── favicon.ico │ ├── src │ ├── assets │ │ └── logo.png │ ├── main.js │ ├── App.vue │ └── components │ │ └── HelloWorld.vue │ ├── vite.config.js │ ├── index.html │ └── package.json ├── pnpm-workspace.yaml ├── .gitignore ├── src ├── types.ts ├── constants.ts ├── client │ ├── styles.ts │ ├── overlay.ts │ └── index.ts └── index.ts ├── .eslintrc.json ├── index.d.ts ├── tsup.config.ts ├── tsconfig.json ├── README.md ├── LICENSE ├── package.json └── pnpm-lock.yaml /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: yingpengsha 2 | -------------------------------------------------------------------------------- /playground/hmr/hmrNestedDep.js: -------------------------------------------------------------------------------- 1 | export const foo = 1 2 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - playground/* 3 | -------------------------------------------------------------------------------- /playground/hmr/customFile.js: -------------------------------------------------------------------------------- 1 | export const msg = 'custom' 2 | -------------------------------------------------------------------------------- /playground/basic/index.js: -------------------------------------------------------------------------------- 1 | console.log(require.resolve('vite')) 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .pnpm-debug.log 3 | .DS_Store 4 | dist 5 | -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- 1 | export interface ViteTipsOptions { 2 | connect: boolean 3 | update: boolean 4 | disconnect: boolean 5 | } 6 | -------------------------------------------------------------------------------- /playground/vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingpengsha/vite-plugin-tips/HEAD/playground/vue/public/favicon.ico -------------------------------------------------------------------------------- /playground/vue/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingpengsha/vite-plugin-tips/HEAD/playground/vue/src/assets/logo.png -------------------------------------------------------------------------------- /playground/vue/src/main.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import App from './App.vue' 3 | 4 | createApp(App).mount('#app') 5 | -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- 1 | export const CLIENT_FILE_ID = '@vite-plugin-tips:client' 2 | export const CLIENT_RP_ENTRY = 'vite-plugin-tips/dist/client/index.mjs' 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@antfu/eslint-config", 3 | "rules": { 4 | "@typescript-eslint/no-unused-vars": "off", 5 | "no-console": "off" 6 | } 7 | } -------------------------------------------------------------------------------- /playground/hmr/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 |
7 | -------------------------------------------------------------------------------- /playground/basic/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import { ViteTips } from 'vite-plugin-tips' 3 | 4 | export default defineConfig({ 5 | plugins: [ 6 | ViteTips(), 7 | ], 8 | }) 9 | -------------------------------------------------------------------------------- /playground/basic/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test-basic", 3 | "scripts": { 4 | "dev": "vite" 5 | }, 6 | "devDependencies": { 7 | "vite": "^2.4.2", 8 | "vite-plugin-tips": "workspace:*" 9 | } 10 | } -------------------------------------------------------------------------------- /playground/hmr/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test-hmr", 3 | "scripts": { 4 | "dev": "vite" 5 | }, 6 | "devDependencies": { 7 | "vite": "^2.4.4", 8 | "vite-plugin-tips": "workspace:*" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | import { Plugin } from 'vite' 2 | import { ViteTipsOptions as InnerViteTipsOptions } from './src/types' 3 | 4 | export type ViteTipsOptions = Partial 5 | export function ViteTips(options?: ViteTipsOptions): Plugin 6 | -------------------------------------------------------------------------------- /playground/vue/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import vue from '@vitejs/plugin-vue' 3 | import { ViteTips } from 'vite-plugin-tips' 4 | 5 | // https://vitejs.dev/config/ 6 | export default defineConfig({ 7 | plugins: [vue(), ViteTips()], 8 | }) 9 | -------------------------------------------------------------------------------- /playground/basic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Basic 7 | 8 | 9 | Let's go dude 10 | 11 | -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- 1 | import type { Options } from 'tsup' 2 | 3 | export const tsup: Options = { 4 | outDir: 'dist', 5 | splitting: false, 6 | clean: true, 7 | format: ['cjs', 'esm'], 8 | ignoreWatch: [ 9 | 'dist', 10 | 'playground', 11 | ], 12 | entryPoints: [ 13 | 'src/index.ts', 14 | 'src/client/index.ts', 15 | ], 16 | } 17 | -------------------------------------------------------------------------------- /playground/hmr/hmrDep.js: -------------------------------------------------------------------------------- 1 | export const foo = 1 2 | export { foo as nestedFoo } from './hmrNestedDep' 3 | 4 | if (import.meta.hot) { 5 | const data = import.meta.hot.data 6 | if ('fromDispose' in data) 7 | console.log(`(dep) foo from dispose: ${data.fromDispose}`) 8 | 9 | import.meta.hot.dispose((data) => { 10 | console.log(`(dep) foo was: ${foo}`) 11 | data.fromDispose = foo 12 | }) 13 | } 14 | -------------------------------------------------------------------------------- /playground/vue/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite App 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/client/styles.ts: -------------------------------------------------------------------------------- 1 | export const warnStyle: Partial = { 2 | backgroundColor: '#ffe58f', 3 | borderBottom: '1px solid #ffc400', 4 | } 5 | export const successStyle: Partial = { 6 | backgroundColor: '#b7eb8f', 7 | borderBottom: '1px solid #7cce3d', 8 | } 9 | export const errorStyle: Partial = { 10 | backgroundColor: '#ffccc7', 11 | borderBottom: '1px solid #da5e52', 12 | } 13 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "ESNext", 4 | "target": "ES2015", 5 | "lib": ["ESNext", "DOM"], 6 | "types": ["node"], 7 | "esModuleInterop": true, 8 | "strict": true, 9 | "strictNullChecks": true, 10 | "moduleResolution": "Node", 11 | "resolveJsonModule": true, 12 | "noUnusedLocals": true 13 | }, 14 | "exclude": [ 15 | "dist", 16 | "node_modules", 17 | "test" 18 | ] 19 | } -------------------------------------------------------------------------------- /playground/vue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vite-vue-starter", 3 | "version": "0.0.0", 4 | "scripts": { 5 | "dev": "vite", 6 | "build": "vite build", 7 | "serve": "vite preview" 8 | }, 9 | "dependencies": { 10 | "vue": "^3.0.5" 11 | }, 12 | "devDependencies": { 13 | "@vitejs/plugin-vue": "^1.2.5", 14 | "@vue/compiler-sfc": "^3.0.5", 15 | "vite": "^2.4.2", 16 | "vite-plugin-tips": "workspace:*" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /playground/vue/src/App.vue: -------------------------------------------------------------------------------- 1 | 5 | 6 | 12 | 13 | 23 | -------------------------------------------------------------------------------- /playground/hmr/vite.config.js: -------------------------------------------------------------------------------- 1 | import { ViteTips } from 'vite-plugin-tips' 2 | 3 | /** 4 | * @type {import('vite').UserConfig} 5 | */ 6 | module.exports = { 7 | plugins: [ 8 | { 9 | name: 'mock-custom', 10 | async handleHotUpdate({ file, read, server }) { 11 | if (file.endsWith('customFile.js')) { 12 | const content = await read() 13 | const msg = content.match(/export const msg = '(\w+)'/)[1] 14 | server.ws.send({ 15 | type: 'custom', 16 | event: 'foo', 17 | data: { 18 | msg, 19 | }, 20 | }) 21 | } 22 | }, 23 | }, 24 | ViteTips(), 25 | ], 26 | } 27 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | 3 | on: 4 | workflow_dispatch: 5 | tags: 6 | - 'v*' 7 | 8 | jobs: 9 | release: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v2 13 | with: 14 | fetch-depth: 0 15 | - uses: actions/setup-node@v2 16 | with: 17 | node-version: '14' 18 | registry-url: https://registry.npmjs.org/ 19 | - run: npm install 20 | - run: npm run build 21 | - run: npm publish --access public 22 | env: 23 | NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 24 | - run: npx conventional-github-releaser -p angular 25 | env: 26 | CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}} 27 | -------------------------------------------------------------------------------- /playground/vue/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 30 | 31 | 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > This project has been included in [awesome-vite](https://github.com/vitejs/awesome-vite). 2 | 3 | # vite-plugin-tips 4 | 5 | Provide better development server status tips on the page. 6 | 7 | ![tips](https://user-images.githubusercontent.com/37143265/126253070-83618ae6-bb85-44f9-b6c3-fba0f4faabe0.png) 8 | 9 | ## Collection of tip 10 | 11 | ![screenshot](https://user-images.githubusercontent.com/37143265/126061915-60eedf40-8a54-4837-9816-0d93c4a11b50.png) 12 | 13 | ## Usage 14 | 15 | ### Install 16 | 17 | ```bash 18 | $ npm install vite-plugin-tips -D 19 | ``` 20 | 21 | ### configuration 22 | 23 | ```js 24 | import { ViteTips } from 'vite-plugin-tips' 25 | 26 | export default { 27 | plugins: [ 28 | ViteTips() 29 | ] 30 | } 31 | ``` 32 | 33 | ## Options 34 | 35 | ```ts 36 | interface Options { 37 | // Whether to enable relevant tips. Default is enabled. 38 | connect?: boolean 39 | update?: boolean 40 | disconnect?: boolean 41 | } 42 | ``` 43 | 44 | ## License 45 | 46 | [MIT](LICENSE) 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Pengsha Ying 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vite-plugin-tips", 3 | "version": "2.1.2", 4 | "description": "Provide better development server status tips on the page", 5 | "main": "dist/index.js", 6 | "types": "index.d.ts", 7 | "files": [ 8 | "dist", 9 | "src", 10 | "index.d.ts" 11 | ], 12 | "scripts": { 13 | "dev": "tsup --watch --sourcemap", 14 | "build": "tsup", 15 | "prepare": "pnpm run build", 16 | "release": "pnpm run build && bump --commit --tag --push && pnpm publish" 17 | }, 18 | "repository": { 19 | "type": "git", 20 | "url": "git+https://github.com/yingpengsha/vite-plugin-tips.git" 21 | }, 22 | "keywords": [ 23 | "vite", 24 | "vite-plugin" 25 | ], 26 | "author": "PengshaYing ", 27 | "license": "MIT", 28 | "bugs": "https://github.com/yingpengsha/vite-plugin-tips/issues", 29 | "homepage": "https://github.com/yingpengsha/vite-plugin-tips#readme", 30 | "devDependencies": { 31 | "@antfu/eslint-config": "^0.7.0", 32 | "@antfu/ni": "^0.7.0", 33 | "@jsdevtools/version-bump-prompt": "^6.1.0", 34 | "@types/node": "^16.3.2", 35 | "@typescript-eslint/eslint-plugin": "^4.28.3", 36 | "eslint": "^7.30.0", 37 | "esno": "^0.7.3", 38 | "tsup": "^4.11.2", 39 | "typescript": "^4.3.5", 40 | "vite": "^2.6.14" 41 | }, 42 | "peerDependencies": { 43 | "vite": "^2.6.14" 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /playground/hmr/hmr.js: -------------------------------------------------------------------------------- 1 | import { foo as depFoo, nestedFoo } from './hmrDep' 2 | 3 | export const foo = 1 4 | text('.app', foo) 5 | text('.dep', depFoo) 6 | text('.nested', nestedFoo) 7 | 8 | if (import.meta.hot) { 9 | import.meta.hot.accept(({ foo }) => { 10 | console.log('(self-accepting 1) foo is now:', foo) 11 | }) 12 | 13 | import.meta.hot.accept(({ foo }) => { 14 | console.log('(self-accepting 2) foo is now:', foo) 15 | }) 16 | 17 | const handleDep = (type, newFoo, newNestedFoo) => { 18 | console.log(`(${type}) foo is now: ${newFoo}`) 19 | console.log(`(${type}) nested foo is now: ${newNestedFoo}`) 20 | text('.dep', newFoo) 21 | text('.nested', newNestedFoo) 22 | } 23 | 24 | import.meta.hot.accept('./hmrDep', ({ foo, nestedFoo }) => { 25 | handleDep('single dep', foo, nestedFoo) 26 | }) 27 | 28 | import.meta.hot.accept(['./hmrDep'], ([{ foo, nestedFoo }]) => { 29 | handleDep('multi deps', foo, nestedFoo) 30 | }) 31 | 32 | import.meta.hot.dispose(() => { 33 | console.log('foo was:', foo) 34 | }) 35 | 36 | import.meta.hot.on('vite:beforeUpdate', (event) => { 37 | console.log(`>>> vite:beforeUpdate -- ${event.type}`) 38 | }) 39 | 40 | import.meta.hot.on('vite:error', (event) => { 41 | console.log(`>>> vite:error -- ${event.type}`) 42 | }) 43 | 44 | import.meta.hot.on('foo', ({ msg }) => { 45 | text('.custom', msg) 46 | }) 47 | } 48 | 49 | function text(el, text) { 50 | document.querySelector(el).textContent = text 51 | } 52 | -------------------------------------------------------------------------------- /src/client/overlay.ts: -------------------------------------------------------------------------------- 1 | const template = /** html */ ` 2 | 23 |
24 | 25 | X 26 |
27 | ` 28 | 29 | export interface TipOptions { 30 | message: string 31 | style?: Partial 32 | } 33 | 34 | export const COMPONENT_ID = 'vite-plugin-tip' 35 | export class Tip extends HTMLElement { 36 | root: ShadowRoot 37 | 38 | constructor(options: TipOptions) { 39 | super() 40 | this.root = this.attachShadow({ mode: 'open' }) 41 | this.root.innerHTML = template 42 | this.text(options.message, options.style) 43 | this.root.querySelector('.close')?.addEventListener('click', () => this.close()) 44 | } 45 | 46 | text(message: string, style: Partial = {}): void { 47 | const container: HTMLDivElement = this.root.querySelector('.tip')! 48 | const textEl: HTMLSpanElement = this.root.querySelector('.text')! 49 | 50 | Object.assign(container.style, style) 51 | textEl.innerText = message 52 | } 53 | 54 | close(): void { 55 | this.parentNode?.removeChild(this) 56 | } 57 | } 58 | 59 | export function createTip(option: TipOptions) { 60 | clearTips() 61 | document.body.appendChild(new Tip(option)) 62 | } 63 | 64 | export function clearTips() { 65 | document 66 | .querySelectorAll(COMPONENT_ID) 67 | .forEach(n => (n as Tip).close()) 68 | } 69 | 70 | customElements.define(COMPONENT_ID, Tip) 71 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import path from 'path' 2 | import { Plugin, ResolvedConfig } from 'vite' 3 | import { CLIENT_FILE_ID, CLIENT_RP_ENTRY } from './constants' 4 | import { ViteTipsOptions } from './types' 5 | 6 | export function ViteTips(rawOptions: Partial = {}): Plugin { 7 | let config: ResolvedConfig 8 | const options: ViteTipsOptions = { 9 | connect: rawOptions.connect ?? true, 10 | update: rawOptions.update ?? true, 11 | disconnect: rawOptions.disconnect ?? true, 12 | } 13 | 14 | return { 15 | name: 'vite-plugin-tips', 16 | config: () => ({ 17 | optimizeDeps: { 18 | exclude: ['vite-plugin-tips'], 19 | }, 20 | }), 21 | configResolved(resolvedConfig) { 22 | config = resolvedConfig 23 | }, 24 | load(id) { 25 | if (id.endsWith(CLIENT_FILE_ID)) 26 | return `import '${CLIENT_RP_ENTRY}'` 27 | }, 28 | transform(code, id) { 29 | if (id.match(CLIENT_RP_ENTRY)) { 30 | let HMROptions = config.server.hmr 31 | HMROptions = HMROptions && typeof HMROptions !== 'boolean' ? HMROptions : {} 32 | const host = HMROptions.host || null 33 | const protocol = HMROptions.protocol || null 34 | let port 35 | if (config.server.middlewareMode) { 36 | if (typeof config.server.hmr === 'object') 37 | port = config.server.hmr.clientPort || config.server.hmr.port 38 | 39 | port = String(port || 24678) 40 | } 41 | else { 42 | port = String(HMROptions.port || config.server.port!) 43 | } 44 | let hmrBase = config.base 45 | if (HMROptions.path) 46 | hmrBase = path.posix.join(hmrBase, HMROptions.path) 47 | 48 | if (hmrBase !== '/') 49 | port = path.posix.normalize(`${port}${hmrBase}`) 50 | 51 | return code 52 | .replace('__HMR_PROTOCOL__', JSON.stringify(protocol)) 53 | .replace('__HMR_HOSTNAME__', JSON.stringify(host)) 54 | .replace('__HMR_PORT__', JSON.stringify(port)) 55 | .replace('__TIPS_OPTION_CONNECT__', Boolean(options.connect).toString()) 56 | .replace('__TIPS_OPTION_UPDATE__', Boolean(options.update).toString()) 57 | .replace('__TIPS_OPTION_DISCONNECT__', Boolean(options.disconnect).toString()) 58 | } 59 | }, 60 | transformIndexHtml: { 61 | enforce: 'pre', 62 | transform(html, ctx) { 63 | const isDev = ctx.server 64 | return { 65 | html, 66 | tags: isDev 67 | ? [ 68 | { 69 | tag: 'script', 70 | attrs: { 71 | type: 'module', 72 | src: CLIENT_FILE_ID, 73 | }, 74 | injectTo: 'head-prepend', 75 | }, 76 | ] 77 | : [], 78 | } 79 | }, 80 | }, 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /src/client/index.ts: -------------------------------------------------------------------------------- 1 | import { ViteTipsOptions } from '../types' 2 | import { clearTips, createTip } from './overlay' 3 | import { errorStyle, successStyle, warnStyle } from './styles' 4 | 5 | declare const __HMR_PROTOCOL__: string 6 | declare const __HMR_HOSTNAME__: string 7 | declare const __HMR_PORT__: string 8 | declare const __TIPS_OPTION_CONNECT__: boolean 9 | declare const __TIPS_OPTION_UPDATE__: boolean 10 | declare const __TIPS_OPTION_DISCONNECT__: boolean 11 | 12 | const socketProtocol = __HMR_PROTOCOL__ || (location.protocol === 'https:' ? 'wss' : 'ws') 13 | const socketHost = `${__HMR_HOSTNAME__ || location.hostname}:${__HMR_PORT__}` 14 | const socket = new WebSocket(`${socketProtocol}://${socketHost}`, 'vite-hmr') 15 | 16 | const tipsOptions: ViteTipsOptions = { 17 | connect: __TIPS_OPTION_CONNECT__, 18 | update: __TIPS_OPTION_UPDATE__, 19 | disconnect: __TIPS_OPTION_DISCONNECT__, 20 | } 21 | 22 | const rawConsoleLog = console.log 23 | const rawConsoleError = console.error 24 | 25 | function fakeConsoleLog(...data: any[]): void { 26 | if (typeof data?.[0] === 'string' && (data[0].startsWith('[vite] hot updated') || data[0].startsWith('[vite] css hot updated'))) { 27 | createTip({ 28 | message: data[0], 29 | style: successStyle, 30 | }) 31 | restoreConsole() 32 | setTimeout(() => { 33 | clearTips() 34 | }, 1000) 35 | } 36 | rawConsoleLog.apply(console, data) 37 | } 38 | 39 | function fakeConsoleError(...data: any[]): void { 40 | const isHMRFailed = typeof data?.[0] === 'string' && data[0].startsWith('[hmr] Failed to reload') 41 | const isErrorInFetch = data?.[0] instanceof Error && data[0].stack?.match('fetchUpdate') 42 | if (isHMRFailed || isErrorInFetch) { 43 | createTip({ 44 | message: data[0]?.stack || data[0], 45 | style: errorStyle, 46 | }) 47 | restoreConsole() 48 | } 49 | rawConsoleError.apply(console, data) 50 | } 51 | 52 | function restoreConsole() { 53 | console.log = rawConsoleLog 54 | console.error = rawConsoleError 55 | } 56 | 57 | if (tipsOptions.connect) { 58 | createTip({ 59 | message: '[vite] connecting...', 60 | style: warnStyle, 61 | }) 62 | } 63 | 64 | if (tipsOptions.disconnect) { 65 | socket.addEventListener('close', async({ wasClean }) => { 66 | if (wasClean) return 67 | createTip({ 68 | message: '[vite] server connection lost. polling for restart...', 69 | style: errorStyle, 70 | }) 71 | }) 72 | } 73 | 74 | socket.addEventListener('message', ({ data }) => { 75 | switch (JSON.parse(data).type) { 76 | case 'connected': 77 | if (tipsOptions.connect) { 78 | createTip({ 79 | message: '[vite] connected...', 80 | style: successStyle, 81 | }) 82 | setTimeout(() => { 83 | clearTips() 84 | }, 1000) 85 | } 86 | break 87 | case 'update': 88 | if (tipsOptions.update) { 89 | createTip({ 90 | message: '[vite] updating...', 91 | style: warnStyle, 92 | }) 93 | console.log = fakeConsoleLog 94 | console.error = fakeConsoleError 95 | } 96 | break 97 | case 'error': 98 | if (tipsOptions.update) { 99 | clearTips() 100 | restoreConsole() 101 | } 102 | break 103 | default: 104 | break 105 | } 106 | }) 107 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | importers: 4 | 5 | .: 6 | specifiers: 7 | '@antfu/eslint-config': ^0.7.0 8 | '@antfu/ni': ^0.7.0 9 | '@jsdevtools/version-bump-prompt': ^6.1.0 10 | '@types/node': ^16.3.2 11 | '@typescript-eslint/eslint-plugin': ^4.28.3 12 | eslint: ^7.30.0 13 | esno: ^0.7.3 14 | tsup: ^4.11.2 15 | typescript: ^4.3.5 16 | vite: ^2.6.14 17 | devDependencies: 18 | '@antfu/eslint-config': 0.7.0_wnilx7boviscikmvsfkd6ljepe 19 | '@antfu/ni': 0.7.0 20 | '@jsdevtools/version-bump-prompt': 6.1.0 21 | '@types/node': 16.11.7 22 | '@typescript-eslint/eslint-plugin': 4.33.0_wnilx7boviscikmvsfkd6ljepe 23 | eslint: 7.32.0 24 | esno: 0.7.3 25 | tsup: 4.14.0_typescript@4.4.4 26 | typescript: 4.4.4 27 | vite: 2.6.14 28 | 29 | playground/basic: 30 | specifiers: 31 | vite: ^2.4.2 32 | vite-plugin-tips: workspace:* 33 | devDependencies: 34 | vite: 2.6.14 35 | vite-plugin-tips: link:../.. 36 | 37 | playground/hmr: 38 | specifiers: 39 | vite: ^2.4.4 40 | vite-plugin-tips: workspace:* 41 | devDependencies: 42 | vite: 2.6.14 43 | vite-plugin-tips: link:../.. 44 | 45 | playground/vue: 46 | specifiers: 47 | '@vitejs/plugin-vue': ^1.2.5 48 | '@vue/compiler-sfc': ^3.0.5 49 | vite: ^2.4.2 50 | vite-plugin-tips: workspace:* 51 | vue: ^3.0.5 52 | dependencies: 53 | vue: 3.2.21 54 | devDependencies: 55 | '@vitejs/plugin-vue': 1.9.4_vite@2.6.14 56 | '@vue/compiler-sfc': 3.2.21 57 | vite: 2.6.14 58 | vite-plugin-tips: link:../.. 59 | 60 | packages: 61 | 62 | /@antfu/eslint-config-basic/0.7.0_ffi3uiz42rv3jyhs6cr7p7qqry: 63 | resolution: {integrity: sha512-uvRowyFwO9tS4f0AbTdn0/OhCluV38C145npLFfBjOMbIyujtOM7jvsZ/JJq5eXpBkfuEe8p253uvIJiB1CeNQ==} 64 | peerDependencies: 65 | eslint: '>=7.4.0' 66 | dependencies: 67 | eslint: 7.32.0 68 | eslint-config-standard: 16.0.3_ybshqmai4zbx3kmndbh5iwavwy 69 | eslint-plugin-eslint-comments: 3.2.0_eslint@7.32.0 70 | eslint-plugin-html: 6.2.0 71 | eslint-plugin-import: 2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry 72 | eslint-plugin-jsonc: 1.7.0_eslint@7.32.0 73 | eslint-plugin-node: 11.1.0_eslint@7.32.0 74 | eslint-plugin-promise: 5.1.1_eslint@7.32.0 75 | eslint-plugin-unicorn: 34.0.1_eslint@7.32.0 76 | eslint-plugin-yml: 0.9.0_eslint@7.32.0 77 | jsonc-eslint-parser: 1.4.1 78 | yaml-eslint-parser: 0.3.2 79 | transitivePeerDependencies: 80 | - '@typescript-eslint/parser' 81 | - eslint-import-resolver-typescript 82 | - eslint-import-resolver-webpack 83 | - supports-color 84 | dev: true 85 | 86 | /@antfu/eslint-config-react/0.7.0_wnilx7boviscikmvsfkd6ljepe: 87 | resolution: {integrity: sha512-wZj2YP7MiJCqPAkxwfTSgLCFqg8SLS9F/4FVh7bc/AqngfvSyE21nVzzYx6OM5fgCBY5acmdj0KttxrUDf5m3w==} 88 | peerDependencies: 89 | eslint: '>=7.4.0' 90 | dependencies: 91 | '@antfu/eslint-config-ts': 0.7.0_wnilx7boviscikmvsfkd6ljepe 92 | eslint: 7.32.0 93 | eslint-plugin-react: 7.27.0_eslint@7.32.0 94 | transitivePeerDependencies: 95 | - eslint-import-resolver-typescript 96 | - eslint-import-resolver-webpack 97 | - supports-color 98 | - typescript 99 | dev: true 100 | 101 | /@antfu/eslint-config-ts/0.7.0_wnilx7boviscikmvsfkd6ljepe: 102 | resolution: {integrity: sha512-SsWarj0OCZwT6YoZuUUpMzMagqSz279kyu498UEazP/H4P0nWZg32/hOJnE0F6swAk3jRcqbTybSVRM9GwQElA==} 103 | peerDependencies: 104 | eslint: '>=7.4.0' 105 | typescript: '>=3.9' 106 | dependencies: 107 | '@antfu/eslint-config-basic': 0.7.0_ffi3uiz42rv3jyhs6cr7p7qqry 108 | '@typescript-eslint/eslint-plugin': 4.33.0_zrqxgwgitu7trrjeml3nqco3jq 109 | '@typescript-eslint/parser': 4.33.0_wnilx7boviscikmvsfkd6ljepe 110 | eslint: 7.32.0 111 | typescript: 4.4.4 112 | transitivePeerDependencies: 113 | - eslint-import-resolver-typescript 114 | - eslint-import-resolver-webpack 115 | - supports-color 116 | dev: true 117 | 118 | /@antfu/eslint-config-vue/0.7.0_wnilx7boviscikmvsfkd6ljepe: 119 | resolution: {integrity: sha512-h5Lx9R/dmrGYED4tGNroDflU6ECBk9Ts+aVb9qH4XBVPNcMSFCfnuvCuORs2I/QlZUL3Vc/UZlZOY3ULN4tuTg==} 120 | peerDependencies: 121 | eslint: '>=7.4.0' 122 | dependencies: 123 | '@antfu/eslint-config-ts': 0.7.0_wnilx7boviscikmvsfkd6ljepe 124 | eslint: 7.32.0 125 | eslint-plugin-vue: 7.12.1_eslint@7.32.0 126 | transitivePeerDependencies: 127 | - eslint-import-resolver-typescript 128 | - eslint-import-resolver-webpack 129 | - supports-color 130 | - typescript 131 | dev: true 132 | 133 | /@antfu/eslint-config/0.7.0_wnilx7boviscikmvsfkd6ljepe: 134 | resolution: {integrity: sha512-wVAQhab+Mlg6+/+a/fxdAzS6CVJ+tvH/53UWwNE6VRvWjPWQXhfs4/4v0G59O6IhGsSzbkohgdrT3pvJWMen5w==} 135 | peerDependencies: 136 | eslint: '>=7.4.0' 137 | dependencies: 138 | '@antfu/eslint-config-react': 0.7.0_wnilx7boviscikmvsfkd6ljepe 139 | '@antfu/eslint-config-vue': 0.7.0_wnilx7boviscikmvsfkd6ljepe 140 | eslint: 7.32.0 141 | transitivePeerDependencies: 142 | - eslint-import-resolver-typescript 143 | - eslint-import-resolver-webpack 144 | - supports-color 145 | - typescript 146 | dev: true 147 | 148 | /@antfu/ni/0.7.0: 149 | resolution: {integrity: sha512-wXtpUOMu3l5QWVXBrsaxCbgD2dbKQ1N/5ji7Xl3FTrfSb96+BElRhmaLyZd1A5U4TXz6S/FLR8jQQ3XJ78aHIQ==} 150 | hasBin: true 151 | dev: true 152 | 153 | /@babel/code-frame/7.12.11: 154 | resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} 155 | dependencies: 156 | '@babel/highlight': 7.16.0 157 | dev: true 158 | 159 | /@babel/code-frame/7.16.0: 160 | resolution: {integrity: sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==} 161 | engines: {node: '>=6.9.0'} 162 | dependencies: 163 | '@babel/highlight': 7.16.0 164 | dev: true 165 | 166 | /@babel/compat-data/7.16.0: 167 | resolution: {integrity: sha512-DGjt2QZse5SGd9nfOSqO4WLJ8NN/oHkijbXbPrxuoJO3oIPJL3TciZs9FX+cOHNiY9E9l0opL8g7BmLe3T+9ew==} 168 | engines: {node: '>=6.9.0'} 169 | dev: true 170 | 171 | /@babel/core/7.16.0: 172 | resolution: {integrity: sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==} 173 | engines: {node: '>=6.9.0'} 174 | dependencies: 175 | '@babel/code-frame': 7.16.0 176 | '@babel/generator': 7.16.0 177 | '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 178 | '@babel/helper-module-transforms': 7.16.0 179 | '@babel/helpers': 7.16.3 180 | '@babel/parser': 7.16.3 181 | '@babel/template': 7.16.0 182 | '@babel/traverse': 7.16.3 183 | '@babel/types': 7.16.0 184 | convert-source-map: 1.8.0 185 | debug: 4.3.2 186 | gensync: 1.0.0-beta.2 187 | json5: 2.2.0 188 | semver: 6.3.0 189 | source-map: 0.5.7 190 | transitivePeerDependencies: 191 | - supports-color 192 | dev: true 193 | 194 | /@babel/eslint-parser/7.16.3_q3hdp35agahhlc67sgxrhsgj5a: 195 | resolution: {integrity: sha512-iB4ElZT0jAt7PKVaeVulOECdGe6UnmA/O0P9jlF5g5GBOwDVbna8AXhHRu4s27xQf6OkveyA8iTDv1jHdDejgQ==} 196 | engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} 197 | peerDependencies: 198 | '@babel/core': '>=7.11.0' 199 | eslint: ^7.5.0 || ^8.0.0 200 | dependencies: 201 | '@babel/core': 7.16.0 202 | eslint: 7.32.0 203 | eslint-scope: 5.1.1 204 | eslint-visitor-keys: 2.1.0 205 | semver: 6.3.0 206 | dev: true 207 | 208 | /@babel/generator/7.16.0: 209 | resolution: {integrity: sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==} 210 | engines: {node: '>=6.9.0'} 211 | dependencies: 212 | '@babel/types': 7.16.0 213 | jsesc: 2.5.2 214 | source-map: 0.5.7 215 | dev: true 216 | 217 | /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: 218 | resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} 219 | engines: {node: '>=6.9.0'} 220 | peerDependencies: 221 | '@babel/core': ^7.0.0 222 | dependencies: 223 | '@babel/compat-data': 7.16.0 224 | '@babel/core': 7.16.0 225 | '@babel/helper-validator-option': 7.14.5 226 | browserslist: 4.17.6 227 | semver: 6.3.0 228 | dev: true 229 | 230 | /@babel/helper-function-name/7.16.0: 231 | resolution: {integrity: sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==} 232 | engines: {node: '>=6.9.0'} 233 | dependencies: 234 | '@babel/helper-get-function-arity': 7.16.0 235 | '@babel/template': 7.16.0 236 | '@babel/types': 7.16.0 237 | dev: true 238 | 239 | /@babel/helper-get-function-arity/7.16.0: 240 | resolution: {integrity: sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==} 241 | engines: {node: '>=6.9.0'} 242 | dependencies: 243 | '@babel/types': 7.16.0 244 | dev: true 245 | 246 | /@babel/helper-hoist-variables/7.16.0: 247 | resolution: {integrity: sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==} 248 | engines: {node: '>=6.9.0'} 249 | dependencies: 250 | '@babel/types': 7.16.0 251 | dev: true 252 | 253 | /@babel/helper-member-expression-to-functions/7.16.0: 254 | resolution: {integrity: sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==} 255 | engines: {node: '>=6.9.0'} 256 | dependencies: 257 | '@babel/types': 7.16.0 258 | dev: true 259 | 260 | /@babel/helper-module-imports/7.16.0: 261 | resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==} 262 | engines: {node: '>=6.9.0'} 263 | dependencies: 264 | '@babel/types': 7.16.0 265 | dev: true 266 | 267 | /@babel/helper-module-transforms/7.16.0: 268 | resolution: {integrity: sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==} 269 | engines: {node: '>=6.9.0'} 270 | dependencies: 271 | '@babel/helper-module-imports': 7.16.0 272 | '@babel/helper-replace-supers': 7.16.0 273 | '@babel/helper-simple-access': 7.16.0 274 | '@babel/helper-split-export-declaration': 7.16.0 275 | '@babel/helper-validator-identifier': 7.15.7 276 | '@babel/template': 7.16.0 277 | '@babel/traverse': 7.16.3 278 | '@babel/types': 7.16.0 279 | transitivePeerDependencies: 280 | - supports-color 281 | dev: true 282 | 283 | /@babel/helper-optimise-call-expression/7.16.0: 284 | resolution: {integrity: sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==} 285 | engines: {node: '>=6.9.0'} 286 | dependencies: 287 | '@babel/types': 7.16.0 288 | dev: true 289 | 290 | /@babel/helper-replace-supers/7.16.0: 291 | resolution: {integrity: sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==} 292 | engines: {node: '>=6.9.0'} 293 | dependencies: 294 | '@babel/helper-member-expression-to-functions': 7.16.0 295 | '@babel/helper-optimise-call-expression': 7.16.0 296 | '@babel/traverse': 7.16.3 297 | '@babel/types': 7.16.0 298 | transitivePeerDependencies: 299 | - supports-color 300 | dev: true 301 | 302 | /@babel/helper-simple-access/7.16.0: 303 | resolution: {integrity: sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==} 304 | engines: {node: '>=6.9.0'} 305 | dependencies: 306 | '@babel/types': 7.16.0 307 | dev: true 308 | 309 | /@babel/helper-split-export-declaration/7.16.0: 310 | resolution: {integrity: sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==} 311 | engines: {node: '>=6.9.0'} 312 | dependencies: 313 | '@babel/types': 7.16.0 314 | dev: true 315 | 316 | /@babel/helper-validator-identifier/7.15.7: 317 | resolution: {integrity: sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==} 318 | engines: {node: '>=6.9.0'} 319 | 320 | /@babel/helper-validator-option/7.14.5: 321 | resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==} 322 | engines: {node: '>=6.9.0'} 323 | dev: true 324 | 325 | /@babel/helpers/7.16.3: 326 | resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==} 327 | engines: {node: '>=6.9.0'} 328 | dependencies: 329 | '@babel/template': 7.16.0 330 | '@babel/traverse': 7.16.3 331 | '@babel/types': 7.16.0 332 | transitivePeerDependencies: 333 | - supports-color 334 | dev: true 335 | 336 | /@babel/highlight/7.16.0: 337 | resolution: {integrity: sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==} 338 | engines: {node: '>=6.9.0'} 339 | dependencies: 340 | '@babel/helper-validator-identifier': 7.15.7 341 | chalk: 2.4.2 342 | js-tokens: 4.0.0 343 | dev: true 344 | 345 | /@babel/parser/7.16.3: 346 | resolution: {integrity: sha512-dcNwU1O4sx57ClvLBVFbEgx0UZWfd0JQX5X6fxFRCLHelFBGXFfSz6Y0FAq2PEwUqlqLkdVjVr4VASEOuUnLJw==} 347 | engines: {node: '>=6.0.0'} 348 | hasBin: true 349 | dependencies: 350 | '@babel/types': 7.16.0 351 | 352 | /@babel/template/7.16.0: 353 | resolution: {integrity: sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==} 354 | engines: {node: '>=6.9.0'} 355 | dependencies: 356 | '@babel/code-frame': 7.16.0 357 | '@babel/parser': 7.16.3 358 | '@babel/types': 7.16.0 359 | dev: true 360 | 361 | /@babel/traverse/7.16.3: 362 | resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==} 363 | engines: {node: '>=6.9.0'} 364 | dependencies: 365 | '@babel/code-frame': 7.16.0 366 | '@babel/generator': 7.16.0 367 | '@babel/helper-function-name': 7.16.0 368 | '@babel/helper-hoist-variables': 7.16.0 369 | '@babel/helper-split-export-declaration': 7.16.0 370 | '@babel/parser': 7.16.3 371 | '@babel/types': 7.16.0 372 | debug: 4.3.2 373 | globals: 11.12.0 374 | transitivePeerDependencies: 375 | - supports-color 376 | dev: true 377 | 378 | /@babel/types/7.16.0: 379 | resolution: {integrity: sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==} 380 | engines: {node: '>=6.9.0'} 381 | dependencies: 382 | '@babel/helper-validator-identifier': 7.15.7 383 | to-fast-properties: 2.0.0 384 | 385 | /@eslint/eslintrc/0.4.3: 386 | resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} 387 | engines: {node: ^10.12.0 || >=12.0.0} 388 | dependencies: 389 | ajv: 6.12.6 390 | debug: 4.3.2 391 | espree: 7.3.1 392 | globals: 13.12.0 393 | ignore: 4.0.6 394 | import-fresh: 3.3.0 395 | js-yaml: 3.14.1 396 | minimatch: 3.0.4 397 | strip-json-comments: 3.1.1 398 | transitivePeerDependencies: 399 | - supports-color 400 | dev: true 401 | 402 | /@humanwhocodes/config-array/0.5.0: 403 | resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} 404 | engines: {node: '>=10.10.0'} 405 | dependencies: 406 | '@humanwhocodes/object-schema': 1.2.1 407 | debug: 4.3.2 408 | minimatch: 3.0.4 409 | transitivePeerDependencies: 410 | - supports-color 411 | dev: true 412 | 413 | /@humanwhocodes/object-schema/1.2.1: 414 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 415 | dev: true 416 | 417 | /@jsdevtools/ez-spawn/3.0.4: 418 | resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==} 419 | engines: {node: '>=10'} 420 | dependencies: 421 | call-me-maybe: 1.0.1 422 | cross-spawn: 7.0.3 423 | string-argv: 0.3.1 424 | type-detect: 4.0.8 425 | dev: true 426 | 427 | /@jsdevtools/version-bump-prompt/6.1.0: 428 | resolution: {integrity: sha512-NJFLJRiD3LLFBgSxAb6B255xhWCGgdtzmh6UjHK2b7SRGX2DDKJH5O4BJ0GTStBu4NnaNgMbkr1TLW3pLOBkOQ==} 429 | engines: {node: '>=10'} 430 | hasBin: true 431 | dependencies: 432 | '@jsdevtools/ez-spawn': 3.0.4 433 | command-line-args: 5.2.0 434 | detect-indent: 6.1.0 435 | detect-newline: 3.1.0 436 | globby: 11.0.4 437 | inquirer: 7.3.3 438 | log-symbols: 4.1.0 439 | semver: 7.3.5 440 | dev: true 441 | 442 | /@nodelib/fs.scandir/2.1.5: 443 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 444 | engines: {node: '>= 8'} 445 | dependencies: 446 | '@nodelib/fs.stat': 2.0.5 447 | run-parallel: 1.2.0 448 | dev: true 449 | 450 | /@nodelib/fs.stat/2.0.5: 451 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 452 | engines: {node: '>= 8'} 453 | dev: true 454 | 455 | /@nodelib/fs.walk/1.2.8: 456 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 457 | engines: {node: '>= 8'} 458 | dependencies: 459 | '@nodelib/fs.scandir': 2.1.5 460 | fastq: 1.13.0 461 | dev: true 462 | 463 | /@types/json-schema/7.0.9: 464 | resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} 465 | dev: true 466 | 467 | /@types/json5/0.0.29: 468 | resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=} 469 | dev: true 470 | 471 | /@types/node/16.11.7: 472 | resolution: {integrity: sha512-QB5D2sqfSjCmTuWcBWyJ+/44bcjO7VbjSbOE0ucoVbAsSNQc4Lt6QkgkVXkTDwkL4z/beecZNDvVX15D4P8Jbw==} 473 | dev: true 474 | 475 | /@types/normalize-package-data/2.4.1: 476 | resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} 477 | dev: true 478 | 479 | /@typescript-eslint/eslint-plugin/4.33.0_wnilx7boviscikmvsfkd6ljepe: 480 | resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} 481 | engines: {node: ^10.12.0 || >=12.0.0} 482 | peerDependencies: 483 | '@typescript-eslint/parser': ^4.0.0 484 | eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 485 | typescript: '*' 486 | peerDependenciesMeta: 487 | typescript: 488 | optional: true 489 | dependencies: 490 | '@typescript-eslint/experimental-utils': 4.33.0_wnilx7boviscikmvsfkd6ljepe 491 | '@typescript-eslint/scope-manager': 4.33.0 492 | debug: 4.3.2 493 | eslint: 7.32.0 494 | functional-red-black-tree: 1.0.1 495 | ignore: 5.1.9 496 | regexpp: 3.2.0 497 | semver: 7.3.5 498 | tsutils: 3.21.0_typescript@4.4.4 499 | typescript: 4.4.4 500 | transitivePeerDependencies: 501 | - supports-color 502 | dev: true 503 | 504 | /@typescript-eslint/eslint-plugin/4.33.0_zrqxgwgitu7trrjeml3nqco3jq: 505 | resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} 506 | engines: {node: ^10.12.0 || >=12.0.0} 507 | peerDependencies: 508 | '@typescript-eslint/parser': ^4.0.0 509 | eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 510 | typescript: '*' 511 | peerDependenciesMeta: 512 | typescript: 513 | optional: true 514 | dependencies: 515 | '@typescript-eslint/experimental-utils': 4.33.0_wnilx7boviscikmvsfkd6ljepe 516 | '@typescript-eslint/parser': 4.33.0_wnilx7boviscikmvsfkd6ljepe 517 | '@typescript-eslint/scope-manager': 4.33.0 518 | debug: 4.3.2 519 | eslint: 7.32.0 520 | functional-red-black-tree: 1.0.1 521 | ignore: 5.1.9 522 | regexpp: 3.2.0 523 | semver: 7.3.5 524 | tsutils: 3.21.0_typescript@4.4.4 525 | typescript: 4.4.4 526 | transitivePeerDependencies: 527 | - supports-color 528 | dev: true 529 | 530 | /@typescript-eslint/experimental-utils/4.33.0_wnilx7boviscikmvsfkd6ljepe: 531 | resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} 532 | engines: {node: ^10.12.0 || >=12.0.0} 533 | peerDependencies: 534 | eslint: '*' 535 | dependencies: 536 | '@types/json-schema': 7.0.9 537 | '@typescript-eslint/scope-manager': 4.33.0 538 | '@typescript-eslint/types': 4.33.0 539 | '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.4.4 540 | eslint: 7.32.0 541 | eslint-scope: 5.1.1 542 | eslint-utils: 3.0.0_eslint@7.32.0 543 | transitivePeerDependencies: 544 | - supports-color 545 | - typescript 546 | dev: true 547 | 548 | /@typescript-eslint/parser/4.33.0_wnilx7boviscikmvsfkd6ljepe: 549 | resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} 550 | engines: {node: ^10.12.0 || >=12.0.0} 551 | peerDependencies: 552 | eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 553 | typescript: '*' 554 | peerDependenciesMeta: 555 | typescript: 556 | optional: true 557 | dependencies: 558 | '@typescript-eslint/scope-manager': 4.33.0 559 | '@typescript-eslint/types': 4.33.0 560 | '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.4.4 561 | debug: 4.3.2 562 | eslint: 7.32.0 563 | typescript: 4.4.4 564 | transitivePeerDependencies: 565 | - supports-color 566 | dev: true 567 | 568 | /@typescript-eslint/scope-manager/4.33.0: 569 | resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} 570 | engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} 571 | dependencies: 572 | '@typescript-eslint/types': 4.33.0 573 | '@typescript-eslint/visitor-keys': 4.33.0 574 | dev: true 575 | 576 | /@typescript-eslint/types/4.33.0: 577 | resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} 578 | engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} 579 | dev: true 580 | 581 | /@typescript-eslint/typescript-estree/4.33.0_typescript@4.4.4: 582 | resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} 583 | engines: {node: ^10.12.0 || >=12.0.0} 584 | peerDependencies: 585 | typescript: '*' 586 | peerDependenciesMeta: 587 | typescript: 588 | optional: true 589 | dependencies: 590 | '@typescript-eslint/types': 4.33.0 591 | '@typescript-eslint/visitor-keys': 4.33.0 592 | debug: 4.3.2 593 | globby: 11.0.4 594 | is-glob: 4.0.3 595 | semver: 7.3.5 596 | tsutils: 3.21.0_typescript@4.4.4 597 | typescript: 4.4.4 598 | transitivePeerDependencies: 599 | - supports-color 600 | dev: true 601 | 602 | /@typescript-eslint/visitor-keys/4.33.0: 603 | resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} 604 | engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} 605 | dependencies: 606 | '@typescript-eslint/types': 4.33.0 607 | eslint-visitor-keys: 2.1.0 608 | dev: true 609 | 610 | /@vitejs/plugin-vue/1.9.4_vite@2.6.14: 611 | resolution: {integrity: sha512-0CZqaCoChriPTTtGkERy1LGPcYjGFpi2uYRhBPIkqJqUGV5JnJFhQAgh6oH9j5XZHfrRaisX8W0xSpO4T7S78A==} 612 | engines: {node: '>=12.0.0'} 613 | peerDependencies: 614 | vite: ^2.5.10 615 | dependencies: 616 | vite: 2.6.14 617 | dev: true 618 | 619 | /@vue/compiler-core/3.2.21: 620 | resolution: {integrity: sha512-NhhiQZNG71KNq1h5pMW/fAXdTF7lJRaSI7LDm2edhHXVz1ROMICo8SreUmQnSf4Fet0UPBVqJ988eF4+936iDQ==} 621 | dependencies: 622 | '@babel/parser': 7.16.3 623 | '@vue/shared': 3.2.21 624 | estree-walker: 2.0.2 625 | source-map: 0.6.1 626 | 627 | /@vue/compiler-dom/3.2.21: 628 | resolution: {integrity: sha512-gsJD3DpYZSYquiA7UIPsMDSlAooYWDvHPq9VRsqzJEk2PZtFvLvHPb4aaMD8Ufd62xzYn32cnnkzsEOJhyGilA==} 629 | dependencies: 630 | '@vue/compiler-core': 3.2.21 631 | '@vue/shared': 3.2.21 632 | 633 | /@vue/compiler-sfc/3.2.21: 634 | resolution: {integrity: sha512-+yDlUSebKpz/ovxM2vLRRx7w/gVfY767pOfYTgbIhAs+ogvIV2BsIt4fpxlThnlCNChJ+yE0ERUNoROv2kEGEQ==} 635 | dependencies: 636 | '@babel/parser': 7.16.3 637 | '@vue/compiler-core': 3.2.21 638 | '@vue/compiler-dom': 3.2.21 639 | '@vue/compiler-ssr': 3.2.21 640 | '@vue/ref-transform': 3.2.21 641 | '@vue/shared': 3.2.21 642 | estree-walker: 2.0.2 643 | magic-string: 0.25.7 644 | postcss: 8.3.11 645 | source-map: 0.6.1 646 | 647 | /@vue/compiler-ssr/3.2.21: 648 | resolution: {integrity: sha512-eU+A0iWYy+1zAo2CRIJ0zSVlv1iuGAIbNRCnllSJ31pV1lX3jypJYzGbJlSRAbB7VP6E+tYveVT1Oq8JKewa3g==} 649 | dependencies: 650 | '@vue/compiler-dom': 3.2.21 651 | '@vue/shared': 3.2.21 652 | 653 | /@vue/reactivity/3.2.21: 654 | resolution: {integrity: sha512-7C57zFm/5E3SSTUhVuYj1InDwuJ+GIVQ/z+H43C9sST85gIThGXVhksl1yWTAadf8Yz4T5lSbqi5Ds8U/ueWcw==} 655 | dependencies: 656 | '@vue/shared': 3.2.21 657 | dev: false 658 | 659 | /@vue/ref-transform/3.2.21: 660 | resolution: {integrity: sha512-uiEWWBsrGeun9O7dQExYWzXO3rHm/YdtFNXDVqCSoPypzOVxWxdiL+8hHeWzxMB58fVuV2sT80aUtIVyaBVZgQ==} 661 | dependencies: 662 | '@babel/parser': 7.16.3 663 | '@vue/compiler-core': 3.2.21 664 | '@vue/shared': 3.2.21 665 | estree-walker: 2.0.2 666 | magic-string: 0.25.7 667 | 668 | /@vue/runtime-core/3.2.21: 669 | resolution: {integrity: sha512-7oOxKaU0D2IunOAMOOHZgJVrHg63xwng8BZx3fbgmakqEIMwHhQcp+5GV1sOg/sWW7R4UhaRDIUCukO2GRVK2Q==} 670 | dependencies: 671 | '@vue/reactivity': 3.2.21 672 | '@vue/shared': 3.2.21 673 | dev: false 674 | 675 | /@vue/runtime-dom/3.2.21: 676 | resolution: {integrity: sha512-apBdriD6QsI4ywbllY8kjr9/0scGuStDuvLbJULPQkFPtHzntd51bP5PQTQVAEIc9kwnTozmj6x6ZdX/cwo7xA==} 677 | dependencies: 678 | '@vue/runtime-core': 3.2.21 679 | '@vue/shared': 3.2.21 680 | csstype: 2.6.18 681 | dev: false 682 | 683 | /@vue/server-renderer/3.2.21_vue@3.2.21: 684 | resolution: {integrity: sha512-QBgYqVgI7XCSBCqGa4LduV9vpfQFdZBOodFmq5Txk5W/v1KrJ1LoOh2Q0RHiRgtoK/UR9uyvRVcYqOmwHkZNEg==} 685 | peerDependencies: 686 | vue: 3.2.21 687 | dependencies: 688 | '@vue/compiler-ssr': 3.2.21 689 | '@vue/shared': 3.2.21 690 | vue: 3.2.21 691 | dev: false 692 | 693 | /@vue/shared/3.2.21: 694 | resolution: {integrity: sha512-5EQmIPK6gw4UVYUbM959B0uPsJ58+xoMESCZs3N89XyvJ9e+fX4pqEPrOGV8OroIk3SbEvJcC+eYc8BH9JQrHA==} 695 | 696 | /acorn-jsx/5.3.2_acorn@7.4.1: 697 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 698 | peerDependencies: 699 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 700 | dependencies: 701 | acorn: 7.4.1 702 | dev: true 703 | 704 | /acorn/7.4.1: 705 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} 706 | engines: {node: '>=0.4.0'} 707 | hasBin: true 708 | dev: true 709 | 710 | /ajv/6.12.6: 711 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 712 | dependencies: 713 | fast-deep-equal: 3.1.3 714 | fast-json-stable-stringify: 2.1.0 715 | json-schema-traverse: 0.4.1 716 | uri-js: 4.4.1 717 | dev: true 718 | 719 | /ajv/8.7.1: 720 | resolution: {integrity: sha512-gPpOObTO1QjbnN1sVMjJcp1TF9nggMfO4MBR5uQl6ZVTOaEPq5i4oq/6R9q2alMMPB3eg53wFv1RuJBLuxf3Hw==} 721 | dependencies: 722 | fast-deep-equal: 3.1.3 723 | json-schema-traverse: 1.0.0 724 | require-from-string: 2.0.2 725 | uri-js: 4.4.1 726 | dev: true 727 | 728 | /ansi-colors/4.1.1: 729 | resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} 730 | engines: {node: '>=6'} 731 | dev: true 732 | 733 | /ansi-escapes/4.3.2: 734 | resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 735 | engines: {node: '>=8'} 736 | dependencies: 737 | type-fest: 0.21.3 738 | dev: true 739 | 740 | /ansi-regex/5.0.1: 741 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 742 | engines: {node: '>=8'} 743 | dev: true 744 | 745 | /ansi-styles/3.2.1: 746 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 747 | engines: {node: '>=4'} 748 | dependencies: 749 | color-convert: 1.9.3 750 | dev: true 751 | 752 | /ansi-styles/4.3.0: 753 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 754 | engines: {node: '>=8'} 755 | dependencies: 756 | color-convert: 2.0.1 757 | dev: true 758 | 759 | /any-promise/1.3.0: 760 | resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=} 761 | dev: true 762 | 763 | /anymatch/3.1.2: 764 | resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} 765 | engines: {node: '>= 8'} 766 | dependencies: 767 | normalize-path: 3.0.0 768 | picomatch: 2.3.0 769 | dev: true 770 | 771 | /argparse/1.0.10: 772 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 773 | dependencies: 774 | sprintf-js: 1.0.3 775 | dev: true 776 | 777 | /array-back/3.1.0: 778 | resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} 779 | engines: {node: '>=6'} 780 | dev: true 781 | 782 | /array-includes/3.1.4: 783 | resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==} 784 | engines: {node: '>= 0.4'} 785 | dependencies: 786 | call-bind: 1.0.2 787 | define-properties: 1.1.3 788 | es-abstract: 1.19.1 789 | get-intrinsic: 1.1.1 790 | is-string: 1.0.7 791 | dev: true 792 | 793 | /array-union/2.1.0: 794 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 795 | engines: {node: '>=8'} 796 | dev: true 797 | 798 | /array.prototype.flat/1.2.5: 799 | resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==} 800 | engines: {node: '>= 0.4'} 801 | dependencies: 802 | call-bind: 1.0.2 803 | define-properties: 1.1.3 804 | es-abstract: 1.19.1 805 | dev: true 806 | 807 | /array.prototype.flatmap/1.2.5: 808 | resolution: {integrity: sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==} 809 | engines: {node: '>= 0.4'} 810 | dependencies: 811 | call-bind: 1.0.2 812 | define-properties: 1.1.3 813 | es-abstract: 1.19.1 814 | dev: true 815 | 816 | /astral-regex/2.0.0: 817 | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} 818 | engines: {node: '>=8'} 819 | dev: true 820 | 821 | /balanced-match/1.0.2: 822 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 823 | dev: true 824 | 825 | /binary-extensions/2.2.0: 826 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 827 | engines: {node: '>=8'} 828 | dev: true 829 | 830 | /brace-expansion/1.1.11: 831 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 832 | dependencies: 833 | balanced-match: 1.0.2 834 | concat-map: 0.0.1 835 | dev: true 836 | 837 | /braces/3.0.2: 838 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 839 | engines: {node: '>=8'} 840 | dependencies: 841 | fill-range: 7.0.1 842 | dev: true 843 | 844 | /browserslist/4.17.6: 845 | resolution: {integrity: sha512-uPgz3vyRTlEiCv4ee9KlsKgo2V6qPk7Jsn0KAn2OBqbqKo3iNcPEC1Ti6J4dwnz+aIRfEEEuOzC9IBk8tXUomw==} 846 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 847 | hasBin: true 848 | dependencies: 849 | caniuse-lite: 1.0.30001279 850 | electron-to-chromium: 1.3.895 851 | escalade: 3.1.1 852 | node-releases: 2.0.1 853 | picocolors: 1.0.0 854 | dev: true 855 | 856 | /builtin-modules/3.2.0: 857 | resolution: {integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==} 858 | engines: {node: '>=6'} 859 | dev: true 860 | 861 | /cac/6.7.12: 862 | resolution: {integrity: sha512-rM7E2ygtMkJqD9c7WnFU6fruFcN3xe4FM5yUmgxhZzIKJk4uHl9U/fhwdajGFQbQuv43FAUo1Fe8gX/oIKDeSA==} 863 | engines: {node: '>=8'} 864 | dev: true 865 | 866 | /call-bind/1.0.2: 867 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 868 | dependencies: 869 | function-bind: 1.1.1 870 | get-intrinsic: 1.1.1 871 | dev: true 872 | 873 | /call-me-maybe/1.0.1: 874 | resolution: {integrity: sha1-JtII6onje1y95gJQoV8DHBak1ms=} 875 | dev: true 876 | 877 | /callsites/3.1.0: 878 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 879 | engines: {node: '>=6'} 880 | dev: true 881 | 882 | /caniuse-lite/1.0.30001279: 883 | resolution: {integrity: sha512-VfEHpzHEXj6/CxggTwSFoZBBYGQfQv9Cf42KPlO79sWXCD1QNKWKsKzFeWL7QpZHJQYAvocqV6Rty1yJMkqWLQ==} 884 | dev: true 885 | 886 | /chalk/2.4.2: 887 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 888 | engines: {node: '>=4'} 889 | dependencies: 890 | ansi-styles: 3.2.1 891 | escape-string-regexp: 1.0.5 892 | supports-color: 5.5.0 893 | dev: true 894 | 895 | /chalk/4.1.2: 896 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 897 | engines: {node: '>=10'} 898 | dependencies: 899 | ansi-styles: 4.3.0 900 | supports-color: 7.2.0 901 | dev: true 902 | 903 | /chardet/0.7.0: 904 | resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 905 | dev: true 906 | 907 | /chokidar/3.5.2: 908 | resolution: {integrity: sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==} 909 | engines: {node: '>= 8.10.0'} 910 | dependencies: 911 | anymatch: 3.1.2 912 | braces: 3.0.2 913 | glob-parent: 5.1.2 914 | is-binary-path: 2.1.0 915 | is-glob: 4.0.3 916 | normalize-path: 3.0.0 917 | readdirp: 3.6.0 918 | optionalDependencies: 919 | fsevents: 2.3.2 920 | dev: true 921 | 922 | /ci-info/3.2.0: 923 | resolution: {integrity: sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==} 924 | dev: true 925 | 926 | /clean-regexp/1.0.0: 927 | resolution: {integrity: sha1-jffHquUf02h06PjQW5GAvBGj/tc=} 928 | engines: {node: '>=4'} 929 | dependencies: 930 | escape-string-regexp: 1.0.5 931 | dev: true 932 | 933 | /cli-cursor/3.1.0: 934 | resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 935 | engines: {node: '>=8'} 936 | dependencies: 937 | restore-cursor: 3.1.0 938 | dev: true 939 | 940 | /cli-width/3.0.0: 941 | resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} 942 | engines: {node: '>= 10'} 943 | dev: true 944 | 945 | /color-convert/1.9.3: 946 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 947 | dependencies: 948 | color-name: 1.1.3 949 | dev: true 950 | 951 | /color-convert/2.0.1: 952 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 953 | engines: {node: '>=7.0.0'} 954 | dependencies: 955 | color-name: 1.1.4 956 | dev: true 957 | 958 | /color-name/1.1.3: 959 | resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} 960 | dev: true 961 | 962 | /color-name/1.1.4: 963 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 964 | dev: true 965 | 966 | /command-line-args/5.2.0: 967 | resolution: {integrity: sha512-4zqtU1hYsSJzcJBOcNZIbW5Fbk9BkjCp1pZVhQKoRaWL5J7N4XphDLwo8aWwdQpTugxwu+jf9u2ZhkXiqp5Z6A==} 968 | engines: {node: '>=4.0.0'} 969 | dependencies: 970 | array-back: 3.1.0 971 | find-replace: 3.0.0 972 | lodash.camelcase: 4.3.0 973 | typical: 4.0.0 974 | dev: true 975 | 976 | /commander/4.1.1: 977 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 978 | engines: {node: '>= 6'} 979 | dev: true 980 | 981 | /concat-map/0.0.1: 982 | resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} 983 | dev: true 984 | 985 | /convert-source-map/1.8.0: 986 | resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} 987 | dependencies: 988 | safe-buffer: 5.1.2 989 | dev: true 990 | 991 | /cross-spawn/7.0.3: 992 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 993 | engines: {node: '>= 8'} 994 | dependencies: 995 | path-key: 3.1.1 996 | shebang-command: 2.0.0 997 | which: 2.0.2 998 | dev: true 999 | 1000 | /csstype/2.6.18: 1001 | resolution: {integrity: sha512-RSU6Hyeg14am3Ah4VZEmeX8H7kLwEEirXe6aU2IPfKNvhXwTflK5HQRDNI0ypQXoqmm+QPyG2IaPuQE5zMwSIQ==} 1002 | dev: false 1003 | 1004 | /debug/2.6.9: 1005 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 1006 | peerDependencies: 1007 | supports-color: '*' 1008 | peerDependenciesMeta: 1009 | supports-color: 1010 | optional: true 1011 | dependencies: 1012 | ms: 2.0.0 1013 | dev: true 1014 | 1015 | /debug/3.2.7: 1016 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 1017 | peerDependencies: 1018 | supports-color: '*' 1019 | peerDependenciesMeta: 1020 | supports-color: 1021 | optional: true 1022 | dependencies: 1023 | ms: 2.1.3 1024 | dev: true 1025 | 1026 | /debug/4.3.2: 1027 | resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} 1028 | engines: {node: '>=6.0'} 1029 | peerDependencies: 1030 | supports-color: '*' 1031 | peerDependenciesMeta: 1032 | supports-color: 1033 | optional: true 1034 | dependencies: 1035 | ms: 2.1.2 1036 | dev: true 1037 | 1038 | /deep-is/0.1.4: 1039 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1040 | dev: true 1041 | 1042 | /define-properties/1.1.3: 1043 | resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==} 1044 | engines: {node: '>= 0.4'} 1045 | dependencies: 1046 | object-keys: 1.1.1 1047 | dev: true 1048 | 1049 | /detect-indent/6.1.0: 1050 | resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} 1051 | engines: {node: '>=8'} 1052 | dev: true 1053 | 1054 | /detect-newline/3.1.0: 1055 | resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} 1056 | engines: {node: '>=8'} 1057 | dev: true 1058 | 1059 | /dir-glob/3.0.1: 1060 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1061 | engines: {node: '>=8'} 1062 | dependencies: 1063 | path-type: 4.0.0 1064 | dev: true 1065 | 1066 | /doctrine/2.1.0: 1067 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1068 | engines: {node: '>=0.10.0'} 1069 | dependencies: 1070 | esutils: 2.0.3 1071 | dev: true 1072 | 1073 | /doctrine/3.0.0: 1074 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1075 | engines: {node: '>=6.0.0'} 1076 | dependencies: 1077 | esutils: 2.0.3 1078 | dev: true 1079 | 1080 | /dom-serializer/1.3.2: 1081 | resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==} 1082 | dependencies: 1083 | domelementtype: 2.2.0 1084 | domhandler: 4.2.2 1085 | entities: 2.2.0 1086 | dev: true 1087 | 1088 | /domelementtype/2.2.0: 1089 | resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==} 1090 | dev: true 1091 | 1092 | /domhandler/4.2.2: 1093 | resolution: {integrity: sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==} 1094 | engines: {node: '>= 4'} 1095 | dependencies: 1096 | domelementtype: 2.2.0 1097 | dev: true 1098 | 1099 | /domutils/2.8.0: 1100 | resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} 1101 | dependencies: 1102 | dom-serializer: 1.3.2 1103 | domelementtype: 2.2.0 1104 | domhandler: 4.2.2 1105 | dev: true 1106 | 1107 | /electron-to-chromium/1.3.895: 1108 | resolution: {integrity: sha512-9Ww3fB8CWctjqHwkOt7DQbMZMpal2x2reod+/lU4b9axO1XJEDUpPMBxs7YnjLhhqpKXIIB5SRYN/B4K0QpvyQ==} 1109 | dev: true 1110 | 1111 | /emoji-regex/8.0.0: 1112 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1113 | dev: true 1114 | 1115 | /enquirer/2.3.6: 1116 | resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} 1117 | engines: {node: '>=8.6'} 1118 | dependencies: 1119 | ansi-colors: 4.1.1 1120 | dev: true 1121 | 1122 | /entities/2.2.0: 1123 | resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} 1124 | dev: true 1125 | 1126 | /entities/3.0.1: 1127 | resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} 1128 | engines: {node: '>=0.12'} 1129 | dev: true 1130 | 1131 | /error-ex/1.3.2: 1132 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 1133 | dependencies: 1134 | is-arrayish: 0.2.1 1135 | dev: true 1136 | 1137 | /es-abstract/1.19.1: 1138 | resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==} 1139 | engines: {node: '>= 0.4'} 1140 | dependencies: 1141 | call-bind: 1.0.2 1142 | es-to-primitive: 1.2.1 1143 | function-bind: 1.1.1 1144 | get-intrinsic: 1.1.1 1145 | get-symbol-description: 1.0.0 1146 | has: 1.0.3 1147 | has-symbols: 1.0.2 1148 | internal-slot: 1.0.3 1149 | is-callable: 1.2.4 1150 | is-negative-zero: 2.0.1 1151 | is-regex: 1.1.4 1152 | is-shared-array-buffer: 1.0.1 1153 | is-string: 1.0.7 1154 | is-weakref: 1.0.1 1155 | object-inspect: 1.11.0 1156 | object-keys: 1.1.1 1157 | object.assign: 4.1.2 1158 | string.prototype.trimend: 1.0.4 1159 | string.prototype.trimstart: 1.0.4 1160 | unbox-primitive: 1.0.1 1161 | dev: true 1162 | 1163 | /es-to-primitive/1.2.1: 1164 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1165 | engines: {node: '>= 0.4'} 1166 | dependencies: 1167 | is-callable: 1.2.4 1168 | is-date-object: 1.0.5 1169 | is-symbol: 1.0.4 1170 | dev: true 1171 | 1172 | /esbuild-android-arm64/0.13.13: 1173 | resolution: {integrity: sha512-T02aneWWguJrF082jZworjU6vm8f4UQ+IH2K3HREtlqoY9voiJUwHLRL6khRlsNLzVglqgqb7a3HfGx7hAADCQ==} 1174 | cpu: [arm64] 1175 | os: [android] 1176 | requiresBuild: true 1177 | dev: true 1178 | optional: true 1179 | 1180 | /esbuild-darwin-64/0.13.13: 1181 | resolution: {integrity: sha512-wkaiGAsN/09X9kDlkxFfbbIgR78SNjMOfUhoel3CqKBDsi9uZhw7HBNHNxTzYUK8X8LAKFpbODgcRB3b/I8gHA==} 1182 | cpu: [x64] 1183 | os: [darwin] 1184 | requiresBuild: true 1185 | dev: true 1186 | optional: true 1187 | 1188 | /esbuild-darwin-arm64/0.13.13: 1189 | resolution: {integrity: sha512-b02/nNKGSV85Gw9pUCI5B48AYjk0vFggDeom0S6QMP/cEDtjSh1WVfoIFNAaLA0MHWfue8KBwoGVsN7rBshs4g==} 1190 | cpu: [arm64] 1191 | os: [darwin] 1192 | requiresBuild: true 1193 | dev: true 1194 | optional: true 1195 | 1196 | /esbuild-freebsd-64/0.13.13: 1197 | resolution: {integrity: sha512-ALgXYNYDzk9YPVk80A+G4vz2D22Gv4j4y25exDBGgqTcwrVQP8rf/rjwUjHoh9apP76oLbUZTmUmvCMuTI1V9A==} 1198 | cpu: [x64] 1199 | os: [freebsd] 1200 | requiresBuild: true 1201 | dev: true 1202 | optional: true 1203 | 1204 | /esbuild-freebsd-arm64/0.13.13: 1205 | resolution: {integrity: sha512-uFvkCpsZ1yqWQuonw5T1WZ4j59xP/PCvtu6I4pbLejhNo4nwjW6YalqnBvBSORq5/Ifo9S/wsIlVHzkzEwdtlw==} 1206 | cpu: [arm64] 1207 | os: [freebsd] 1208 | requiresBuild: true 1209 | dev: true 1210 | optional: true 1211 | 1212 | /esbuild-linux-32/0.13.13: 1213 | resolution: {integrity: sha512-yxR9BBwEPs9acVEwTrEE2JJNHYVuPQC9YGjRfbNqtyfK/vVBQYuw8JaeRFAvFs3pVJdQD0C2BNP4q9d62SCP4w==} 1214 | cpu: [ia32] 1215 | os: [linux] 1216 | requiresBuild: true 1217 | dev: true 1218 | optional: true 1219 | 1220 | /esbuild-linux-64/0.13.13: 1221 | resolution: {integrity: sha512-kzhjlrlJ+6ESRB/n12WTGll94+y+HFeyoWsOrLo/Si0s0f+Vip4b8vlnG0GSiS6JTsWYAtGHReGczFOaETlKIw==} 1222 | cpu: [x64] 1223 | os: [linux] 1224 | requiresBuild: true 1225 | dev: true 1226 | optional: true 1227 | 1228 | /esbuild-linux-arm/0.13.13: 1229 | resolution: {integrity: sha512-hXub4pcEds+U1TfvLp1maJ+GHRw7oizvzbGRdUvVDwtITtjq8qpHV5Q5hWNNn6Q+b3b2UxF03JcgnpzCw96nUQ==} 1230 | cpu: [arm] 1231 | os: [linux] 1232 | requiresBuild: true 1233 | dev: true 1234 | optional: true 1235 | 1236 | /esbuild-linux-arm64/0.13.13: 1237 | resolution: {integrity: sha512-KMrEfnVbmmJxT3vfTnPv/AiXpBFbbyExH13BsUGy1HZRPFMi5Gev5gk8kJIZCQSRfNR17aqq8sO5Crm2KpZkng==} 1238 | cpu: [arm64] 1239 | os: [linux] 1240 | requiresBuild: true 1241 | dev: true 1242 | optional: true 1243 | 1244 | /esbuild-linux-mips64le/0.13.13: 1245 | resolution: {integrity: sha512-cJT9O1LYljqnnqlHaS0hdG73t7hHzF3zcN0BPsjvBq+5Ad47VJun+/IG4inPhk8ta0aEDK6LdP+F9299xa483w==} 1246 | cpu: [mips64el] 1247 | os: [linux] 1248 | requiresBuild: true 1249 | dev: true 1250 | optional: true 1251 | 1252 | /esbuild-linux-ppc64le/0.13.13: 1253 | resolution: {integrity: sha512-+rghW8st6/7O6QJqAjVK3eXzKkZqYAw6LgHv7yTMiJ6ASnNvghSeOcIvXFep3W2oaJc35SgSPf21Ugh0o777qQ==} 1254 | cpu: [ppc64] 1255 | os: [linux] 1256 | requiresBuild: true 1257 | dev: true 1258 | optional: true 1259 | 1260 | /esbuild-netbsd-64/0.13.13: 1261 | resolution: {integrity: sha512-A/B7rwmzPdzF8c3mht5TukbnNwY5qMJqes09ou0RSzA5/jm7Jwl/8z853ofujTFOLhkNHUf002EAgokzSgEMpQ==} 1262 | cpu: [x64] 1263 | os: [netbsd] 1264 | requiresBuild: true 1265 | dev: true 1266 | optional: true 1267 | 1268 | /esbuild-node-loader/0.1.1: 1269 | resolution: {integrity: sha512-n24xYzMfKmPupUZgs0QYBr52HUSh1M1vDtBfkEVa6pdENqo5+U5WP+zaj4Iw2MinuYk1axLW8+NVutrBCkrdmA==} 1270 | dependencies: 1271 | esbuild: 0.12.29 1272 | dev: true 1273 | 1274 | /esbuild-openbsd-64/0.13.13: 1275 | resolution: {integrity: sha512-szwtuRA4rXKT3BbwoGpsff6G7nGxdKgUbW9LQo6nm0TVCCjDNDC/LXxT994duIW8Tyq04xZzzZSW7x7ttDiw1w==} 1276 | cpu: [x64] 1277 | os: [openbsd] 1278 | requiresBuild: true 1279 | dev: true 1280 | optional: true 1281 | 1282 | /esbuild-register/2.6.0: 1283 | resolution: {integrity: sha512-2u4AtnCXP5nivtIxZryiZOUcEQkOzFS7UhAqibUEmaTAThJ48gDLYTBF/Fsz+5r0hbV1jrFE6PQvPDUrKZNt/Q==} 1284 | dependencies: 1285 | esbuild: 0.12.29 1286 | jsonc-parser: 3.0.0 1287 | dev: true 1288 | 1289 | /esbuild-sunos-64/0.13.13: 1290 | resolution: {integrity: sha512-ihyds9O48tVOYF48iaHYUK/boU5zRaLOXFS+OOL3ceD39AyHo46HVmsJLc7A2ez0AxNZCxuhu+P9OxfPfycTYQ==} 1291 | cpu: [x64] 1292 | os: [sunos] 1293 | requiresBuild: true 1294 | dev: true 1295 | optional: true 1296 | 1297 | /esbuild-windows-32/0.13.13: 1298 | resolution: {integrity: sha512-h2RTYwpG4ldGVJlbmORObmilzL8EECy8BFiF8trWE1ZPHLpECE9//J3Bi+W3eDUuv/TqUbiNpGrq4t/odbayUw==} 1299 | cpu: [ia32] 1300 | os: [win32] 1301 | requiresBuild: true 1302 | dev: true 1303 | optional: true 1304 | 1305 | /esbuild-windows-64/0.13.13: 1306 | resolution: {integrity: sha512-oMrgjP4CjONvDHe7IZXHrMk3wX5Lof/IwFEIbwbhgbXGBaN2dke9PkViTiXC3zGJSGpMvATXVplEhlInJ0drHA==} 1307 | cpu: [x64] 1308 | os: [win32] 1309 | requiresBuild: true 1310 | dev: true 1311 | optional: true 1312 | 1313 | /esbuild-windows-arm64/0.13.13: 1314 | resolution: {integrity: sha512-6fsDfTuTvltYB5k+QPah/x7LrI2+OLAJLE3bWLDiZI6E8wXMQU+wLqtEO/U/RvJgVY1loPs5eMpUBpVajczh1A==} 1315 | cpu: [arm64] 1316 | os: [win32] 1317 | requiresBuild: true 1318 | dev: true 1319 | optional: true 1320 | 1321 | /esbuild/0.12.29: 1322 | resolution: {integrity: sha512-w/XuoBCSwepyiZtIRsKsetiLDUVGPVw1E/R3VTFSecIy8UR7Cq3SOtwKHJMFoVqqVG36aGkzh4e8BvpO1Fdc7g==} 1323 | hasBin: true 1324 | requiresBuild: true 1325 | dev: true 1326 | 1327 | /esbuild/0.13.13: 1328 | resolution: {integrity: sha512-Z17A/R6D0b4s3MousytQ/5i7mTCbaF+Ua/yPfoe71vdTv4KBvVAvQ/6ytMngM2DwGJosl8WxaD75NOQl2QF26Q==} 1329 | hasBin: true 1330 | requiresBuild: true 1331 | optionalDependencies: 1332 | esbuild-android-arm64: 0.13.13 1333 | esbuild-darwin-64: 0.13.13 1334 | esbuild-darwin-arm64: 0.13.13 1335 | esbuild-freebsd-64: 0.13.13 1336 | esbuild-freebsd-arm64: 0.13.13 1337 | esbuild-linux-32: 0.13.13 1338 | esbuild-linux-64: 0.13.13 1339 | esbuild-linux-arm: 0.13.13 1340 | esbuild-linux-arm64: 0.13.13 1341 | esbuild-linux-mips64le: 0.13.13 1342 | esbuild-linux-ppc64le: 0.13.13 1343 | esbuild-netbsd-64: 0.13.13 1344 | esbuild-openbsd-64: 0.13.13 1345 | esbuild-sunos-64: 0.13.13 1346 | esbuild-windows-32: 0.13.13 1347 | esbuild-windows-64: 0.13.13 1348 | esbuild-windows-arm64: 0.13.13 1349 | dev: true 1350 | 1351 | /escalade/3.1.1: 1352 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 1353 | engines: {node: '>=6'} 1354 | dev: true 1355 | 1356 | /escape-string-regexp/1.0.5: 1357 | resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} 1358 | engines: {node: '>=0.8.0'} 1359 | dev: true 1360 | 1361 | /escape-string-regexp/4.0.0: 1362 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1363 | engines: {node: '>=10'} 1364 | dev: true 1365 | 1366 | /eslint-config-standard/16.0.3_ybshqmai4zbx3kmndbh5iwavwy: 1367 | resolution: {integrity: sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==} 1368 | peerDependencies: 1369 | eslint: ^7.12.1 1370 | eslint-plugin-import: ^2.22.1 1371 | eslint-plugin-node: ^11.1.0 1372 | eslint-plugin-promise: ^4.2.1 || ^5.0.0 1373 | dependencies: 1374 | eslint: 7.32.0 1375 | eslint-plugin-import: 2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry 1376 | eslint-plugin-node: 11.1.0_eslint@7.32.0 1377 | eslint-plugin-promise: 5.1.1_eslint@7.32.0 1378 | dev: true 1379 | 1380 | /eslint-import-resolver-node/0.3.6: 1381 | resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} 1382 | dependencies: 1383 | debug: 3.2.7 1384 | resolve: 1.20.0 1385 | transitivePeerDependencies: 1386 | - supports-color 1387 | dev: true 1388 | 1389 | /eslint-module-utils/2.7.1_lkzaig2qiyp6elizstfbgvzhie: 1390 | resolution: {integrity: sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ==} 1391 | engines: {node: '>=4'} 1392 | peerDependencies: 1393 | '@typescript-eslint/parser': '*' 1394 | eslint-import-resolver-node: '*' 1395 | eslint-import-resolver-typescript: '*' 1396 | eslint-import-resolver-webpack: '*' 1397 | peerDependenciesMeta: 1398 | '@typescript-eslint/parser': 1399 | optional: true 1400 | eslint-import-resolver-node: 1401 | optional: true 1402 | eslint-import-resolver-typescript: 1403 | optional: true 1404 | eslint-import-resolver-webpack: 1405 | optional: true 1406 | dependencies: 1407 | '@typescript-eslint/parser': 4.33.0_wnilx7boviscikmvsfkd6ljepe 1408 | debug: 3.2.7 1409 | eslint-import-resolver-node: 0.3.6 1410 | find-up: 2.1.0 1411 | pkg-dir: 2.0.0 1412 | transitivePeerDependencies: 1413 | - supports-color 1414 | dev: true 1415 | 1416 | /eslint-plugin-es/3.0.1_eslint@7.32.0: 1417 | resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} 1418 | engines: {node: '>=8.10.0'} 1419 | peerDependencies: 1420 | eslint: '>=4.19.1' 1421 | dependencies: 1422 | eslint: 7.32.0 1423 | eslint-utils: 2.1.0 1424 | regexpp: 3.2.0 1425 | dev: true 1426 | 1427 | /eslint-plugin-eslint-comments/3.2.0_eslint@7.32.0: 1428 | resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} 1429 | engines: {node: '>=6.5.0'} 1430 | peerDependencies: 1431 | eslint: '>=4.19.1' 1432 | dependencies: 1433 | escape-string-regexp: 1.0.5 1434 | eslint: 7.32.0 1435 | ignore: 5.1.9 1436 | dev: true 1437 | 1438 | /eslint-plugin-html/6.2.0: 1439 | resolution: {integrity: sha512-vi3NW0E8AJombTvt8beMwkL1R/fdRWl4QSNRNMhVQKWm36/X0KF0unGNAY4mqUF06mnwVWZcIcerrCnfn9025g==} 1440 | dependencies: 1441 | htmlparser2: 7.2.0 1442 | dev: true 1443 | 1444 | /eslint-plugin-import/2.25.3_ffi3uiz42rv3jyhs6cr7p7qqry: 1445 | resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==} 1446 | engines: {node: '>=4'} 1447 | peerDependencies: 1448 | '@typescript-eslint/parser': '*' 1449 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1450 | peerDependenciesMeta: 1451 | '@typescript-eslint/parser': 1452 | optional: true 1453 | dependencies: 1454 | '@typescript-eslint/parser': 4.33.0_wnilx7boviscikmvsfkd6ljepe 1455 | array-includes: 3.1.4 1456 | array.prototype.flat: 1.2.5 1457 | debug: 2.6.9 1458 | doctrine: 2.1.0 1459 | eslint: 7.32.0 1460 | eslint-import-resolver-node: 0.3.6 1461 | eslint-module-utils: 2.7.1_lkzaig2qiyp6elizstfbgvzhie 1462 | has: 1.0.3 1463 | is-core-module: 2.8.0 1464 | is-glob: 4.0.3 1465 | minimatch: 3.0.4 1466 | object.values: 1.1.5 1467 | resolve: 1.20.0 1468 | tsconfig-paths: 3.11.0 1469 | transitivePeerDependencies: 1470 | - eslint-import-resolver-typescript 1471 | - eslint-import-resolver-webpack 1472 | - supports-color 1473 | dev: true 1474 | 1475 | /eslint-plugin-jsonc/1.7.0_eslint@7.32.0: 1476 | resolution: {integrity: sha512-pb3CAD9B0zhv3r9Bg9AdzswL50I3mbIq1ys+tNeuaDeibFlweo84SBNm22oqaFx/Dka+YZw2SLukAkQlJzSHMQ==} 1477 | engines: {node: '>=8.10.0'} 1478 | peerDependencies: 1479 | eslint: '>=5.0.0' 1480 | dependencies: 1481 | eslint: 7.32.0 1482 | eslint-utils: 3.0.0_eslint@7.32.0 1483 | jsonc-eslint-parser: 1.4.1 1484 | natural-compare: 1.4.0 1485 | dev: true 1486 | 1487 | /eslint-plugin-node/11.1.0_eslint@7.32.0: 1488 | resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} 1489 | engines: {node: '>=8.10.0'} 1490 | peerDependencies: 1491 | eslint: '>=5.16.0' 1492 | dependencies: 1493 | eslint: 7.32.0 1494 | eslint-plugin-es: 3.0.1_eslint@7.32.0 1495 | eslint-utils: 2.1.0 1496 | ignore: 5.1.9 1497 | minimatch: 3.0.4 1498 | resolve: 1.20.0 1499 | semver: 6.3.0 1500 | dev: true 1501 | 1502 | /eslint-plugin-promise/5.1.1_eslint@7.32.0: 1503 | resolution: {integrity: sha512-XgdcdyNzHfmlQyweOPTxmc7pIsS6dE4MvwhXWMQ2Dxs1XAL2GJDilUsjWen6TWik0aSI+zD/PqocZBblcm9rdA==} 1504 | engines: {node: ^10.12.0 || >=12.0.0} 1505 | peerDependencies: 1506 | eslint: ^7.0.0 1507 | dependencies: 1508 | eslint: 7.32.0 1509 | dev: true 1510 | 1511 | /eslint-plugin-react/7.27.0_eslint@7.32.0: 1512 | resolution: {integrity: sha512-0Ut+CkzpppgFtoIhdzi2LpdpxxBvgFf99eFqWxJnUrO7mMe0eOiNpou6rvNYeVVV6lWZvTah0BFne7k5xHjARg==} 1513 | engines: {node: '>=4'} 1514 | peerDependencies: 1515 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1516 | dependencies: 1517 | array-includes: 3.1.4 1518 | array.prototype.flatmap: 1.2.5 1519 | doctrine: 2.1.0 1520 | eslint: 7.32.0 1521 | estraverse: 5.3.0 1522 | jsx-ast-utils: 3.2.1 1523 | minimatch: 3.0.4 1524 | object.entries: 1.1.5 1525 | object.fromentries: 2.0.5 1526 | object.hasown: 1.1.0 1527 | object.values: 1.1.5 1528 | prop-types: 15.7.2 1529 | resolve: 2.0.0-next.3 1530 | semver: 6.3.0 1531 | string.prototype.matchall: 4.0.6 1532 | dev: true 1533 | 1534 | /eslint-plugin-unicorn/34.0.1_eslint@7.32.0: 1535 | resolution: {integrity: sha512-GUBtRYRhPVOW/GDu6QtOjrneSZxY/MulOT8puJU+47VKCzNmMgS/iHO2gZqoQ7KPMrpNYlebUlvCWy3IR1USVQ==} 1536 | engines: {node: '>=12'} 1537 | peerDependencies: 1538 | eslint: '>=7.28.0' 1539 | dependencies: 1540 | ci-info: 3.2.0 1541 | clean-regexp: 1.0.0 1542 | eslint: 7.32.0 1543 | eslint-template-visitor: 2.3.2_eslint@7.32.0 1544 | eslint-utils: 3.0.0_eslint@7.32.0 1545 | is-builtin-module: 3.1.0 1546 | lodash: 4.17.21 1547 | pluralize: 8.0.0 1548 | read-pkg-up: 7.0.1 1549 | regexp-tree: 0.1.24 1550 | reserved-words: 0.1.2 1551 | safe-regex: 2.1.1 1552 | semver: 7.3.5 1553 | transitivePeerDependencies: 1554 | - supports-color 1555 | dev: true 1556 | 1557 | /eslint-plugin-vue/7.12.1_eslint@7.32.0: 1558 | resolution: {integrity: sha512-xHf/wCt88qmzqQerjaSteUFGASj7fPreglKD4ijnvoKRkoSJ3/H3kuJE8QFFtc+2wjw6hRDs834HH7vpuTJQzg==} 1559 | engines: {node: '>=8.10'} 1560 | peerDependencies: 1561 | eslint: ^6.2.0 || ^7.0.0 1562 | dependencies: 1563 | eslint: 7.32.0 1564 | eslint-utils: 2.1.0 1565 | natural-compare: 1.4.0 1566 | semver: 7.3.5 1567 | vue-eslint-parser: 7.11.0_eslint@7.32.0 1568 | transitivePeerDependencies: 1569 | - supports-color 1570 | dev: true 1571 | 1572 | /eslint-plugin-yml/0.9.0_eslint@7.32.0: 1573 | resolution: {integrity: sha512-0hHBm/aOyaRSQ3y7iEJ5uSIksYf2kdv3riMLEJoyyOBoQ6p1ODxJCBBhWdo/cbnFZRPvGhzDd5RCTqgExsIqMA==} 1574 | peerDependencies: 1575 | eslint: '>=6.0.0' 1576 | dependencies: 1577 | debug: 4.3.2 1578 | eslint: 7.32.0 1579 | lodash: 4.17.21 1580 | natural-compare: 1.4.0 1581 | yaml-eslint-parser: 0.3.2 1582 | transitivePeerDependencies: 1583 | - supports-color 1584 | dev: true 1585 | 1586 | /eslint-scope/5.1.1: 1587 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 1588 | engines: {node: '>=8.0.0'} 1589 | dependencies: 1590 | esrecurse: 4.3.0 1591 | estraverse: 4.3.0 1592 | dev: true 1593 | 1594 | /eslint-template-visitor/2.3.2_eslint@7.32.0: 1595 | resolution: {integrity: sha512-3ydhqFpuV7x1M9EK52BPNj6V0Kwu0KKkcIAfpUhwHbR8ocRln/oUHgfxQupY8O1h4Qv/POHDumb/BwwNfxbtnA==} 1596 | peerDependencies: 1597 | eslint: '>=7.0.0' 1598 | dependencies: 1599 | '@babel/core': 7.16.0 1600 | '@babel/eslint-parser': 7.16.3_q3hdp35agahhlc67sgxrhsgj5a 1601 | eslint: 7.32.0 1602 | eslint-visitor-keys: 2.1.0 1603 | esquery: 1.4.0 1604 | multimap: 1.1.0 1605 | transitivePeerDependencies: 1606 | - supports-color 1607 | dev: true 1608 | 1609 | /eslint-utils/2.1.0: 1610 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 1611 | engines: {node: '>=6'} 1612 | dependencies: 1613 | eslint-visitor-keys: 1.3.0 1614 | dev: true 1615 | 1616 | /eslint-utils/3.0.0_eslint@7.32.0: 1617 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 1618 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 1619 | peerDependencies: 1620 | eslint: '>=5' 1621 | dependencies: 1622 | eslint: 7.32.0 1623 | eslint-visitor-keys: 2.1.0 1624 | dev: true 1625 | 1626 | /eslint-visitor-keys/1.3.0: 1627 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 1628 | engines: {node: '>=4'} 1629 | dev: true 1630 | 1631 | /eslint-visitor-keys/2.1.0: 1632 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 1633 | engines: {node: '>=10'} 1634 | dev: true 1635 | 1636 | /eslint/7.32.0: 1637 | resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} 1638 | engines: {node: ^10.12.0 || >=12.0.0} 1639 | hasBin: true 1640 | dependencies: 1641 | '@babel/code-frame': 7.12.11 1642 | '@eslint/eslintrc': 0.4.3 1643 | '@humanwhocodes/config-array': 0.5.0 1644 | ajv: 6.12.6 1645 | chalk: 4.1.2 1646 | cross-spawn: 7.0.3 1647 | debug: 4.3.2 1648 | doctrine: 3.0.0 1649 | enquirer: 2.3.6 1650 | escape-string-regexp: 4.0.0 1651 | eslint-scope: 5.1.1 1652 | eslint-utils: 2.1.0 1653 | eslint-visitor-keys: 2.1.0 1654 | espree: 7.3.1 1655 | esquery: 1.4.0 1656 | esutils: 2.0.3 1657 | fast-deep-equal: 3.1.3 1658 | file-entry-cache: 6.0.1 1659 | functional-red-black-tree: 1.0.1 1660 | glob-parent: 5.1.2 1661 | globals: 13.12.0 1662 | ignore: 4.0.6 1663 | import-fresh: 3.3.0 1664 | imurmurhash: 0.1.4 1665 | is-glob: 4.0.3 1666 | js-yaml: 3.14.1 1667 | json-stable-stringify-without-jsonify: 1.0.1 1668 | levn: 0.4.1 1669 | lodash.merge: 4.6.2 1670 | minimatch: 3.0.4 1671 | natural-compare: 1.4.0 1672 | optionator: 0.9.1 1673 | progress: 2.0.3 1674 | regexpp: 3.2.0 1675 | semver: 7.3.5 1676 | strip-ansi: 6.0.1 1677 | strip-json-comments: 3.1.1 1678 | table: 6.7.3 1679 | text-table: 0.2.0 1680 | v8-compile-cache: 2.3.0 1681 | transitivePeerDependencies: 1682 | - supports-color 1683 | dev: true 1684 | 1685 | /esno/0.7.3: 1686 | resolution: {integrity: sha512-ONTHZLBipMC9uK9oqASzqYGCrjcqp/N0NXt/Q0WpYw/Ikm9he+rYER2ATx6czaFcMvwrbIXBlNe9hSEiTrNKow==} 1687 | hasBin: true 1688 | dependencies: 1689 | cross-spawn: 7.0.3 1690 | esbuild: 0.12.29 1691 | esbuild-node-loader: 0.1.1 1692 | esbuild-register: 2.6.0 1693 | dev: true 1694 | 1695 | /espree/6.2.1: 1696 | resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==} 1697 | engines: {node: '>=6.0.0'} 1698 | dependencies: 1699 | acorn: 7.4.1 1700 | acorn-jsx: 5.3.2_acorn@7.4.1 1701 | eslint-visitor-keys: 1.3.0 1702 | dev: true 1703 | 1704 | /espree/7.3.1: 1705 | resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} 1706 | engines: {node: ^10.12.0 || >=12.0.0} 1707 | dependencies: 1708 | acorn: 7.4.1 1709 | acorn-jsx: 5.3.2_acorn@7.4.1 1710 | eslint-visitor-keys: 1.3.0 1711 | dev: true 1712 | 1713 | /esprima/4.0.1: 1714 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 1715 | engines: {node: '>=4'} 1716 | hasBin: true 1717 | dev: true 1718 | 1719 | /esquery/1.4.0: 1720 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} 1721 | engines: {node: '>=0.10'} 1722 | dependencies: 1723 | estraverse: 5.3.0 1724 | dev: true 1725 | 1726 | /esrecurse/4.3.0: 1727 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1728 | engines: {node: '>=4.0'} 1729 | dependencies: 1730 | estraverse: 5.3.0 1731 | dev: true 1732 | 1733 | /estraverse/4.3.0: 1734 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 1735 | engines: {node: '>=4.0'} 1736 | dev: true 1737 | 1738 | /estraverse/5.3.0: 1739 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1740 | engines: {node: '>=4.0'} 1741 | dev: true 1742 | 1743 | /estree-walker/2.0.2: 1744 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1745 | 1746 | /esutils/2.0.3: 1747 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1748 | engines: {node: '>=0.10.0'} 1749 | dev: true 1750 | 1751 | /execa/5.1.1: 1752 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1753 | engines: {node: '>=10'} 1754 | dependencies: 1755 | cross-spawn: 7.0.3 1756 | get-stream: 6.0.1 1757 | human-signals: 2.1.0 1758 | is-stream: 2.0.1 1759 | merge-stream: 2.0.0 1760 | npm-run-path: 4.0.1 1761 | onetime: 5.1.2 1762 | signal-exit: 3.0.5 1763 | strip-final-newline: 2.0.0 1764 | dev: true 1765 | 1766 | /external-editor/3.1.0: 1767 | resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} 1768 | engines: {node: '>=4'} 1769 | dependencies: 1770 | chardet: 0.7.0 1771 | iconv-lite: 0.4.24 1772 | tmp: 0.0.33 1773 | dev: true 1774 | 1775 | /fast-deep-equal/3.1.3: 1776 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1777 | dev: true 1778 | 1779 | /fast-glob/3.2.7: 1780 | resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} 1781 | engines: {node: '>=8'} 1782 | dependencies: 1783 | '@nodelib/fs.stat': 2.0.5 1784 | '@nodelib/fs.walk': 1.2.8 1785 | glob-parent: 5.1.2 1786 | merge2: 1.4.1 1787 | micromatch: 4.0.4 1788 | dev: true 1789 | 1790 | /fast-json-stable-stringify/2.1.0: 1791 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1792 | dev: true 1793 | 1794 | /fast-levenshtein/2.0.6: 1795 | resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} 1796 | dev: true 1797 | 1798 | /fastq/1.13.0: 1799 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} 1800 | dependencies: 1801 | reusify: 1.0.4 1802 | dev: true 1803 | 1804 | /figures/3.2.0: 1805 | resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} 1806 | engines: {node: '>=8'} 1807 | dependencies: 1808 | escape-string-regexp: 1.0.5 1809 | dev: true 1810 | 1811 | /file-entry-cache/6.0.1: 1812 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1813 | engines: {node: ^10.12.0 || >=12.0.0} 1814 | dependencies: 1815 | flat-cache: 3.0.4 1816 | dev: true 1817 | 1818 | /fill-range/7.0.1: 1819 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1820 | engines: {node: '>=8'} 1821 | dependencies: 1822 | to-regex-range: 5.0.1 1823 | dev: true 1824 | 1825 | /find-replace/3.0.0: 1826 | resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} 1827 | engines: {node: '>=4.0.0'} 1828 | dependencies: 1829 | array-back: 3.1.0 1830 | dev: true 1831 | 1832 | /find-up/2.1.0: 1833 | resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} 1834 | engines: {node: '>=4'} 1835 | dependencies: 1836 | locate-path: 2.0.0 1837 | dev: true 1838 | 1839 | /find-up/4.1.0: 1840 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1841 | engines: {node: '>=8'} 1842 | dependencies: 1843 | locate-path: 5.0.0 1844 | path-exists: 4.0.0 1845 | dev: true 1846 | 1847 | /flat-cache/3.0.4: 1848 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1849 | engines: {node: ^10.12.0 || >=12.0.0} 1850 | dependencies: 1851 | flatted: 3.2.4 1852 | rimraf: 3.0.2 1853 | dev: true 1854 | 1855 | /flatted/3.2.4: 1856 | resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==} 1857 | dev: true 1858 | 1859 | /fs.realpath/1.0.0: 1860 | resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} 1861 | dev: true 1862 | 1863 | /fsevents/2.3.2: 1864 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 1865 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1866 | os: [darwin] 1867 | requiresBuild: true 1868 | dev: true 1869 | optional: true 1870 | 1871 | /function-bind/1.1.1: 1872 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1873 | dev: true 1874 | 1875 | /functional-red-black-tree/1.0.1: 1876 | resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} 1877 | dev: true 1878 | 1879 | /gensync/1.0.0-beta.2: 1880 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1881 | engines: {node: '>=6.9.0'} 1882 | dev: true 1883 | 1884 | /get-intrinsic/1.1.1: 1885 | resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} 1886 | dependencies: 1887 | function-bind: 1.1.1 1888 | has: 1.0.3 1889 | has-symbols: 1.0.2 1890 | dev: true 1891 | 1892 | /get-stream/6.0.1: 1893 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1894 | engines: {node: '>=10'} 1895 | dev: true 1896 | 1897 | /get-symbol-description/1.0.0: 1898 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1899 | engines: {node: '>= 0.4'} 1900 | dependencies: 1901 | call-bind: 1.0.2 1902 | get-intrinsic: 1.1.1 1903 | dev: true 1904 | 1905 | /glob-parent/5.1.2: 1906 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1907 | engines: {node: '>= 6'} 1908 | dependencies: 1909 | is-glob: 4.0.3 1910 | dev: true 1911 | 1912 | /glob/7.1.6: 1913 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 1914 | dependencies: 1915 | fs.realpath: 1.0.0 1916 | inflight: 1.0.6 1917 | inherits: 2.0.4 1918 | minimatch: 3.0.4 1919 | once: 1.4.0 1920 | path-is-absolute: 1.0.1 1921 | dev: true 1922 | 1923 | /glob/7.2.0: 1924 | resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} 1925 | dependencies: 1926 | fs.realpath: 1.0.0 1927 | inflight: 1.0.6 1928 | inherits: 2.0.4 1929 | minimatch: 3.0.4 1930 | once: 1.4.0 1931 | path-is-absolute: 1.0.1 1932 | dev: true 1933 | 1934 | /globals/11.12.0: 1935 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1936 | engines: {node: '>=4'} 1937 | dev: true 1938 | 1939 | /globals/13.12.0: 1940 | resolution: {integrity: sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==} 1941 | engines: {node: '>=8'} 1942 | dependencies: 1943 | type-fest: 0.20.2 1944 | dev: true 1945 | 1946 | /globby/11.0.4: 1947 | resolution: {integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==} 1948 | engines: {node: '>=10'} 1949 | dependencies: 1950 | array-union: 2.1.0 1951 | dir-glob: 3.0.1 1952 | fast-glob: 3.2.7 1953 | ignore: 5.1.9 1954 | merge2: 1.4.1 1955 | slash: 3.0.0 1956 | dev: true 1957 | 1958 | /has-bigints/1.0.1: 1959 | resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==} 1960 | dev: true 1961 | 1962 | /has-flag/3.0.0: 1963 | resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} 1964 | engines: {node: '>=4'} 1965 | dev: true 1966 | 1967 | /has-flag/4.0.0: 1968 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1969 | engines: {node: '>=8'} 1970 | dev: true 1971 | 1972 | /has-symbols/1.0.2: 1973 | resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==} 1974 | engines: {node: '>= 0.4'} 1975 | dev: true 1976 | 1977 | /has-tostringtag/1.0.0: 1978 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1979 | engines: {node: '>= 0.4'} 1980 | dependencies: 1981 | has-symbols: 1.0.2 1982 | dev: true 1983 | 1984 | /has/1.0.3: 1985 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1986 | engines: {node: '>= 0.4.0'} 1987 | dependencies: 1988 | function-bind: 1.1.1 1989 | dev: true 1990 | 1991 | /hosted-git-info/2.8.9: 1992 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 1993 | dev: true 1994 | 1995 | /htmlparser2/7.2.0: 1996 | resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} 1997 | dependencies: 1998 | domelementtype: 2.2.0 1999 | domhandler: 4.2.2 2000 | domutils: 2.8.0 2001 | entities: 3.0.1 2002 | dev: true 2003 | 2004 | /human-signals/2.1.0: 2005 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 2006 | engines: {node: '>=10.17.0'} 2007 | dev: true 2008 | 2009 | /iconv-lite/0.4.24: 2010 | resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 2011 | engines: {node: '>=0.10.0'} 2012 | dependencies: 2013 | safer-buffer: 2.1.2 2014 | dev: true 2015 | 2016 | /ignore/4.0.6: 2017 | resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} 2018 | engines: {node: '>= 4'} 2019 | dev: true 2020 | 2021 | /ignore/5.1.9: 2022 | resolution: {integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==} 2023 | engines: {node: '>= 4'} 2024 | dev: true 2025 | 2026 | /import-cwd/3.0.0: 2027 | resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==} 2028 | engines: {node: '>=8'} 2029 | dependencies: 2030 | import-from: 3.0.0 2031 | dev: true 2032 | 2033 | /import-fresh/3.3.0: 2034 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 2035 | engines: {node: '>=6'} 2036 | dependencies: 2037 | parent-module: 1.0.1 2038 | resolve-from: 4.0.0 2039 | dev: true 2040 | 2041 | /import-from/3.0.0: 2042 | resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==} 2043 | engines: {node: '>=8'} 2044 | dependencies: 2045 | resolve-from: 5.0.0 2046 | dev: true 2047 | 2048 | /imurmurhash/0.1.4: 2049 | resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} 2050 | engines: {node: '>=0.8.19'} 2051 | dev: true 2052 | 2053 | /inflight/1.0.6: 2054 | resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} 2055 | dependencies: 2056 | once: 1.4.0 2057 | wrappy: 1.0.2 2058 | dev: true 2059 | 2060 | /inherits/2.0.4: 2061 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2062 | dev: true 2063 | 2064 | /inquirer/7.3.3: 2065 | resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} 2066 | engines: {node: '>=8.0.0'} 2067 | dependencies: 2068 | ansi-escapes: 4.3.2 2069 | chalk: 4.1.2 2070 | cli-cursor: 3.1.0 2071 | cli-width: 3.0.0 2072 | external-editor: 3.1.0 2073 | figures: 3.2.0 2074 | lodash: 4.17.21 2075 | mute-stream: 0.0.8 2076 | run-async: 2.4.1 2077 | rxjs: 6.6.7 2078 | string-width: 4.2.3 2079 | strip-ansi: 6.0.1 2080 | through: 2.3.8 2081 | dev: true 2082 | 2083 | /internal-slot/1.0.3: 2084 | resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} 2085 | engines: {node: '>= 0.4'} 2086 | dependencies: 2087 | get-intrinsic: 1.1.1 2088 | has: 1.0.3 2089 | side-channel: 1.0.4 2090 | dev: true 2091 | 2092 | /is-arrayish/0.2.1: 2093 | resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} 2094 | dev: true 2095 | 2096 | /is-bigint/1.0.4: 2097 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 2098 | dependencies: 2099 | has-bigints: 1.0.1 2100 | dev: true 2101 | 2102 | /is-binary-path/2.1.0: 2103 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 2104 | engines: {node: '>=8'} 2105 | dependencies: 2106 | binary-extensions: 2.2.0 2107 | dev: true 2108 | 2109 | /is-boolean-object/1.1.2: 2110 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 2111 | engines: {node: '>= 0.4'} 2112 | dependencies: 2113 | call-bind: 1.0.2 2114 | has-tostringtag: 1.0.0 2115 | dev: true 2116 | 2117 | /is-builtin-module/3.1.0: 2118 | resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==} 2119 | engines: {node: '>=6'} 2120 | dependencies: 2121 | builtin-modules: 3.2.0 2122 | dev: true 2123 | 2124 | /is-callable/1.2.4: 2125 | resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} 2126 | engines: {node: '>= 0.4'} 2127 | dev: true 2128 | 2129 | /is-core-module/2.8.0: 2130 | resolution: {integrity: sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==} 2131 | dependencies: 2132 | has: 1.0.3 2133 | dev: true 2134 | 2135 | /is-date-object/1.0.5: 2136 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 2137 | engines: {node: '>= 0.4'} 2138 | dependencies: 2139 | has-tostringtag: 1.0.0 2140 | dev: true 2141 | 2142 | /is-extglob/2.1.1: 2143 | resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} 2144 | engines: {node: '>=0.10.0'} 2145 | dev: true 2146 | 2147 | /is-fullwidth-code-point/3.0.0: 2148 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2149 | engines: {node: '>=8'} 2150 | dev: true 2151 | 2152 | /is-glob/4.0.3: 2153 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2154 | engines: {node: '>=0.10.0'} 2155 | dependencies: 2156 | is-extglob: 2.1.1 2157 | dev: true 2158 | 2159 | /is-negative-zero/2.0.1: 2160 | resolution: {integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==} 2161 | engines: {node: '>= 0.4'} 2162 | dev: true 2163 | 2164 | /is-number-object/1.0.6: 2165 | resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==} 2166 | engines: {node: '>= 0.4'} 2167 | dependencies: 2168 | has-tostringtag: 1.0.0 2169 | dev: true 2170 | 2171 | /is-number/7.0.0: 2172 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2173 | engines: {node: '>=0.12.0'} 2174 | dev: true 2175 | 2176 | /is-regex/1.1.4: 2177 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 2178 | engines: {node: '>= 0.4'} 2179 | dependencies: 2180 | call-bind: 1.0.2 2181 | has-tostringtag: 1.0.0 2182 | dev: true 2183 | 2184 | /is-shared-array-buffer/1.0.1: 2185 | resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==} 2186 | dev: true 2187 | 2188 | /is-stream/2.0.1: 2189 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 2190 | engines: {node: '>=8'} 2191 | dev: true 2192 | 2193 | /is-string/1.0.7: 2194 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 2195 | engines: {node: '>= 0.4'} 2196 | dependencies: 2197 | has-tostringtag: 1.0.0 2198 | dev: true 2199 | 2200 | /is-symbol/1.0.4: 2201 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 2202 | engines: {node: '>= 0.4'} 2203 | dependencies: 2204 | has-symbols: 1.0.2 2205 | dev: true 2206 | 2207 | /is-unicode-supported/0.1.0: 2208 | resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 2209 | engines: {node: '>=10'} 2210 | dev: true 2211 | 2212 | /is-weakref/1.0.1: 2213 | resolution: {integrity: sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==} 2214 | dependencies: 2215 | call-bind: 1.0.2 2216 | dev: true 2217 | 2218 | /isexe/2.0.0: 2219 | resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} 2220 | dev: true 2221 | 2222 | /joycon/3.0.1: 2223 | resolution: {integrity: sha512-SJcJNBg32dGgxhPtM0wQqxqV0ax9k/9TaUskGDSJkSFSQOEWWvQ3zzWdGQRIUry2j1zA5+ReH13t0Mf3StuVZA==} 2224 | engines: {node: '>=10'} 2225 | dev: true 2226 | 2227 | /js-tokens/4.0.0: 2228 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2229 | dev: true 2230 | 2231 | /js-yaml/3.14.1: 2232 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 2233 | hasBin: true 2234 | dependencies: 2235 | argparse: 1.0.10 2236 | esprima: 4.0.1 2237 | dev: true 2238 | 2239 | /jsesc/2.5.2: 2240 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 2241 | engines: {node: '>=4'} 2242 | hasBin: true 2243 | dev: true 2244 | 2245 | /json-parse-even-better-errors/2.3.1: 2246 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 2247 | dev: true 2248 | 2249 | /json-schema-traverse/0.4.1: 2250 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2251 | dev: true 2252 | 2253 | /json-schema-traverse/1.0.0: 2254 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 2255 | dev: true 2256 | 2257 | /json-stable-stringify-without-jsonify/1.0.1: 2258 | resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} 2259 | dev: true 2260 | 2261 | /json5/1.0.1: 2262 | resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} 2263 | hasBin: true 2264 | dependencies: 2265 | minimist: 1.2.5 2266 | dev: true 2267 | 2268 | /json5/2.2.0: 2269 | resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==} 2270 | engines: {node: '>=6'} 2271 | hasBin: true 2272 | dependencies: 2273 | minimist: 1.2.5 2274 | dev: true 2275 | 2276 | /jsonc-eslint-parser/1.4.1: 2277 | resolution: {integrity: sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==} 2278 | engines: {node: '>=8.10.0'} 2279 | dependencies: 2280 | acorn: 7.4.1 2281 | eslint-utils: 2.1.0 2282 | eslint-visitor-keys: 1.3.0 2283 | espree: 6.2.1 2284 | semver: 6.3.0 2285 | dev: true 2286 | 2287 | /jsonc-parser/3.0.0: 2288 | resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} 2289 | dev: true 2290 | 2291 | /jsx-ast-utils/3.2.1: 2292 | resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==} 2293 | engines: {node: '>=4.0'} 2294 | dependencies: 2295 | array-includes: 3.1.4 2296 | object.assign: 4.1.2 2297 | dev: true 2298 | 2299 | /levn/0.4.1: 2300 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2301 | engines: {node: '>= 0.8.0'} 2302 | dependencies: 2303 | prelude-ls: 1.2.1 2304 | type-check: 0.4.0 2305 | dev: true 2306 | 2307 | /lilconfig/2.0.4: 2308 | resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==} 2309 | engines: {node: '>=10'} 2310 | dev: true 2311 | 2312 | /lines-and-columns/1.1.6: 2313 | resolution: {integrity: sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=} 2314 | dev: true 2315 | 2316 | /locate-path/2.0.0: 2317 | resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} 2318 | engines: {node: '>=4'} 2319 | dependencies: 2320 | p-locate: 2.0.0 2321 | path-exists: 3.0.0 2322 | dev: true 2323 | 2324 | /locate-path/5.0.0: 2325 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 2326 | engines: {node: '>=8'} 2327 | dependencies: 2328 | p-locate: 4.1.0 2329 | dev: true 2330 | 2331 | /lodash.camelcase/4.3.0: 2332 | resolution: {integrity: sha1-soqmKIorn8ZRA1x3EfZathkDMaY=} 2333 | dev: true 2334 | 2335 | /lodash.merge/4.6.2: 2336 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2337 | dev: true 2338 | 2339 | /lodash.truncate/4.4.2: 2340 | resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=} 2341 | dev: true 2342 | 2343 | /lodash/4.17.21: 2344 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2345 | dev: true 2346 | 2347 | /log-symbols/4.1.0: 2348 | resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 2349 | engines: {node: '>=10'} 2350 | dependencies: 2351 | chalk: 4.1.2 2352 | is-unicode-supported: 0.1.0 2353 | dev: true 2354 | 2355 | /loose-envify/1.4.0: 2356 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2357 | hasBin: true 2358 | dependencies: 2359 | js-tokens: 4.0.0 2360 | dev: true 2361 | 2362 | /lru-cache/6.0.0: 2363 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2364 | engines: {node: '>=10'} 2365 | dependencies: 2366 | yallist: 4.0.0 2367 | dev: true 2368 | 2369 | /magic-string/0.25.7: 2370 | resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==} 2371 | dependencies: 2372 | sourcemap-codec: 1.4.8 2373 | 2374 | /merge-stream/2.0.0: 2375 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2376 | dev: true 2377 | 2378 | /merge2/1.4.1: 2379 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2380 | engines: {node: '>= 8'} 2381 | dev: true 2382 | 2383 | /micromatch/4.0.4: 2384 | resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==} 2385 | engines: {node: '>=8.6'} 2386 | dependencies: 2387 | braces: 3.0.2 2388 | picomatch: 2.3.0 2389 | dev: true 2390 | 2391 | /mimic-fn/2.1.0: 2392 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 2393 | engines: {node: '>=6'} 2394 | dev: true 2395 | 2396 | /minimatch/3.0.4: 2397 | resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} 2398 | dependencies: 2399 | brace-expansion: 1.1.11 2400 | dev: true 2401 | 2402 | /minimist/1.2.5: 2403 | resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} 2404 | dev: true 2405 | 2406 | /ms/2.0.0: 2407 | resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} 2408 | dev: true 2409 | 2410 | /ms/2.1.2: 2411 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2412 | dev: true 2413 | 2414 | /ms/2.1.3: 2415 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2416 | dev: true 2417 | 2418 | /multimap/1.1.0: 2419 | resolution: {integrity: sha512-0ZIR9PasPxGXmRsEF8jsDzndzHDj7tIav+JUmvIFB/WHswliFnquxECT/De7GR4yg99ky/NlRKJT82G1y271bw==} 2420 | dev: true 2421 | 2422 | /mute-stream/0.0.8: 2423 | resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} 2424 | dev: true 2425 | 2426 | /mz/2.7.0: 2427 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 2428 | dependencies: 2429 | any-promise: 1.3.0 2430 | object-assign: 4.1.1 2431 | thenify-all: 1.6.0 2432 | dev: true 2433 | 2434 | /nanoid/3.1.30: 2435 | resolution: {integrity: sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==} 2436 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2437 | hasBin: true 2438 | 2439 | /natural-compare/1.4.0: 2440 | resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} 2441 | dev: true 2442 | 2443 | /node-modules-regexp/1.0.0: 2444 | resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=} 2445 | engines: {node: '>=0.10.0'} 2446 | dev: true 2447 | 2448 | /node-releases/2.0.1: 2449 | resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==} 2450 | dev: true 2451 | 2452 | /normalize-package-data/2.5.0: 2453 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 2454 | dependencies: 2455 | hosted-git-info: 2.8.9 2456 | resolve: 1.20.0 2457 | semver: 5.7.1 2458 | validate-npm-package-license: 3.0.4 2459 | dev: true 2460 | 2461 | /normalize-path/3.0.0: 2462 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2463 | engines: {node: '>=0.10.0'} 2464 | dev: true 2465 | 2466 | /npm-run-path/4.0.1: 2467 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 2468 | engines: {node: '>=8'} 2469 | dependencies: 2470 | path-key: 3.1.1 2471 | dev: true 2472 | 2473 | /object-assign/4.1.1: 2474 | resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} 2475 | engines: {node: '>=0.10.0'} 2476 | dev: true 2477 | 2478 | /object-inspect/1.11.0: 2479 | resolution: {integrity: sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==} 2480 | dev: true 2481 | 2482 | /object-keys/1.1.1: 2483 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2484 | engines: {node: '>= 0.4'} 2485 | dev: true 2486 | 2487 | /object.assign/4.1.2: 2488 | resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} 2489 | engines: {node: '>= 0.4'} 2490 | dependencies: 2491 | call-bind: 1.0.2 2492 | define-properties: 1.1.3 2493 | has-symbols: 1.0.2 2494 | object-keys: 1.1.1 2495 | dev: true 2496 | 2497 | /object.entries/1.1.5: 2498 | resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} 2499 | engines: {node: '>= 0.4'} 2500 | dependencies: 2501 | call-bind: 1.0.2 2502 | define-properties: 1.1.3 2503 | es-abstract: 1.19.1 2504 | dev: true 2505 | 2506 | /object.fromentries/2.0.5: 2507 | resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==} 2508 | engines: {node: '>= 0.4'} 2509 | dependencies: 2510 | call-bind: 1.0.2 2511 | define-properties: 1.1.3 2512 | es-abstract: 1.19.1 2513 | dev: true 2514 | 2515 | /object.hasown/1.1.0: 2516 | resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==} 2517 | dependencies: 2518 | define-properties: 1.1.3 2519 | es-abstract: 1.19.1 2520 | dev: true 2521 | 2522 | /object.values/1.1.5: 2523 | resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} 2524 | engines: {node: '>= 0.4'} 2525 | dependencies: 2526 | call-bind: 1.0.2 2527 | define-properties: 1.1.3 2528 | es-abstract: 1.19.1 2529 | dev: true 2530 | 2531 | /once/1.4.0: 2532 | resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} 2533 | dependencies: 2534 | wrappy: 1.0.2 2535 | dev: true 2536 | 2537 | /onetime/5.1.2: 2538 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 2539 | engines: {node: '>=6'} 2540 | dependencies: 2541 | mimic-fn: 2.1.0 2542 | dev: true 2543 | 2544 | /optionator/0.9.1: 2545 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 2546 | engines: {node: '>= 0.8.0'} 2547 | dependencies: 2548 | deep-is: 0.1.4 2549 | fast-levenshtein: 2.0.6 2550 | levn: 0.4.1 2551 | prelude-ls: 1.2.1 2552 | type-check: 0.4.0 2553 | word-wrap: 1.2.3 2554 | dev: true 2555 | 2556 | /os-tmpdir/1.0.2: 2557 | resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=} 2558 | engines: {node: '>=0.10.0'} 2559 | dev: true 2560 | 2561 | /p-limit/1.3.0: 2562 | resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} 2563 | engines: {node: '>=4'} 2564 | dependencies: 2565 | p-try: 1.0.0 2566 | dev: true 2567 | 2568 | /p-limit/2.3.0: 2569 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 2570 | engines: {node: '>=6'} 2571 | dependencies: 2572 | p-try: 2.2.0 2573 | dev: true 2574 | 2575 | /p-locate/2.0.0: 2576 | resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} 2577 | engines: {node: '>=4'} 2578 | dependencies: 2579 | p-limit: 1.3.0 2580 | dev: true 2581 | 2582 | /p-locate/4.1.0: 2583 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 2584 | engines: {node: '>=8'} 2585 | dependencies: 2586 | p-limit: 2.3.0 2587 | dev: true 2588 | 2589 | /p-try/1.0.0: 2590 | resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} 2591 | engines: {node: '>=4'} 2592 | dev: true 2593 | 2594 | /p-try/2.2.0: 2595 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 2596 | engines: {node: '>=6'} 2597 | dev: true 2598 | 2599 | /parent-module/1.0.1: 2600 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2601 | engines: {node: '>=6'} 2602 | dependencies: 2603 | callsites: 3.1.0 2604 | dev: true 2605 | 2606 | /parse-json/5.2.0: 2607 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 2608 | engines: {node: '>=8'} 2609 | dependencies: 2610 | '@babel/code-frame': 7.16.0 2611 | error-ex: 1.3.2 2612 | json-parse-even-better-errors: 2.3.1 2613 | lines-and-columns: 1.1.6 2614 | dev: true 2615 | 2616 | /path-exists/3.0.0: 2617 | resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} 2618 | engines: {node: '>=4'} 2619 | dev: true 2620 | 2621 | /path-exists/4.0.0: 2622 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2623 | engines: {node: '>=8'} 2624 | dev: true 2625 | 2626 | /path-is-absolute/1.0.1: 2627 | resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} 2628 | engines: {node: '>=0.10.0'} 2629 | dev: true 2630 | 2631 | /path-key/3.1.1: 2632 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2633 | engines: {node: '>=8'} 2634 | dev: true 2635 | 2636 | /path-parse/1.0.7: 2637 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2638 | dev: true 2639 | 2640 | /path-type/4.0.0: 2641 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2642 | engines: {node: '>=8'} 2643 | dev: true 2644 | 2645 | /picocolors/1.0.0: 2646 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2647 | 2648 | /picomatch/2.3.0: 2649 | resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==} 2650 | engines: {node: '>=8.6'} 2651 | dev: true 2652 | 2653 | /pirates/4.0.1: 2654 | resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==} 2655 | engines: {node: '>= 6'} 2656 | dependencies: 2657 | node-modules-regexp: 1.0.0 2658 | dev: true 2659 | 2660 | /pkg-dir/2.0.0: 2661 | resolution: {integrity: sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=} 2662 | engines: {node: '>=4'} 2663 | dependencies: 2664 | find-up: 2.1.0 2665 | dev: true 2666 | 2667 | /pluralize/8.0.0: 2668 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 2669 | engines: {node: '>=4'} 2670 | dev: true 2671 | 2672 | /postcss-load-config/3.1.0: 2673 | resolution: {integrity: sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==} 2674 | engines: {node: '>= 10'} 2675 | peerDependencies: 2676 | ts-node: '>=9.0.0' 2677 | peerDependenciesMeta: 2678 | ts-node: 2679 | optional: true 2680 | dependencies: 2681 | import-cwd: 3.0.0 2682 | lilconfig: 2.0.4 2683 | yaml: 1.10.2 2684 | dev: true 2685 | 2686 | /postcss/8.3.11: 2687 | resolution: {integrity: sha512-hCmlUAIlUiav8Xdqw3Io4LcpA1DOt7h3LSTAC4G6JGHFFaWzI6qvFt9oilvl8BmkbBRX1IhM90ZAmpk68zccQA==} 2688 | engines: {node: ^10 || ^12 || >=14} 2689 | dependencies: 2690 | nanoid: 3.1.30 2691 | picocolors: 1.0.0 2692 | source-map-js: 0.6.2 2693 | 2694 | /prelude-ls/1.2.1: 2695 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2696 | engines: {node: '>= 0.8.0'} 2697 | dev: true 2698 | 2699 | /progress/2.0.3: 2700 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 2701 | engines: {node: '>=0.4.0'} 2702 | dev: true 2703 | 2704 | /prop-types/15.7.2: 2705 | resolution: {integrity: sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==} 2706 | dependencies: 2707 | loose-envify: 1.4.0 2708 | object-assign: 4.1.1 2709 | react-is: 16.13.1 2710 | dev: true 2711 | 2712 | /punycode/2.1.1: 2713 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 2714 | engines: {node: '>=6'} 2715 | dev: true 2716 | 2717 | /queue-microtask/1.2.3: 2718 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2719 | dev: true 2720 | 2721 | /react-is/16.13.1: 2722 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2723 | dev: true 2724 | 2725 | /read-pkg-up/7.0.1: 2726 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} 2727 | engines: {node: '>=8'} 2728 | dependencies: 2729 | find-up: 4.1.0 2730 | read-pkg: 5.2.0 2731 | type-fest: 0.8.1 2732 | dev: true 2733 | 2734 | /read-pkg/5.2.0: 2735 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} 2736 | engines: {node: '>=8'} 2737 | dependencies: 2738 | '@types/normalize-package-data': 2.4.1 2739 | normalize-package-data: 2.5.0 2740 | parse-json: 5.2.0 2741 | type-fest: 0.6.0 2742 | dev: true 2743 | 2744 | /readdirp/3.6.0: 2745 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2746 | engines: {node: '>=8.10.0'} 2747 | dependencies: 2748 | picomatch: 2.3.0 2749 | dev: true 2750 | 2751 | /regexp-tree/0.1.24: 2752 | resolution: {integrity: sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==} 2753 | hasBin: true 2754 | dev: true 2755 | 2756 | /regexp.prototype.flags/1.3.1: 2757 | resolution: {integrity: sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==} 2758 | engines: {node: '>= 0.4'} 2759 | dependencies: 2760 | call-bind: 1.0.2 2761 | define-properties: 1.1.3 2762 | dev: true 2763 | 2764 | /regexpp/3.2.0: 2765 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 2766 | engines: {node: '>=8'} 2767 | dev: true 2768 | 2769 | /require-from-string/2.0.2: 2770 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 2771 | engines: {node: '>=0.10.0'} 2772 | dev: true 2773 | 2774 | /reserved-words/0.1.2: 2775 | resolution: {integrity: sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=} 2776 | dev: true 2777 | 2778 | /resolve-from/4.0.0: 2779 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2780 | engines: {node: '>=4'} 2781 | dev: true 2782 | 2783 | /resolve-from/5.0.0: 2784 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 2785 | engines: {node: '>=8'} 2786 | dev: true 2787 | 2788 | /resolve/1.20.0: 2789 | resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==} 2790 | dependencies: 2791 | is-core-module: 2.8.0 2792 | path-parse: 1.0.7 2793 | dev: true 2794 | 2795 | /resolve/2.0.0-next.3: 2796 | resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} 2797 | dependencies: 2798 | is-core-module: 2.8.0 2799 | path-parse: 1.0.7 2800 | dev: true 2801 | 2802 | /restore-cursor/3.1.0: 2803 | resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 2804 | engines: {node: '>=8'} 2805 | dependencies: 2806 | onetime: 5.1.2 2807 | signal-exit: 3.0.5 2808 | dev: true 2809 | 2810 | /reusify/1.0.4: 2811 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2812 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2813 | dev: true 2814 | 2815 | /rimraf/3.0.2: 2816 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2817 | hasBin: true 2818 | dependencies: 2819 | glob: 7.2.0 2820 | dev: true 2821 | 2822 | /rollup/2.59.0: 2823 | resolution: {integrity: sha512-l7s90JQhCQ6JyZjKgo7Lq1dKh2RxatOM+Jr6a9F7WbS9WgKbocyUSeLmZl8evAse7y96Ae98L2k1cBOwWD8nHw==} 2824 | engines: {node: '>=10.0.0'} 2825 | hasBin: true 2826 | optionalDependencies: 2827 | fsevents: 2.3.2 2828 | dev: true 2829 | 2830 | /run-async/2.4.1: 2831 | resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} 2832 | engines: {node: '>=0.12.0'} 2833 | dev: true 2834 | 2835 | /run-parallel/1.2.0: 2836 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2837 | dependencies: 2838 | queue-microtask: 1.2.3 2839 | dev: true 2840 | 2841 | /rxjs/6.6.7: 2842 | resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} 2843 | engines: {npm: '>=2.0.0'} 2844 | dependencies: 2845 | tslib: 1.14.1 2846 | dev: true 2847 | 2848 | /safe-buffer/5.1.2: 2849 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 2850 | dev: true 2851 | 2852 | /safe-regex/2.1.1: 2853 | resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==} 2854 | dependencies: 2855 | regexp-tree: 0.1.24 2856 | dev: true 2857 | 2858 | /safer-buffer/2.1.2: 2859 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 2860 | dev: true 2861 | 2862 | /semver/5.7.1: 2863 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} 2864 | hasBin: true 2865 | dev: true 2866 | 2867 | /semver/6.3.0: 2868 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 2869 | hasBin: true 2870 | dev: true 2871 | 2872 | /semver/7.3.5: 2873 | resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} 2874 | engines: {node: '>=10'} 2875 | hasBin: true 2876 | dependencies: 2877 | lru-cache: 6.0.0 2878 | dev: true 2879 | 2880 | /shebang-command/2.0.0: 2881 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2882 | engines: {node: '>=8'} 2883 | dependencies: 2884 | shebang-regex: 3.0.0 2885 | dev: true 2886 | 2887 | /shebang-regex/3.0.0: 2888 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2889 | engines: {node: '>=8'} 2890 | dev: true 2891 | 2892 | /side-channel/1.0.4: 2893 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2894 | dependencies: 2895 | call-bind: 1.0.2 2896 | get-intrinsic: 1.1.1 2897 | object-inspect: 1.11.0 2898 | dev: true 2899 | 2900 | /signal-exit/3.0.5: 2901 | resolution: {integrity: sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==} 2902 | dev: true 2903 | 2904 | /slash/3.0.0: 2905 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2906 | engines: {node: '>=8'} 2907 | dev: true 2908 | 2909 | /slice-ansi/4.0.0: 2910 | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} 2911 | engines: {node: '>=10'} 2912 | dependencies: 2913 | ansi-styles: 4.3.0 2914 | astral-regex: 2.0.0 2915 | is-fullwidth-code-point: 3.0.0 2916 | dev: true 2917 | 2918 | /source-map-js/0.6.2: 2919 | resolution: {integrity: sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==} 2920 | engines: {node: '>=0.10.0'} 2921 | 2922 | /source-map/0.5.7: 2923 | resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=} 2924 | engines: {node: '>=0.10.0'} 2925 | dev: true 2926 | 2927 | /source-map/0.6.1: 2928 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 2929 | engines: {node: '>=0.10.0'} 2930 | 2931 | /sourcemap-codec/1.4.8: 2932 | resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} 2933 | 2934 | /spdx-correct/3.1.1: 2935 | resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} 2936 | dependencies: 2937 | spdx-expression-parse: 3.0.1 2938 | spdx-license-ids: 3.0.10 2939 | dev: true 2940 | 2941 | /spdx-exceptions/2.3.0: 2942 | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} 2943 | dev: true 2944 | 2945 | /spdx-expression-parse/3.0.1: 2946 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 2947 | dependencies: 2948 | spdx-exceptions: 2.3.0 2949 | spdx-license-ids: 3.0.10 2950 | dev: true 2951 | 2952 | /spdx-license-ids/3.0.10: 2953 | resolution: {integrity: sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==} 2954 | dev: true 2955 | 2956 | /sprintf-js/1.0.3: 2957 | resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} 2958 | dev: true 2959 | 2960 | /string-argv/0.3.1: 2961 | resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} 2962 | engines: {node: '>=0.6.19'} 2963 | dev: true 2964 | 2965 | /string-width/4.2.3: 2966 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2967 | engines: {node: '>=8'} 2968 | dependencies: 2969 | emoji-regex: 8.0.0 2970 | is-fullwidth-code-point: 3.0.0 2971 | strip-ansi: 6.0.1 2972 | dev: true 2973 | 2974 | /string.prototype.matchall/4.0.6: 2975 | resolution: {integrity: sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==} 2976 | dependencies: 2977 | call-bind: 1.0.2 2978 | define-properties: 1.1.3 2979 | es-abstract: 1.19.1 2980 | get-intrinsic: 1.1.1 2981 | has-symbols: 1.0.2 2982 | internal-slot: 1.0.3 2983 | regexp.prototype.flags: 1.3.1 2984 | side-channel: 1.0.4 2985 | dev: true 2986 | 2987 | /string.prototype.trimend/1.0.4: 2988 | resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==} 2989 | dependencies: 2990 | call-bind: 1.0.2 2991 | define-properties: 1.1.3 2992 | dev: true 2993 | 2994 | /string.prototype.trimstart/1.0.4: 2995 | resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==} 2996 | dependencies: 2997 | call-bind: 1.0.2 2998 | define-properties: 1.1.3 2999 | dev: true 3000 | 3001 | /strip-ansi/6.0.1: 3002 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3003 | engines: {node: '>=8'} 3004 | dependencies: 3005 | ansi-regex: 5.0.1 3006 | dev: true 3007 | 3008 | /strip-bom/3.0.0: 3009 | resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} 3010 | engines: {node: '>=4'} 3011 | dev: true 3012 | 3013 | /strip-final-newline/2.0.0: 3014 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 3015 | engines: {node: '>=6'} 3016 | dev: true 3017 | 3018 | /strip-json-comments/3.1.1: 3019 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 3020 | engines: {node: '>=8'} 3021 | dev: true 3022 | 3023 | /sucrase/3.20.3: 3024 | resolution: {integrity: sha512-azqwq0/Bs6RzLAdb4dXxsCgMtAaD2hzmUr4UhSfsxO46JFPAwMnnb441B/qsudZiS6Ylea3JXZe3Q497lsgXzQ==} 3025 | engines: {node: '>=8'} 3026 | hasBin: true 3027 | dependencies: 3028 | commander: 4.1.1 3029 | glob: 7.1.6 3030 | lines-and-columns: 1.1.6 3031 | mz: 2.7.0 3032 | pirates: 4.0.1 3033 | ts-interface-checker: 0.1.13 3034 | dev: true 3035 | 3036 | /supports-color/5.5.0: 3037 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 3038 | engines: {node: '>=4'} 3039 | dependencies: 3040 | has-flag: 3.0.0 3041 | dev: true 3042 | 3043 | /supports-color/7.2.0: 3044 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3045 | engines: {node: '>=8'} 3046 | dependencies: 3047 | has-flag: 4.0.0 3048 | dev: true 3049 | 3050 | /table/6.7.3: 3051 | resolution: {integrity: sha512-5DkIxeA7XERBqMwJq0aHZOdMadBx4e6eDoFRuyT5VR82J0Ycg2DwM6GfA/EQAhJ+toRTaS1lIdSQCqgrmhPnlw==} 3052 | engines: {node: '>=10.0.0'} 3053 | dependencies: 3054 | ajv: 8.7.1 3055 | lodash.truncate: 4.4.2 3056 | slice-ansi: 4.0.0 3057 | string-width: 4.2.3 3058 | strip-ansi: 6.0.1 3059 | dev: true 3060 | 3061 | /text-table/0.2.0: 3062 | resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} 3063 | dev: true 3064 | 3065 | /thenify-all/1.6.0: 3066 | resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=} 3067 | engines: {node: '>=0.8'} 3068 | dependencies: 3069 | thenify: 3.3.1 3070 | dev: true 3071 | 3072 | /thenify/3.3.1: 3073 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 3074 | dependencies: 3075 | any-promise: 1.3.0 3076 | dev: true 3077 | 3078 | /through/2.3.8: 3079 | resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} 3080 | dev: true 3081 | 3082 | /tmp/0.0.33: 3083 | resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} 3084 | engines: {node: '>=0.6.0'} 3085 | dependencies: 3086 | os-tmpdir: 1.0.2 3087 | dev: true 3088 | 3089 | /to-fast-properties/2.0.0: 3090 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 3091 | engines: {node: '>=4'} 3092 | 3093 | /to-regex-range/5.0.1: 3094 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3095 | engines: {node: '>=8.0'} 3096 | dependencies: 3097 | is-number: 7.0.0 3098 | dev: true 3099 | 3100 | /tree-kill/1.2.2: 3101 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 3102 | hasBin: true 3103 | dev: true 3104 | 3105 | /ts-interface-checker/0.1.13: 3106 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 3107 | dev: true 3108 | 3109 | /tsconfig-paths/3.11.0: 3110 | resolution: {integrity: sha512-7ecdYDnIdmv639mmDwslG6KQg1Z9STTz1j7Gcz0xa+nshh/gKDAHcPxRbWOsA3SPp0tXP2leTcY9Kw+NAkfZzA==} 3111 | dependencies: 3112 | '@types/json5': 0.0.29 3113 | json5: 1.0.1 3114 | minimist: 1.2.5 3115 | strip-bom: 3.0.0 3116 | dev: true 3117 | 3118 | /tslib/1.14.1: 3119 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 3120 | dev: true 3121 | 3122 | /tsup/4.14.0_typescript@4.4.4: 3123 | resolution: {integrity: sha512-77rWdzhikTP9mQ34XMRzK83tw++LF6f4ox/HNERlgesB7g6g5VQ1iJlueG9O0P9HAZGVKavUwyoZv0+322p6rg==} 3124 | hasBin: true 3125 | peerDependencies: 3126 | typescript: ^4.2.3 3127 | peerDependenciesMeta: 3128 | typescript: 3129 | optional: true 3130 | dependencies: 3131 | cac: 6.7.12 3132 | chalk: 4.1.2 3133 | chokidar: 3.5.2 3134 | debug: 4.3.2 3135 | esbuild: 0.12.29 3136 | execa: 5.1.1 3137 | globby: 11.0.4 3138 | joycon: 3.0.1 3139 | postcss-load-config: 3.1.0 3140 | resolve-from: 5.0.0 3141 | rollup: 2.59.0 3142 | sucrase: 3.20.3 3143 | tree-kill: 1.2.2 3144 | typescript: 4.4.4 3145 | transitivePeerDependencies: 3146 | - supports-color 3147 | - ts-node 3148 | dev: true 3149 | 3150 | /tsutils/3.21.0_typescript@4.4.4: 3151 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 3152 | engines: {node: '>= 6'} 3153 | peerDependencies: 3154 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 3155 | dependencies: 3156 | tslib: 1.14.1 3157 | typescript: 4.4.4 3158 | dev: true 3159 | 3160 | /type-check/0.4.0: 3161 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 3162 | engines: {node: '>= 0.8.0'} 3163 | dependencies: 3164 | prelude-ls: 1.2.1 3165 | dev: true 3166 | 3167 | /type-detect/4.0.8: 3168 | resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} 3169 | engines: {node: '>=4'} 3170 | dev: true 3171 | 3172 | /type-fest/0.20.2: 3173 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3174 | engines: {node: '>=10'} 3175 | dev: true 3176 | 3177 | /type-fest/0.21.3: 3178 | resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 3179 | engines: {node: '>=10'} 3180 | dev: true 3181 | 3182 | /type-fest/0.6.0: 3183 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} 3184 | engines: {node: '>=8'} 3185 | dev: true 3186 | 3187 | /type-fest/0.8.1: 3188 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} 3189 | engines: {node: '>=8'} 3190 | dev: true 3191 | 3192 | /typescript/4.4.4: 3193 | resolution: {integrity: sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==} 3194 | engines: {node: '>=4.2.0'} 3195 | hasBin: true 3196 | dev: true 3197 | 3198 | /typical/4.0.0: 3199 | resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} 3200 | engines: {node: '>=8'} 3201 | dev: true 3202 | 3203 | /unbox-primitive/1.0.1: 3204 | resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==} 3205 | dependencies: 3206 | function-bind: 1.1.1 3207 | has-bigints: 1.0.1 3208 | has-symbols: 1.0.2 3209 | which-boxed-primitive: 1.0.2 3210 | dev: true 3211 | 3212 | /uri-js/4.4.1: 3213 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3214 | dependencies: 3215 | punycode: 2.1.1 3216 | dev: true 3217 | 3218 | /v8-compile-cache/2.3.0: 3219 | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} 3220 | dev: true 3221 | 3222 | /validate-npm-package-license/3.0.4: 3223 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 3224 | dependencies: 3225 | spdx-correct: 3.1.1 3226 | spdx-expression-parse: 3.0.1 3227 | dev: true 3228 | 3229 | /vite/2.6.14: 3230 | resolution: {integrity: sha512-2HA9xGyi+EhY2MXo0+A2dRsqsAG3eFNEVIo12olkWhOmc8LfiM+eMdrXf+Ruje9gdXgvSqjLI9freec1RUM5EA==} 3231 | engines: {node: '>=12.2.0'} 3232 | hasBin: true 3233 | peerDependencies: 3234 | less: '*' 3235 | sass: '*' 3236 | stylus: '*' 3237 | peerDependenciesMeta: 3238 | less: 3239 | optional: true 3240 | sass: 3241 | optional: true 3242 | stylus: 3243 | optional: true 3244 | dependencies: 3245 | esbuild: 0.13.13 3246 | postcss: 8.3.11 3247 | resolve: 1.20.0 3248 | rollup: 2.59.0 3249 | optionalDependencies: 3250 | fsevents: 2.3.2 3251 | dev: true 3252 | 3253 | /vue-eslint-parser/7.11.0_eslint@7.32.0: 3254 | resolution: {integrity: sha512-qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg==} 3255 | engines: {node: '>=8.10'} 3256 | peerDependencies: 3257 | eslint: '>=5.0.0' 3258 | dependencies: 3259 | debug: 4.3.2 3260 | eslint: 7.32.0 3261 | eslint-scope: 5.1.1 3262 | eslint-visitor-keys: 1.3.0 3263 | espree: 6.2.1 3264 | esquery: 1.4.0 3265 | lodash: 4.17.21 3266 | semver: 6.3.0 3267 | transitivePeerDependencies: 3268 | - supports-color 3269 | dev: true 3270 | 3271 | /vue/3.2.21: 3272 | resolution: {integrity: sha512-jpy7ckXdyclfRzqLjL4mtq81AkzQleE54KjZsJg/9OorNVurAxdlU5XpD49GpjKdnftuffKUvx2C5jDOrgc/zg==} 3273 | dependencies: 3274 | '@vue/compiler-dom': 3.2.21 3275 | '@vue/compiler-sfc': 3.2.21 3276 | '@vue/runtime-dom': 3.2.21 3277 | '@vue/server-renderer': 3.2.21_vue@3.2.21 3278 | '@vue/shared': 3.2.21 3279 | dev: false 3280 | 3281 | /which-boxed-primitive/1.0.2: 3282 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 3283 | dependencies: 3284 | is-bigint: 1.0.4 3285 | is-boolean-object: 1.1.2 3286 | is-number-object: 1.0.6 3287 | is-string: 1.0.7 3288 | is-symbol: 1.0.4 3289 | dev: true 3290 | 3291 | /which/2.0.2: 3292 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3293 | engines: {node: '>= 8'} 3294 | hasBin: true 3295 | dependencies: 3296 | isexe: 2.0.0 3297 | dev: true 3298 | 3299 | /word-wrap/1.2.3: 3300 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 3301 | engines: {node: '>=0.10.0'} 3302 | dev: true 3303 | 3304 | /wrappy/1.0.2: 3305 | resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} 3306 | dev: true 3307 | 3308 | /yallist/4.0.0: 3309 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3310 | dev: true 3311 | 3312 | /yaml-eslint-parser/0.3.2: 3313 | resolution: {integrity: sha512-32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg==} 3314 | dependencies: 3315 | eslint-visitor-keys: 1.3.0 3316 | lodash: 4.17.21 3317 | yaml: 1.10.2 3318 | dev: true 3319 | 3320 | /yaml/1.10.2: 3321 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 3322 | engines: {node: '>= 6'} 3323 | dev: true 3324 | --------------------------------------------------------------------------------