vben
2023-04-01 dc39567a14e86da62ceb40fe0dcf340421af2ef2
chore: remove @vitejs/plugin-legacy vite-plugin-imagemin
1个文件已添加
3 文件已重命名
9个文件已修改
2166 ■■■■ 已修改文件
.commitlintrc.js 补丁 | 查看 | 原始文档 | blame | 历史
.env.production 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.env.test 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.prettierrc.js 补丁 | 查看 | 原始文档 | blame | 历史
.stylelintrc.js 补丁 | 查看 | 原始文档 | blame | 历史
.vscode/settings.json 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
README.md 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
README.zh-CN.md 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
build/vite/plugin/index.ts 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
package.json 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pnpm-lock.yaml 2123 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pnpm-workspace.yaml 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
types/global.d.ts 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
.commitlintrc.js
.env.production
@@ -25,11 +25,6 @@
# Interface prefix
VITE_GLOB_API_URL_PREFIX=
# Whether to enable image compression
VITE_USE_IMAGEMIN= true
# use pwa
VITE_USE_PWA = false
# Is it compatible with older browsers
VITE_LEGACY = false
.env.test
@@ -26,11 +26,6 @@
# Interface prefix
VITE_GLOB_API_URL_PREFIX=
# Whether to enable image compression
VITE_USE_IMAGEMIN= true
# use pwa
VITE_USE_PWA = false
# Is it compatible with older browsers
VITE_LEGACY = false
.prettierrc.js
.stylelintrc.js
.vscode/settings.json
@@ -164,7 +164,9 @@
    "*.ts": "$(capture).test.ts, $(capture).test.tsx",
    "*.tsx": "$(capture).test.ts, $(capture).test.tsx",
    "*.env": "$(capture).env.*",
    "package.json": "pnpm-lock.yaml,yarn.lock,LICENSE,README*,CHANGELOG*,CNAME,.gitattributes,.gitignore,prettier.config.js,stylelint.config.js,commitlint.config.js,.stylelintignore,.prettierignore,.gitpod.yml,.eslintrc.js,.eslintignore"
    "CHANGELOG.md": "CHANGELOG*",
    "package.json": "pnpm-lock.yaml,pnpm-workspace.yaml,LICENSE,.gitattributes,.gitignore,.gitpod.yml,CNAME,README*",
    ".eslintrc.js": ".eslintignore,.prettierignore,.stylelintignore,.commitlintrc.js,.prettierrc.js,.stylelintrc.js"
  },
  "terminal.integrated.scrollback": 10000
}
README.md
@@ -133,7 +133,6 @@
- [vite-plugin-html](https://github.com/anncwb/vite-plugin-html) - Used for html template conversion and compression
- [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import) - Used for component library style introduction on demand
- [vite-plugin-theme](https://github.com/anncwb/vite-plugin-theme) - Used for online switching of theme colors and other color-related configurations
- [vite-plugin-imagemin](https://github.com/anncwb/vite-plugin-imagemin) - Used to pack compressed image resources
- [vite-plugin-compression](https://github.com/anncwb/vite-plugin-compression) - Used to pack input .gz|.brotil files
- [vite-plugin-svg-icons](https://github.com/anncwb/vite-plugin-svg-icons) - Used to quickly generate svg sprite
README.zh-CN.md
@@ -143,7 +143,6 @@
- [vite-plugin-html](https://github.com/anncwb/vite-plugin-html) - 用于 html 模版转换及压缩
- [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import) - 用于组件库样式按需引入
- [vite-plugin-theme](https://github.com/anncwb/vite-plugin-theme) - 用于在线切换主题色等颜色相关配置
- [vite-plugin-imagemin](https://github.com/anncwb/vite-plugin-imagemin) - 用于打包压缩图片资源
- [vite-plugin-compression](https://github.com/anncwb/vite-plugin-compression) - 用于打包输出.gz|.brotil 文件
- [vite-plugin-svg-icons](https://github.com/anncwb/vite-plugin-svg-icons) - 用于快速生成 svg 雪碧图
build/vite/plugin/index.ts
@@ -1,7 +1,6 @@
import { PluginOption } from 'vite';
import vue from '@vitejs/plugin-vue';
import vueJsx from '@vitejs/plugin-vue-jsx';
import legacy from '@vitejs/plugin-legacy';
import purgeIcons from 'vite-plugin-purge-icons';
import windiCSS from 'vite-plugin-windicss';
import VitePluginCertificate from 'vite-plugin-mkcert';
@@ -13,17 +12,10 @@
import { configStyleImportPlugin } from './styleImport';
import { configVisualizerConfig } from './visualizer';
import { configThemePlugin } from './theme';
import { configImageminPlugin } from './imagemin';
import { configSvgIconsPlugin } from './svgSprite';
export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) {
  const {
    VITE_USE_IMAGEMIN,
    VITE_USE_MOCK,
    VITE_LEGACY,
    VITE_BUILD_COMPRESS,
    VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE,
  } = viteEnv;
  const { VITE_USE_MOCK, VITE_BUILD_COMPRESS, VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE } = viteEnv;
  const vitePlugins: (PluginOption | PluginOption[])[] = [
    // have to
@@ -39,9 +31,6 @@
  // vite-plugin-windicss
  vitePlugins.push(windiCSS());
  // @vitejs/plugin-legacy
  VITE_LEGACY && isBuild && vitePlugins.push(legacy());
  // vite-plugin-html
  vitePlugins.push(configHtmlPlugin(viteEnv, isBuild));
@@ -66,9 +55,6 @@
  // The following plugins only work in the production environment
  if (isBuild) {
    // vite-plugin-imagemin
    VITE_USE_IMAGEMIN && vitePlugins.push(configImageminPlugin());
    // rollup-plugin-gzip
    vitePlugins.push(
      configCompressPlugin(VITE_BUILD_COMPRESS, VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE),
package.json
@@ -71,10 +71,6 @@
      "path": "node_modules/cz-git"
    }
  },
  "resolutions": {
    "bin-wrapper": "npm:bin-wrapper-china",
    "gifsicle": "5.2.0"
  },
  "dependencies": {
    "@ant-design/colors": "^6.0.0",
    "@ant-design/icons-vue": "^6.1.0",
@@ -139,7 +135,6 @@
    "@types/sortablejs": "^1.10.7",
    "@typescript-eslint/eslint-plugin": "^5.20.0",
    "@typescript-eslint/parser": "^5.20.0",
    "@vitejs/plugin-legacy": "^1.8.1",
    "@vitejs/plugin-vue": "^2.3.1",
    "@vitejs/plugin-vue-jsx": "^1.3.10",
    "@vue/compiler-sfc": "^3.2.33",
@@ -181,7 +176,6 @@
    "vite": "^2.9.5",
    "vite-plugin-compression": "^0.5.1",
    "vite-plugin-html": "^3.2.0",
    "vite-plugin-imagemin": "^0.6.1",
    "vite-plugin-mkcert": "^1.6.0",
    "vite-plugin-mock": "^2.9.6",
    "vite-plugin-purge-icons": "^0.8.1",
pnpm-lock.yaml
@@ -1,357 +1,349 @@
lockfileVersion: '6.0'
overrides:
  bin-wrapper: npm:bin-wrapper-china
  gifsicle: 5.2.0
importers:
dependencies:
  '@ant-design/colors':
    specifier: ^6.0.0
    version: 6.0.0
  '@ant-design/icons-vue':
    specifier: ^6.1.0
    version: 6.1.0(vue@3.2.47)
  '@iconify/iconify':
    specifier: ^2.2.1
    version: 2.2.1
  '@logicflow/core':
    specifier: ^1.1.13
    version: 1.1.13
  '@logicflow/extension':
    specifier: ^1.1.13
    version: 1.1.13
  '@vue/runtime-core':
    specifier: ^3.2.33
    version: 3.2.33
  '@vue/shared':
    specifier: ^3.2.33
    version: 3.2.33
  '@vueuse/core':
    specifier: ^8.3.0
    version: 8.3.0(vue@3.2.47)
  '@vueuse/shared':
    specifier: ^8.3.0
    version: 8.3.0(vue@3.2.47)
  '@zxcvbn-ts/core':
    specifier: ^2.0.1
    version: 2.0.1
  ant-design-vue:
    specifier: ^3.2.0
    version: 3.2.0(vue@3.2.47)
  axios:
    specifier: ^0.26.1
    version: 0.26.1(debug@4.3.4)
  codemirror:
    specifier: ^5.65.3
    version: 5.65.3
  cropperjs:
    specifier: ^1.5.12
    version: 1.5.12
  crypto-js:
    specifier: ^4.1.1
    version: 4.1.1
  dayjs:
    specifier: ^1.11.1
    version: 1.11.1
  echarts:
    specifier: ^5.3.2
    version: 5.3.2
  exceljs:
    specifier: ^4.3.0
    version: 4.3.0
  intro.js:
    specifier: ^5.1.0
    version: 5.1.0
  lodash-es:
    specifier: ^4.17.21
    version: 4.17.21
  mockjs:
    specifier: ^1.1.0
    version: 1.1.0
  nprogress:
    specifier: ^0.2.0
    version: 0.2.0
  path-to-regexp:
    specifier: ^6.2.0
    version: 6.2.0
  pinia:
    specifier: 2.0.12
    version: 2.0.12(typescript@4.6.3)(vue@3.2.47)
  print-js:
    specifier: ^1.6.0
    version: 1.6.0
  qrcode:
    specifier: ^1.5.0
    version: 1.5.0
  qs:
    specifier: ^6.10.3
    version: 6.10.3
  resize-observer-polyfill:
    specifier: ^1.5.1
    version: 1.5.1
  showdown:
    specifier: ^2.1.0
    version: 2.1.0
  sortablejs:
    specifier: ^1.15.0
    version: 1.15.0
  tinymce:
    specifier: ^5.10.7
    version: 5.10.7
  vditor:
    specifier: ^3.8.13
    version: 3.8.13
  vue:
    specifier: ^3.2.47
    version: 3.2.47
  vue-i18n:
    specifier: ^9.1.9
    version: 9.1.9(vue@3.2.47)
  vue-json-pretty:
    specifier: ^2.0.6
    version: 2.0.6(vue@3.2.47)
  vue-router:
    specifier: ^4.0.14
    version: 4.0.14(vue@3.2.47)
  vue-types:
    specifier: ^4.1.1
    version: 4.1.1(vue@3.2.47)
  vuedraggable:
    specifier: ^4.1.0
    version: 4.1.0(vue@3.2.47)
  vxe-table:
    specifier: ^4.3.9
    version: 4.3.9(vue@3.2.47)(xe-utils@3.5.7)
  vxe-table-plugin-export-xlsx:
    specifier: ^3.0.4
    version: 3.0.4(vxe-table@4.3.9)
  xe-utils:
    specifier: ^3.5.7
    version: 3.5.7
  xlsx:
    specifier: ^0.18.5
    version: 0.18.5
devDependencies:
  '@commitlint/cli':
    specifier: ^16.2.3
    version: 16.2.3
  '@commitlint/config-conventional':
    specifier: ^16.2.1
    version: 16.2.1
  '@iconify/json':
    specifier: ^2.1.30
    version: 2.1.30
  '@purge-icons/generated':
    specifier: ^0.8.1
    version: 0.8.1
  '@types/codemirror':
    specifier: ^5.60.5
    version: 5.60.5
  '@types/crypto-js':
    specifier: ^4.1.1
    version: 4.1.1
  '@types/fs-extra':
    specifier: ^9.0.13
    version: 9.0.13
  '@types/inquirer':
    specifier: ^8.2.1
    version: 8.2.1
  '@types/intro.js':
    specifier: ^3.0.2
    version: 3.0.2
  '@types/lodash-es':
    specifier: ^4.17.6
    version: 4.17.6
  '@types/mockjs':
    specifier: ^1.0.6
    version: 1.0.6
  '@types/node':
    specifier: ^17.0.25
    version: 17.0.25
  '@types/nprogress':
    specifier: ^0.2.0
    version: 0.2.0
  '@types/qrcode':
    specifier: ^1.4.2
    version: 1.4.2
  '@types/qs':
    specifier: ^6.9.7
    version: 6.9.7
  '@types/showdown':
    specifier: ^1.9.4
    version: 1.9.4
  '@types/sortablejs':
    specifier: ^1.10.7
    version: 1.10.7
  '@typescript-eslint/eslint-plugin':
    specifier: ^5.20.0
    version: 5.20.0(@typescript-eslint/parser@5.20.0)(eslint@8.13.0)(typescript@4.6.3)
  '@typescript-eslint/parser':
    specifier: ^5.20.0
    version: 5.20.0(eslint@8.13.0)(typescript@4.6.3)
  '@vitejs/plugin-legacy':
    specifier: ^1.8.1
    version: 1.8.1(vite@2.9.5)
  '@vitejs/plugin-vue':
    specifier: ^2.3.1
    version: 2.3.1(vite@2.9.5)(vue@3.2.47)
  '@vitejs/plugin-vue-jsx':
    specifier: ^1.3.10
    version: 1.3.10
  '@vue/compiler-sfc':
    specifier: ^3.2.33
    version: 3.2.33
  '@vue/test-utils':
    specifier: ^2.0.0-rc.21
    version: 2.0.0-rc.21(vue@3.2.47)
  autoprefixer:
    specifier: ^10.4.4
    version: 10.4.4(postcss@8.4.12)
  conventional-changelog-cli:
    specifier: ^2.2.2
    version: 2.2.2
  cross-env:
    specifier: ^7.0.3
    version: 7.0.3
  cz-git:
    specifier: ^1.3.9
    version: 1.3.9
  czg:
    specifier: ^1.3.9
    version: 1.3.9
  dotenv:
    specifier: ^16.0.0
    version: 16.0.0
  eslint:
    specifier: ^8.13.0
    version: 8.13.0
  eslint-config-prettier:
    specifier: ^8.5.0
    version: 8.5.0(eslint@8.13.0)
  eslint-plugin-prettier:
    specifier: ^4.0.0
    version: 4.0.0(eslint-config-prettier@8.5.0)(eslint@8.13.0)(prettier@2.6.2)
  eslint-plugin-vue:
    specifier: ^8.6.0
    version: 8.6.0(eslint@8.13.0)
  esno:
    specifier: ^0.14.1
    version: 0.14.1
  fs-extra:
    specifier: ^10.1.0
    version: 10.1.0
  husky:
    specifier: ^7.0.4
    version: 7.0.4
  inquirer:
    specifier: ^8.2.2
    version: 8.2.2
  less:
    specifier: ^4.1.2
    version: 4.1.2
  lint-staged:
    specifier: 12.3.7
    version: 12.3.7
  npm-run-all:
    specifier: ^4.1.5
    version: 4.1.5
  picocolors:
    specifier: ^1.0.0
    version: 1.0.0
  postcss:
    specifier: ^8.4.12
    version: 8.4.12
  postcss-html:
    specifier: ^1.4.1
    version: 1.4.1
  postcss-less:
    specifier: ^6.0.0
    version: 6.0.0(postcss@8.4.12)
  prettier:
    specifier: ^2.6.2
    version: 2.6.2
  rimraf:
    specifier: ^3.0.2
    version: 3.0.2
  rollup:
    specifier: ^2.70.2
    version: 2.70.2
  rollup-plugin-visualizer:
    specifier: ^5.6.0
    version: 5.6.0(rollup@2.70.2)
  sass:
    specifier: ^1.57.1
    version: 1.57.1
  stylelint:
    specifier: ^14.7.1
    version: 14.7.1
  stylelint-config-prettier:
    specifier: ^9.0.3
    version: 9.0.3(stylelint@14.7.1)
  stylelint-config-recommended:
    specifier: ^7.0.0
    version: 7.0.0(stylelint@14.7.1)
  stylelint-config-recommended-vue:
    specifier: ^1.4.0
    version: 1.4.0(postcss-html@1.4.1)(stylelint@14.7.1)
  stylelint-config-standard:
    specifier: ^25.0.0
    version: 25.0.0(stylelint@14.7.1)
  stylelint-order:
    specifier: ^5.0.0
    version: 5.0.0(stylelint@14.7.1)
  ts-node:
    specifier: ^10.7.0
    version: 10.7.0(@types/node@17.0.25)(typescript@4.6.3)
  typescript:
    specifier: ^4.6.3
    version: 4.6.3
  vite:
    specifier: ^2.9.5
    version: 2.9.5(less@4.1.2)(sass@1.57.1)
  vite-plugin-compression:
    specifier: ^0.5.1
    version: 0.5.1(vite@2.9.5)
  vite-plugin-html:
    specifier: ^3.2.0
    version: 3.2.0(vite@2.9.5)
  vite-plugin-imagemin:
    specifier: ^0.6.1
    version: 0.6.1(vite@2.9.5)
  vite-plugin-mkcert:
    specifier: ^1.6.0
    version: 1.6.0
  vite-plugin-mock:
    specifier: ^2.9.6
    version: 2.9.6(mockjs@1.1.0)(rollup@2.70.2)(vite@2.9.5)
  vite-plugin-purge-icons:
    specifier: ^0.8.1
    version: 0.8.1(vite@2.9.5)
  vite-plugin-pwa:
    specifier: ^0.11.13
    version: 0.11.13(vite@2.9.5)(workbox-build@6.5.4)(workbox-window@6.5.4)
  vite-plugin-style-import:
    specifier: ^2.0.0
    version: 2.0.0(vite@2.9.5)
  vite-plugin-svg-icons:
    specifier: ^2.0.1
    version: 2.0.1(vite@2.9.5)
  vite-plugin-theme:
    specifier: ^0.8.6
    version: 0.8.6(vite@2.9.5)
  vite-plugin-vue-setup-extend:
    specifier: ^0.4.0
    version: 0.4.0(vite@2.9.5)
  vite-plugin-windicss:
    specifier: ^1.8.4
    version: 1.8.4(vite@2.9.5)
  vue-eslint-parser:
    specifier: ^8.3.0
    version: 8.3.0(eslint@8.13.0)
  vue-tsc:
    specifier: ^1.0.9
    version: 1.0.9(typescript@4.6.3)
  .:
    dependencies:
      '@ant-design/colors':
        specifier: ^6.0.0
        version: 6.0.0
      '@ant-design/icons-vue':
        specifier: ^6.1.0
        version: 6.1.0(vue@3.2.47)
      '@iconify/iconify':
        specifier: ^2.2.1
        version: 2.2.1
      '@logicflow/core':
        specifier: ^1.1.13
        version: 1.1.13
      '@logicflow/extension':
        specifier: ^1.1.13
        version: 1.1.13
      '@vue/runtime-core':
        specifier: ^3.2.33
        version: 3.2.33
      '@vue/shared':
        specifier: ^3.2.33
        version: 3.2.33
      '@vueuse/core':
        specifier: ^8.3.0
        version: 8.3.0(vue@3.2.47)
      '@vueuse/shared':
        specifier: ^8.3.0
        version: 8.3.0(vue@3.2.47)
      '@zxcvbn-ts/core':
        specifier: ^2.0.1
        version: 2.0.1
      ant-design-vue:
        specifier: ^3.2.0
        version: 3.2.0(vue@3.2.47)
      axios:
        specifier: ^0.26.1
        version: 0.26.1(debug@4.3.4)
      codemirror:
        specifier: ^5.65.3
        version: 5.65.3
      cropperjs:
        specifier: ^1.5.12
        version: 1.5.12
      crypto-js:
        specifier: ^4.1.1
        version: 4.1.1
      dayjs:
        specifier: ^1.11.1
        version: 1.11.1
      echarts:
        specifier: ^5.3.2
        version: 5.3.2
      exceljs:
        specifier: ^4.3.0
        version: 4.3.0
      intro.js:
        specifier: ^5.1.0
        version: 5.1.0
      lodash-es:
        specifier: ^4.17.21
        version: 4.17.21
      mockjs:
        specifier: ^1.1.0
        version: 1.1.0
      nprogress:
        specifier: ^0.2.0
        version: 0.2.0
      path-to-regexp:
        specifier: ^6.2.0
        version: 6.2.0
      pinia:
        specifier: 2.0.12
        version: 2.0.12(typescript@4.6.3)(vue@3.2.47)
      print-js:
        specifier: ^1.6.0
        version: 1.6.0
      qrcode:
        specifier: ^1.5.0
        version: 1.5.0
      qs:
        specifier: ^6.10.3
        version: 6.10.3
      resize-observer-polyfill:
        specifier: ^1.5.1
        version: 1.5.1
      showdown:
        specifier: ^2.1.0
        version: 2.1.0
      sortablejs:
        specifier: ^1.15.0
        version: 1.15.0
      tinymce:
        specifier: ^5.10.7
        version: 5.10.7
      vditor:
        specifier: ^3.8.13
        version: 3.8.13
      vue:
        specifier: ^3.2.47
        version: 3.2.47
      vue-i18n:
        specifier: ^9.1.9
        version: 9.1.9(vue@3.2.47)
      vue-json-pretty:
        specifier: ^2.0.6
        version: 2.0.6(vue@3.2.47)
      vue-router:
        specifier: ^4.0.14
        version: 4.0.14(vue@3.2.47)
      vue-types:
        specifier: ^4.1.1
        version: 4.1.1(vue@3.2.47)
      vuedraggable:
        specifier: ^4.1.0
        version: 4.1.0(vue@3.2.47)
      vxe-table:
        specifier: ^4.3.9
        version: 4.3.9(vue@3.2.47)(xe-utils@3.5.7)
      vxe-table-plugin-export-xlsx:
        specifier: ^3.0.4
        version: 3.0.4(vxe-table@4.3.9)
      xe-utils:
        specifier: ^3.5.7
        version: 3.5.7
      xlsx:
        specifier: ^0.18.5
        version: 0.18.5
    devDependencies:
      '@commitlint/cli':
        specifier: ^16.2.3
        version: 16.2.3
      '@commitlint/config-conventional':
        specifier: ^16.2.1
        version: 16.2.1
      '@iconify/json':
        specifier: ^2.1.30
        version: 2.1.30
      '@purge-icons/generated':
        specifier: ^0.8.1
        version: 0.8.1
      '@types/codemirror':
        specifier: ^5.60.5
        version: 5.60.5
      '@types/crypto-js':
        specifier: ^4.1.1
        version: 4.1.1
      '@types/fs-extra':
        specifier: ^9.0.13
        version: 9.0.13
      '@types/inquirer':
        specifier: ^8.2.1
        version: 8.2.1
      '@types/intro.js':
        specifier: ^3.0.2
        version: 3.0.2
      '@types/lodash-es':
        specifier: ^4.17.6
        version: 4.17.6
      '@types/mockjs':
        specifier: ^1.0.6
        version: 1.0.6
      '@types/node':
        specifier: ^17.0.25
        version: 17.0.25
      '@types/nprogress':
        specifier: ^0.2.0
        version: 0.2.0
      '@types/qrcode':
        specifier: ^1.4.2
        version: 1.4.2
      '@types/qs':
        specifier: ^6.9.7
        version: 6.9.7
      '@types/showdown':
        specifier: ^1.9.4
        version: 1.9.4
      '@types/sortablejs':
        specifier: ^1.10.7
        version: 1.10.7
      '@typescript-eslint/eslint-plugin':
        specifier: ^5.20.0
        version: 5.20.0(@typescript-eslint/parser@5.20.0)(eslint@8.13.0)(typescript@4.6.3)
      '@typescript-eslint/parser':
        specifier: ^5.20.0
        version: 5.20.0(eslint@8.13.0)(typescript@4.6.3)
      '@vitejs/plugin-vue':
        specifier: ^2.3.1
        version: 2.3.1(vite@2.9.5)(vue@3.2.47)
      '@vitejs/plugin-vue-jsx':
        specifier: ^1.3.10
        version: 1.3.10
      '@vue/compiler-sfc':
        specifier: ^3.2.33
        version: 3.2.33
      '@vue/test-utils':
        specifier: ^2.0.0-rc.21
        version: 2.0.0-rc.21(vue@3.2.47)
      autoprefixer:
        specifier: ^10.4.4
        version: 10.4.4(postcss@8.4.12)
      conventional-changelog-cli:
        specifier: ^2.2.2
        version: 2.2.2
      cross-env:
        specifier: ^7.0.3
        version: 7.0.3
      cz-git:
        specifier: ^1.3.9
        version: 1.3.9
      czg:
        specifier: ^1.3.9
        version: 1.3.9
      dotenv:
        specifier: ^16.0.0
        version: 16.0.0
      eslint:
        specifier: ^8.13.0
        version: 8.13.0
      eslint-config-prettier:
        specifier: ^8.5.0
        version: 8.5.0(eslint@8.13.0)
      eslint-plugin-prettier:
        specifier: ^4.0.0
        version: 4.0.0(eslint-config-prettier@8.5.0)(eslint@8.13.0)(prettier@2.6.2)
      eslint-plugin-vue:
        specifier: ^8.6.0
        version: 8.6.0(eslint@8.13.0)
      esno:
        specifier: ^0.14.1
        version: 0.14.1
      fs-extra:
        specifier: ^10.1.0
        version: 10.1.0
      husky:
        specifier: ^7.0.4
        version: 7.0.4
      inquirer:
        specifier: ^8.2.2
        version: 8.2.2
      less:
        specifier: ^4.1.2
        version: 4.1.2
      lint-staged:
        specifier: 12.3.7
        version: 12.3.7
      npm-run-all:
        specifier: ^4.1.5
        version: 4.1.5
      picocolors:
        specifier: ^1.0.0
        version: 1.0.0
      postcss:
        specifier: ^8.4.12
        version: 8.4.12
      postcss-html:
        specifier: ^1.4.1
        version: 1.4.1
      postcss-less:
        specifier: ^6.0.0
        version: 6.0.0(postcss@8.4.12)
      prettier:
        specifier: ^2.6.2
        version: 2.6.2
      rimraf:
        specifier: ^3.0.2
        version: 3.0.2
      rollup:
        specifier: ^2.70.2
        version: 2.70.2
      rollup-plugin-visualizer:
        specifier: ^5.6.0
        version: 5.6.0(rollup@2.70.2)
      sass:
        specifier: ^1.57.1
        version: 1.57.1
      stylelint:
        specifier: ^14.7.1
        version: 14.7.1
      stylelint-config-prettier:
        specifier: ^9.0.3
        version: 9.0.3(stylelint@14.7.1)
      stylelint-config-recommended:
        specifier: ^7.0.0
        version: 7.0.0(stylelint@14.7.1)
      stylelint-config-recommended-vue:
        specifier: ^1.4.0
        version: 1.4.0(postcss-html@1.4.1)(stylelint@14.7.1)
      stylelint-config-standard:
        specifier: ^25.0.0
        version: 25.0.0(stylelint@14.7.1)
      stylelint-order:
        specifier: ^5.0.0
        version: 5.0.0(stylelint@14.7.1)
      ts-node:
        specifier: ^10.7.0
        version: 10.7.0(@types/node@17.0.25)(typescript@4.6.3)
      typescript:
        specifier: ^4.6.3
        version: 4.6.3
      vite:
        specifier: ^2.9.5
        version: 2.9.5(less@4.1.2)(sass@1.57.1)
      vite-plugin-compression:
        specifier: ^0.5.1
        version: 0.5.1(vite@2.9.5)
      vite-plugin-html:
        specifier: ^3.2.0
        version: 3.2.0(vite@2.9.5)
      vite-plugin-mkcert:
        specifier: ^1.6.0
        version: 1.6.0
      vite-plugin-mock:
        specifier: ^2.9.6
        version: 2.9.6(mockjs@1.1.0)(rollup@2.70.2)(vite@2.9.5)
      vite-plugin-purge-icons:
        specifier: ^0.8.1
        version: 0.8.1(vite@2.9.5)
      vite-plugin-pwa:
        specifier: ^0.11.13
        version: 0.11.13(vite@2.9.5)(workbox-build@6.5.4)(workbox-window@6.5.4)
      vite-plugin-style-import:
        specifier: ^2.0.0
        version: 2.0.0(vite@2.9.5)
      vite-plugin-svg-icons:
        specifier: ^2.0.1
        version: 2.0.1(vite@2.9.5)
      vite-plugin-theme:
        specifier: ^0.8.6
        version: 0.8.6(vite@2.9.5)
      vite-plugin-vue-setup-extend:
        specifier: ^0.4.0
        version: 0.4.0(vite@2.9.5)
      vite-plugin-windicss:
        specifier: ^1.8.4
        version: 1.8.4(vite@2.9.5)
      vue-eslint-parser:
        specifier: ^8.3.0
        version: 8.3.0(eslint@8.13.0)
      vue-tsc:
        specifier: ^1.0.9
        version: 1.0.9(typescript@4.6.3)
packages:
@@ -1549,11 +1541,6 @@
    dependencies:
      regenerator-runtime: 0.13.11
  /@babel/standalone@7.21.4:
    resolution: {integrity: sha512-Rw4nGqH/iyVeYxARKcz7iGP+njkPsVqJ45TmXMONoGoxooWjXCAs+CUcLeAZdBGCLqgaPvHKCYvIaDT2Iq+KfA==}
    engines: {node: '>=6.9.0'}
    dev: true
  /@babel/template@7.20.7:
    resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
    engines: {node: '>=6.9.0'}
@@ -2416,11 +2403,6 @@
      nanopop: 2.2.0
    dev: false
  /@sindresorhus/is@0.7.0:
    resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==}
    engines: {node: '>=4'}
    dev: true
  /@surma/rollup-plugin-off-main-thread@2.2.3:
    resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==}
    dependencies:
@@ -2475,56 +2457,6 @@
      '@types/node': 17.0.25
    dev: true
  /@types/glob@7.2.0:
    resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
    dependencies:
      '@types/minimatch': 5.1.2
      '@types/node': 17.0.25
    dev: true
  /@types/imagemin-gifsicle@7.0.1:
    resolution: {integrity: sha512-kUz6sUh0P95JOS0RGEaaemWUrASuw+dLsWIveK2UZJx74id/B9epgblMkCk/r5MjUWbZ83wFvacG5Rb/f97gyA==}
    dependencies:
      '@types/imagemin': 7.0.1
    dev: true
  /@types/imagemin-jpegtran@5.0.1:
    resolution: {integrity: sha512-Ps8kbm+DUFte/Eln/tUdEvpMWHKFCsQKlV8n+RN50zqWqL/7QhfLxR0ymitP9wa90P6+rkbJlintBNPkVR+B/Q==}
    dependencies:
      '@types/imagemin': 7.0.1
    dev: true
  /@types/imagemin-mozjpeg@8.0.1:
    resolution: {integrity: sha512-kMQWEoKxxhlnH4POI3qfW9DjXlQfi80ux3l2b3j5R3eudSCoUIzKQLkfMjNJ6eMYnMWBcB+rfQOWqIzdIwFGKw==}
    dependencies:
      '@types/imagemin': 7.0.1
    dev: true
  /@types/imagemin-optipng@5.2.1:
    resolution: {integrity: sha512-XCM/3q+HUL7v4zOqMI+dJ5dTxT+MUukY9KU49DSnYb/4yWtSMHJyADP+WHSMVzTR63J2ZvfUOzSilzBNEQW78g==}
    dependencies:
      '@types/imagemin': 7.0.1
    dev: true
  /@types/imagemin-svgo@10.0.2:
    resolution: {integrity: sha512-F4enqbl7eE0JhrwGdJSMKFDn1j1Pk8JsCvnjA5iJKSi+IK3sd4CronabzVmOuEkz663tV7FsRQp1f7SP3zmIaA==}
    dependencies:
      '@types/imagemin': 7.0.1
      '@types/svgo': 2.6.4
    dev: true
  /@types/imagemin-webp@7.0.0:
    resolution: {integrity: sha512-Lb1tjy2vEU7qYwM5iFB9o5k0J3mIpulw6Yftset5LLLugPu7+C16rLYRP1WEwr4QM8AeJZRjC2BGBLd9lGvRhQ==}
    dependencies:
      '@types/imagemin': 7.0.1
    dev: true
  /@types/imagemin@7.0.1:
    resolution: {integrity: sha512-xEn5+M3lDBtI3JxLy6eU3ksoVurygnlG7OYhTqJfGGP4PcvYnfn+IABCmMve7ziM/SneHDm5xgJFKC8hCYPicw==}
    dependencies:
      '@types/node': 17.0.25
    dev: true
  /@types/inquirer@8.2.1:
    resolution: {integrity: sha512-wKW3SKIUMmltbykg4I5JzCVzUhkuD9trD6efAmYgN2MrSntY0SMRQzEnD3mkyJ/rv9NLbTC7g3hKKE86YwEDLw==}
    dependencies:
@@ -2540,12 +2472,6 @@
    resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
    dev: true
  /@types/keyv@3.1.4:
    resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
    dependencies:
      '@types/node': 17.0.25
    dev: true
  /@types/lodash-es@4.17.6:
    resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==}
    dependencies:
@@ -2554,10 +2480,6 @@
  /@types/lodash@4.14.192:
    resolution: {integrity: sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==}
    dev: true
  /@types/minimatch@5.1.2:
    resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
    dev: true
  /@types/minimist@1.2.2:
@@ -2603,12 +2525,6 @@
  /@types/resolve@1.17.1:
    resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
    dependencies:
      '@types/node': 17.0.25
    dev: true
  /@types/responselike@1.0.0:
    resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
    dependencies:
      '@types/node': 17.0.25
    dev: true
@@ -2771,20 +2687,6 @@
    dependencies:
      '@typescript-eslint/types': 5.20.0
      eslint-visitor-keys: 3.4.0
    dev: true
  /@vitejs/plugin-legacy@1.8.1(vite@2.9.5):
    resolution: {integrity: sha512-kmBWKq7EeNvzS4AqPBqUKdoWG/NYQXh7StUFMWR3D21aN5Mfmar7CTO2a7K+bBxJH/vAL9gnnueA0wb7cycCmQ==}
    engines: {node: '>=12.0.0'}
    peerDependencies:
      vite: ^2.8.0
    dependencies:
      '@babel/standalone': 7.21.4
      core-js: 3.29.1
      magic-string: 0.26.7
      regenerator-runtime: 0.13.11
      systemjs: 6.14.1
      vite: 2.9.5(less@4.1.2)(sass@1.57.1)
    dev: true
  /@vitejs/plugin-vue-jsx@1.3.10:
@@ -3227,17 +3129,6 @@
      picomatch: 2.3.1
    dev: true
  /arch@2.2.0:
    resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==}
    dev: true
  /archive-type@4.0.0:
    resolution: {integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==}
    engines: {node: '>=4'}
    dependencies:
      file-type: 4.4.0
    dev: true
  /archiver-utils@2.1.0:
    resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
    engines: {node: '>= 6'}
@@ -3295,11 +3186,6 @@
    dependencies:
      call-bind: 1.0.2
      is-array-buffer: 3.0.2
    dev: true
  /array-find-index@1.0.2:
    resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==}
    engines: {node: '>=0.10.0'}
    dev: true
  /array-ify@1.0.0:
@@ -3461,63 +3347,9 @@
    resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
    dev: true
  /bin-build@3.0.0:
    resolution: {integrity: sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==}
    engines: {node: '>=4'}
    dependencies:
      decompress: 4.2.1
      download: 6.2.5
      execa: 0.7.0
      p-map-series: 1.0.0
      tempfile: 2.0.0
    dev: true
  /bin-check@4.1.0:
    resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==}
    engines: {node: '>=4'}
    dependencies:
      execa: 0.7.0
      executable: 4.1.1
    dev: true
  /bin-version-check@4.0.0:
    resolution: {integrity: sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==}
    engines: {node: '>=6'}
    dependencies:
      bin-version: 3.1.0
      semver: 5.7.1
      semver-truncate: 1.1.2
    dev: true
  /bin-version@3.1.0:
    resolution: {integrity: sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==}
    engines: {node: '>=6'}
    dependencies:
      execa: 1.0.0
      find-versions: 3.2.0
    dev: true
  /bin-wrapper-china@0.1.0:
    resolution: {integrity: sha512-1UCm17WYEbgry50tup+AQN+JGVEVzoW4f8HMl899k1lvuFxWKGZXl/G2fgxQxAckRjnloO3ijLVVEsv8zescUg==}
    engines: {node: '>=8.3'}
    hasBin: true
    dependencies:
      bin-check: 4.1.0
      bin-version-check: 4.0.0
      binary-mirror-config: 1.41.0
      download: 7.1.0
      import-lazy: 4.0.0
      os-filter-obj: 2.0.0
      pify: 4.0.1
    dev: true
  /binary-extensions@2.2.0:
    resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
    engines: {node: '>=8'}
    dev: true
  /binary-mirror-config@1.41.0:
    resolution: {integrity: sha512-ZiIhR1s6Sv1Fv6qCQqfPjx0Cj86BgFlhqNxZgHkQOWcxJcMbO3mj1iqsuVjowYqJqeZL8e52+IEv7IRnSX6T6w==}
    dev: true
  /binary@0.3.0:
@@ -3526,13 +3358,6 @@
      buffers: 0.1.1
      chainsaw: 0.1.0
    dev: false
  /bl@1.2.3:
    resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
    dependencies:
      readable-stream: 2.3.8
      safe-buffer: 5.2.1
    dev: true
  /bl@4.1.0:
    resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -3600,23 +3425,9 @@
      update-browserslist-db: 1.0.10(browserslist@4.21.5)
    dev: true
  /buffer-alloc-unsafe@1.1.0:
    resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==}
    dev: true
  /buffer-alloc@1.2.0:
    resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==}
    dependencies:
      buffer-alloc-unsafe: 1.1.0
      buffer-fill: 1.0.0
    dev: true
  /buffer-crc32@0.2.13:
    resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
  /buffer-fill@1.0.0:
    resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==}
    dev: true
    dev: false
  /buffer-from@1.1.2:
    resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
@@ -3664,18 +3475,6 @@
      unset-value: 1.0.0
    dev: true
  /cacheable-request@2.1.4:
    resolution: {integrity: sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==}
    dependencies:
      clone-response: 1.0.2
      get-stream: 3.0.0
      http-cache-semantics: 3.8.1
      keyv: 3.0.0
      lowercase-keys: 1.0.0
      normalize-url: 2.0.1
      responselike: 1.0.2
    dev: true
  /call-bind@1.0.2:
    resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
    dependencies:
@@ -3694,14 +3493,6 @@
      tslib: 2.5.0
    dev: true
  /camelcase-keys@2.1.0:
    resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==}
    engines: {node: '>=0.10.0'}
    dependencies:
      camelcase: 2.1.1
      map-obj: 1.0.1
    dev: true
  /camelcase-keys@6.2.2:
    resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
    engines: {node: '>=8'}
@@ -3709,11 +3500,6 @@
      camelcase: 5.3.1
      map-obj: 4.3.0
      quick-lru: 4.0.1
    dev: true
  /camelcase@2.1.1:
    resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==}
    engines: {node: '>=0.10.0'}
    dev: true
  /camelcase@5.3.1:
@@ -3735,16 +3521,6 @@
      no-case: 3.0.4
      tslib: 2.5.0
      upper-case-first: 2.0.2
    dev: true
  /caw@2.0.1:
    resolution: {integrity: sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==}
    engines: {node: '>=4'}
    dependencies:
      get-proxy: 2.1.0
      isurl: 1.0.0
      tunnel-agent: 0.6.0
      url-to-options: 1.0.1
    dev: true
  /cfb@1.2.2:
@@ -3912,12 +3688,6 @@
      is-regexp: 2.1.0
    dev: true
  /clone-response@1.0.2:
    resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==}
    dependencies:
      mimic-response: 1.0.1
    dev: true
  /clone@1.0.4:
    resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
    engines: {node: '>=0.8'}
