From e387fbdbfc11027ac51dce4c62a6bcc6503a9984 Mon Sep 17 00:00:00 2001 From: chu fan Date: Thu, 7 Sep 2023 00:34:17 +0800 Subject: [PATCH] =?UTF-8?q?chrome:=20=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E8=84=9A=E6=9C=AC=E5=92=8C=E6=B3=A8=E9=87=8A=EF=BC=8C=E4=BC=98?= =?UTF-8?q?=E5=8C=96ci=E8=87=AA=E5=8A=A8=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/code-ci.yml | 6 +- .github/workflows/docker-image.yml | 14 +- .github/workflows/esc-deploy.yml | 7 +- .github/workflows/gh-deploy.yml | 3 +- Dockerfile | 4 +- package.json | 29 +- pnpm-lock.yaml | 872 +++++++++++++++-------------- scripts/aliyun_hub_login.sh | 4 - scripts/build_image.sh | 78 --- scripts/bundle | 41 +- scripts/deploy.sh | 144 ----- scripts/dev | 10 + scripts/docker | 125 ++--- scripts/docker_network.sh | 109 ---- 14 files changed, 561 insertions(+), 885 deletions(-) delete mode 100644 scripts/aliyun_hub_login.sh delete mode 100755 scripts/build_image.sh delete mode 100644 scripts/deploy.sh create mode 100755 scripts/dev delete mode 100644 scripts/docker_network.sh diff --git a/.github/workflows/code-ci.yml b/.github/workflows/code-ci.yml index edbabf9..cb17ea2 100644 --- a/.github/workflows/code-ci.yml +++ b/.github/workflows/code-ci.yml @@ -37,7 +37,7 @@ jobs: version: 7 run_install: true - - name: Code ESlint Fix - run: pnpm lintfix + - name: Code Fix + run: ./scripts/lint --fix - name: Build Site - run: pnpm build + run: ./scripts/bundle build diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index b14054c..e5020bb 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -41,7 +41,10 @@ jobs: run: | docker version echo "-----------Docker Login-----------" - docker login --username=${{ env.UserName }} --password=${{ secrets.DOCKER_PASSWORD }} ${{env.REGISTRY}} + docker login \ + --username=${{ env.UserName }} \ + --password=${{ secrets.DOCKER_PASSWORD }} \ + ${{env.REGISTRY}} - name: Install Node.js uses: actions/setup-node@v3 @@ -54,5 +57,10 @@ jobs: version: 7 run_install: true - - name: Build And Push Docker image - run: PROXY_DOMAIN=true pnpm image:faster + ## 构建,支持domain + - name: Build To Dist + run: ./scripts/bundle build_proxy + + - name: Push Docker image + run: ./scripts/bundle image_faster + diff --git a/.github/workflows/esc-deploy.yml b/.github/workflows/esc-deploy.yml index 3f6702e..ab2fd0b 100644 --- a/.github/workflows/esc-deploy.yml +++ b/.github/workflows/esc-deploy.yml @@ -31,7 +31,10 @@ jobs: run: | docker version echo "-----------Docker Login-----------" - docker login --username=${{ env.UserName }} --password=${{ secrets.DOCKER_PASSWORD }} ${{env.REGISTRY}} + docker login \ + --username=${{ env.UserName }} \ + --password=${{ secrets.DOCKER_PASSWORD }} \ + ${{env.REGISTRY}} - name: Install Node.js uses: actions/setup-node@v3 @@ -45,7 +48,7 @@ jobs: run_install: true - name: Build And Push Docker image - run: pnpm faster-image + run: ./script/bundle image Deploy-ESC: needs: Docker-Image diff --git a/.github/workflows/gh-deploy.yml b/.github/workflows/gh-deploy.yml index faff0ab..c1638a1 100644 --- a/.github/workflows/gh-deploy.yml +++ b/.github/workflows/gh-deploy.yml @@ -32,8 +32,7 @@ jobs: # 运行构建脚本 - name: Build VuePress Site - run: - PROXY_DOMAIN=true pnpm build + run: ./scripts/bundle build_proxy - name: Deploy to GitHub Page uses: crazy-max/ghaction-github-pages@v3 diff --git a/Dockerfile b/Dockerfile index d2f0147..105275b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ # # 注意:vite构建需要支持node14以上,安装node16较为稳妥 -FROM registry.cn-hangzhou.aliyuncs.com/142vip/node:16.12.0-alpine AS build_base +FROM registry.cn-hangzhou.aliyuncs.com/142vip/node:16.20.2-alpine AS build_base ARG CONTAINER_BUILD WORKDIR /apps COPY . . @@ -16,7 +16,7 @@ RUN echo $CONTAINER_BUILD ## 基于容器自动构建 RUN if [ "$CONTAINER_BUILD" = "true" ]; then \ - npm i pnpm@7 -g && pnpm i -D && pnpm build; \ + npm i pnpm@7 -g && pnpm i -D && ./scripts/bundle build; \ fi; FROM registry.cn-hangzhou.aliyuncs.com/142vip/nginx:1.23.0-alpine diff --git a/package.json b/package.json index cc1c563..8dcb128 100644 --- a/package.json +++ b/package.json @@ -13,33 +13,14 @@ "url": "https://github.com/142vip" }, "scripts": { - "prepare": "husky install && npx husky add .husky/pre-commit \"npm run lintfix\" && chmod +x .husky/pre-commit", + "prepare": "husky install && npx husky add .husky/pre-commit \"./scripts/lint --fix\" && chmod +x .husky/pre-commit", "dev": "vuepress dev docs", - "build": "vuepress build docs", - "build:proxy": "PROXY_DOMAIN=true vuepress build docs", - "image": "bash scripts/build_image.sh $npm_package_version", - "image:faster": "bash scripts/build_image.sh $npm_package_version faster", - "deploy:ali": "bash scripts/deploy.sh ali $npm_package_version", - "deploy:github": "bash scripts/deploy.sh github $npm_package_version", "deploy:vercel": "vercel --prod", - "release": "./scripts/release", - "lint": "./scripts/lint", - "lintfix": "./scripts/lint --fix", "clean": "find . -name \"node_modules\" -type d -exec rm -rf '{}' + " }, "scripts-info": { "prepare": "安装依赖预执行脚本", "dev": "本地启动项目", - "build": "构建、打包", - "build:proxy": "构建、打包,支持项目名代理,使用第三方托管平台", - "image": "容器打包、构建镜像", - "image:faster": "本地build后,快速构建镜像", - "deploy:ali": "部署到阿里云服务器", - "deploy:github": "部署到github平台,集成ci", - "release": "alpha测试版号更新、正式版本发布", - "version:patch": "稳定版号更新,基于master分支操作", - "lint": "eslint校验代码,指出异常", - "lintfix": "格式化代码,自动化处理异常", "clean": "快速删除本地依赖" }, "devDependencies": { @@ -62,10 +43,8 @@ "vue": "^3.3.4", "vuepress": "2.0.0-beta.61", "vuepress-plugin-search-pro": "2.0.0-beta.185", - "vuepress-theme-hope": "2.0.0-beta.185" - }, - "license": "MIT", - "dependencies": { + "vuepress-theme-hope": "2.0.0-beta.185", "shelljs": "^0.8.5" - } + }, + "license": "MIT" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 444b870..5033f96 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,9 +23,6 @@ specifiers: vuepress-plugin-search-pro: 2.0.0-beta.185 vuepress-theme-hope: 2.0.0-beta.185 -dependencies: - shelljs: 0.8.5 - devDependencies: '@typescript-eslint/eslint-plugin': 5.62.0_t35iirz4jglssjgh62faxwrgja '@typescript-eslint/parser': 5.62.0_vrcbyn5545yca3bsdhml4elxx4 @@ -41,6 +38,7 @@ devDependencies: eslint-plugin-promise: 6.1.1_eslint@8.48.0 eslint-plugin-vue: 9.17.0_eslint@8.48.0 husky: 8.0.3 + shelljs: 0.8.5 typescript: 3.9.10 vercel: 32.1.0 vue: 3.3.4 @@ -88,20 +86,20 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.22.11: - resolution: {integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==} + /@babel/core/7.22.15: + resolution: {integrity: sha512-PtZqMmgRrvj8ruoEOIwVA3yoF91O+Hgw9o7DAUTNBA6Mo2jpu31clx9a7Nz/9JznqetTR6zwfC4L3LAjKQXUwA==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.10 - '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11 - '@babel/helpers': 7.22.11 - '@babel/parser': 7.22.14 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.11 - '@babel/types': 7.22.11 + '@babel/generator': 7.22.15 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.22.15_@babel+core@7.22.15 + '@babel/helpers': 7.22.15 + '@babel/parser': 7.22.15 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.15 + '@babel/types': 7.22.15 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -111,11 +109,11 @@ packages: - supports-color dev: true - /@babel/generator/7.22.10: - resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==} + /@babel/generator/7.22.15: + resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 @@ -125,64 +123,64 @@ packages: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.22.10: - resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==} + /@babel/helper-builder-binary-assignment-operator-visitor/7.22.15: + resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true - /@babel/helper-compilation-targets/7.22.10: - resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} + /@babel/helper-compilation-targets/7.22.15: + resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} engines: {node: '>=6.9.0'} dependencies: '@babel/compat-data': 7.22.9 - '@babel/helper-validator-option': 7.22.5 + '@babel/helper-validator-option': 7.22.15 browserslist: 4.21.10 lru-cache: 5.1.1 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin/7.22.11_@babel+core@7.22.11: - resolution: {integrity: sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==} + /@babel/helper-create-class-features-plugin/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.15 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin/7.22.9_@babel+core@7.22.11: - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider/0.4.2_@babel+core@7.22.11: + /@babel/helper-define-polyfill-provider/0.4.2_@babel+core@7.22.15: resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.22.15 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -200,50 +198,50 @@ packages: resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.11 + '@babel/template': 7.22.15 + '@babel/types': 7.22.15 dev: true /@babel/helper-hoist-variables/7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true - /@babel/helper-member-expression-to-functions/7.22.5: - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} + /@babel/helper-member-expression-to-functions/7.22.15: + resolution: {integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true - /@babel/helper-module-imports/7.22.5: - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} + /@babel/helper-module-imports/7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true - /@babel/helper-module-transforms/7.22.9_@babel+core@7.22.11: - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 dev: true /@babel/helper-optimise-call-expression/7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true /@babel/helper-plugin-utils/7.22.5: @@ -251,27 +249,27 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.22.9_@babel+core@7.22.11: + /@babel/helper-remap-async-to-generator/7.22.9_@babel+core@7.22.15: resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-wrap-function': 7.22.10 dev: true - /@babel/helper-replace-supers/7.22.9_@babel+core@7.22.11: + /@babel/helper-replace-supers/7.22.9_@babel+core@7.22.15: resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.15 '@babel/helper-optimise-call-expression': 7.22.5 dev: true @@ -279,21 +277,21 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true /@babel/helper-split-export-declaration/7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true /@babel/helper-string-parser/7.22.5: @@ -301,13 +299,13 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-identifier/7.22.5: - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + /@babel/helper-validator-identifier/7.22.15: + resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-option/7.22.5: - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} + /@babel/helper-validator-option/7.22.15: + resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} dev: true @@ -316,17 +314,17 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.22.5 - '@babel/template': 7.22.5 - '@babel/types': 7.22.11 + '@babel/template': 7.22.15 + '@babel/types': 7.22.15 dev: true - /@babel/helpers/7.22.11: - resolution: {integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==} + /@babel/helpers/7.22.15: + resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.11 - '@babel/types': 7.22.11 + '@babel/template': 7.22.15 + '@babel/traverse': 7.22.15 + '@babel/types': 7.22.15 transitivePeerDependencies: - supports-color dev: true @@ -335,850 +333,850 @@ packages: resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/parser/7.22.14: - resolution: {integrity: sha512-1KucTHgOvaw/LzCVrEOAyXkr9rQlp0A1HiHRYnSUE9dmb8PvPW7o5sscg+5169r54n3vGlbx6GevTE/Iw/P3AQ==} + /@babel/parser/7.22.15: + resolution: {integrity: sha512-RWmQ/sklUN9BvGGpCDgSubhHWfAx24XDTDObup4ffvxaYsptOg2P3KG0j+1eWKLxpkX0j0uHxmpq2Z1SP/VhxA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.5_@babel+core@7.22.11: - resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.5_@babel+core@7.22.11: - resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.12_@babel+core@7.22.11 + '@babel/plugin-transform-optional-chaining': 7.22.15_@babel+core@7.22.15 dev: true - /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.11: + /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.15: resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.22.11: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.22.15: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.22.11: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.22.15: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.22.11: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.22.15: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions/7.22.5_@babel+core@7.22.11: + /@babel/plugin-syntax-import-assertions/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes/7.22.5_@babel+core@7.22.11: + /@babel/plugin-syntax-import-attributes/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.22.11: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.22.15: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.22.11: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.22.15: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.22.11: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.22.15: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.22.11: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.22.11: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.22.15: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.22.11: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.22.15: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.22.11: + /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.22.15: resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-arrow-functions/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions/7.22.11_@babel+core@7.22.11: - resolution: {integrity: sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw==} + /@babel/plugin-transform-async-generator-functions/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9_@babel+core@7.22.11 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11 + '@babel/helper-remap-async-to-generator': 7.22.9_@babel+core@7.22.15 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-async-to-generator/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-async-to-generator/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.22.15 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9_@babel+core@7.22.11 + '@babel/helper-remap-async-to-generator': 7.22.9_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-block-scoped-functions/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-block-scoped-functions/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping/7.22.10_@babel+core@7.22.11: - resolution: {integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==} + /@babel/plugin-transform-block-scoping/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-class-properties/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.11_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-static-block/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-class-static-block/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.11_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-classes/7.22.6_@babel+core@7.22.11: - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.15 '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-computed-properties/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-destructuring/7.22.10_@babel+core@7.22.11: - resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==} + /@babel/plugin-transform-destructuring/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-dotall-regex/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-duplicate-keys/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-dynamic-import/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-exponentiation-operator/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-exponentiation-operator/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10 + '@babel/core': 7.22.15 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-export-namespace-from/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-for-of/7.22.5_@babel+core@7.22.11: - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-function-name/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.22.15 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-function-name': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-json-strings/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-json-strings/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-literals/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-logical-assignment-operators/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-member-expression-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-member-expression-literals/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-modules-amd/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-module-transforms': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs/7.22.11_@babel+core@7.22.11: - resolution: {integrity: sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==} + /@babel/plugin-transform-modules-commonjs/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-module-transforms': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-modules-systemjs/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11 + '@babel/helper-module-transforms': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 dev: true - /@babel/plugin-transform-modules-umd/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-modules-umd/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-module-transforms': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-new-target/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-nullish-coalescing-operator/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-numeric-separator/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-numeric-separator/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-object-rest-spread/7.22.11_@babel+core@7.22.11: - resolution: {integrity: sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw==} + /@babel/plugin-transform-object-rest-spread/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.11 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.22.15 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-transform-parameters': 7.22.5_@babel+core@7.22.11 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-transform-parameters': 7.22.15_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-object-super/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-object-super/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.11 + '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-optional-catch-binding/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-optional-catch-binding/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-optional-chaining/7.22.12_@babel+core@7.22.11: - resolution: {integrity: sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==} + /@babel/plugin-transform-optional-chaining/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-parameters/7.22.5_@babel+core@7.22.11: - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-private-methods/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-class-features-plugin': 7.22.11_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object/7.22.11_@babel+core@7.22.11: + /@babel/plugin-transform-private-property-in-object/7.22.11_@babel+core@7.22.15: resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.11_@babel+core@7.22.11 + '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.15 dev: true - /@babel/plugin-transform-property-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-property-literals/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-regenerator/7.22.10_@babel+core@7.22.11: + /@babel/plugin-transform-regenerator/7.22.10_@babel+core@7.22.15: resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-reserved-words/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-shorthand-properties/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-spread/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-spread/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-sticky-regex/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-template-literals/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-typeof-symbol/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes/7.22.10_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-escapes/7.22.10_@babel+core@7.22.15: resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-property-regex/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-regex/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex/7.22.5_@babel+core@7.22.11: + /@babel/plugin-transform-unicode-sets-regex/7.22.5_@babel+core@7.22.15: resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/preset-env/7.22.14_@babel+core@7.22.11: - resolution: {integrity: sha512-daodMIoVo+ol/g+//c/AH+szBkFj4STQUikvBijRGL72Ph+w+AMTSh55DUETe8KJlPlDT1k/mp7NBfOuiWmoig==} + /@babel/preset-env/7.22.15_@babel+core@7.22.15: + resolution: {integrity: sha512-tZFHr54GBkHk6hQuVA8w4Fmq+MSPsfvMG0vPnOYyTnJpyfMqybL8/MbNCPRT9zc2KBO2pe4tq15g6Uno4Jpoag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.11 - '@babel/helper-compilation-targets': 7.22.10 + '@babel/core': 7.22.15 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.11 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.11 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-import-assertions': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-syntax-import-attributes': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.11 - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.22.11 - '@babel/plugin-transform-arrow-functions': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-async-generator-functions': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-async-to-generator': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-block-scoped-functions': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-block-scoping': 7.22.10_@babel+core@7.22.11 - '@babel/plugin-transform-class-properties': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-class-static-block': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-classes': 7.22.6_@babel+core@7.22.11 - '@babel/plugin-transform-computed-properties': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-destructuring': 7.22.10_@babel+core@7.22.11 - '@babel/plugin-transform-dotall-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-duplicate-keys': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-dynamic-import': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-exponentiation-operator': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-export-namespace-from': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-for-of': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-function-name': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-json-strings': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-logical-assignment-operators': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-member-expression-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-modules-amd': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-modules-commonjs': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-modules-systemjs': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-modules-umd': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-new-target': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-numeric-separator': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-object-rest-spread': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-object-super': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-optional-catch-binding': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-optional-chaining': 7.22.12_@babel+core@7.22.11 - '@babel/plugin-transform-parameters': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-private-methods': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-private-property-in-object': 7.22.11_@babel+core@7.22.11 - '@babel/plugin-transform-property-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-regenerator': 7.22.10_@babel+core@7.22.11 - '@babel/plugin-transform-reserved-words': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-shorthand-properties': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-spread': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-sticky-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-template-literals': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-typeof-symbol': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-escapes': 7.22.10_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-property-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-regex': 7.22.5_@babel+core@7.22.11 - '@babel/plugin-transform-unicode-sets-regex': 7.22.5_@babel+core@7.22.11 - '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.22.11 - '@babel/types': 7.22.11 - babel-plugin-polyfill-corejs2: 0.4.5_@babel+core@7.22.11 - babel-plugin-polyfill-corejs3: 0.8.3_@babel+core@7.22.11 - babel-plugin-polyfill-regenerator: 0.5.2_@babel+core@7.22.11 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.15 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.15 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.15 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.15 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-syntax-import-assertions': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-syntax-import-attributes': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.22.15 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.15 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.15 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.15 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.15 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.15 + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.22.15 + '@babel/plugin-transform-arrow-functions': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-async-generator-functions': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-async-to-generator': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-block-scoped-functions': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-block-scoping': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-class-properties': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-class-static-block': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-classes': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-computed-properties': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-destructuring': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-dotall-regex': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-duplicate-keys': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-dynamic-import': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-exponentiation-operator': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-export-namespace-from': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-for-of': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-function-name': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-json-strings': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-literals': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-logical-assignment-operators': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-member-expression-literals': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-modules-amd': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-modules-commonjs': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-modules-systemjs': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-modules-umd': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-new-target': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-numeric-separator': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-object-rest-spread': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-object-super': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-optional-catch-binding': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-optional-chaining': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-parameters': 7.22.15_@babel+core@7.22.15 + '@babel/plugin-transform-private-methods': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-private-property-in-object': 7.22.11_@babel+core@7.22.15 + '@babel/plugin-transform-property-literals': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-regenerator': 7.22.10_@babel+core@7.22.15 + '@babel/plugin-transform-reserved-words': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-shorthand-properties': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-spread': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-sticky-regex': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-template-literals': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-typeof-symbol': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-unicode-escapes': 7.22.10_@babel+core@7.22.15 + '@babel/plugin-transform-unicode-property-regex': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-unicode-regex': 7.22.5_@babel+core@7.22.15 + '@babel/plugin-transform-unicode-sets-regex': 7.22.5_@babel+core@7.22.15 + '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.22.15 + '@babel/types': 7.22.15 + babel-plugin-polyfill-corejs2: 0.4.5_@babel+core@7.22.15 + babel-plugin-polyfill-corejs3: 0.8.3_@babel+core@7.22.15 + babel-plugin-polyfill-regenerator: 0.5.2_@babel+core@7.22.15 core-js-compat: 3.32.1 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.22.11: + /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.22.15: resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.22.11 + '@babel/types': 7.22.15 esutils: 2.0.3 dev: true @@ -1192,46 +1190,46 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@babel/runtime/7.22.11: - resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==} + /@babel/runtime/7.22.15: + resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.0 dev: true - /@babel/template/7.22.5: - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} + /@babel/template/7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/parser': 7.22.14 - '@babel/types': 7.22.11 + '@babel/parser': 7.22.15 + '@babel/types': 7.22.15 dev: true - /@babel/traverse/7.22.11: - resolution: {integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==} + /@babel/traverse/7.22.15: + resolution: {integrity: sha512-DdHPwvJY0sEeN4xJU5uRLmZjgMMDIvMPniLuYzUVXj/GGzysPl0/fwt44JBkyUIzGJPV8QgHMcQdQ34XFuKTYQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/generator': 7.22.10 + '@babel/generator': 7.22.15 '@babel/helper-environment-visitor': 7.22.5 '@babel/helper-function-name': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.14 - '@babel/types': 7.22.11 + '@babel/parser': 7.22.15 + '@babel/types': 7.22.15 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.22.11: - resolution: {integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==} + /@babel/types/7.22.15: + resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.15 to-fast-properties: 2.0.0 dev: true @@ -1615,7 +1613,7 @@ packages: npmlog: 5.0.1 rimraf: 3.0.2 semver: 7.5.4 - tar: 6.1.15 + tar: 6.2.0 transitivePeerDependencies: - encoding - supports-color @@ -1863,7 +1861,7 @@ packages: fastq: 1.15.0 dev: true - /@rollup/plugin-babel/5.3.1_lnssqozl4dgplk3xebfs3yicbq: + /@rollup/plugin-babel/5.3.1_xl43ppu2bx4zuy2ds755fvwen4: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -1874,8 +1872,8 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.22.11 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.22.15 + '@babel/helper-module-imports': 7.22.15 '@rollup/pluginutils': 3.1.0_rollup@2.79.1 rollup: 2.79.1 dev: true @@ -1999,7 +1997,7 @@ packages: resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==} dependencies: '@types/jsonfile': 6.1.1 - '@types/node': 20.5.7 + '@types/node': 20.5.9 dev: true /@types/hash-sum/1.0.0: @@ -2017,7 +2015,7 @@ packages: /@types/jsonfile/6.1.1: resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} dependencies: - '@types/node': 20.5.7 + '@types/node': 20.5.9 dev: true /@types/katex/0.16.2: @@ -2031,7 +2029,7 @@ packages: /@types/markdown-it-emoji/2.0.2: resolution: {integrity: sha512-2ln8Wjbcj/0oRi/6VnuMeWEHHuK8uapFttvcLmDIe1GKCsFBLOLBX+D+xhDa9oWOQV0IpvxwrSfKKssAqqroog==} dependencies: - '@types/markdown-it': 13.0.1 + '@types/markdown-it': 12.2.3 dev: true /@types/markdown-it/12.2.3: @@ -2074,8 +2072,8 @@ packages: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} dev: true - /@types/node/20.5.7: - resolution: {integrity: sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==} + /@types/node/20.5.9: + resolution: {integrity: sha512-PcGNd//40kHAS3sTlzKB9C9XL4K0sTup8nbG5lC14kzEteTNuAFh9u5nA0o5TWnSG2r/JNPRXFVcHJIIeRlmqQ==} dev: true /@types/normalize-package-data/2.4.1: @@ -2089,7 +2087,7 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 20.5.7 + '@types/node': 20.5.9 dev: true /@types/sax/1.2.4: @@ -2413,7 +2411,7 @@ packages: /@vue/compiler-core/3.2.47: resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==} dependencies: - '@babel/parser': 7.22.14 + '@babel/parser': 7.22.15 '@vue/shared': 3.2.47 estree-walker: 2.0.2 source-map: 0.6.1 @@ -2422,7 +2420,7 @@ packages: /@vue/compiler-core/3.3.4: resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} dependencies: - '@babel/parser': 7.22.14 + '@babel/parser': 7.22.15 '@vue/shared': 3.3.4 estree-walker: 2.0.2 source-map-js: 1.0.2 @@ -2445,7 +2443,7 @@ packages: /@vue/compiler-sfc/3.2.47: resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==} dependencies: - '@babel/parser': 7.22.14 + '@babel/parser': 7.22.15 '@vue/compiler-core': 3.2.47 '@vue/compiler-dom': 3.2.47 '@vue/compiler-ssr': 3.2.47 @@ -2460,7 +2458,7 @@ packages: /@vue/compiler-sfc/3.3.4: resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} dependencies: - '@babel/parser': 7.22.14 + '@babel/parser': 7.22.15 '@vue/compiler-core': 3.3.4 '@vue/compiler-dom': 3.3.4 '@vue/compiler-ssr': 3.3.4 @@ -2493,7 +2491,7 @@ packages: /@vue/reactivity-transform/3.2.47: resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==} dependencies: - '@babel/parser': 7.22.14 + '@babel/parser': 7.22.15 '@vue/compiler-core': 3.2.47 '@vue/shared': 3.2.47 estree-walker: 2.0.2 @@ -2503,7 +2501,7 @@ packages: /@vue/reactivity-transform/3.3.4: resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} dependencies: - '@babel/parser': 7.22.14 + '@babel/parser': 7.22.15 '@vue/compiler-core': 3.3.4 '@vue/shared': 3.3.4 estree-walker: 2.0.2 @@ -2600,7 +2598,7 @@ packages: connect-history-api-fallback: 2.0.0 postcss: 8.4.29 postcss-load-config: 4.0.1_postcss@8.4.29 - rollup: 3.28.1 + rollup: 3.29.0 vite: 4.1.5 vue: 3.3.4 vue-router: 4.2.4_vue@3.3.4 @@ -3063,8 +3061,8 @@ packages: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} dev: true - /array-includes/3.1.6: - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} + /array-includes/3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -3090,8 +3088,8 @@ packages: get-intrinsic: 1.2.1 dev: true - /array.prototype.flat/1.3.1: - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} + /array.prototype.flat/1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 @@ -3110,13 +3108,14 @@ packages: es-shim-unscopables: 1.0.0 dev: true - /arraybuffer.prototype.slice/1.0.1: - resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} + /arraybuffer.prototype.slice/1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 define-properties: 1.2.0 + es-abstract: 1.22.1 get-intrinsic: 1.2.1 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 @@ -3177,7 +3176,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.10 - caniuse-lite: 1.0.30001525 + caniuse-lite: 1.0.30001527 fraction.js: 4.3.6 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -3194,44 +3193,45 @@ packages: engines: {node: '>= 0.4'} dev: true - /babel-plugin-polyfill-corejs2/0.4.5_@babel+core@7.22.11: + /babel-plugin-polyfill-corejs2/0.4.5_@babel+core@7.22.15: resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.15 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.8.3_@babel+core@7.22.11: + /babel-plugin-polyfill-corejs3/0.8.3_@babel+core@7.22.15: resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.15 core-js-compat: 3.32.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.5.2_@babel+core@7.22.11: + /babel-plugin-polyfill-regenerator/0.5.2_@babel+core@7.22.15: resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.11 - '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.11 + '@babel/core': 7.22.15 + '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.15 transitivePeerDependencies: - supports-color dev: true /balanced-match/1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true /balloon-css/1.2.0: resolution: {integrity: sha512-urXwkHgwp6GsXVF+it01485Z2Cj4pnW02ICnM0TemOlkKmCNnDLmyy+ZZiRXBpwldUXO+aRNr7Hdia4CBvXJ5A==} @@ -3296,6 +3296,7 @@ packages: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 + dev: true /brace-expansion/2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} @@ -3315,7 +3316,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001525 + caniuse-lite: 1.0.30001527 electron-to-chromium: 1.4.508 node-releases: 2.0.13 update-browserslist-db: 1.0.11_browserslist@4.21.10 @@ -3373,7 +3374,7 @@ packages: dotenv: 16.3.1 giget: 1.1.2 jiti: 1.19.3 - mlly: 1.4.1 + mlly: 1.4.2 ohash: 1.1.3 pathe: 1.1.1 perfect-debounce: 1.0.0 @@ -3418,8 +3419,8 @@ packages: engines: {node: '>=6'} dev: true - /caniuse-lite/1.0.30001525: - resolution: {integrity: sha512-/3z+wB4icFt3r0USMwxujAqRvaD/B7rvGTsKhbhSQErVrJvkZCLhgNLJxU8MevahQVH6hCU9FsHdNUFbiwmE7Q==} + /caniuse-lite/1.0.30001527: + resolution: {integrity: sha512-YkJi7RwPgWtXVSgK4lG9AHH57nSzvvOp9MesgXmw4Q7n0C3H04L0foHqfxcmSAm5AcWb8dW9AYj2tR7/5GnddQ==} dev: true /chalk/2.4.2: @@ -3637,6 +3638,7 @@ packages: /concat-map/0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true /concat-stream/2.0.0: resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} @@ -4547,7 +4549,7 @@ packages: engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.1 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 call-bind: 1.0.2 es-set-tostringtag: 2.0.1 @@ -4574,11 +4576,11 @@ packages: object-keys: 1.1.1 object.assign: 4.1.4 regexp.prototype.flags: 1.5.0 - safe-array-concat: 1.0.0 + safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 string.prototype.trim: 1.2.7 string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 @@ -4944,9 +4946,9 @@ packages: optional: true dependencies: '@typescript-eslint/parser': 5.62.0_vrcbyn5545yca3bsdhml4elxx4 - array-includes: 3.1.6 + array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 - array.prototype.flat: 1.3.1 + array.prototype.flat: 1.3.2 array.prototype.flatmap: 1.3.1 debug: 3.2.7 doctrine: 2.1.0 @@ -5370,6 +5372,7 @@ packages: /fs.realpath/1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true /fsevents/2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} @@ -5381,6 +5384,7 @@ packages: /function-bind/1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: true /function.prototype.name/1.1.6: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} @@ -5468,7 +5472,7 @@ packages: mri: 1.2.0 node-fetch-native: 1.4.0 pathe: 1.1.1 - tar: 6.1.15 + tar: 6.2.0 transitivePeerDependencies: - supports-color dev: true @@ -5556,6 +5560,7 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 + dev: true /globals/11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} @@ -5693,6 +5698,7 @@ packages: engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 + dev: true /hash-sum/2.0.0: resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} @@ -5813,9 +5819,11 @@ packages: dependencies: once: 1.4.0 wrappy: 1.0.2 + dev: true /inherits/2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true /ini/1.3.8: resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} @@ -5849,7 +5857,7 @@ packages: /interpret/1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} engines: {node: '>= 0.10'} - dev: false + dev: true /is-alphabetical/1.0.4: resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} @@ -5904,6 +5912,7 @@ packages: resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} dependencies: has: 1.0.3 + dev: true /is-date-object/1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} @@ -6079,7 +6088,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 20.5.7 + '@types/node': 20.5.9 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -6401,7 +6410,7 @@ packages: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: - semver: 6.3.1 + semver: 6.1.1 dev: true /make-error/1.3.6: @@ -6760,6 +6769,7 @@ packages: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 + dev: true /minimatch/5.1.6: resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} @@ -6815,8 +6825,8 @@ packages: hasBin: true dev: true - /mlly/1.4.1: - resolution: {integrity: sha512-SCDs78Q2o09jiZiE2WziwVBEqXQ02XkGdUy45cbJf+BpYRIjArXRJ1Wbowxkb+NaM9DWvS3UC9GiO/6eqvQ/pg==} + /mlly/1.4.2: + resolution: {integrity: sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==} dependencies: acorn: 8.10.0 pathe: 1.1.1 @@ -7026,6 +7036,7 @@ packages: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 + dev: true /onetime/5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} @@ -7193,6 +7204,7 @@ packages: /path-is-absolute/1.0.1: resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} + dev: true /path-key/3.1.1: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} @@ -7206,6 +7218,7 @@ packages: /path-parse/1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true /path-to-regexp/6.1.0: resolution: {integrity: sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==} @@ -7235,8 +7248,8 @@ packages: resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} dev: true - /photoswipe/5.3.8: - resolution: {integrity: sha512-4vTzOQt8GP4Chsm0s+8j2xDtVHAEN252PxrU12A1zXauNn0zD5HRHgjALKO2GKTyBnTnOrJUOxbV8LTrFIMrYw==} + /photoswipe/5.3.9: + resolution: {integrity: sha512-z9ACLW9472gAawrIXXiliuz9xNZ3xEl7cIPHqY/lAeFQT9X+N9sgCwa86WK9wnK8cuk/F3QEO45n+QSiZnKd2A==} engines: {node: '>= 0.12.0'} dev: true @@ -7263,7 +7276,7 @@ packages: resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} dependencies: jsonc-parser: 3.2.0 - mlly: 1.4.1 + mlly: 1.4.2 pathe: 1.1.1 dev: true @@ -7477,7 +7490,7 @@ packages: engines: {node: '>= 0.10'} dependencies: resolve: 1.22.4 - dev: false + dev: true /redent/3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} @@ -7509,7 +7522,7 @@ packages: /regenerator-transform/0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.22.11 + '@babel/runtime': 7.22.15 dev: true /regexp.prototype.flags/1.5.0: @@ -7580,6 +7593,7 @@ packages: is-core-module: 2.13.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + dev: true /restore-cursor/4.0.0: resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} @@ -7620,7 +7634,7 @@ packages: jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 - terser: 5.19.3 + terser: 5.19.4 dev: true /rollup/2.79.1: @@ -7631,8 +7645,8 @@ packages: fsevents: 2.3.3 dev: true - /rollup/3.28.1: - resolution: {integrity: sha512-R9OMQmIHJm9znrU3m3cpE8uhN0fGdXiawME7aZIpQqvpS/85+Vt1Hq1/yVIcYfOmaQiHjvXkQAoJukvLpau6Yw==} + /rollup/3.29.0: + resolution: {integrity: sha512-nszM8DINnx1vSS+TpbWKMkxem0CDWk3cSit/WWCBVs9/JZ1I/XLwOsiUglYuYReaeWWSsW9kge5zE5NZtf/a4w==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -7656,8 +7670,8 @@ packages: mri: 1.2.0 dev: true - /safe-array-concat/1.0.0: - resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} + /safe-array-concat/1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} dependencies: call-bind: 1.0.2 @@ -7773,7 +7787,7 @@ packages: glob: 7.2.3 interpret: 1.4.0 rechoir: 0.6.2 - dev: false + dev: true /side-channel/1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} @@ -7949,8 +7963,8 @@ packages: es-abstract: 1.22.1 dev: true - /string.prototype.trimstart/1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + /string.prototype.trimstart/1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -8049,9 +8063,10 @@ packages: /supports-preserve-symlinks-flag/1.0.0: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} + dev: true - /tar/6.1.15: - resolution: {integrity: sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A==} + /tar/6.2.0: + resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} engines: {node: '>=10'} dependencies: chownr: 2.0.0 @@ -8077,8 +8092,8 @@ packages: unique-string: 2.0.0 dev: true - /terser/5.19.3: - resolution: {integrity: sha512-pQzJ9UJzM0IgmT4FAtYI6+VqFf0lj/to58AV0Xfgg0Up37RyPG7Al+1cepC6/BVuAxR9oNb41/DL4DEoHJvTdg==} + /terser/5.19.4: + resolution: {integrity: sha512-6p1DjHeuluwxDXcuT9VR8p64klWJKo1ILiy19s6C9+0Bh2+NWTX6nD9EPppiER4ICkHDVB1RkVpin/YW2nQn/g==} engines: {node: '>=10'} hasBin: true dependencies: @@ -8514,7 +8529,7 @@ packages: esbuild: 0.16.17 postcss: 8.4.29 resolve: 1.22.4 - rollup: 3.28.1 + rollup: 3.29.0 optionalDependencies: fsevents: 2.3.3 dev: true @@ -8875,7 +8890,7 @@ packages: vuepress-webpack: optional: true dependencies: - '@babel/core': 7.22.11 + '@babel/core': 7.22.15 '@mdit/plugin-align': 0.3.0 '@mdit/plugin-attrs': 0.3.0 '@mdit/plugin-container': 0.3.0 @@ -8947,7 +8962,7 @@ packages: '@vuepress/shared': 2.0.0-beta.61 '@vuepress/utils': 2.0.0-beta.61 '@vueuse/core': 9.13.0_vue@3.3.4 - photoswipe: 5.3.8 + photoswipe: 5.3.9 vue: 3.3.4 vue-router: 4.2.4_vue@3.3.4 vuepress: 2.0.0-beta.61_pzl4mb5dqhvdaohshkerrekkc4 @@ -9475,10 +9490,10 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@apideck/better-ajv-errors': 0.3.6_ajv@8.12.0 - '@babel/core': 7.22.11 - '@babel/preset-env': 7.22.14_@babel+core@7.22.11 - '@babel/runtime': 7.22.11 - '@rollup/plugin-babel': 5.3.1_lnssqozl4dgplk3xebfs3yicbq + '@babel/core': 7.22.15 + '@babel/preset-env': 7.22.15_@babel+core@7.22.15 + '@babel/runtime': 7.22.15 + '@rollup/plugin-babel': 5.3.1_xl43ppu2bx4zuy2ds755fvwen4 '@rollup/plugin-node-resolve': 11.2.1_rollup@2.79.1 '@rollup/plugin-replace': 2.4.2_rollup@2.79.1 '@surma/rollup-plugin-off-main-thread': 2.2.3 @@ -9624,6 +9639,7 @@ packages: /wrappy/1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true /xml-js/1.6.11: resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==} diff --git a/scripts/aliyun_hub_login.sh b/scripts/aliyun_hub_login.sh deleted file mode 100644 index 4f83200..0000000 --- a/scripts/aliyun_hub_login.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -## 登录阿里云hub -docker login --username=mmdapl registry.cn-hangzhou.aliyuncs.com \ No newline at end of file diff --git a/scripts/build_image.sh b/scripts/build_image.sh deleted file mode 100755 index 17ca46e..0000000 --- a/scripts/build_image.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/bash -## 功能:本地前后端项目构建、打包镜像,上传docker仓库 -## 参考:https://blog.csdn.net/Dontla/article/details/125210694 -## 使用示例:bash xxx.sh 版本号 faster[可选] -## - bash build_image.sh 0.0.1 faster -## 作者:储凡 -## - -## 日志颜色定义 -readonly successLogger="\033[36m" -readonly errorLogger="\033[1;31m" - -## 定义时间 -readonly currentTime=$(date "+%Y-%m-%d %H:%M:%S") -## 项目名称 -readonly projectName="408CSFamily" -## 仓库地址 -readonly repoAddress="registry.cn-hangzhou.aliyuncs.com/142vip/doc_book" -## 版本号 -version=${1} -## 是否先本地构建,执行npm run build操作 -isFaster=${2} -## 镜像名称 -imageTagName=${repoAddress}:${projectName}-${version} - - -## 参数预检查 -prepare_check(){ - if test -z "${version}";then - echo -e "${errorLogger}${currentTime}:参数错误 版本号不能为空。参考版本: 0.0.x" - exit 0 - fi -} - - -## 运行命令 -run(){ - echo -e "${successLogger}---------------- shell ${projectName} start ---------------- " - - if [ "${isFaster}" == "faster" ];then - ## 本地构建、快速制作镜像 - pnpm build && docker build \ - --build-arg APP_VERSION="${version}" \ - --build-arg CONTAINER_BUILD=false \ - -t "${imageTagName}" . - else - ## ci流程,容器构建打包 - docker build \ - --build-arg APP_VERSION="${version}" \ - --build-arg CONTAINER_BUILD=true \ - -t "${imageTagName}" . - fi - - echo -e "${successLogger}---------------- shell ${projectName} end ---------------- " - push_docker_image -} - - - - -## 推送镜像 -push_docker_image(){ - if [[ "$(docker images -q "${imageTagName}" 2> /dev/null)" != "" ]]; - then - ## 推送 - docker push "${imageTagName}" - echo -e "${successLogger}---------------- 上传镜像成功,删除本地镜像 ---------------- " - docker rmi "${imageTagName}" - else - echo -e "${errorLogger}${currentTime}:[镜像] ${imageTagName}不存在" - fi - exit 0 -} - -prepare_check -run - - diff --git a/scripts/bundle b/scripts/bundle index 27210f9..5c4e8fb 100755 --- a/scripts/bundle +++ b/scripts/bundle @@ -23,19 +23,21 @@ const imageName=`${repoAddress}:${projectName}-${packageVersion}` /** * 获取构建镜像的脚本 - * - faster: "faster" + * @param containerBuild + * @param needProxy */ -function getBuildImageScript(faster){ - // 是否容器构建 - const isContainerBuild=faster==="faster" - +function getBuildImageScript({containerBuild,needProxy=false}){ + // 基础构建脚本 + const baseBuildScript=containerBuild?"":( + needProxy?"./scripts/bundle build_proxy":"./scripts/bundle build" + ) return [ // 构建镜像 ` - ${isContainerBuild? `./scripts/bundle build && `:""} + ${baseBuildScript} docker build \ --build-arg APP_VERSION=${packageVersion} \ - --build-arg CONTAINER_BUILD=${!isContainerBuild} \ + --build-arg CONTAINER_BUILD=${containerBuild} \ -t ${imageName} . `, // 推送镜像 @@ -61,8 +63,19 @@ function getBuildImageScript(faster){ const SupportScripts={ build:'vuepress build docs', build_proxy:'PROXY_DOMAIN=true vuepress build docs', - image:getBuildImageScript(), - image_faster:getBuildImageScript("faster") + image:getBuildImageScript({ + containerBuild:true, + needProxy:false + }), + image_proxy:getBuildImageScript({ + containerBuild:true, + needProxy:true + }), + // 直接从本地拿dist文件,生成镜像 + image_faster:getBuildImageScript({ + containerBuild:false, + needProxy:false + }) } @@ -92,6 +105,11 @@ async function getScriptCommand(){ name: SupportScripts.image, value: '#0000ff' }, + { + message: 'build to docker image with proxy', + name: SupportScripts.image_proxy, + value: '#0000ff' + }, { message: 'build to docker image faster', name: SupportScripts.image_faster, @@ -111,9 +129,6 @@ async function getScriptCommand(){ ;(async ()=>{ const scriptCommand= await getScriptCommand() - console.log(`>>>> ${scriptCommand} `) - - // 执行 - // await execShell(scriptCommand) + await execShell(scriptCommand) })() diff --git a/scripts/deploy.sh b/scripts/deploy.sh deleted file mode 100644 index 027ddc4..0000000 --- a/scripts/deploy.sh +++ /dev/null @@ -1,144 +0,0 @@ -#!/bin/bash -## 功能:清除容器,删除旧镜像,创建新的容器 -## 参考:https://blog.csdn.net/Dontla/article/details/125210694 -## 作者:储凡 -## 使用示例:bash deploy.sh 部署平台 版本号 -## - bash deploy.sh ali 0.0.1 -## - -## 日志颜色定义 -readonly successLogger="\033[36m" -readonly errorLogger="\033[1;31m" -readonly warnLogger="\033[1;33m" -## 定义时间 -readonly currentTime=$(date "+%Y-%m-%d %H:%M:%S") -readonly repoAddress="registry.cn-hangzhou.aliyuncs.com/142vip/doc_book" -readonly containerName="408CSFamily" -readonly networkName="service_env_net" -## 定义参数 -operationName=${1} -version=${2} -## 镜像名称 -imageName="${repoAddress}:${containerName}-${version}" - - -## 参数预检查 -prepare_check(){ - if test -z "${operationName}" - then - echo -e "${errorLogger}${currentTime}:参数错误 部署平台不能为空." - exit 0 - fi - - if test -z "${version}" - then - echo -e "${errorLogger}${currentTime}:参数错误 版本号不能为空." - exit 0 - fi - -} - -## 判断容器存在即删除 -## - 一个参数,容器名称 -delete_container(){ - docker inspect "${1}" -f '{{.Name}}' > /dev/null - if [ $? -eq 0 ] ;then - echo -e "${warnLogger}${currentTime}容器:${1} 存在,现进行删除" - docker rm -f "${1}" - fi -} - -## 判断镜像存在,即删除 -## - 一个参数,镜像地址 -delete_image(){ - ## 判断版本号 - if test -z "${version}";then - echo -e "${errorLogger}${currentTime}:参数错误 镜像版本号不能为空." - exit 0 - fi - - if [[ "$(docker images -q "${1}" 2> /dev/null)" != "" ]]; - then - echo -e "${warnLogger}${currentTime}镜像:${1}存在,现进行删除" - docker rmi "${1}" - fi -} - - -## 环境初始成功 -run(){ - if [ "${operationName}" == "gitee" ];then - ## 查看所有 - deploy_to_gitee - exit 0; - elif [ "${operationName}" == "github" ]; then - deploy_to_github - exit 0; - elif [ "${operationName}" == "ali" ]; then - ## 删除容器 - delete_container "${containerName}" - ## 删除镜像 - delete_image "${imageName}" - ## 部署 - deploy_to_ali - exit 0; - else - echo -e "${errorLogger}${currentTime}当前操作不支持,目前只支持:ali/gitee/github" - exit 0 - fi -} - - -## 部署到阿里服务器 -deploy_to_ali(){ - echo -e "${successLogger}---------------- deploy ${containerName} ali start ---------------- " - - docker run -d --name "${containerName}" \ - -p 7000:80 \ - --network="${networkName}" \ - --restart=unless-stopped \ - --ip=172.30.0.100 \ - "${imageName}" - - echo -e "${successLogger}---------------- deploy ${containerName} ali end ------------------ " - docker ps -} - -## 部署到github静态资源托管 -deploy_to_github(){ - echo -e "${successLogger}---------------- deploy ${containerName} github start ---------------- " - - set -e - npm run build-proxy && cd docs/.vuepress/dist - git init && git add -A - - ## 配置信息 - git config user.name 'chu fan' - git config user.email 'fairy_408@2925.com' - git config --list - - git commit -m "release v${version}" - - - # git push -f https://github.com/mmdapl/408CSFamily.git main - ## 部署到github pages - git push -f https://github.com/mmdapl/408CSFamily.git main:pages/github - cd - - - echo -e "${successLogger}---------------- deploy ${containerName} github end ------------------ " -} - - -## 部署到gitee静态资源托管 -deploy_to_gitee(){ - exit 0 -} - - - - -prepare_check - -run - - diff --git a/scripts/dev b/scripts/dev new file mode 100755 index 0000000..0fd4a19 --- /dev/null +++ b/scripts/dev @@ -0,0 +1,10 @@ +#!/usr/bin/env node +/** + * + * 本地启动 + * 例如: + * - ./scripts/dev + */ + +const { execShell } = require("./.exec"); +(async ()=>await execShell('vuepress dev docs'))() \ No newline at end of file diff --git a/scripts/docker b/scripts/docker index 7a278f6..5308124 100755 --- a/scripts/docker +++ b/scripts/docker @@ -1,12 +1,11 @@ #!/usr/bin/env node /** - * + * docker cli工具 * 例如: - * - ./scripts/network create - * - ./scripts/network inspect - * - ./scripts/network rm - * - ./scripts/network ls + * - ./scripts/docker container xxx 容器相关 + * - ./scripts/network image xxx 镜像相关 + * - ./scripts/docker network xxx 网络相关 */ const { execShell, BaseSetting} = require("./.exec"); const scriptName=process.argv[2]; @@ -24,41 +23,26 @@ const dockerNetworkInfo={ gateway:'172.30.0.1', } +/** + * docker containers 容器相关指令 + */ const SupportScriptsInContainer={ run:'', rm:'', ps:'docker ps' } -function getContainerCommand(){ - const scriptName=process.argv[3]; - if(scriptName==='rm') - return SupportScriptsInContainer.rm - if(scriptName==='run') - return SupportScriptsInContainer.run - if(scriptName==='ps') - return SupportScriptsInContainer.ps - return SupportScriptsInContainer.run -} - - - -const SupportScriptsInImage={ - rm:'docker rmi **', - ps:'docker images' -} - -function getContainerCommand(){ - const scriptName=process.argv[3]; - if(scriptName==='rm') - return SupportScriptsInContainer.rm - if(scriptName==='run') - return SupportScriptsInContainer.run - if(scriptName==='ps') - return SupportScriptsInContainer.ps - return SupportScriptsInContainer.run +/** + * docker images 相关脚本指令 + */ +const SupportScriptsInImage = { + rm: 'docker rmi **', + ps: 'docker images' } +/** + * docker network 相关脚本指令 + */ const SupportScriptsInNetWork={ ls:'docker network ls', create:[ @@ -96,28 +80,46 @@ const SupportScriptsInNetWork={ ` ], inspect: - ` + ` docker network inspect ${dockerNetworkInfo.defaultName} ` } -function getNetworkCommand(){ - const scriptName=process.argv[3]; - if(SupportScriptsInNetWork.hasOwnProperty(scriptName)){ + +function getContainerCommand(){ + const name=process.argv[3]; + + if(SupportScriptsInContainer.hasOwnProperty(name)){ + return SupportScriptsInContainer[name] + } + // 默认查看所有容器 + return SupportScriptsInContainer.ps +} + +function getImageCommand(){ + const name=process.argv[3]; + + if(SupportScriptsInImage.hasOwnProperty(name)){ + return SupportScriptsInImage[name] + } + return SupportScriptsInImage.ps +} + + + +function getNetworkCommand(){ + const name=process.argv[3]; + if(SupportScriptsInNetWork.hasOwnProperty(name)){ return SupportScriptsInNetWork[scriptName] } - if(scriptName==='ls') - return SupportScriptsInNetWork.ls - if(scriptName==='run') - return SupportScriptsInNetWork.create - if(scriptName==='ps') - return SupportScriptsInNetWork.rm - if(scriptName==='inspect') - return SupportScriptsInNetWork.inspect + return SupportScriptsInNetWork.ls } + + + // 支持的命令 const SupportScripts={ ls:'docker network ls', @@ -161,38 +163,17 @@ const SupportScripts={ ` } -/** - * 获取需要执行的shell命令 - * @param scriptName - * @returns {string} - */ -function getCommand(scriptName){ - let deployCommand=SupportScripts.ls - - switch (scriptName) { - case 'container': - return getContainerCommand(); +function getCommand(){ + const scriptName=process.argv[3]; + switch (scriptName){ case 'network': - break; + return getNetworkCommand() + case 'container': + return getContainerCommand() case 'image': - break; + return getImageCommand() } - if(scriptName==='ls'){ - deployCommand=SupportScripts.ls - } - - // 部署到Github - if(scriptName==='rm'){ - deployCommand=SupportScripts.rm - } - if(scriptName==='create'){ - deployCommand=SupportScripts.create - } - if(scriptName==='inspect'){ - deployCommand=SupportScripts.inspect - } - return deployCommand } diff --git a/scripts/docker_network.sh b/scripts/docker_network.sh deleted file mode 100644 index f689403..0000000 --- a/scripts/docker_network.sh +++ /dev/null @@ -1,109 +0,0 @@ -#!/bin/bash - -## 功能:设置docker自定义network,并指定网关、IP范围 -## 参考:https://blog.csdn.net/Dontla/article/details/125210694 -## 作者:储凡 -## 使用示例:bash xxx.sh 容器名称 镜像地址 -## - - -## 日志颜色定义 -readonly successLogger="\033[36m" -readonly errorLogger="\033[1;31m" -readonly warnLogger="\033[1;33m" -## 定义时间 -readonly currentTime=$(date "+%Y-%m-%d %H:%M:%S") - - -operationName=${1} -networkName=${2} - -## 网络名称 -readonly defaultNetworkName="service_env_net" -## 子网范围 [/24 子网掩码] -readonly subnet="172.30.0.0/24" -## 网关 -readonly gateway="172.30.0.1" - - -prepare_check(){ - if test -z "$operationName" - then - echo -e "${errorLogger}${currentTime}:参数错误 操作类型不能为空。脚本执行eg: bash xxx.sh [ls/init/rm]" - exit 0 - fi -} - -run(){ - if [ "$operationName" == "ls" ];then - ## 查看所有 - echo -e "${successLogger}---------------- shell ls start ---------------- " - docker network ls - echo -e "${successLogger}---------------- shell ls end ------------------ " - exit 0; - elif [ "$operationName" == "init" ]; then - echo -e "${successLogger}---------------- shell init start ---------------- " - ## 初始化 - init_network - echo -e "${successLogger}---------------- shell init start ---------------- " - exit 0; - elif [ "$operationName" == "rm" ]; then - ## 移除 - echo -e "${successLogger}---------------- shell rm start ---------------- " - remove_network - echo -e "${successLogger}---------------- shell rm start ---------------- " - exit 0; - else - echo -e "${errorLogger}当前操作不支持,目前只支持:ls/init/rm" - exit 0 - fi -} - - - -## 创建网络 -init_network(){ - ## 查询network -w【全匹配】 - docker network ls | grep -w "${defaultNetworkName}" - if [ $? -eq 0 ] ;then - echo -e "${warnLogger}---------------- 容器:${defaultNetworkName} 已存在,无需创建 ---------------- " - docker network ls - exit ; - else - echo -e "${successLogger}---------------- 网络${defaultNetworkName},现进行初始化 ---------------- " - docker network ls - docker network create \ - --subnet="${subnet}" \ - --gateway="${gateway}" \ - "${defaultNetworkName}" - echo -e "${successLogger}---------------- 创建后 ---------------------" - docker network ls - echo -e "${successLogger}---------------- 网络信息 ---------------------" - docker netwrok inspect "${defaultNetworkName}" - fi -} - -## 删除网络 -remove_network(){ - if test -z "$networkName";then - echo -e "${errorLogger}${currentTime}:参数错误 网络名称不能为空。脚本执行eg: bash xxx.sh rm 网络名称" - exit 0 - fi - ## 判断是否存在 -w【全匹配】 - docker network ls | grep -w "${networkName}" - if [ $? -eq 1 ] ;then - echo -e "${errorLogger}${currentTime}:容器网络:${networkName} 不存在,删除无效 " - exit 0; - fi - - echo -e "${successLogger}----------------删除前---------------------" - docker network ls - docker network rm "${networkName}" - echo -e "${successLogger}----------------删除后---------------------" - docker network ls -} - - -prepare_check - -run \ No newline at end of file