@@ -4028,13 +3798,6 @@
  /concat-map@0.0.1:
    resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  /config-chain@1.1.13:
    resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
    dependencies:
      ini: 1.3.8
      proto-list: 1.2.4
    dev: true
  /connect-history-api-fallback@1.6.0:
    resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
    engines: {node: '>=0.8'}
@@ -4056,10 +3819,6 @@
    resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
    dev: true
  /console-stream@0.1.1:
    resolution: {integrity: sha512-QC/8l9e6ofi6nqZ5PawlDgzmMw3OxIXtvolBzap/F4UDBJlDaZRSNbL/lb41C29FcbSJncBFlJFj2WJoNyZRfQ==}
    dev: true
  /console@0.7.2:
    resolution: {integrity: sha512-+JSDwGunA4MTEgAV/4VBKwUHonP8CzJ/6GIuwPi6acKFqFfHUdSGCm89ZxZ5FfGWdZfkdgAroy5bJ5FSeN/t4g==}
    dev: true
@@ -4070,13 +3829,6 @@
      no-case: 3.0.4
      tslib: 2.5.0
      upper-case: 2.0.2
    dev: true
  /content-disposition@0.5.4:
    resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
    engines: {node: '>= 0.6'}
    dependencies:
      safe-buffer: 5.2.1
    dev: true
  /conventional-changelog-angular@5.0.13:
@@ -4261,6 +4013,7 @@
  /core-js@3.29.1:
    resolution: {integrity: sha512-+jwgnhg6cQxKYIIjGtAHq2nwUOolo9eoFZ4sHfUH09BLXBgxnH4gA0zEd+t+BO2cNB8idaBtZFcFTRjQJRJmAw==}
    requiresBuild: true
    dev: false
  /core-util-is@1.0.3:
    resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -4339,14 +4092,6 @@
      - encoding
    dev: true
  /cross-spawn@5.1.0:
    resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
    dependencies:
      lru-cache: 4.1.5
      shebang-command: 1.2.0
      which: 1.3.1
    dev: true
  /cross-spawn@6.0.5:
    resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
    engines: {node: '>=4.8'}
@@ -4419,23 +4164,6 @@
  /csstype@2.6.21:
    resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
  /currently-unhandled@0.4.1:
    resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==}
    engines: {node: '>=0.10.0'}
    dependencies:
      array-find-index: 1.0.2
    dev: true
  /cwebp-bin@6.1.2:
    resolution: {integrity: sha512-NLEZ/BVAl9g426hwUX/qrQ7b/EfQH7BS1tr+CzPo2EgDQbcdzmUVE+fIfsi64lsL638lWgzTEViMAL4pxV1GOg==}
    engines: {node: '>=10'}
    hasBin: true
    requiresBuild: true
    dependencies:
      bin-build: 3.0.0
      bin-wrapper: /bin-wrapper-china@0.1.0
    dev: true
  /cz-git@1.3.9:
    resolution: {integrity: sha512-S7XpI+XtJ/foh9MYB1pBB+YGsQyzhQpUzmNaN3Y17KeYf0EvRQt0OR7GVf3xZ5clLEdQh2nY5TjdGZ4ctXUTuA==}
@@ -4513,66 +4241,6 @@
  /decode-uri-component@0.2.2:
    resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
    engines: {node: '>=0.10'}
    dev: true
  /decompress-response@3.3.0:
    resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
    engines: {node: '>=4'}
    dependencies:
      mimic-response: 1.0.1
    dev: true
  /decompress-tar@4.1.1:
    resolution: {integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==}
    engines: {node: '>=4'}
    dependencies:
      file-type: 5.2.0
      is-stream: 1.1.0
      tar-stream: 1.6.2
    dev: true
  /decompress-tarbz2@4.1.1:
    resolution: {integrity: sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==}
    engines: {node: '>=4'}
    dependencies:
      decompress-tar: 4.1.1
      file-type: 6.2.0
      is-stream: 1.1.0
      seek-bzip: 1.0.6
      unbzip2-stream: 1.4.3
    dev: true
  /decompress-targz@4.1.1:
    resolution: {integrity: sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==}
    engines: {node: '>=4'}
    dependencies:
      decompress-tar: 4.1.1
      file-type: 5.2.0
      is-stream: 1.1.0
    dev: true
  /decompress-unzip@4.0.1:
    resolution: {integrity: sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==}
    engines: {node: '>=4'}
    dependencies:
      file-type: 3.9.0
      get-stream: 2.3.1
      pify: 2.3.0
      yauzl: 2.10.0
    dev: true
  /decompress@4.2.1:
    resolution: {integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==}
    engines: {node: '>=4'}
    dependencies:
      decompress-tar: 4.1.1
      decompress-tarbz2: 4.1.1
      decompress-targz: 4.1.1
      decompress-unzip: 4.0.1
      graceful-fs: 4.2.11
      make-dir: 1.3.0
      pify: 2.3.0
      strip-dirs: 2.1.0
    dev: true
  /deep-is@0.1.4:
@@ -4739,50 +4407,11 @@
    engines: {node: '>=12'}
    dev: true
  /download@6.2.5:
    resolution: {integrity: sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==}
    engines: {node: '>=4'}
    dependencies:
      caw: 2.0.1
      content-disposition: 0.5.4
      decompress: 4.2.1
      ext-name: 5.0.0
      file-type: 5.2.0
      filenamify: 2.1.0
      get-stream: 3.0.0
      got: 7.1.0
      make-dir: 1.3.0
      p-event: 1.3.0
      pify: 3.0.0
    dev: true
  /download@7.1.0:
    resolution: {integrity: sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==}
    engines: {node: '>=6'}
    dependencies:
      archive-type: 4.0.0
      caw: 2.0.1
      content-disposition: 0.5.4
      decompress: 4.2.1
      ext-name: 5.0.0
      file-type: 8.1.0
      filenamify: 2.1.0
      get-stream: 3.0.0
      got: 8.3.2
      make-dir: 1.3.0
      p-event: 2.3.1
      pify: 3.0.0
    dev: true
  /duplexer2@0.1.4:
    resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
    dependencies:
      readable-stream: 2.3.8
    dev: false
  /duplexer3@0.1.5:
    resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
    dev: true
  /eastasianwidth@0.2.0:
    resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
@@ -4836,6 +4465,7 @@
    resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
    dependencies:
      once: 1.4.0
    dev: false
  /entities@1.1.2:
    resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
@@ -5417,58 +5047,6 @@
      uuid: 8.3.2
    dev: false
  /exec-buffer@3.2.0:
    resolution: {integrity: sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==}
    engines: {node: '>=4'}
    dependencies:
      execa: 0.7.0
      p-finally: 1.0.0
      pify: 3.0.0
      rimraf: 2.7.1
      tempfile: 2.0.0
    dev: true
  /execa@0.7.0:
    resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==}
    engines: {node: '>=4'}
    dependencies:
      cross-spawn: 5.1.0
      get-stream: 3.0.0
      is-stream: 1.1.0
      npm-run-path: 2.0.2
      p-finally: 1.0.0
      signal-exit: 3.0.7
      strip-eof: 1.0.0
    dev: true
  /execa@1.0.0:
    resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
    engines: {node: '>=6'}
    dependencies:
      cross-spawn: 6.0.5
      get-stream: 4.1.0
      is-stream: 1.1.0
      npm-run-path: 2.0.2
      p-finally: 1.0.0
      signal-exit: 3.0.7
      strip-eof: 1.0.0
    dev: true
  /execa@4.1.0:
    resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
    engines: {node: '>=10'}
    dependencies:
      cross-spawn: 7.0.3
      get-stream: 5.2.0
      human-signals: 1.1.1
      is-stream: 2.0.1
      merge-stream: 2.0.0
      npm-run-path: 4.0.1
      onetime: 5.1.2
      signal-exit: 3.0.7
      strip-final-newline: 2.0.0
    dev: true
  /execa@5.1.1:
    resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
    engines: {node: '>=10'}
@@ -5491,13 +5069,6 @@
      clone-regexp: 2.2.0
    dev: true
  /executable@4.1.1:
    resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
    engines: {node: '>=4'}
    dependencies:
      pify: 2.3.0
    dev: true
  /expand-brackets@2.1.4:
    resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==}
    engines: {node: '>=0.10.0'}
@@ -5511,21 +5082,6 @@
      to-regex: 3.0.2
    transitivePeerDependencies:
      - supports-color
    dev: true
  /ext-list@2.2.2:
    resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==}
    engines: {node: '>=0.10.0'}
    dependencies:
      mime-db: 1.52.0
    dev: true
  /ext-name@5.0.0:
    resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==}
    engines: {node: '>=4'}
    dependencies:
      ext-list: 2.2.2
      sort-keys-length: 1.0.1
    dev: true
  /extend-shallow@2.0.1:
@@ -5603,13 +5159,6 @@
    resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
    dev: true
  /fast-xml-parser@4.1.3:
    resolution: {integrity: sha512-LsNDahCiCcJPe8NO7HijcnukHB24tKbfDDA5IILx9dmW3Frb52lhbeX6MPNUSvyGNfav2VTYpJ/OqkRoVLrh2Q==}
    hasBin: true
    dependencies:
      strnum: 1.0.5
    dev: true
  /fastest-levenshtein@1.0.12:
    resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==}
    dev: false
@@ -5623,20 +5172,6 @@
    resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
    dependencies:
      reusify: 1.0.4
    dev: true
  /fd-slicer@1.1.0:
    resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
    dependencies:
      pend: 1.2.0
    dev: true
  /figures@1.7.0:
    resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==}
    engines: {node: '>=0.10.0'}
    dependencies:
      escape-string-regexp: 1.0.5
      object-assign: 4.1.1
    dev: true
  /figures@3.2.0:
@@ -5653,59 +5188,10 @@
      flat-cache: 3.0.4
    dev: true
  /file-type@10.11.0:
    resolution: {integrity: sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==}
    engines: {node: '>=6'}
    dev: true
  /file-type@12.4.2:
    resolution: {integrity: sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==}
    engines: {node: '>=8'}
    dev: true
  /file-type@3.9.0:
    resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==}
    engines: {node: '>=0.10.0'}
    dev: true
  /file-type@4.4.0:
    resolution: {integrity: sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==}
    engines: {node: '>=4'}
    dev: true
  /file-type@5.2.0:
    resolution: {integrity: sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==}
    engines: {node: '>=4'}
    dev: true
  /file-type@6.2.0:
    resolution: {integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==}
    engines: {node: '>=4'}
    dev: true
  /file-type@8.1.0:
    resolution: {integrity: sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==}
    engines: {node: '>=6'}
    dev: true
  /filelist@1.0.4:
    resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
    dependencies:
      minimatch: 5.1.6
    dev: true
  /filename-reserved-regex@2.0.0:
    resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==}
    engines: {node: '>=4'}
    dev: true
  /filenamify@2.1.0:
    resolution: {integrity: sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==}
    engines: {node: '>=4'}
    dependencies:
      filename-reserved-regex: 2.0.0
      strip-outer: 1.0.1
      trim-repeated: 1.0.0
    dev: true
  /fill-range@4.0.0:
@@ -5740,14 +5226,6 @@
      - supports-color
    dev: true
  /find-up@1.1.2:
    resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==}
    engines: {node: '>=0.10.0'}
    dependencies:
      path-exists: 2.1.0
      pinkie-promise: 2.0.1
    dev: true
  /find-up@2.1.0:
    resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
    engines: {node: '>=4'}
@@ -5768,13 +5246,6 @@
    dependencies:
      locate-path: 6.0.0
      path-exists: 4.0.0
    dev: true
  /find-versions@3.2.0:
    resolution: {integrity: sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==}
    engines: {node: '>=6'}
    dependencies:
      semver-regex: 2.0.0
    dev: true
  /flat-cache@3.0.4:
@@ -5827,15 +5298,9 @@
      map-cache: 0.2.2
    dev: true
  /from2@2.3.0:
    resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
    dependencies:
      inherits: 2.0.4
      readable-stream: 2.3.8
    dev: true
  /fs-constants@1.0.0:
    resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
    dev: false
  /fs-extra@10.1.0:
    resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
@@ -5929,48 +5394,9 @@
      yargs: 16.2.0
    dev: true
  /get-proxy@2.1.0:
    resolution: {integrity: sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==}
    engines: {node: '>=4'}
    dependencies:
      npm-conf: 1.1.3
    dev: true
  /get-stdin@4.0.1:
    resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==}
    engines: {node: '>=0.10.0'}
    dev: true
  /get-stdin@8.0.0:
    resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==}
    engines: {node: '>=10'}
    dev: true
  /get-stream@2.3.1:
    resolution: {integrity: sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==}
    engines: {node: '>=0.10.0'}
    dependencies:
      object-assign: 4.1.1
      pinkie-promise: 2.0.1
    dev: true
  /get-stream@3.0.0:
    resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
    engines: {node: '>=4'}
    dev: true
  /get-stream@4.1.0:
    resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
    engines: {node: '>=6'}
    dependencies:
      pump: 3.0.0
    dev: true
  /get-stream@5.2.0:
    resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
    engines: {node: '>=8'}
    dependencies:
      pump: 3.0.0
    dev: true
  /get-stream@6.0.1:
@@ -5989,18 +5415,6 @@
  /get-value@2.0.6:
    resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
    engines: {node: '>=0.10.0'}
    dev: true
  /gifsicle@5.2.0:
    resolution: {integrity: sha512-vOIS3j0XoTCxq9pkGj43gEix82RkI5FveNgaFZutjbaui/HH+4fR8Y56dwXDuxYo8hR4xOo6/j2h1WHoQW6XLw==}
    engines: {node: '>=10'}
    hasBin: true
    requiresBuild: true
    dependencies:
      bin-build: 3.0.0
      bin-wrapper: /bin-wrapper-china@0.1.0
      execa: 5.1.1
      logalot: 2.1.0
    dev: true
  /git-raw-commits@2.0.11:
@@ -6104,20 +5518,6 @@
      define-properties: 1.2.0
    dev: true
  /globby@10.0.2:
    resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
    engines: {node: '>=8'}
    dependencies:
      '@types/glob': 7.2.0
      array-union: 2.1.0
      dir-glob: 3.0.1
      fast-glob: 3.2.12
      glob: 7.2.3
      ignore: 5.2.4
      merge2: 1.4.1
      slash: 3.0.0
    dev: true
  /globby@11.1.0:
    resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
    engines: {node: '>=10'}
@@ -6138,53 +5538,6 @@
    resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
    dependencies:
      get-intrinsic: 1.2.0
    dev: true
  /got@7.1.0:
    resolution: {integrity: sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==}
    engines: {node: '>=4'}
    dependencies:
      '@types/keyv': 3.1.4
      '@types/responselike': 1.0.0
      decompress-response: 3.3.0
      duplexer3: 0.1.5
      get-stream: 3.0.0
      is-plain-obj: 1.1.0
      is-retry-allowed: 1.2.0
      is-stream: 1.1.0
      isurl: 1.0.0
      lowercase-keys: 1.0.1
      p-cancelable: 0.3.0
      p-timeout: 1.2.1
      safe-buffer: 5.2.1
      timed-out: 4.0.1
      url-parse-lax: 1.0.0
      url-to-options: 1.0.1
    dev: true
  /got@8.3.2:
    resolution: {integrity: sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==}
    engines: {node: '>=4'}
    dependencies:
      '@sindresorhus/is': 0.7.0
      '@types/keyv': 3.1.4
      '@types/responselike': 1.0.0
      cacheable-request: 2.1.4
      decompress-response: 3.3.0
      duplexer3: 0.1.5
      get-stream: 3.0.0
      into-stream: 3.1.0
      is-retry-allowed: 1.2.0
      isurl: 1.0.0
      lowercase-keys: 1.0.1
      mimic-response: 1.0.1
      p-cancelable: 0.4.1
      p-timeout: 2.0.1
      pify: 3.0.0
      safe-buffer: 5.2.1
      timed-out: 4.0.1
      url-parse-lax: 3.0.0
      url-to-options: 1.0.1
    dev: true
  /graceful-fs@4.2.11:
@@ -6245,19 +5598,9 @@
    engines: {node: '>= 0.4'}
    dev: true
  /has-symbol-support-x@1.4.2:
    resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==}
    dev: true
  /has-symbols@1.0.3:
    resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
    engines: {node: '>= 0.4'}
  /has-to-string-tag-x@1.4.1:
    resolution: {integrity: sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==}
    dependencies:
      has-symbol-support-x: 1.4.2
    dev: true
  /has-tostringtag@1.0.0:
    resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
@@ -6369,15 +5712,6 @@
      entities: 3.0.1
    dev: true
  /http-cache-semantics@3.8.1:
    resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==}
    dev: true
  /human-signals@1.1.1:
    resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==}
    engines: {node: '>=8.12.0'}
    dev: true
  /human-signals@2.1.0:
    resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
    engines: {node: '>=10.17.0'}
@@ -6418,83 +5752,6 @@
    hasBin: true
    dev: true
  /imagemin-gifsicle@7.0.0:
    resolution: {integrity: sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==}
    engines: {node: '>=10'}
    dependencies:
      execa: 1.0.0
      gifsicle: 5.2.0
      is-gif: 3.0.0
    dev: true
  /imagemin-jpegtran@7.0.0:
    resolution: {integrity: sha512-MJoyTCW8YjMJf56NorFE41SR/WkaGA3IYk4JgvMlRwguJEEd3PnP9UxA8Y2UWjquz8d+On3Ds/03ZfiiLS8xTQ==}
    engines: {node: '>=10'}
    dependencies:
      exec-buffer: 3.2.0
      is-jpg: 2.0.0
      jpegtran-bin: 5.0.2
    dev: true
  /imagemin-mozjpeg@9.0.0:
    resolution: {integrity: sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==}
    engines: {node: '>=10'}
    dependencies:
      execa: 4.1.0
      is-jpg: 2.0.0
      mozjpeg: 7.1.1
    dev: true
  /imagemin-optipng@8.0.0:
    resolution: {integrity: sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==}
    engines: {node: '>=10'}
    dependencies:
      exec-buffer: 3.2.0
      is-png: 2.0.0
      optipng-bin: 7.0.1
    dev: true
  /imagemin-pngquant@9.0.2:
    resolution: {integrity: sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==}
    engines: {node: '>=10'}
    dependencies:
      execa: 4.1.0
      is-png: 2.0.0
      is-stream: 2.0.1
      ow: 0.17.0
      pngquant-bin: 6.0.1
    dev: true
  /imagemin-svgo@9.0.0:
    resolution: {integrity: sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==}
    engines: {node: '>=10'}
    dependencies:
      is-svg: 4.4.0
      svgo: 2.8.0
    dev: true
  /imagemin-webp@6.1.0:
    resolution: {integrity: sha512-i8ZluZV1pfQX9aVzmZ/VZh9KBSdPwUlp5VruAa9c30GZnX/nMl5n7h+oUMnI7Mg7+SUpu9mYBsw2nsYGUEllWQ==}
    engines: {node: '>=10'}
    dependencies:
      cwebp-bin: 6.1.2
      exec-buffer: 3.2.0
      is-cwebp-readable: 3.0.0
    dev: true
  /imagemin@7.0.1:
    resolution: {integrity: sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==}
    engines: {node: '>=8'}
    dependencies:
      file-type: 12.4.2
      globby: 10.0.2
      graceful-fs: 4.2.11
      junk: 3.1.0
      make-dir: 3.1.0
      p-pipe: 3.1.0
      replace-ext: 1.0.1
    dev: true
  /immediate@3.0.6:
    resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
    dev: false
@@ -6525,13 +5782,6 @@
  /imurmurhash@0.1.4:
    resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
    engines: {node: '>=0.8.19'}
    dev: true
  /indent-string@2.1.0:
    resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==}
    engines: {node: '>=0.10.0'}
    dependencies:
      repeating: 2.0.1
    dev: true
  /indent-string@4.0.0:
@@ -6579,14 +5829,6 @@
      get-intrinsic: 1.2.0
      has: 1.0.3
      side-channel: 1.0.4
    dev: true
  /into-stream@3.1.0:
    resolution: {integrity: sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==}
    engines: {node: '>=4'}
    dependencies:
      from2: 2.3.0
      p-is-promise: 1.1.0
    dev: true
  /intro.js@5.1.0:
@@ -6662,12 +5904,6 @@
      has: 1.0.3
    dev: true
  /is-cwebp-readable@3.0.0:
    resolution: {integrity: sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA==}
    dependencies:
      file-type: 10.11.0
    dev: true
  /is-data-descriptor@0.1.4:
    resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
    engines: {node: '>=0.10.0'}
@@ -6730,11 +5966,6 @@
    engines: {node: '>=0.10.0'}
    dev: true
  /is-finite@1.1.0:
    resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==}
    engines: {node: '>=0.10.0'}
    dev: true
  /is-fullwidth-code-point@3.0.0:
    resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
    engines: {node: '>=8'}
@@ -6742,13 +5973,6 @@
  /is-fullwidth-code-point@4.0.0:
    resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
    engines: {node: '>=12'}
    dev: true
  /is-gif@3.0.0:
    resolution: {integrity: sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==}
    engines: {node: '>=6'}
    dependencies:
      file-type: 10.11.0
    dev: true
  /is-glob@4.0.3:
@@ -6763,17 +5987,8 @@
    engines: {node: '>=8'}
    dev: true
  /is-jpg@2.0.0:
    resolution: {integrity: sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==}
    engines: {node: '>=6'}
    dev: true
  /is-module@1.0.0:
    resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
    dev: true
  /is-natural-number@4.0.1:
    resolution: {integrity: sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==}
    dev: true
  /is-negative-zero@2.0.2:
@@ -6810,10 +6025,6 @@
    engines: {node: '>=8'}
    dev: true
  /is-object@1.0.2:
    resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==}
    dev: true
  /is-plain-obj@1.1.0:
    resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
    engines: {node: '>=0.10.0'}
@@ -6835,11 +6046,6 @@
    resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
    engines: {node: '>=0.10.0'}
  /is-png@2.0.0:
    resolution: {integrity: sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==}
    engines: {node: '>=8'}
    dev: true
  /is-regex@1.1.4:
    resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
    engines: {node: '>= 0.4'}
@@ -6858,20 +6064,10 @@
    engines: {node: '>=6'}
    dev: true
  /is-retry-allowed@1.2.0:
    resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==}
    engines: {node: '>=0.10.0'}
    dev: true
  /is-shared-array-buffer@1.0.2:
    resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
    dependencies:
      call-bind: 1.0.2
    dev: true
  /is-stream@1.1.0:
    resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
    engines: {node: '>=0.10.0'}
    dev: true
  /is-stream@2.0.1:
@@ -6884,13 +6080,6 @@
    engines: {node: '>= 0.4'}
    dependencies:
      has-tostringtag: 1.0.0
    dev: true
  /is-svg@4.4.0:
    resolution: {integrity: sha512-v+AgVwiK5DsGtT9ng+m4mClp6zDAmwrW8nZi6Gg15qzvBnRWWdfWA1TGaXyCDnWq5g5asofIgMVl3PjKxvk1ug==}
    engines: {node: '>=6'}
    dependencies:
      fast-xml-parser: 4.1.3
    dev: true
  /is-symbol@1.0.4:
@@ -6921,10 +6110,6 @@
  /is-unicode-supported@0.1.0:
    resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
    engines: {node: '>=10'}
    dev: true
  /is-utf8@0.2.1:
    resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
    dev: true
  /is-weakref@1.0.2:
@@ -6968,14 +6153,6 @@
    engines: {node: '>=0.10.0'}
    dev: true
  /isurl@1.0.0:
    resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==}
    engines: {node: '>= 4'}
    dependencies:
      has-to-string-tag-x: 1.4.1
      is-object: 1.0.2
    dev: true
  /jake@10.8.5:
    resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
    engines: {node: '>=10'}
@@ -7001,27 +6178,6 @@
    hasBin: true
    dev: true
  /jpegtran-bin@5.0.2:
    resolution: {integrity: sha512-4FSmgIcr8d5+V6T1+dHbPZjaFH0ogVyP4UVsE+zri7S9YLO4qAT2our4IN3sW3STVgNTbqPermdIgt2XuAJ4EA==}
    engines: {node: '>=10'}
    hasBin: true
    requiresBuild: true
    dependencies:
      bin-build: 3.0.0
      bin-wrapper: /bin-wrapper-china@0.1.0
      logalot: 2.1.0
    dev: true
  /jpegtran-bin@6.0.1:
    resolution: {integrity: sha512-WohhhHhqe22de7PU8hXs6Sr5d4BAvkrfA93NR5tGlHyPnFLgvEW/bH+q7fv65JgoiQDsd7SBwwQ/OGRBivU3Mw==}
    engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
    hasBin: true
    requiresBuild: true
    dependencies:
      bin-build: 3.0.0
      bin-wrapper: /bin-wrapper-china@0.1.0
    dev: true
  /js-base64@2.6.4:
    resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==}
    dev: true
@@ -7045,10 +6201,6 @@
    resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
    engines: {node: '>=4'}
    hasBin: true
    dev: true
  /json-buffer@3.0.0:
    resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==}
    dev: true
  /json-parse-better-errors@1.0.2:
@@ -7118,17 +6270,6 @@
      readable-stream: 2.3.8
      setimmediate: 1.0.5
    dev: false
  /junk@3.1.0:
    resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==}
    engines: {node: '>=8'}
    dev: true
  /keyv@3.0.0:
    resolution: {integrity: sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==}
    dependencies:
      json-buffer: 3.0.0
    dev: true
  /kind-of@3.2.2:
    resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
@@ -7261,17 +6402,6 @@
      rxjs: 7.8.0
      through: 2.3.8
      wrap-ansi: 7.0.0
    dev: true
  /load-json-file@1.1.0:
    resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==}
    engines: {node: '>=0.10.0'}
    dependencies:
      graceful-fs: 4.2.11
      parse-json: 2.2.0
      pify: 2.3.0
      pinkie-promise: 2.0.1
      strip-bom: 2.0.0
    dev: true
  /load-json-file@4.0.0:
@@ -7411,19 +6541,6 @@
      wrap-ansi: 6.2.0
    dev: true
  /logalot@2.1.0:
    resolution: {integrity: sha512-Ah4CgdSRfeCJagxQhcVNMi9BfGYyEKLa6d7OA6xSbld/Hg3Cf2QiOa1mDpmG7Ve8LOH6DN3mdttzjQAvWTyVkw==}
    engines: {node: '>=0.10.0'}
    dependencies:
      figures: 1.7.0
      squeak: 1.3.0
    dev: true
  /longest@1.0.1:
    resolution: {integrity: sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==}
    engines: {node: '>=0.10.0'}
    dev: true
  /loose-envify@1.4.0:
    resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
    hasBin: true
@@ -7431,46 +6548,10 @@
      js-tokens: 4.0.0
    dev: false
  /loud-rejection@1.6.0:
    resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==}
    engines: {node: '>=0.10.0'}
    dependencies:
      currently-unhandled: 0.4.1
      signal-exit: 3.0.7
    dev: true
  /lower-case@2.0.2:
    resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
    dependencies:
      tslib: 2.5.0
    dev: true
  /lowercase-keys@1.0.0:
    resolution: {integrity: sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==}
    engines: {node: '>=0.10.0'}
    dev: true
  /lowercase-keys@1.0.1:
    resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
    engines: {node: '>=0.10.0'}
    dev: true
  /lpad-align@1.1.2:
    resolution: {integrity: sha512-MMIcFmmR9zlGZtBcFOows6c2COMekHCIFJz3ew/rRpKZ1wR4mXDPzvcVqLarux8M33X4TPSq2Jdw8WJj0q0KbQ==}
    engines: {node: '>=0.10.0'}
    hasBin: true
    dependencies:
      get-stdin: 4.0.1
      indent-string: 2.1.0
      longest: 1.0.1
      meow: 3.7.0
    dev: true
  /lru-cache@4.1.5:
    resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
    dependencies:
      pseudomap: 1.0.2
      yallist: 2.1.2
    dev: true
  /lru-cache@5.1.1:
@@ -7498,13 +6579,6 @@
      sourcemap-codec: 1.4.8
    dev: true
  /make-dir@1.3.0:
    resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==}
    engines: {node: '>=4'}
    dependencies:
      pify: 3.0.0
    dev: true
  /make-dir@2.1.0:
    resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
    engines: {node: '>=6'}
@@ -7514,13 +6588,6 @@
      semver: 5.7.1
    dev: true
    optional: true
  /make-dir@3.1.0:
    resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
    engines: {node: '>=8'}
    dependencies:
      semver: 6.3.0
    dev: true
  /make-error@1.3.6:
    resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
@@ -7559,22 +6626,6 @@
  /memorystream@0.3.1:
    resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
    engines: {node: '>= 0.10.0'}
    dev: true
  /meow@3.7.0:
    resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==}
    engines: {node: '>=0.10.0'}
    dependencies:
      camelcase-keys: 2.1.0
      decamelize: 1.2.0
      loud-rejection: 1.6.0
      map-obj: 1.0.1
      minimist: 1.2.8
      normalize-package-data: 2.5.0
      object-assign: 4.1.1
      read-pkg-up: 1.0.1
      redent: 1.0.0
      trim-newlines: 1.0.0
    dev: true
  /meow@8.1.2:
@@ -7657,11 +6708,6 @@
      picomatch: 2.3.1
    dev: true
  /mime-db@1.52.0:
    resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
    engines: {node: '>= 0.6'}
    dev: true
  /mime@1.6.0:
    resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
    engines: {node: '>=4'}
@@ -7673,11 +6719,6 @@
  /mimic-fn@2.1.0:
    resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
    engines: {node: '>=6'}
    dev: true
  /mimic-response@1.0.1:
    resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
    engines: {node: '>=4'}
    dev: true
  /min-indent@1.0.1:
@@ -7737,16 +6778,6 @@
  /mousetrap@1.6.5:
    resolution: {integrity: sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA==}
    dev: false
  /mozjpeg@7.1.1:
    resolution: {integrity: sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==}
    engines: {node: '>=10'}
    hasBin: true
    requiresBuild: true
    dependencies:
      bin-build: 3.0.0
      bin-wrapper: /bin-wrapper-china@0.1.0
    dev: true
  /ms@2.0.0:
    resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -7896,23 +6927,6 @@
    resolution: {integrity: sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw==}
    dev: true
  /normalize-url@2.0.1:
    resolution: {integrity: sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==}
    engines: {node: '>=4'}
    dependencies:
      prepend-http: 2.0.0
      query-string: 5.1.1
      sort-keys: 2.0.0
    dev: true
  /npm-conf@1.1.3:
    resolution: {integrity: sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==}
    engines: {node: '>=4'}
    dependencies:
      config-chain: 1.1.13
      pify: 3.0.0
    dev: true
  /npm-run-all@4.1.5:
    resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
    engines: {node: '>= 4'}
@@ -7927,13 +6941,6 @@
      read-pkg: 3.0.0
      shell-quote: 1.8.0
      string.prototype.padend: 3.1.4
    dev: true
  /npm-run-path@2.0.2:
    resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
    engines: {node: '>=4'}
    dependencies:
      path-key: 2.0.1
    dev: true
  /npm-run-path@4.0.1:
@@ -8039,16 +7046,6 @@
      word-wrap: 1.2.3
    dev: true
  /optipng-bin@7.0.1:
    resolution: {integrity: sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==}
    engines: {node: '>=10'}
    hasBin: true
    requiresBuild: true
    dependencies:
      bin-build: 3.0.0
      bin-wrapper: /bin-wrapper-china@0.1.0
    dev: true
  /ora@5.4.1:
    resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
    engines: {node: '>=10'}
@@ -8064,57 +7061,9 @@
      wcwidth: 1.0.1
    dev: true
  /os-filter-obj@2.0.0:
    resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==}
    engines: {node: '>=4'}
    dependencies:
      arch: 2.2.0
    dev: true
  /os-tmpdir@1.0.2:
    resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
    engines: {node: '>=0.10.0'}
    dev: true
  /ow@0.17.0:
    resolution: {integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==}
    engines: {node: '>=10'}
    dependencies:
      type-fest: 0.11.0
    dev: true
  /p-cancelable@0.3.0:
    resolution: {integrity: sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==}
    engines: {node: '>=4'}
    dev: true
  /p-cancelable@0.4.1:
    resolution: {integrity: sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==}
    engines: {node: '>=4'}
    dev: true
  /p-event@1.3.0:
    resolution: {integrity: sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==}
    engines: {node: '>=4'}
    dependencies:
      p-timeout: 1.2.1
    dev: true
  /p-event@2.3.1:
    resolution: {integrity: sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==}
    engines: {node: '>=6'}
    dependencies:
      p-timeout: 2.0.1
    dev: true
  /p-finally@1.0.0:
    resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
    engines: {node: '>=4'}
    dev: true
  /p-is-promise@1.1.0:
    resolution: {integrity: sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==}
    engines: {node: '>=4'}
    dev: true
  /p-limit@1.3.0:
@@ -8157,42 +7106,11 @@
      p-limit: 3.1.0
    dev: true
  /p-map-series@1.0.0:
    resolution: {integrity: sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==}
    engines: {node: '>=4'}
    dependencies:
      p-reduce: 1.0.0
    dev: true
  /p-map@4.0.0:
    resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
    engines: {node: '>=10'}
    dependencies:
      aggregate-error: 3.1.0
    dev: true
  /p-pipe@3.1.0:
    resolution: {integrity: sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==}
    engines: {node: '>=8'}
    dev: true
  /p-reduce@1.0.0:
    resolution: {integrity: sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==}
    engines: {node: '>=4'}
    dev: true
  /p-timeout@1.2.1:
    resolution: {integrity: sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==}
    engines: {node: '>=4'}
    dependencies:
      p-finally: 1.0.0
    dev: true
  /p-timeout@2.0.1:
    resolution: {integrity: sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==}
    engines: {node: '>=4'}
    dependencies:
      p-finally: 1.0.0
    dev: true
  /p-try@1.0.0:
@@ -8220,13 +7138,6 @@
    engines: {node: '>=6'}
    dependencies:
      callsites: 3.1.0
    dev: true
  /parse-json@2.2.0:
    resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==}
    engines: {node: '>=0.10.0'}
    dependencies:
      error-ex: 1.3.2
    dev: true
  /parse-json@4.0.0:
@@ -8276,13 +7187,6 @@
      tslib: 2.5.0
    dev: true
  /path-exists@2.1.0:
    resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==}
    engines: {node: '>=0.10.0'}
    dependencies:
      pinkie-promise: 2.0.1
    dev: true
  /path-exists@3.0.0:
    resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
    engines: {node: '>=4'}
@@ -8313,15 +7217,6 @@
  /path-to-regexp@6.2.0:
    resolution: {integrity: sha512-f66KywYG6+43afgE/8j/GoiNyygk/bnoCbps++3ErRKsIYkGGupyv07R2Ok5m9i67Iqc+T2g1eAUGUPzWhYTyg==}
  /path-type@1.1.0:
    resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==}
    engines: {node: '>=0.10.0'}
    dependencies:
      graceful-fs: 4.2.11
      pify: 2.3.0
      pinkie-promise: 2.0.1
    dev: true
  /path-type@3.0.0:
    resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
    engines: {node: '>=4'}
@@ -8336,10 +7231,6 @@
  /pathe@0.2.0:
    resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==}
    dev: true
  /pend@1.2.0:
    resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
    dev: true
  /picocolors@1.0.0:
@@ -8376,6 +7267,7 @@
    resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
    engines: {node: '>=6'}
    dev: true
    optional: true
  /pinia@2.0.12(typescript@4.6.3)(vue@3.2.47):
    resolution: {integrity: sha512-tUeuYGFrLU5irmGyRAIxp35q1OTcZ8sKpGT4XkPeVcG35W4R6cfXDbCGexzmVqH5lTQJJTXXbNGutIu9yS5yew==}
@@ -8395,33 +7287,10 @@
      vue-demi: 0.13.11(vue@3.2.47)
    dev: false
  /pinkie-promise@2.0.1:
    resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
    engines: {node: '>=0.10.0'}
    dependencies:
      pinkie: 2.0.4
    dev: true
  /pinkie@2.0.4:
    resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
    engines: {node: '>=0.10.0'}
    dev: true
  /pngjs@5.0.0:
    resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
    engines: {node: '>=10.13.0'}
    dev: false
  /pngquant-bin@6.0.1:
    resolution: {integrity: sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==}
    engines: {node: '>=10'}
    hasBin: true
    requiresBuild: true
    dependencies:
      bin-build: 3.0.0
      bin-wrapper: /bin-wrapper-china@0.1.0
      execa: 4.1.0
    dev: true
  /posix-character-classes@0.1.1:
    resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==}
@@ -8553,16 +7422,6 @@
    engines: {node: '>= 0.8.0'}
    dev: true
  /prepend-http@1.0.4:
    resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
    engines: {node: '>=0.10.0'}
    dev: true
  /prepend-http@2.0.0:
    resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
    engines: {node: '>=4'}
    dev: true
  /prettier-linter-helpers@1.0.0:
    resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
    engines: {node: '>=6.0.0'}
@@ -8588,25 +7447,10 @@
  /process-nextick-args@2.0.1:
    resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
  /proto-list@1.2.4:
    resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
    dev: true
  /prr@1.0.1:
    resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
    dev: true
    optional: true
  /pseudomap@1.0.2:
    resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
    dev: true
  /pump@3.0.0:
    resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
    dependencies:
      end-of-stream: 1.4.4
      once: 1.4.0
    dev: true
  /punycode@2.3.0:
    resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
@@ -8644,15 +7488,6 @@
      strict-uri-encode: 1.1.0
    dev: true
  /query-string@5.1.1:
    resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==}
    engines: {node: '>=0.10.0'}
    dependencies:
      decode-uri-component: 0.2.2
      object-assign: 4.1.1
      strict-uri-encode: 1.1.0
    dev: true
  /queue-microtask@1.2.3:
    resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
    dev: true
@@ -8666,14 +7501,6 @@
    resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
    dependencies:
      safe-buffer: 5.2.1
    dev: true
  /read-pkg-up@1.0.1:
    resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==}
    engines: {node: '>=0.10.0'}
    dependencies:
      find-up: 1.1.2
      read-pkg: 1.1.0
    dev: true
  /read-pkg-up@3.0.0:
@@ -8691,15 +7518,6 @@
      find-up: 4.1.0
      read-pkg: 5.2.0
      type-fest: 0.8.1
    dev: true
  /read-pkg@1.1.0:
    resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==}
    engines: {node: '>=0.10.0'}
    dependencies:
      load-json-file: 1.1.0
      normalize-package-data: 2.5.0
      path-type: 1.1.0
    dev: true
  /read-pkg@3.0.0:
@@ -8751,14 +7569,6 @@
    engines: {node: '>=8.10.0'}
    dependencies:
      picomatch: 2.3.1
    dev: true
  /redent@1.0.0:
    resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==}
    engines: {node: '>=0.10.0'}
    dependencies:
      indent-string: 2.1.0
      strip-indent: 1.0.1
    dev: true
  /redent@3.0.0:
@@ -8845,18 +7655,6 @@
    engines: {node: '>=0.10'}
    dev: true
  /repeating@2.0.1:
    resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==}
    engines: {node: '>=0.10.0'}
    dependencies:
      is-finite: 1.1.0
    dev: true
  /replace-ext@1.0.1:
    resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==}
    engines: {node: '>= 0.10'}
    dev: true
  /require-directory@2.1.1:
    resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
    engines: {node: '>=0.10.0'}
@@ -8905,12 +7703,6 @@
      supports-preserve-symlinks-flag: 1.0.0
    dev: true
  /responselike@1.0.2:
    resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
    dependencies:
      lowercase-keys: 1.0.1
    dev: true
  /restore-cursor@3.1.0:
    resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
    engines: {node: '>=8'}
@@ -8938,6 +7730,7 @@
    hasBin: true
    dependencies:
      glob: 7.2.3
    dev: false
  /rimraf@3.0.2:
    resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
@@ -9059,25 +7852,6 @@
    dependencies:
      compute-scroll-into-view: 1.0.20
    dev: false
  /seek-bzip@1.0.6:
    resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
    hasBin: true
    dependencies:
      commander: 2.20.3
    dev: true
  /semver-regex@2.0.0:
    resolution: {integrity: sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==}
    engines: {node: '>=6'}
    dev: true
  /semver-truncate@1.1.2:
    resolution: {integrity: sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==}
    engines: {node: '>=0.10.0'}
    dependencies:
      semver: 5.7.1
    dev: true
  /semver@5.7.1:
    resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
@@ -9257,27 +8031,6 @@
      - supports-color
    dev: true
  /sort-keys-length@1.0.1:
    resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==}
    engines: {node: '>=0.10.0'}
    dependencies:
      sort-keys: 1.1.2
    dev: true
  /sort-keys@1.1.2:
    resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==}
    engines: {node: '>=0.10.0'}
    dependencies:
      is-plain-obj: 1.1.0
    dev: true
  /sort-keys@2.0.0:
    resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
    engines: {node: '>=4'}
    dependencies:
      is-plain-obj: 1.1.0
    dev: true
  /sortablejs@1.14.0:
    resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==}
    dev: false
@@ -9382,15 +8135,6 @@
    resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==}
    dependencies:
      through: 2.3.8
    dev: true
  /squeak@1.3.0:
    resolution: {integrity: sha512-YQL1ulInM+ev8nXX7vfXsCsDh6IqXlrremc1hzi77776BtpWgYJUMto3UM05GSAaGzJgWekszjoKDrVNB5XG+A==}
    engines: {node: '>=0.10.0'}
    dependencies:
      chalk: 1.1.3
      console-stream: 0.1.1
      lpad-align: 1.1.2
    dev: true
  /ssf@0.11.2:
@@ -9531,13 +8275,6 @@
      ansi-regex: 6.0.1
    dev: true
  /strip-bom@2.0.0:
    resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==}
    engines: {node: '>=0.10.0'}
    dependencies:
      is-utf8: 0.2.1
    dev: true
  /strip-bom@3.0.0:
    resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
    engines: {node: '>=4'}
@@ -9548,28 +8285,9 @@
    engines: {node: '>=10'}
    dev: true
  /strip-dirs@2.1.0:
    resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==}
    dependencies:
      is-natural-number: 4.0.1
    dev: true
  /strip-eof@1.0.0:
    resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
    engines: {node: '>=0.10.0'}
    dev: true
  /strip-final-newline@2.0.0:
    resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
    engines: {node: '>=6'}
    dev: true
  /strip-indent@1.0.1:
    resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==}
    engines: {node: '>=0.10.0'}
    hasBin: true
    dependencies:
      get-stdin: 4.0.1
    dev: true
  /strip-indent@3.0.0:
@@ -9582,17 +8300,6 @@
  /strip-json-comments@3.1.1:
    resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
    engines: {node: '>=8'}
    dev: true
  /strip-outer@1.0.1:
    resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==}
    engines: {node: '>=0.10.0'}
    dependencies:
      escape-string-regexp: 1.0.5
    dev: true
  /strnum@1.0.5:
    resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
    dev: true
  /style-search@0.1.0:
@@ -9792,10 +8499,6 @@
      stable: 0.1.8
    dev: true
  /systemjs@6.14.1:
    resolution: {integrity: sha512-8ftwWd+XnQtZ/aGbatrN4QFNGrKJzmbtixW+ODpci7pyoTajg4sonPP8aFLESAcuVxaC1FyDESt+SpfFCH9rZQ==}
    dev: true
  /table@6.8.1:
    resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
    engines: {node: '>=10.0.0'}
@@ -9805,19 +8508,6 @@
      slice-ansi: 4.0.0
      string-width: 4.2.3
      strip-ansi: 6.0.1
    dev: true
  /tar-stream@1.6.2:
    resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==}
    engines: {node: '>= 0.8.0'}
    dependencies:
      bl: 1.2.3
      buffer-alloc: 1.2.0
      end-of-stream: 1.4.4
      fs-constants: 1.0.0
      readable-stream: 2.3.8
      to-buffer: 1.1.1
      xtend: 4.0.2
    dev: true
  /tar-stream@2.2.0:
@@ -9831,22 +8521,9 @@
      readable-stream: 3.6.2
    dev: false
  /temp-dir@1.0.0:
    resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
    engines: {node: '>=4'}
    dev: true
  /temp-dir@2.0.0:
    resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
    engines: {node: '>=8'}
    dev: true
  /tempfile@2.0.0:
    resolution: {integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==}
    engines: {node: '>=4'}
    dependencies:
      temp-dir: 1.0.0
      uuid: 3.4.0
    dev: true
  /tempfile@3.0.0:
@@ -9904,11 +8581,6 @@
    resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
    dev: true
  /timed-out@4.0.1:
    resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==}
    engines: {node: '>=0.10.0'}
    dev: true
  /tinycolor2@1.6.0:
    resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
    dev: true
@@ -9930,10 +8602,6 @@
    dependencies:
      rimraf: 3.0.2
    dev: false
  /to-buffer@1.1.1:
    resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==}
    dev: true
  /to-fast-properties@2.0.0:
    resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
@@ -9989,21 +8657,9 @@
    resolution: {integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==}
    dev: true
  /trim-newlines@1.0.0:
    resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==}
    engines: {node: '>=0.10.0'}
    dev: true
  /trim-newlines@3.0.1:
    resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
    engines: {node: '>=8'}
    dev: true
  /trim-repeated@1.0.0:
    resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==}
    engines: {node: '>=0.10.0'}
    dependencies:
      escape-string-regexp: 1.0.5
    dev: true
  /ts-node@10.7.0(@types/node@17.0.25)(typescript@4.6.3):
@@ -10090,22 +8746,11 @@
      typescript: 4.6.3
    dev: true
  /tunnel-agent@0.6.0:
    resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
    dependencies:
      safe-buffer: 5.2.1
    dev: true
  /type-check@0.4.0:
    resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
    engines: {node: '>= 0.8.0'}
    dependencies:
      prelude-ls: 1.2.1
    dev: true
  /type-fest@0.11.0:
    resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==}
    engines: {node: '>=8'}
    dev: true
  /type-fest@0.16.0:
@@ -10166,13 +8811,6 @@
      has-bigints: 1.0.2
      has-symbols: 1.0.3
      which-boxed-primitive: 1.0.2
    dev: true
  /unbzip2-stream@1.4.3:
    resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
    dependencies:
      buffer: 5.7.1
      through: 2.3.8
    dev: true
  /unicode-canonical-property-names-ecmascript@2.0.0:
@@ -10291,25 +8929,6 @@
    deprecated: Please see https://github.com/lydell/urix#deprecated
    dev: true
  /url-parse-lax@1.0.0:
    resolution: {integrity: sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==}
    engines: {node: '>=0.10.0'}
    dependencies:
      prepend-http: 1.0.4
    dev: true
  /url-parse-lax@3.0.0:
    resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
    engines: {node: '>=4'}
    dependencies:
      prepend-http: 2.0.0
    dev: true
  /url-to-options@1.0.1:
    resolution: {integrity: sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==}
    engines: {node: '>= 4'}
    dev: true
  /use@3.1.1:
    resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
    engines: {node: '>=0.10.0'}
@@ -10391,39 +9010,6 @@
      node-html-parser: 5.4.2
      pathe: 0.2.0
      vite: 2.9.5(less@4.1.2)(sass@1.57.1)
    dev: true
  /vite-plugin-imagemin@0.6.1(vite@2.9.5):
    resolution: {integrity: sha512-cP7LDn8euPrji7WYtDoNQpJEB9nkMxJHm/A+QZnvMrrCSuyo/clpMy/T1v7suDXPBavsDiDdFdVQB5p7VGD2cg==}
    peerDependencies:
      vite: '>=2.0.0'
    dependencies:
      '@types/imagemin': 7.0.1
      '@types/imagemin-gifsicle': 7.0.1
      '@types/imagemin-jpegtran': 5.0.1
      '@types/imagemin-mozjpeg': 8.0.1
      '@types/imagemin-optipng': 5.2.1
      '@types/imagemin-svgo': 10.0.2
      '@types/imagemin-webp': 7.0.0
      '@types/svgo': 2.6.4
      chalk: 4.1.2
      debug: 4.3.4(supports-color@9.3.1)
      esbuild: 0.14.54
      fs-extra: 10.1.0
      gifsicle: 5.2.0
      imagemin: 7.0.1
      imagemin-gifsicle: 7.0.0
      imagemin-jpegtran: 7.0.0
      imagemin-mozjpeg: 9.0.0
      imagemin-optipng: 8.0.0
      imagemin-pngquant: 9.0.2
      imagemin-svgo: 9.0.0
      imagemin-webp: 6.1.0
      jpegtran-bin: 6.0.1
      pathe: 0.2.0
      vite: 2.9.5(less@4.1.2)(sass@1.57.1)
    transitivePeerDependencies:
      - supports-color
    dev: true
  /vite-plugin-mkcert@1.6.0:
@@ -11044,10 +9630,6 @@
    engines: {node: '>=10'}
    dev: true
  /yallist@2.1.2:
    resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
    dev: true
  /yallist@3.1.1:
    resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
    dev: true
@@ -11120,13 +9702,6 @@
      string-width: 4.2.3
      y18n: 5.0.8
      yargs-parser: 21.1.1
    dev: true
  /yauzl@2.10.0:
    resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
    dependencies:
      buffer-crc32: 0.2.13
      fd-slicer: 1.1.0
    dev: true
  /yn@3.1.1:
pnpm-workspace.yaml
New file
@@ -0,0 +1,2 @@
packages:
  - '_internal/*'
types/global.d.ts
@@ -67,9 +67,6 @@
    VITE_DROP_CONSOLE: boolean;
    VITE_BUILD_COMPRESS: 'gzip' | 'brotli' | 'none';
    VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE: boolean;
    VITE_LEGACY: boolean;
    VITE_USE_IMAGEMIN: boolean;
    VITE_GENERATE_UI: string;
  }
  declare function parseInt(s: string | number, radix?: number): number;