diff --git a/.changeset/config.json b/.changeset/config.json index 50ee5aed..b8277fa3 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -3,7 +3,7 @@ "changelog": [ "@changesets/changelog-github", { - "repo": "un-ts/lib-boilerplate" + "repo": "un-ts/domiso" } ], "commit": false, diff --git a/.eslintignore b/.eslintignore index a45726ff..8a7b5869 100644 --- a/.eslintignore +++ b/.eslintignore @@ -3,4 +3,5 @@ dist lib CHANGELOG.md /pnpm-lock.yaml +!/.github !/.*.cjs diff --git a/.eslintrc b/.eslintrc index f608b511..a31405f5 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,7 +1,16 @@ { "root": true, "extends": "@1stg", + "rules": { + "unicorn/template-indent": "off" + }, "overrides": [ + { + "files": ".github/*.yml", + "rules": { + "unicorn/filename-case": "off" + } + }, { "files": "docs/**/*.tsx", "rules": { diff --git a/.github/workflows/pkg-size.yml b/.github/workflows/pkg-size.yml deleted file mode 100644 index b30a4b78..00000000 --- a/.github/workflows/pkg-size.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Package Size Report - -on: - pull_request: - branches: - - main - -jobs: - pkg-size-report: - name: Package Size Report - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Node.js - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Package Size Report - uses: pkg-size/action@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d090eb93..3c04e89f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 @@ -35,8 +35,8 @@ jobs: with: publish: pnpm release version: pnpm run version - commit: 'chore: release lib-boilerplate' - title: 'chore: release lib-boilerplate' + commit: 'chore: release domiso' + title: 'chore: release domiso' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/size-limit.yml b/.github/workflows/size-limit.yml new file mode 100644 index 00000000..988c917c --- /dev/null +++ b/.github/workflows/size-limit.yml @@ -0,0 +1,32 @@ +name: Size Limit + +on: + pull_request: + branches: + - main + +jobs: + size-limit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup pnpm + uses: pnpm/action-setup@v2 + with: + version: latest + + - name: Setup Node.js 16 + uses: actions/setup-node@v3 + with: + node-version: 16 + cache: pnpm + + - name: Install Dependencies + run: pnpm i + + - uses: andresz1/size-limit-action@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + skip_step: install + script: pnpm size-limit --json diff --git a/.github/workflows/vercel.yml b/.github/workflows/vercel.yml index 7a17effd..e46bba4b 100644 --- a/.github/workflows/vercel.yml +++ b/.github/workflows/vercel.yml @@ -4,6 +4,7 @@ on: push: branches: - main + # eslint-disable-next-line yml/no-empty-mapping-value pull_request: jobs: diff --git a/.npmrc b/.npmrc index 5859ec73..f05793b2 100644 --- a/.npmrc +++ b/.npmrc @@ -2,19 +2,15 @@ auto-install-peers=true enable-pre-post-scripts=true public-hoist-pattern[]=@1stg/* public-hoist-pattern[]=@commitlint/* -public-hoist-pattern[]=@jest/types public-hoist-pattern[]=@pkgr/* public-hoist-pattern[]=@types/* -public-hoist-pattern[]=cross-env public-hoist-pattern[]=core-js public-hoist-pattern[]=*eslint* public-hoist-pattern[]=*/loader public-hoist-pattern[]=*-loader -public-hoist-pattern[]=jest public-hoist-pattern[]=lint-staged public-hoist-pattern[]=npm-run-all public-hoist-pattern[]=*prettier* public-hoist-pattern[]=simple-git-hooks public-hoist-pattern[]=*stylelint* -public-hoist-pattern[]=tslib strict-peer-dependencies=false diff --git a/.stylelintignore b/.stylelintignore index da8d662c..c7ea4910 100644 --- a/.stylelintignore +++ b/.stylelintignore @@ -4,5 +4,6 @@ lib LICENSE *.json *.log +*.patch *.yaml *.yml diff --git a/README.md b/README.md index ae2c5915..6cb51f06 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# lib-boilerplate +# domiso -[![GitHub Actions](https://github.com/un-ts/lib-boilerplate/workflows/CI/badge.svg)](https://github.com/un-ts/lib-boilerplate/actions/workflows/ci.yml) -[![Codecov](https://img.shields.io/codecov/c/github/un-ts/lib-boilerplate.svg)](https://codecov.io/gh/un-ts/lib-boilerplate) -[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/un-ts/lib-boilerplate.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/un-ts/lib-boilerplate/context:javascript) -[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fux-ts%2Flib-boilerplate%2Fmain%2Fpackage.json)](https://github.com/plantain-00/type-coverage) -[![npm](https://img.shields.io/npm/v/lib-boilerplate.svg)](https://www.npmjs.com/package/lib-boilerplate) -[![GitHub Release](https://img.shields.io/github/release/un-ts/lib-boilerplate)](https://github.com/un-ts/lib-boilerplate/releases) +[![GitHub Actions](https://github.com/un-ts/domiso/workflows/CI/badge.svg)](https://github.com/un-ts/domiso/actions/workflows/ci.yml) +[![Codecov](https://img.shields.io/codecov/c/github/un-ts/domiso.svg)](https://codecov.io/gh/un-ts/domiso) +[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/un-ts/domiso.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/un-ts/domiso/context:javascript) +[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fun-ts%2Fdomiso%2Fmain%2Fpackage.json)](https://github.com/plantain-00/type-coverage) +[![npm](https://img.shields.io/npm/v/domiso.svg)](https://www.npmjs.com/package/domiso) +[![GitHub Release](https://img.shields.io/github/release/un-ts/domiso)](https://github.com/un-ts/domiso/releases) [![Conventional Commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow.svg)](https://conventionalcommits.org) [![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com) @@ -13,7 +13,7 @@ [![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [![changesets](https://img.shields.io/badge/maintained%20with-changesets-176de3.svg)](https://github.com/atlassian/changesets) -A simple library boilerplate. +Dom sanitizer based on browser native DOMParser ## TOC @@ -31,21 +31,22 @@ A simple library boilerplate. ```sh # pnpm -pnpm add lib-boilerplate +pnpm add domiso # yarn -yarn add lib-boilerplate +yarn add domiso # npm -npm i lib-boilerplate +npm i domiso ``` ### API ```js -import echo from 'lib-boilerplate' +import { sanitize, sanitizeSvg } from 'domiso' -echo() +sanitize(``) +sanitizeSvg(`SVG content`) ``` ## Sponsors diff --git a/auto-imports.d.ts b/auto-imports.d.ts new file mode 100644 index 00000000..d2df67f4 --- /dev/null +++ b/auto-imports.d.ts @@ -0,0 +1,17 @@ +// Generated by 'unplugin-auto-import' +export {} +declare global { + const afterAll: typeof import('vitest')['afterAll'] + const afterEach: typeof import('vitest')['afterEach'] + const assert: typeof import('vitest')['assert'] + const beforeAll: typeof import('vitest')['beforeAll'] + const beforeEach: typeof import('vitest')['beforeEach'] + const chai: typeof import('vitest')['chai'] + const describe: typeof import('vitest')['describe'] + const expect: typeof import('vitest')['expect'] + const it: typeof import('vitest')['it'] + const suite: typeof import('vitest')['suite'] + const test: typeof import('vitest')['test'] + const vi: typeof import('vitest')['vi'] + const vitest: typeof import('vitest')['vitest'] +} diff --git a/docs/package.json b/docs/package.json index 0500511b..79fb3ebb 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,5 +1,5 @@ { - "name": "lib-boilerplate-docs", + "name": "domiso-docs", "type": "commonjs", "description": "A simple library boilerplate." } diff --git a/jest.config.ts b/jest.config.ts deleted file mode 100644 index 213b213d..00000000 --- a/jest.config.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Config } from '@jest/types' - -const config: Config.InitialOptions = { - preset: 'ts-jest', - testEnvironment: 'node', - collectCoverage: true, - extensionsToTreatAsEsm: ['.ts'], - moduleNameMapper: { - '^(\\.{1,2}/.*)\\.js$': '$1', - }, - globals: { - 'ts-jest': { - useESM: true, - tsconfig: { - importHelpers: false, - }, - }, - }, -} - -export default config diff --git a/package.json b/package.json index 0540bb41..6d844914 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,9 @@ { - "name": "lib-boilerplate", - "version": "0.0.2", + "name": "domiso", + "version": "0.0.0", "type": "module", - "description": "A simple library boilerplate.", - "repository": "git+https://github.com/un-ts/lib-boilerplate.git", + "description": "Dom sanitizer based on browser native DOMParser", + "repository": "git+https://github.com/un-ts/domiso.git", "author": "JounQin (https://www.1stG.me) ", "donate": { "recipients": [ @@ -38,7 +38,7 @@ }, "funding": "https://opencollective.com/unts", "license": "MIT", - "packageManager": "pnpm@7.5.1", + "packageManager": "pnpm@7.6.0", "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, @@ -60,38 +60,39 @@ "postversion": "pnpm i --no-frozen-lockfile", "prepare": "simple-git-hooks", "prerelease": "pnpm build", - "prevercel-build": "pnpm build", "release": "changeset publish", "serve": "sirv dist -s", - "test": "jest", + "test": "vitest run --coverage", "typecov": "type-coverage", "vercel-build": "w -e docs -p --publicPath /", "version": "changeset version" }, - "dependencies": { - "tslib": "^2.4.0" - }, "devDependencies": { - "@1stg/app-config": "^6.1.3", - "@1stg/lib-config": "^9.0.0", - "@changesets/changelog-github": "^0.4.5", - "@changesets/cli": "^2.23.2", - "@pkgr/webpack": "^3.1.2", + "@1stg/app-config": "^6.1.5", + "@1stg/lib-config": "^9.0.2", + "@changesets/changelog-github": "^0.4.6", + "@changesets/cli": "^2.24.1", + "@pkgr/webpack": "^3.2.0", "@pkgr/webpack-mdx": "^2.0.3", - "@types/jest": "^28.1.6", + "@size-limit/preset-small-lib": "^7.0.8", "@types/mdx": "^2.0.2", - "@types/node": "^18.0.5", + "@types/node": "^18.6.1", "@types/react": "^18.0.15", "@types/react-dom": "^18.0.6", - "@types/web": "^0.0.69", + "@types/web": "^0.0.70", + "c8": "^7.12.0", + "domiso": "link:.", "github-markdown-css": "^5.1.0", + "jsdom": "^20.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-router-dom": "^6.3.0", "sirv-cli": "^2.0.2", - "ts-jest": "^28.0.7", + "size-limit": "^7.0.8", "type-coverage": "^2.22.0", - "typescript": "^4.7.4" + "typescript": "^4.7.4", + "unplugin-auto-import": "^0.10.1", + "vitest": "^0.19.1" }, "publishConfig": { "main": "./lib/index.cjs", @@ -103,6 +104,17 @@ }, "types": "./lib/index.d.ts" }, + "pnpm": { + "patchedDependencies": { + "unplugin-auto-import@0.10.1": "patches/unplugin-auto-import@0.10.1.patch" + } + }, + "size-limit": [ + { + "path": "lib/index.js", + "limit": "300B" + } + ], "typeCoverage": { "atLeast": 100, "cache": true, diff --git a/patches/unplugin-auto-import@0.10.1.patch b/patches/unplugin-auto-import@0.10.1.patch new file mode 100644 index 00000000..9091c05b --- /dev/null +++ b/patches/unplugin-auto-import@0.10.1.patch @@ -0,0 +1,106 @@ +diff --git a/package.json b/package.json +index cbd50d277054a04853e9a8264c1aeaa7d98279f5..9d9f62a68cdc6f07f90c8bc73763234bfb35de2f 100644 +--- a/package.json ++++ b/package.json +@@ -25,31 +25,38 @@ + "sideEffects": false, + "exports": { + ".": { ++ "types": "./dist/index.d.ts", + "require": "./dist/index.js", + "import": "./dist/index.mjs" + }, + "./*": "./*", + "./nuxt": { ++ "types": "./dist/nuxt.d.ts", + "require": "./dist/nuxt.js", + "import": "./dist/nuxt.mjs" + }, + "./rollup": { ++ "types": "./dist/rollup.d.ts", + "require": "./dist/rollup.js", + "import": "./dist/rollup.mjs" + }, + "./types": { ++ "types": "./dist/types.d.ts", + "require": "./dist/types.js", + "import": "./dist/types.mjs" + }, + "./vite": { ++ "types": "./dist/vite.d.ts", + "require": "./dist/vite.js", + "import": "./dist/vite.mjs" + }, + "./webpack": { ++ "types": "./dist/webpack.d.ts", + "require": "./dist/webpack.js", + "import": "./dist/webpack.mjs" + }, + "./esbuild": { ++ "types": "./dist/esbuild.d.ts", + "require": "./dist/esbuild.js", + "import": "./dist/esbuild.mjs" + } +@@ -71,6 +78,18 @@ + "engines": { + "node": ">=14" + }, ++ "scripts": { ++ "build": "tsup src/*.ts --format cjs,esm --dts --splitting --clean && esno scripts/postbuild.ts", ++ "dev": "tsup src/*.ts --watch src", ++ "lint": "eslint .", ++ "lint:fix": "nr lint --fix", ++ "play": "npm -C playground run dev", ++ "prepublishOnly": "nr build", ++ "release": "bumpp --commit --push --tag && pnpm publish", ++ "start": "esno src/index.ts", ++ "test": "vitest", ++ "test:run": "vitest run" ++ }, + "peerDependencies": { + "@vueuse/core": "*" + }, +@@ -85,34 +104,23 @@ + "local-pkg": "^0.4.2", + "magic-string": "^0.26.2", + "unimport": "^0.6.3", +- "unplugin": "^0.7.2" ++ "unplugin": "^0.8.0" + }, + "devDependencies": { + "@antfu/eslint-config": "^0.25.2", + "@antfu/ni": "^0.17.2", +- "@types/node": "^18.0.6", ++ "@types/node": "^18.6.1", + "@types/resolve": "^1.20.2", +- "@vueuse/metadata": "^8.9.4", ++ "@vueuse/metadata": "^9.0.0", + "bumpp": "^8.2.1", + "eslint": "^8.20.0", + "esno": "^0.16.3", + "fast-glob": "^3.2.11", +- "rollup": "^2.77.0", +- "tsup": "^6.1.3", ++ "rollup": "^2.77.1", ++ "tsup": "^6.2.0", + "typescript": "^4.7.4", +- "vite": "^3.0.2", +- "vitest": "^0.19.0", +- "webpack": "^5.73.0" +- }, +- "scripts": { +- "build": "tsup src/*.ts --format cjs,esm --dts --splitting --clean && esno scripts/postbuild.ts", +- "dev": "tsup src/*.ts --watch src", +- "lint": "eslint .", +- "lint:fix": "nr lint --fix", +- "play": "npm -C playground run dev", +- "release": "bumpp --commit --push --tag && pnpm publish", +- "start": "esno src/index.ts", +- "test": "vitest", +- "test:run": "vitest run" ++ "vite": "^3.0.3", ++ "vitest": "^0.19.1", ++ "webpack": "^5.74.0" + } + } +\ No newline at end of file \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1bb9a915..39540287 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,66 +1,77 @@ lockfileVersion: 5.4 +patchedDependencies: + unplugin-auto-import@0.10.1: + hash: 2rke2oyl5nfm2lrwejsnq3sdfe + path: patches/unplugin-auto-import@0.10.1.patch + specifiers: - '@1stg/app-config': ^6.1.3 - '@1stg/lib-config': ^9.0.0 - '@changesets/changelog-github': ^0.4.5 - '@changesets/cli': ^2.23.2 - '@pkgr/webpack': ^3.1.2 + '@1stg/app-config': ^6.1.5 + '@1stg/lib-config': ^9.0.2 + '@changesets/changelog-github': ^0.4.6 + '@changesets/cli': ^2.24.1 + '@pkgr/webpack': ^3.2.0 '@pkgr/webpack-mdx': ^2.0.3 - '@types/jest': ^28.1.6 + '@size-limit/preset-small-lib': ^7.0.8 '@types/mdx': ^2.0.2 - '@types/node': ^18.0.5 + '@types/node': ^18.6.1 '@types/react': ^18.0.15 '@types/react-dom': ^18.0.6 - '@types/web': ^0.0.69 + '@types/web': ^0.0.70 + c8: ^7.12.0 + domiso: link:. github-markdown-css: ^5.1.0 + jsdom: ^20.0.0 react: ^18.2.0 react-dom: ^18.2.0 react-router-dom: ^6.3.0 sirv-cli: ^2.0.2 - ts-jest: ^28.0.7 - tslib: ^2.4.0 + size-limit: ^7.0.8 type-coverage: ^2.22.0 typescript: ^4.7.4 - -dependencies: - tslib: 2.4.0 + unplugin-auto-import: ^0.10.1 + vitest: ^0.19.1 devDependencies: - '@1stg/app-config': 6.1.3_ujqcj3ovte5hbbtjybn5kiotlm - '@1stg/lib-config': 9.0.0_qmakapmwozrnde7vf2ptjxi5rq - '@changesets/changelog-github': 0.4.5 - '@changesets/cli': 2.23.2 - '@pkgr/webpack': 3.1.2_t54fbwee6mwva2xdvyly4ct6vm - '@pkgr/webpack-mdx': 2.0.3_r3ajdkjnj6rosfo6qaenjkgcp4 - '@types/jest': 28.1.6 + '@1stg/app-config': 6.1.5_pvjzkccznyelz6bllh7f4s5k6i + '@1stg/lib-config': 9.0.2_qp3e37ehij6rm6q6q7q3vcptpm + '@changesets/changelog-github': 0.4.6 + '@changesets/cli': 2.24.1 + '@pkgr/webpack': 3.2.0_xztulfwd52ja2ogv5skgvkjgqy + '@pkgr/webpack-mdx': 2.0.3_crvhxyxb5rqemacfpd756plvfe + '@size-limit/preset-small-lib': 7.0.8_size-limit@7.0.8 '@types/mdx': 2.0.2 - '@types/node': 18.0.5 + '@types/node': 18.6.1 '@types/react': 18.0.15 '@types/react-dom': 18.0.6 - '@types/web': 0.0.69 + '@types/web': 0.0.70 + c8: 7.12.0 + domiso: 'link:' github-markdown-css: 5.1.0 + jsdom: 20.0.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y sirv-cli: 2.0.2 - ts-jest: 28.0.7_k2r4spb5olbhsdcly5ywd2jjkq + size-limit: 7.0.8 type-coverage: 2.22.0_typescript@4.7.4 typescript: 4.7.4 + unplugin-auto-import: 0.10.1_2rke2oyl5nfm2lrwejsnq3sdfe_zhxiakfykinkigydwrmzev47um + vitest: 0.19.1_bxeiylxtgpy7pg2qbxz6cj6rfm packages: - /@1stg/app-config/6.1.3_ujqcj3ovte5hbbtjybn5kiotlm: - resolution: {integrity: sha512-6AGYMT5EBXUzjv3Awk9EFev2Dymwurj6NpvzX7+qI7F4EA7llQVb/BwLAf7chgu0SbDzmufSYnUskpPsUIHg0w==} + /@1stg/app-config/6.1.5_pvjzkccznyelz6bllh7f4s5k6i: + resolution: {integrity: sha512-BBzqYddt2e0sISd4m+ozQPU3TfhcfTAkNyOBirJ4HfQwL1czvz9Psyp7zC8Wp2k+ft+zPwGdQI32hQXGNWKInw==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dependencies: - '@1stg/browserslist-config': 1.2.3_browserslist@4.21.2 - '@1stg/common-config': 6.1.2_x55y73vhhje7c5wbmox6dz7s2i - '@1stg/postcss-config': 3.2.4_ueju2bwfzqc5aneogkggyoaage + '@1stg/browserslist-config': 1.2.3_browserslist@4.21.3 + '@1stg/common-config': 6.1.4_2f3v7kje34q4ns6xxn4xrps7lm + '@1stg/postcss-config': 3.2.4_bujjonwylnebbx3cl7qckr3eti '@1stg/stylelint-config': 4.6.1_w4y4zw6rrt5rkvhpccepwig4mi '@pkgr/es-modules': 0.6.2 '@pkgr/imagemin': 3.1.1 - browserslist: 4.21.2 + browserslist: 4.21.3 postcss: 8.4.14 stylelint: 14.9.1 transitivePeerDependencies: @@ -80,61 +91,30 @@ packages: - vue dev: true - /@1stg/babel-preset/3.1.3_u4pnq6aitzjyryj6xisyu635ni: - resolution: {integrity: sha512-IOK408eSo03Pp6vRGsngWz0UstOZoRKqmwB7FUKG/eiwL37oayo/DOuvnc7GLNee83bwlmoxz3aMFBfOcvjXDQ==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - peerDependencies: - '@babel/core': '>=7.14.1' - dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-decorators': 7.18.6_@babel+core@7.18.6 - '@babel/preset-env': 7.18.6_@babel+core@7.18.6 - '@babel/preset-react': 7.18.6_@babel+core@7.18.6 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.6 - '@pkgr/utils': 2.3.0 - '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 - '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.6 - '@vue/babel-preset-jsx': 1.3.0_@babel+core@7.18.6 - babel-plugin-import: 1.13.5 - babel-plugin-transform-async-to-promises: 0.8.18 - babel-plugin-transform-react-remove-prop-types: 0.4.24 - babel-plugin-transform-remove-console: 6.9.4 - babel-plugin-transform-typescript-metadata: 0.3.2 - babel-preset-proposal-typescript: 2.2.0_u4pnq6aitzjyryj6xisyu635ni - core-js: 3.23.3 - fast-async: 7.0.6 - transitivePeerDependencies: - - supports-color - - typescript - - vue - dev: true - - /@1stg/babel-preset/3.1.4_u4pnq6aitzjyryj6xisyu635ni: + /@1stg/babel-preset/3.1.4_p2nspltq2mrxfqigdmhjpzxdbm: resolution: {integrity: sha512-2fq/Ov//UUAOObhZmsDdbFkH/s4ihOczuk3F/GcDMa34w1wI+PTmLW7UEZXVq9AhY3tKJh4RFOcvBEpMq9ZAlQ==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: '@babel/core': '>=7.14.1' dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-decorators': 7.18.6_@babel+core@7.18.6 - '@babel/preset-env': 7.18.6_@babel+core@7.18.6 - '@babel/preset-react': 7.18.6_@babel+core@7.18.6 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-decorators': 7.18.9_@babel+core@7.18.9 + '@babel/preset-env': 7.18.9_@babel+core@7.18.9 + '@babel/preset-react': 7.18.6_@babel+core@7.18.9 + '@babel/preset-typescript': 7.18.6_@babel+core@7.18.9 '@pkgr/utils': 2.3.0 '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 - '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.6 - '@vue/babel-preset-jsx': 1.3.0_@babel+core@7.18.6 + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.9 + '@vue/babel-preset-jsx': 1.3.1_@babel+core@7.18.9 babel-plugin-import: 1.13.5 babel-plugin-transform-async-to-promises: 0.8.18 babel-plugin-transform-react-remove-prop-types: 0.4.24 babel-plugin-transform-remove-console: 6.9.4 babel-plugin-transform-typescript-metadata: 0.3.2 - babel-preset-proposal-typescript: 2.2.0_u4pnq6aitzjyryj6xisyu635ni - core-js: 3.23.3 + babel-preset-proposal-typescript: 2.2.0_p2nspltq2mrxfqigdmhjpzxdbm + core-js: 3.24.0 fast-async: 7.0.6 transitivePeerDependencies: - supports-color @@ -142,12 +122,12 @@ packages: - vue dev: true - /@1stg/browserslist-config/1.2.3_browserslist@4.21.2: + /@1stg/browserslist-config/1.2.3_browserslist@4.21.3: resolution: {integrity: sha512-bBjB4u45NNisiigMzY+a0iLdWpGQF1ckcy3/qsGblkPDsJ3wqgfrNEMJQMrgZSDioBd+Qwmr5TMY0DDI0NvqpQ==} peerDependencies: browserslist: '>=4.0.0' dependencies: - browserslist: 4.21.2 + browserslist: 4.21.3 dev: true /@1stg/commitlint-config/3.1.4: @@ -161,22 +141,22 @@ packages: - lerna dev: true - /@1stg/common-config/6.1.2_x55y73vhhje7c5wbmox6dz7s2i: - resolution: {integrity: sha512-AqpbFkUfJ3uJ0ZVkuGUmOXZDFEmXp3otXymsYZN6Q1WaKYLv8Ed8VPTOVeIJyvFY5Wr+YI6vIE8C6MNGzlqTBQ==} + /@1stg/common-config/6.1.4_2f3v7kje34q4ns6xxn4xrps7lm: + resolution: {integrity: sha512-gbISGR1hqt5VlzqXnaG8y7hMz+GeD2whgKQ2RmopOGdHp2vXxm0rq7IOQWvAhz5m/MCSmIA9/0/o6c/lBQnbuA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dependencies: - '@1stg/babel-preset': 3.1.4_u4pnq6aitzjyryj6xisyu635ni + '@1stg/babel-preset': 3.1.4_p2nspltq2mrxfqigdmhjpzxdbm '@1stg/commitlint-config': 3.1.4 - '@1stg/eslint-config': 5.4.2_mws4azr47jkjmwuarwo3i4hjji - '@1stg/lint-staged': 3.3.0_y3qjav5es4jb3pkk2xe7z37bam - '@1stg/markuplint-config': 2.2.0_l7ifndokuoejmcwz7s45zjwhaq - '@1stg/prettier-config': 3.7.0_nakrehnrzdf7fdea5k3a4dfy4m + '@1stg/eslint-config': 5.4.4_dfprfa4qfsxynt6e52aclrwffy + '@1stg/lint-staged': 3.3.0_k3mhqbwh2yu5mejzitgb6dfuru + '@1stg/markuplint-config': 2.2.0_vcmsa67shvd4jnsk6feve2c3aq + '@1stg/prettier-config': 3.7.0_o3ioganyptcsrh6x4hnxvjkpqi '@1stg/remark-config': 4.0.3_prettier@2.7.1 '@1stg/simple-git-hooks': 0.2.1_3a74o2bqahvqfivah2vltmaou4 - '@1stg/tsconfig': 2.2.3_typescript@4.7.4 - '@babel/core': 7.18.6 + '@1stg/tsconfig': 2.2.5_typescript@4.7.4 + '@babel/core': 7.18.9 '@commitlint/cli': 17.0.3 - eslint: 8.19.0 + eslint: 8.20.0 lint-staged: 13.0.3 npm-run-all: 4.1.5 prettier: 2.7.1 @@ -201,53 +181,53 @@ packages: resolution: {integrity: sha512-7PPr6ZCIh0KqbQSePoVtTO/apo3gjPkrWeM7EAJ8YwN4LJE3CDtYQ0bvF2t0c0zLhNYmGxqe64Z+8c98wzuqaw==} dev: true - /@1stg/eslint-config/5.4.2_mws4azr47jkjmwuarwo3i4hjji: - resolution: {integrity: sha512-2IukGkNxsCnj6JeKhJmjFTf/R7YIZQ1cfJ84eiVHiEB7rOkIaV6To2bMxyZ51QgTltohf6KloxsMOP+EG1LASA==} + /@1stg/eslint-config/5.4.4_dfprfa4qfsxynt6e52aclrwffy: + resolution: {integrity: sha512-iAtf2Awz7KkUKYB+Qq0Tj514qrIKrIbhp0Dn3mYDcqmWiFkuzwebUOZVJg3miZXEnQc9w+0Vqlb6LczPVVrbCg==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: '@1stg/config': 0.2.0 - '@angular-eslint/eslint-plugin': 14.0.2_4x5o4skxv6sl53vpwefgt23khm - '@angular-eslint/eslint-plugin-template': 14.0.2_4x5o4skxv6sl53vpwefgt23khm - '@angular-eslint/template-parser': 14.0.2_4x5o4skxv6sl53vpwefgt23khm - '@babel/eslint-parser': 7.18.2_ygqbvsyswrl2cmipz2mlfqys74 - '@babel/eslint-plugin': 7.17.7_jwguzmoycsnla6dhqn6hwzoboq + '@angular-eslint/eslint-plugin': 14.0.2_he2ccbldppg44uulnyq4rwocfa + '@angular-eslint/eslint-plugin-template': 14.0.2_he2ccbldppg44uulnyq4rwocfa + '@angular-eslint/template-parser': 14.0.2_he2ccbldppg44uulnyq4rwocfa + '@babel/eslint-parser': 7.18.9_454u7sltq2wfyzqnoclqps3oeu + '@babel/eslint-plugin': 7.17.7_5hdsoqonnk3nvwkon7f6brqzku '@pkgr/utils': 2.3.0 - '@typescript-eslint/eslint-plugin': 5.30.6_2vt5mtrqleafs33qg2bhpmbaqm - '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm + '@typescript-eslint/eslint-plugin': 5.31.0_d5zwcxr4bwkhmuo464cb3a2puu + '@typescript-eslint/parser': 5.31.0_he2ccbldppg44uulnyq4rwocfa angular-eslint-template-parser: 0.1.1_lscoefpp2xo4h6652u3xspi3ma - eslint: 8.19.0 - eslint-config-prettier: 8.5.0_eslint@8.19.0 - eslint-config-standard: 17.0.0_3y77imf4oat3akor274t4exgn4 - eslint-config-standard-jsx: 11.0.0_ooux7wugi57bhcgmnuegj2mmva - eslint-config-standard-react: 11.0.1_ooux7wugi57bhcgmnuegj2mmva + eslint: 8.20.0 + eslint-config-prettier: 8.5.0_eslint@8.20.0 + eslint-config-standard: 17.0.0_afahsawqwkk6a7xxn76kfhtzni + eslint-config-standard-jsx: 11.0.0_d6b2yfc7lkeycvhlikcoxofgwu + eslint-config-standard-react: 11.0.1_d6b2yfc7lkeycvhlikcoxofgwu eslint-formatter-friendly: 7.0.0 - eslint-import-resolver-typescript: 3.2.5_q2xwze32dd33a2fc2qubwr4ie4 - eslint-plugin-css: 0.6.0_eslint@8.19.0 - eslint-plugin-es-x: 5.2.1_eslint@8.19.0 - eslint-plugin-eslint-comments: 3.2.0_eslint@8.19.0 - eslint-plugin-import: 2.26.0_txgtzxbwwbsdf6liwdfp2zycdy - eslint-plugin-jest: 26.5.3_3yacqyit32n2tvjhojswm22mwq - eslint-plugin-jsdoc: 39.3.3_eslint@8.19.0 - eslint-plugin-json-schema-validator: 3.2.5_eslint@8.19.0 - eslint-plugin-jsonc: 2.3.1_eslint@8.19.0 - eslint-plugin-markup: 0.10.0_eslint@8.19.0 - eslint-plugin-mdx: 2.0.1_eslint@8.19.0 - eslint-plugin-n: 15.2.4_eslint@8.19.0 - eslint-plugin-prettier: 4.2.1_7uxdfn2xinezdgvmbammh6ev5i - eslint-plugin-promise: 6.0.0_eslint@8.19.0 - eslint-plugin-react: 7.30.1_eslint@8.19.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.19.0 - eslint-plugin-regexp: 1.7.0_eslint@8.19.0 - eslint-plugin-simple-import-sort: 7.0.0_eslint@8.19.0 - eslint-plugin-sonar: 0.8.0_2l6pd2z6wpkfvxik46nihypw3e - eslint-plugin-sonarjs: 0.13.0_eslint@8.19.0 - eslint-plugin-svelte: 2.2.0_m4jpobot6gi3xtcba7bv5cflma - eslint-plugin-toml: 0.3.1_eslint@8.19.0 - eslint-plugin-unicorn: 43.0.1_eslint@8.19.0 - eslint-plugin-vue: 9.2.0_eslint@8.19.0 - eslint-plugin-yml: 1.0.0_eslint@8.19.0 + eslint-import-resolver-typescript: 3.3.0_rrrh6qwanyj3uwtbsjyts4vv2m + eslint-plugin-css: 0.6.0_eslint@8.20.0 + eslint-plugin-es-x: 5.2.1_eslint@8.20.0 + eslint-plugin-eslint-comments: 3.2.0_eslint@8.20.0 + eslint-plugin-import: /eslint-plugin-i/2.26.0_hap3noddfugcdvzy74spnmfiia + eslint-plugin-jest: 26.6.0_si3czhlqitvu774dcistffj7oy + eslint-plugin-jsdoc: 39.3.3_eslint@8.20.0 + eslint-plugin-json-schema-validator: 4.0.0_eslint@8.20.0 + eslint-plugin-jsonc: 2.3.1_eslint@8.20.0 + eslint-plugin-markup: 0.10.1_eslint@8.20.0 + eslint-plugin-mdx: 2.0.2_eslint@8.20.0 + eslint-plugin-n: 15.2.4_eslint@8.20.0 + eslint-plugin-prettier: 4.2.1_g4fztgbwjyq2fvmcscny2sj6fy + eslint-plugin-promise: 6.0.0_eslint@8.20.0 + eslint-plugin-react: 7.30.1_eslint@8.20.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.20.0 + eslint-plugin-regexp: 1.8.0_eslint@8.20.0 + eslint-plugin-simple-import-sort: 7.0.0_eslint@8.20.0 + eslint-plugin-sonar: 0.8.0_x45rze3t5r5rpj27b7qxdjmrpe + eslint-plugin-sonarjs: 0.14.0_eslint@8.20.0 + eslint-plugin-svelte: 2.3.0_piwa6j2njmnknm35bh3wz5v52y + eslint-plugin-toml: 0.3.1_eslint@8.20.0 + eslint-plugin-unicorn: 43.0.2_eslint@8.20.0 + eslint-plugin-vue: 9.3.0_eslint@8.20.0 + eslint-plugin-yml: 1.0.0_eslint@8.20.0 transitivePeerDependencies: - '@babel/core' - eslint-import-resolver-webpack @@ -259,11 +239,11 @@ packages: - typescript dev: true - /@1stg/lib-config/9.0.0_qmakapmwozrnde7vf2ptjxi5rq: - resolution: {integrity: sha512-r45lRRFgXMIN3N5nNq3SS/VD9J30PHHKrITJihovVdgzpP5q42T12SlL+fYp31U/TLWtQBcdRbujLQTwMQdLGA==} + /@1stg/lib-config/9.0.2_qp3e37ehij6rm6q6q7q3vcptpm: + resolution: {integrity: sha512-r2mrwkluQaXd5afvOuuhACEN04yd/pQWDKLtKbId3uZIjSsQc93+dq+NyxUvggMZDb6fpaBrVSKy7Z4o3PTD8Q==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} dependencies: - '@1stg/common-config': 6.1.2_x55y73vhhje7c5wbmox6dz7s2i + '@1stg/common-config': 6.1.4_2f3v7kje34q4ns6xxn4xrps7lm '@pkgr/rollup': 3.1.4_@vue+compiler-sfc@3.2.37 transitivePeerDependencies: - '@swc/core' @@ -282,15 +262,15 @@ packages: - vue dev: true - /@1stg/lint-staged/3.3.0_y3qjav5es4jb3pkk2xe7z37bam: + /@1stg/lint-staged/3.3.0_k3mhqbwh2yu5mejzitgb6dfuru: resolution: {integrity: sha512-I4+1OWDoNgslnRhu/VbRgt+pkAoPb1DKBZWs5Ji5qq5+lr51c0Alw/mPJfXDPEICYdSuq6AqEZs29oe4bXxxig==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: lint-staged: '>=10.0.0' dependencies: '@1stg/config': 0.2.0 - '@1stg/prettier-config': 3.7.0_nakrehnrzdf7fdea5k3a4dfy4m - '@1stg/tsconfig': 2.2.3_typescript@4.7.4 + '@1stg/prettier-config': 3.7.0_o3ioganyptcsrh6x4hnxvjkpqi + '@1stg/tsconfig': 2.2.5_typescript@4.7.4 '@pkgr/utils': 2.3.0 lint-staged: 13.0.3 prettier: 2.7.1 @@ -300,43 +280,23 @@ packages: - typescript dev: true - /@1stg/markuplint-config/2.2.0_l7ifndokuoejmcwz7s45zjwhaq: + /@1stg/markuplint-config/2.2.0_vcmsa67shvd4jnsk6feve2c3aq: resolution: {integrity: sha512-SFIB3oa5RAZ7Tfql/O+TpQKqC6sO4BEy1EzU5ZOaUzJz9U192gnyDNEu0DPU9Oc4T4kTulSqNMAK3hyfdsDTJg==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: markuplint: ^2.0.0 dependencies: '@markuplint/svelte-parser': 2.2.3 - '@markuplint/vue-parser': 2.3.2_eslint@8.19.0 + '@markuplint/vue-parser': 2.3.2_eslint@8.20.0 '@markuplint/vue-spec': 2.1.1 - markuplint: 2.9.0 + markuplint: 2.10.0 markuplint-angular-parser: 1.1.3 transitivePeerDependencies: - eslint - supports-color dev: true - /@1stg/postcss-config/3.2.3_ueju2bwfzqc5aneogkggyoaage: - resolution: {integrity: sha512-qEO7Q3RHPplhX8qpAJwHJyfLbNcGUyvXs4PZz/zKOt/ontXqRRV09EpJ1rikWdOFP3PN/onSiDDyQ4uw/HF2SA==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - peerDependencies: - postcss: '>=7.0.0' - dependencies: - '@pkgr/utils': 2.3.0 - autoprefixer: 10.4.7_postcss@8.4.14 - cssnano: 5.1.12_postcss@8.4.14 - cssnano-preset-advanced: 5.3.8_postcss@8.4.14 - postcss: 8.4.14 - postcss-import: 14.1.0_postcss@8.4.14 - postcss-modules: 4.3.1_postcss@8.4.14 - postcss-normalize: 10.0.1_ueju2bwfzqc5aneogkggyoaage - postcss-preset-env: 7.7.2_postcss@8.4.14 - postcss-url: 10.1.3_postcss@8.4.14 - transitivePeerDependencies: - - browserslist - dev: true - - /@1stg/postcss-config/3.2.4_ueju2bwfzqc5aneogkggyoaage: + /@1stg/postcss-config/3.2.4_bujjonwylnebbx3cl7qckr3eti: resolution: {integrity: sha512-fNzsQl1UWspA5nzCApD2m7AMUTqDWR6SvwZ8BdMOpgeU6pPhAOY7PGB8ZK36qr6rQ1EW2YhuxMSj3iac/NHckQ==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: @@ -349,21 +309,21 @@ packages: postcss: 8.4.14 postcss-import: 14.1.0_postcss@8.4.14 postcss-modules: 4.3.1_postcss@8.4.14 - postcss-normalize: 10.0.1_ueju2bwfzqc5aneogkggyoaage + postcss-normalize: 10.0.1_bujjonwylnebbx3cl7qckr3eti postcss-preset-env: 7.7.2_postcss@8.4.14 postcss-url: 10.1.3_postcss@8.4.14 transitivePeerDependencies: - browserslist dev: true - /@1stg/prettier-config/3.7.0_nakrehnrzdf7fdea5k3a4dfy4m: + /@1stg/prettier-config/3.7.0_o3ioganyptcsrh6x4hnxvjkpqi: resolution: {integrity: sha512-rzqsEx79X06cTkx7dhRo8Aq4RPgHXrDVYAANtor+Xjtohc/nxsilLfOfypJz9Fsfeoijkq13eOdQaokpbDYu4w==} peerDependencies: prettier: '>=1.18.0' dependencies: '@1stg/config': 0.2.0 '@prettier/plugin-pug': 2.1.1_prettier@2.7.1 - '@prettier/plugin-ruby': 3.1.2 + '@prettier/plugin-ruby': 3.2.0 '@prettier/plugin-xml': 2.2.0 prettier: 2.7.1 prettier-plugin-ini: 1.0.0 @@ -371,7 +331,7 @@ packages: prettier-plugin-properties: 0.1.0_prettier@2.7.1 prettier-plugin-sh: 0.12.6_prettier@2.7.1 prettier-plugin-stylus: 0.0.1-beta.3 - prettier-plugin-svelte: 2.7.0_nakrehnrzdf7fdea5k3a4dfy4m + prettier-plugin-svelte: 2.7.0_o3ioganyptcsrh6x4hnxvjkpqi prettier-plugin-toml: 0.3.1 transitivePeerDependencies: - supports-color @@ -439,8 +399,8 @@ packages: - supports-color dev: true - /@1stg/tsconfig/2.2.3_typescript@4.7.4: - resolution: {integrity: sha512-nyFRZsB4Adf0OaAnzopXgKxSNfx7VomECiSCFXCPZ2Fe7/m39/PS+vQXTzO4VfiyJqLsuNWiR9mMMubTfXe8lQ==} + /@1stg/tsconfig/2.2.5_typescript@4.7.4: + resolution: {integrity: sha512-HGu7fJHp+5vLeXH7R/AozA2VtjtE/KACv2bhAA0Hrtk2fX2OE0xNynb/tg31kTRU8cStEmlMLKxAexdv7BPYPA==} peerDependencies: typescript: '>=3.0.0' dependencies: @@ -459,62 +419,66 @@ packages: resolution: {integrity: sha512-Ev001tGwBfy6lFd1IDrAHfW87VUqDmMQY5KWY+LM3dn0PY2XZv1RsBM16tBFbi7EaDeaxeFZg/G8PN5x+anNbg==} dev: true - /@angular-eslint/eslint-plugin-template/14.0.2_4x5o4skxv6sl53vpwefgt23khm: + /@angular-eslint/eslint-plugin-template/14.0.2_he2ccbldppg44uulnyq4rwocfa: resolution: {integrity: sha512-egan0a2GVkubST4H7x2mPMTz3Ee9QXeLEchJyWXdFBZ6Nrpfjaki5dOQYhLU7KyxqhrSW4XugMWPGj2KW2gMxQ==} peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: '@angular-eslint/bundled-angular-compiler': 14.0.2 - '@typescript-eslint/utils': 5.29.0_4x5o4skxv6sl53vpwefgt23khm + '@typescript-eslint/utils': 5.29.0_he2ccbldppg44uulnyq4rwocfa aria-query: 5.0.0 axobject-query: 3.0.1 - eslint: 8.19.0 + eslint: 8.20.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@angular-eslint/eslint-plugin/14.0.2_4x5o4skxv6sl53vpwefgt23khm: + /@angular-eslint/eslint-plugin/14.0.2_he2ccbldppg44uulnyq4rwocfa: resolution: {integrity: sha512-TfiXWqaWGysnPB6JstZouvA9tNwIsCLvSIGqniE1U90kX6p5nL8Z09JOiv/9jlYfgAIEgUD48BGMZzDi86voGA==} peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: - '@angular-eslint/utils': 14.0.2_4x5o4skxv6sl53vpwefgt23khm - '@typescript-eslint/utils': 5.29.0_4x5o4skxv6sl53vpwefgt23khm - eslint: 8.19.0 + '@angular-eslint/utils': 14.0.2_he2ccbldppg44uulnyq4rwocfa + '@typescript-eslint/utils': 5.29.0_he2ccbldppg44uulnyq4rwocfa + eslint: 8.20.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@angular-eslint/template-parser/14.0.2_4x5o4skxv6sl53vpwefgt23khm: + /@angular-eslint/template-parser/14.0.2_he2ccbldppg44uulnyq4rwocfa: resolution: {integrity: sha512-NTXSfL97WVs4GTKPtPcRZfWtvNbhgcIZUvKUTk5ieYiVLqsHF9Y+NlAKBh44AGldM5oCNO4HUfnvOedtqkQ+MA==} peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: '@angular-eslint/bundled-angular-compiler': 14.0.2 - eslint: 8.19.0 + eslint: 8.20.0 eslint-scope: 5.1.1 typescript: 4.7.4 dev: true - /@angular-eslint/utils/14.0.2_4x5o4skxv6sl53vpwefgt23khm: + /@angular-eslint/utils/14.0.2_he2ccbldppg44uulnyq4rwocfa: resolution: {integrity: sha512-8cHyQFG3jIHMHBjlqMU9ExAgOFGqbvxUa5EUvdc8wJUXtwhYx5NCQupdSpy/qG8gHiXjxvxinEtACZJQ9/SOwQ==} peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: '*' dependencies: '@angular-eslint/bundled-angular-compiler': 14.0.2 - '@typescript-eslint/utils': 5.29.0_4x5o4skxv6sl53vpwefgt23khm - eslint: 8.19.0 + '@typescript-eslint/utils': 5.29.0_he2ccbldppg44uulnyq4rwocfa + eslint: 8.20.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true + /@antfu/utils/0.5.2: + resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==} + dev: true + /@apideck/better-ajv-errors/0.3.6_ajv@8.11.0: resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==} engines: {node: '>=10'} @@ -523,7 +487,7 @@ packages: dependencies: ajv: 8.11.0 json-schema: 0.4.0 - jsonpointer: 5.0.0 + jsonpointer: 5.0.1 leven: 3.1.0 dev: true @@ -540,25 +504,25 @@ packages: '@babel/highlight': 7.18.6 dev: true - /@babel/compat-data/7.18.6: - resolution: {integrity: sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==} + /@babel/compat-data/7.18.8: + resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.18.6: - resolution: {integrity: sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==} + /@babel/core/7.18.9: + resolution: {integrity: sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.7 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 - '@babel/helper-module-transforms': 7.18.6 - '@babel/helpers': 7.18.6 - '@babel/parser': 7.18.6 + '@babel/generator': 7.18.9 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helpers': 7.18.9 + '@babel/parser': 7.18.9 '@babel/template': 7.18.6 - '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -568,37 +532,37 @@ packages: - supports-color dev: true - /@babel/eslint-parser/7.18.2_ygqbvsyswrl2cmipz2mlfqys74: - resolution: {integrity: sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==} + /@babel/eslint-parser/7.18.9_454u7sltq2wfyzqnoclqps3oeu: + resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.18.6 - eslint: 8.19.0 + '@babel/core': 7.18.9 + eslint: 8.20.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true - /@babel/eslint-plugin/7.17.7_jwguzmoycsnla6dhqn6hwzoboq: + /@babel/eslint-plugin/7.17.7_5hdsoqonnk3nvwkon7f6brqzku: resolution: {integrity: sha512-JATUoJJXSgwI0T8juxWYtK1JSgoLpIGUsCHIv+NMXcUDA2vIe6nvAHR9vnuJgs/P1hOFw7vPwibixzfqBBLIVw==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/eslint-parser': '>=7.11.0' eslint: '>=7.5.0' dependencies: - '@babel/eslint-parser': 7.18.2_ygqbvsyswrl2cmipz2mlfqys74 - eslint: 8.19.0 + '@babel/eslint-parser': 7.18.9_454u7sltq2wfyzqnoclqps3oeu + eslint: 8.20.0 eslint-rule-composer: 0.3.0 dev: true - /@babel/generator/7.18.7: - resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==} + /@babel/generator/7.18.9: + resolution: {integrity: sha512-wt5Naw6lJrL1/SGkipMiFxJjtyczUWTP38deiP1PO60HsBjDeKk08CGC3S8iVuvf0FmTdgKwU1KIXzSKL1G0Ug==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 dev: true @@ -607,69 +571,67 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor/7.18.6: - resolution: {integrity: sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==} + /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: + resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/helper-compilation-targets/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==} + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.18.6 - '@babel/core': 7.18.6 + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.9 '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.1 + browserslist: 4.21.3 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==} + /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-function-name': 7.18.6 - '@babel/helper-member-expression-to-functions': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.18.6 + '@babel/helper-replace-supers': 7.18.9 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.6: + /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.1.0 dev: true - /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.6: - resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.9: + resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/traverse': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -678,8 +640,8 @@ packages: - supports-color dev: true - /@babel/helper-environment-visitor/7.18.6: - resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==} + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} engines: {node: '>=6.9.0'} dev: true @@ -687,50 +649,50 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/helper-function-name/7.18.6: - resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==} + /@babel/helper-function-name/7.18.9: + resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.6 - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/helper-member-expression-to-functions/7.18.6: - resolution: {integrity: sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==} + /@babel/helper-member-expression-to-functions/7.18.9: + resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/helper-module-transforms/7.18.6: - resolution: {integrity: sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==} + /@babel/helper-module-transforms/7.18.9: + resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 '@babel/helper-simple-access': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.18.6 '@babel/template': 7.18.6 - '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -739,38 +701,38 @@ packages: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/helper-plugin-utils/7.18.6: - resolution: {integrity: sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==} + /@babel/helper-plugin-utils/7.18.9: + resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==} + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-wrap-function': 7.18.6 - '@babel/types': 7.18.7 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.18.9 + '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.18.6: - resolution: {integrity: sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==} + /@babel/helper-replace-supers/7.18.9: + resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-member-expression-to-functions': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -779,21 +741,21 @@ packages: resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/helper-skip-transparent-expression-wrappers/7.18.6: - resolution: {integrity: sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==} + /@babel/helper-skip-transparent-expression-wrappers/7.18.9: + resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true /@babel/helper-validator-identifier/7.18.6: @@ -806,25 +768,25 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-wrap-function/7.18.6: - resolution: {integrity: sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==} + /@babel/helper-wrap-function/7.18.9: + resolution: {integrity: sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.18.6 + '@babel/helper-function-name': 7.18.9 '@babel/template': 7.18.6 - '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.18.6: - resolution: {integrity: sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==} + /@babel/helpers/7.18.9: + resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.6 - '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -838,1158 +800,1140 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser/7.18.6: - resolution: {integrity: sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==} + /@babel/parser/7.18.9: + resolution: {integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.6: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 - '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-async-do-expressions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-async-do-expressions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ptV7n23Rks40JioBVMA78p3I/IKThTLY8uGtERiBg8yZuySWW6Q2MiycxKKjrVfthjdY1UUvkS6e8UcvS7hJJw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-async-do-expressions': 7.18.6_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-async-do-expressions': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-async-generator-functions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-async-generator-functions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg==} + /@babel/plugin-proposal-decorators/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-KD7zDNaD14CRpjQjVbV4EnH9lsKYlcpUrhZH37ei2IY+AlXrfAPy5pTmRUE4X6X1k8EsKXPraykxeaogqQvSGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-replace-supers': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-do-expressions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-do-expressions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ddToGCONJhCuL+l4FhtGnKl5ZYCj9fDVFiqiCdQDpeIbVn/NvMeSib+7T1/rk08jRafae4qNiP8OnJyuqlsuYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-do-expressions': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-do-expressions': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-export-namespace-from/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==} + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-function-bind/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-e2N7sdLvLG6W5KVjGQjIPY7bJ3hixiS35gSKYdCQq2bhWclZSkLf9Mp9qocsYleqkWOJnsCEvCvur0ThRe1Jpw==} + /@babel/plugin-proposal-function-bind/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-9RfxqKkRBCCT0xoBl9AqieCMscJmSAL9HYixGMWH549jUpT9csWWK/HEYZEx9t9iW/PRSXgX95x9bDlgtAJGFA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-function-bind': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-function-bind': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-function-sent/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-function-sent/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-UdaOKPOLPt0O+Xu26tnw6oAZMLXhk+yMrXOzn6kAzTHBnWHJsoN1hlrgxFAQ+FRLS0ql1oYIQ2phvoFzmN3GMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-wrap-function': 7.18.6 - '@babel/plugin-syntax-function-sent': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-wrap-function': 7.18.9 + '@babel/plugin-syntax-function-sent': 7.18.6_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==} + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==} + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.6 - '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.6 + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.9 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-optional-chaining/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==} + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-partial-application/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-yM8U6Ro0L1BX+DzdYLSCjd7grbxSj4t30qoQQtFS/FUb12RcWcVeqQ2CTQuLG7esLH/vQMCYj5KlIeeUjSDHmQ==} + /@babel/plugin-proposal-partial-application/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-+q+bOVHlU+4QAb6h8S3UNL2x52/bcTiGTktUj+WYIFtqueqbQBU7AqnMs79TPz7hRdj6rWiQDInuVMz/fsxwdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-partial-application': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-partial-application': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-pipeline-operator/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-TtmOg+ew8KKLTNfOzEM/KCkwp3JKjA8E5E95rnrqnBZWs9KuXS+2yXq/x10uy+Sq9Ys6TscfRVCN2UFOhZ4bZw==} + /@babel/plugin-proposal-pipeline-operator/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-Pc33e6m8f4MJhRXVCUwiKZNtEm+W2CUPHIL0lyJNtkp+w6d75CLw3gsBKQ81VAMUgT9jVPIEU8gwJ5nJgmJ1Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-pipeline-operator': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-pipeline-operator': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.6 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-record-and-tuple/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-record-and-tuple/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-v5gy2FFG+0rgLr2vXoBd/dhBFLkB8mM/9WnYQWgm0v48LZvw05LK5vb39FJi4CsQxIvhqL3JDbWEmKwEgQKrLw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-syntax-record-and-tuple': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-record-and-tuple': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-throw-expressions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-throw-expressions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-WHOrJyhGoGrdtW480L79cF7Iq/gZDZ/z6OqK7mVyFR5I37dTpog/wNgb6hmaM3HYZtULEJl++7VaMWkNZsOcHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-throw-expressions': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-throw-expressions': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-async-do-expressions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-async-do-expressions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-TVRkSEINXsR3/3Fm7PNm1V9ARNaak+/Q3BPnQGHaNmwcr8GJRfXh4UXGdj3Tk9pbMJEeEu7mATZYO+t3QIM8fg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.6: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.9: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.6: - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - dev: true - - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.6: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.9: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.6: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.9: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-decorators/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-decorators/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-do-expressions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-do-expressions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-kTogvOsjBTVOSZtkkziiXB5hwGXqwhq2gBXDaiWVruRLDT7C2GqfbsMnicHJ7ePq2GE8UJeWS34YbNP6yDhwUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-function-bind/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-function-bind/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-wZN0Aq/AScknI9mKGcR3TpHdASMufFGaeJgc1rhPmLtZ/PniwjePSh8cfh8tXMB3U4kh/3cRKrLjDtedejg8jQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-function-sent/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-function-sent/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-f3OJHIlFIkg+cP1Hfo2SInLhsg0pz2Ikmgo7jMdIIKC+3jVXQlHB0bgSapOWxeWI0SU28qIWmfn5ZKu1yPJHkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - dev: true - - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.6: - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.6: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.9: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.6: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.9: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.6: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-partial-application/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-partial-application/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-jEy7lXLt01S/Hp3egTsiqNaeCH+n38iMm33dJ158Cr9JdCef/qR3GB3FrEB6+n7UpmlJ8StiV6Y7aXnjfyBs9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-pipeline-operator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-pipeline-operator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-pFtIdQomJtkTHWcNsGXhjJ5YUkL+AxJnP4G+Ol85UO6uT2fpHTPYLLE5bBeRA9cxf25qa/VKsJ3Fi67Gyqe3rA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.6: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.9: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-record-and-tuple/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-record-and-tuple/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-rTxxy1xG2W2Yje36h467SjcHebpwOJfxFMmjHj4XC2Cj6/9e8Okgu/U9Bx/Jx0VrUkbwPKJwuHN1hHBs7ikuJw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-throw-expressions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-throw-expressions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-rp1CqEZXGv1z1YZ3qYffBH3rhnOxrTwQG8fh2yqulTurwv9zu3Gthfd+niZBLSOi1rY6146TgF+JmVeDXaX4TQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.6: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.9: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.6: + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-block-scoping/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==} + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-classes/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==} + /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-function-name': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-replace-supers': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==} + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-destructuring/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==} + /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-duplicate-keys/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==} + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-for-of/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==} + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.9: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-function-name/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==} + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 - '@babel/helper-function-name': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-literals/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==} + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-module-transforms': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-module-transforms': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-simple-access': 7.18.6 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==} + /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-identifier': 7.18.6 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-module-transforms': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-replace-supers': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==} + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.9: + resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-react-constant-elements/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-4g5H1bonF1dqgMe+wQ2fvDlRZ/mN/KwArk13teDv+xxn+pUDEiiDluQd6D2B30MJcL1u3qr0WZpfq0mw9/zSqA==} + /@babel/plugin-transform-react-constant-elements/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-IrTYh1I3YCEL1trjknnlLKTp5JggjzhKl/d3ibzPc97JhpFcDTr38Jdek/oX4cFbS6By0bXJcOkpRvJ5ZHK2wQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-react-jsx/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 - '@babel/types': 7.18.7 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 + '@babel/types': 7.18.9 dev: true - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-spread/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==} + /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 dev: true - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-template-literals/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==} + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-typeof-symbol/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==} + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-typescript/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==} + /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.18.9: + resolution: {integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-unicode-escapes/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.6: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /@babel/preset-env/7.18.6_@babel+core@7.18.6: - resolution: {integrity: sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==} + /@babel/preset-env/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.6 - '@babel/core': 7.18.6 - '@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.9 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.9 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-async-generator-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-export-namespace-from': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-object-rest-spread': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.6 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.6 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.6 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.6 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-block-scoping': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-classes': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-computed-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-destructuring': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-duplicate-keys': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-for-of': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-function-name': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-systemjs': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-parameters': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-spread': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-template-literals': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-typeof-symbol': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-unicode-escapes': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.6 - '@babel/preset-modules': 0.1.5_@babel+core@7.18.6 - '@babel/types': 7.18.7 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.6 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.6 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.6 - core-js-compat: 3.23.3 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-async-generator-functions': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.9 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.9 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.9 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.9 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.9 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-transform-unicode-escapes': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.9 + '@babel/preset-modules': 0.1.5_@babel+core@7.18.9 + '@babel/types': 7.18.9 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.9 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.9 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.9 + core-js-compat: 3.24.0 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.18.6: + /@babel/preset-modules/0.1.5_@babel+core@7.18.9: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.6 - '@babel/types': 7.18.7 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.9 + '@babel/types': 7.18.9 esutils: 2.0.3 dev: true - /@babel/preset-react/7.18.6_@babel+core@7.18.6: + /@babel/preset-react/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-react-jsx': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.9 dev: true - /@babel/preset-typescript/7.18.6_@babel+core@7.18.6: + /@babel/preset-typescript/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-transform-typescript': 7.18.8_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true - /@babel/runtime/7.18.6: - resolution: {integrity: sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==} + /@babel/runtime/7.18.9: + resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 @@ -2000,30 +1944,30 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.18.6 - '@babel/types': 7.18.7 + '@babel/parser': 7.18.9 + '@babel/types': 7.18.9 dev: true - /@babel/traverse/7.18.6: - resolution: {integrity: sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==} + /@babel/traverse/7.18.9: + resolution: {integrity: sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.18.7 - '@babel/helper-environment-visitor': 7.18.6 - '@babel/helper-function-name': 7.18.6 + '@babel/generator': 7.18.9 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.18.6 - '@babel/types': 7.18.7 + '@babel/parser': 7.18.9 + '@babel/types': 7.18.9 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.18.7: - resolution: {integrity: sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==} + /@babel/types/7.18.9: + resolution: {integrity: sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.18.6 @@ -2038,14 +1982,14 @@ packages: resolution: {integrity: sha512-sBnCqW0nqofE47mxFnw+lvx6kzsQstwaQMVkh66qm/A6IlsnH7WsyGuVXTou8RF2wL4W7ybOoHPvP2WgIo6rhQ==} dev: true - /@changesets/apply-release-plan/6.0.1: - resolution: {integrity: sha512-KGtai19+Uo7k8uco9m+hIPGoet9E6eZq15RIeHoivvgwwI66AC6ievbUO5h0NqGlZjBWnYJQNkuT66kvBYzxsA==} + /@changesets/apply-release-plan/6.0.3: + resolution: {integrity: sha512-/3JKqtDefs2YSEQI6JQo43/MKTLfhPdrW/BFmqnRpW8UmPB+YXjjQgfjR/2KOaObLOkoixcL3WCK4wNkn/Krmw==} dependencies: - '@babel/runtime': 7.18.6 - '@changesets/config': 2.0.1 + '@babel/runtime': 7.18.9 + '@changesets/config': 2.1.0 '@changesets/get-version-range-type': 0.3.2 - '@changesets/git': 1.3.2 - '@changesets/types': 5.0.0 + '@changesets/git': 1.4.1 + '@changesets/types': 5.1.0 '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 @@ -2056,51 +2000,51 @@ packages: semver: 5.7.1 dev: true - /@changesets/assemble-release-plan/5.1.3: - resolution: {integrity: sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w==} + /@changesets/assemble-release-plan/5.2.0: + resolution: {integrity: sha512-ewY24PEbSec2eKX0+KM7eyENA2hUUp6s4LF9p/iBxTtc+TX2Xbx5rZnlLKZkc8tpuQ3PZbyjLFXWhd1PP6SjCg==} dependencies: - '@babel/runtime': 7.18.6 + '@babel/runtime': 7.18.9 '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.2 - '@changesets/types': 5.0.0 + '@changesets/get-dependents-graph': 1.3.3 + '@changesets/types': 5.1.0 '@manypkg/get-packages': 1.1.3 semver: 5.7.1 dev: true - /@changesets/changelog-git/0.1.11: - resolution: {integrity: sha512-sWJvAm+raRPeES9usNpZRkooeEB93lOpUN0Lmjz5vhVAb7XGIZrHEJ93155bpE1S0c4oJ5Di9ZWgzIwqhWP/Wg==} + /@changesets/changelog-git/0.1.12: + resolution: {integrity: sha512-Xv2CPjTBmwjl8l4ZyQ3xrsXZMq8WafPUpEonDpTmcb24XY8keVzt7ZSCJuDz035EiqrjmDKDhODoQ6XiHudlig==} dependencies: - '@changesets/types': 5.0.0 + '@changesets/types': 5.1.0 dev: true - /@changesets/changelog-github/0.4.5: - resolution: {integrity: sha512-J36QJml3mXYm88PLY2qGepmb7j6LA3NM/wuUy6XBwh14qzVTRek+3Xww5oqeZhpK5lK8ELxGahdhSdYQzMv0kA==} + /@changesets/changelog-github/0.4.6: + resolution: {integrity: sha512-ahR/+o3OPodzfG9kucEMU/tEtBgwy6QoJiWi1sDBPme8n3WjT6pBlbhqNYpWAJKilomwfjBGY0MTUTs6r9d1RQ==} dependencies: '@changesets/get-github-info': 0.5.1 - '@changesets/types': 5.0.0 + '@changesets/types': 5.1.0 dotenv: 8.6.0 transitivePeerDependencies: - encoding dev: true - /@changesets/cli/2.23.2: - resolution: {integrity: sha512-o7CWC+mcwOmA3yK5axqHOSYPYEjX/x+nq/s9aX78AyzH1SQZa6L5HX4P9uUXibyjcKynklkmusxv8vN8+hJggA==} + /@changesets/cli/2.24.1: + resolution: {integrity: sha512-7Lz1inqGQjBrXgnXlENtzQ7EmO/9c+09d9oi8XoK4ARqlJe8GpafjqKRobcjcA/TTI7Fn2+cke4CrXFZfVF8Rw==} hasBin: true dependencies: - '@babel/runtime': 7.18.6 - '@changesets/apply-release-plan': 6.0.1 - '@changesets/assemble-release-plan': 5.1.3 - '@changesets/changelog-git': 0.1.11 - '@changesets/config': 2.0.1 + '@babel/runtime': 7.18.9 + '@changesets/apply-release-plan': 6.0.3 + '@changesets/assemble-release-plan': 5.2.0 + '@changesets/changelog-git': 0.1.12 + '@changesets/config': 2.1.0 '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.2 - '@changesets/get-release-plan': 3.0.10 - '@changesets/git': 1.3.2 + '@changesets/get-dependents-graph': 1.3.3 + '@changesets/get-release-plan': 3.0.12 + '@changesets/git': 1.4.1 '@changesets/logger': 0.0.5 - '@changesets/pre': 1.0.11 - '@changesets/read': 0.5.5 - '@changesets/types': 5.0.0 - '@changesets/write': 0.1.8 + '@changesets/pre': 1.0.12 + '@changesets/read': 0.5.7 + '@changesets/types': 5.1.0 + '@changesets/write': 0.1.9 '@manypkg/get-packages': 1.1.3 '@types/is-ci': 3.0.0 '@types/semver': 6.2.3 @@ -2122,13 +2066,13 @@ packages: tty-table: 4.1.6 dev: true - /@changesets/config/2.0.1: - resolution: {integrity: sha512-rJaQWqsjM54T7bDiCoMDcgOuY2HzyovvRs68C//C+tYgbHyjs00JcNVcScjlV47hATrNG1AI8qTD7V9bcO/1cg==} + /@changesets/config/2.1.0: + resolution: {integrity: sha512-43potf+DwYHmH7EY19vxtCq6fqj7UUIrZ4DTwM3pVBqCKxFIytm7GPy7wNAsH06UvMw7NRuOu4QK5HN02GsIrw==} dependencies: '@changesets/errors': 0.1.4 - '@changesets/get-dependents-graph': 1.3.2 + '@changesets/get-dependents-graph': 1.3.3 '@changesets/logger': 0.0.5 - '@changesets/types': 5.0.0 + '@changesets/types': 5.1.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.5 @@ -2140,10 +2084,10 @@ packages: extendable-error: 0.1.7 dev: true - /@changesets/get-dependents-graph/1.3.2: - resolution: {integrity: sha512-tsqA6qZRB86SQuApSoDvI8yEWdyIlo/WLI4NUEdhhxLMJ0dapdeT6rUZRgSZzK1X2nv5YwR0MxQBbDAiDibKrg==} + /@changesets/get-dependents-graph/1.3.3: + resolution: {integrity: sha512-h4fHEIt6X+zbxdcznt1e8QD7xgsXRAXd2qzLlyxoRDFSa6SxJrDAUyh7ZUNdhjBU4Byvp4+6acVWVgzmTy4UNQ==} dependencies: - '@changesets/types': 5.0.0 + '@changesets/types': 5.1.0 '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 @@ -2159,15 +2103,15 @@ packages: - encoding dev: true - /@changesets/get-release-plan/3.0.10: - resolution: {integrity: sha512-QeKHeo+mX1baRy3OIHQePMPebPFymq/ZxS6Bk3Y3FXiU+pXVnjrfqARj1E4xQT5c+48u6ISqJ8tW5f3EZ1/hng==} + /@changesets/get-release-plan/3.0.12: + resolution: {integrity: sha512-TlpEdpxV5ZQmNeHoD6KNKAc01wjRrcu9/CQqzmO4qAlX7ARA4pIuAxd8QZ1AQXv/l4qhHox7SUYH3VLHfarv5w==} dependencies: - '@babel/runtime': 7.18.6 - '@changesets/assemble-release-plan': 5.1.3 - '@changesets/config': 2.0.1 - '@changesets/pre': 1.0.11 - '@changesets/read': 0.5.5 - '@changesets/types': 5.0.0 + '@babel/runtime': 7.18.9 + '@changesets/assemble-release-plan': 5.2.0 + '@changesets/config': 2.1.0 + '@changesets/pre': 1.0.12 + '@changesets/read': 0.5.7 + '@changesets/types': 5.1.0 '@manypkg/get-packages': 1.1.3 dev: true @@ -2175,12 +2119,12 @@ packages: resolution: {integrity: sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg==} dev: true - /@changesets/git/1.3.2: - resolution: {integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==} + /@changesets/git/1.4.1: + resolution: {integrity: sha512-GWwRXEqBsQ3nEYcyvY/u2xUK86EKAevSoKV/IhELoZ13caZ1A1TSak/71vyKILtzuLnFPk5mepP5HjBxr7lZ9Q==} dependencies: - '@babel/runtime': 7.18.6 + '@babel/runtime': 7.18.9 '@changesets/errors': 0.1.4 - '@changesets/types': 5.0.0 + '@changesets/types': 5.1.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 spawndamnit: 2.0.0 @@ -2192,31 +2136,31 @@ packages: chalk: 2.4.2 dev: true - /@changesets/parse/0.3.13: - resolution: {integrity: sha512-wh9Ifa0dungY6d2nMz6XxF6FZ/1I7j+mEgPAqrIyKS64nifTh1Ua82qKKMMK05CL7i4wiB2NYc3SfnnCX3RVeA==} + /@changesets/parse/0.3.14: + resolution: {integrity: sha512-SWnNVyC9vz61ueTbuxvA6b4HXcSx2iaWr2VEa37lPg1Vw+cEyQp7lOB219P7uow1xFfdtIEEsxbzXnqLAAaY8w==} dependencies: - '@changesets/types': 5.0.0 + '@changesets/types': 5.1.0 js-yaml: 3.14.1 dev: true - /@changesets/pre/1.0.11: - resolution: {integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==} + /@changesets/pre/1.0.12: + resolution: {integrity: sha512-RFzWYBZx56MtgMesXjxx7ymyI829/rcIw/41hvz3VJPnY8mDscN7RJyYu7Xm7vts2Fcd+SRcO0T/Ws3I1/6J7g==} dependencies: - '@babel/runtime': 7.18.6 + '@babel/runtime': 7.18.9 '@changesets/errors': 0.1.4 - '@changesets/types': 5.0.0 + '@changesets/types': 5.1.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 dev: true - /@changesets/read/0.5.5: - resolution: {integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==} + /@changesets/read/0.5.7: + resolution: {integrity: sha512-Iteg0ccTPpkJ+qFzY97k7qqdVE5Kz30TqPo9GibpBk2g8tcLFUqf+Qd0iXPLcyhUZpPL1U6Hia1gINHNKIKx4g==} dependencies: - '@babel/runtime': 7.18.6 - '@changesets/git': 1.3.2 + '@babel/runtime': 7.18.9 + '@changesets/git': 1.4.1 '@changesets/logger': 0.0.5 - '@changesets/parse': 0.3.13 - '@changesets/types': 5.0.0 + '@changesets/parse': 0.3.14 + '@changesets/types': 5.1.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 @@ -2226,15 +2170,15 @@ packages: resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} dev: true - /@changesets/types/5.0.0: - resolution: {integrity: sha512-IT1kBLSbAgTS4WtpU6P5ko054hq12vk4tgeIFRVE7Vnm4a/wgbNvBalgiKP0MjEXbCkZbItiGQHkCGxYWR55sA==} + /@changesets/types/5.1.0: + resolution: {integrity: sha512-uUByGATZCdaPkaO9JkBsgGDjEvHyY2Sb0e/J23+cwxBi5h0fxpLF/HObggO/Fw8T2nxK6zDfJbPsdQt5RwYFJA==} dev: true - /@changesets/write/0.1.8: - resolution: {integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==} + /@changesets/write/0.1.9: + resolution: {integrity: sha512-E90ZrsrfJVOOQaP3Mm5Xd7uDwBAqq3z5paVEavTHKA8wxi7NAL8CmjgbGxSFuiP7ubnJA2BuHlrdE4z86voGOg==} dependencies: - '@babel/runtime': 7.18.6 - '@changesets/types': 5.0.0 + '@babel/runtime': 7.18.9 + '@changesets/types': 5.1.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 1.19.1 @@ -2337,10 +2281,10 @@ packages: '@commitlint/execute-rule': 17.0.0 '@commitlint/resolve-extends': 17.0.3 '@commitlint/types': 17.0.0 - '@types/node': 18.0.5 + '@types/node': 18.6.1 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 2.0.2_47blntjhuqtdxyxfczkfdvsynq + cosmiconfig-typescript-loader: 2.0.2_f6w67sjx3imwytyzb2qhabnzqe lodash: 4.17.21 resolve-from: 5.0.0 typescript: 4.7.4 @@ -2426,85 +2370,85 @@ packages: resolution: {integrity: sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==} dev: true - /@csstools/postcss-cascade-layers/1.0.4_postcss@8.4.14: - resolution: {integrity: sha512-zP2tQIFu4C3HueOT+G4Pkla7f2Z6pfXphc1Y9wDE5jS2Ss6dk/asQ7FFEFWKgy3EkYc7E1FSjzhfeZVGg5sjXQ==} + /@csstools/postcss-cascade-layers/1.0.5_postcss@8.4.14: + resolution: {integrity: sha512-Id/9wBT7FkgFzdEpiEWrsVd4ltDxN0rI0QS0SChbeQiSuux3z21SJCRLu6h2cvCEUmaRi+VD0mHFj+GJD4GFnw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.1_444rcjjorr3kpoqtvoodsr46pu + '@csstools/selector-specificity': 2.0.2_444rcjjorr3kpoqtvoodsr46pu postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: true - /@csstools/postcss-color-function/1.1.0_postcss@8.4.14: - resolution: {integrity: sha512-5D5ND/mZWcQoSfYnSPsXtuiFxhzmhxt6pcjrFLJyldj+p0ZN2vvRpYNX+lahFTtMhAYOa2WmkdGINr0yP0CvGA==} + /@csstools/postcss-color-function/1.1.1_postcss@8.4.14: + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14 postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-font-format-keywords/1.0.0_postcss@8.4.14: - resolution: {integrity: sha512-oO0cZt8do8FdVBX8INftvIA4lUrKUSCcWUf9IwH9IPWOgKT22oAZFXeHLoDK7nhB2SmkNycp5brxfNMRLIhd6Q==} + /@csstools/postcss-font-format-keywords/1.0.1_postcss@8.4.14: + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-hwb-function/1.0.1_postcss@8.4.14: - resolution: {integrity: sha512-AMZwWyHbbNLBsDADWmoXT9A5yl5dsGEBeJSJRUJt8Y9n8Ziu7Wstt4MC8jtPW7xjcLecyfJwtnUTNSmOzcnWeg==} + /@csstools/postcss-hwb-function/1.0.2_postcss@8.4.14: + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-ic-unit/1.0.0_postcss@8.4.14: - resolution: {integrity: sha512-i4yps1mBp2ijrx7E96RXrQXQQHm6F4ym1TOD0D69/sjDjZvQ22tqiEvaNw7pFZTUO5b9vWRHzbHzP9+UKuw+bA==} + /@csstools/postcss-ic-unit/1.0.1_postcss@8.4.14: + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14 postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-is-pseudo-class/2.0.6_postcss@8.4.14: - resolution: {integrity: sha512-Oqs396oenuyyMdRXOstxXbxei8fYEgToYjmlYHEi5gk0QLk7xQ72LY7NDr7waWAAmdVzRqPpbE26Q7/cUrGu4Q==} + /@csstools/postcss-is-pseudo-class/2.0.7_postcss@8.4.14: + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.1_444rcjjorr3kpoqtvoodsr46pu + '@csstools/selector-specificity': 2.0.2_444rcjjorr3kpoqtvoodsr46pu postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: true - /@csstools/postcss-normalize-display-values/1.0.0_postcss@8.4.14: - resolution: {integrity: sha512-bX+nx5V8XTJEmGtpWTO6kywdS725t71YSLlxWt78XoHUbELWgoCXeOFymRJmL3SU1TLlKSIi7v52EWqe60vJTQ==} + /@csstools/postcss-normalize-display-values/1.0.1_postcss@8.4.14: + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-oklab-function/1.1.0_postcss@8.4.14: - resolution: {integrity: sha512-e/Q5HopQzmnQgqimG9v3w2IG4VRABsBq3itOcn4bnm+j4enTgQZ0nWsaH/m9GV2otWGQ0nwccYL5vmLKyvP1ww==} + /@csstools/postcss-oklab-function/1.1.1_postcss@8.4.14: + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14 postcss: 8.4.14 @@ -2521,40 +2465,40 @@ packages: postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-stepped-value-functions/1.0.0_postcss@8.4.14: - resolution: {integrity: sha512-q8c4bs1GumAiRenmFjASBcWSLKrbzHzWl6C2HcaAxAXIiL2rUlUWbqQZUjwVG5tied0rld19j/Mm90K3qI26vw==} + /@csstools/postcss-stepped-value-functions/1.0.1_postcss@8.4.14: + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-trigonometric-functions/1.0.1_postcss@8.4.14: - resolution: {integrity: sha512-G78CY/+GePc6dDCTUbwI6TTFQ5fs3N9POHhI6v0QzteGpf6ylARiJUNz9HrRKi4eVYBNXjae1W2766iUEFxHlw==} + /@csstools/postcss-trigonometric-functions/1.0.2_postcss@8.4.14: + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} engines: {node: ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-unset-value/1.0.1_postcss@8.4.14: - resolution: {integrity: sha512-f1G1WGDXEU/RN1TWAxBPQgQudtLnLQPyiWdtypkPC+mVYNKFKH/HYXSxH4MVNqwF8M0eDsoiU7HumJHCg/L/jg==} + /@csstools/postcss-unset-value/1.0.2_postcss@8.4.14: + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: postcss: 8.4.14 dev: true - /@csstools/selector-specificity/2.0.1_444rcjjorr3kpoqtvoodsr46pu: - resolution: {integrity: sha512-aG20vknL4/YjQF9BSV7ts4EWm/yrjagAN7OWBNmlbEOUiu0llj4OGrFoOKK3g2vey4/p2omKCoHrWtPxSwV3HA==} + /@csstools/selector-specificity/2.0.2_444rcjjorr3kpoqtvoodsr46pu: + resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 postcss-selector-parser: ^6.0.10 dependencies: postcss: 8.4.14 @@ -2577,7 +2521,7 @@ packages: ajv: 6.12.6 debug: 4.3.4 espree: 9.3.2 - globals: 13.16.0 + globals: 13.17.0 ignore: 5.2.0 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -2602,236 +2546,11 @@ packages: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} dev: true - /@istanbuljs/load-nyc-config/1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - dependencies: - camelcase: 5.3.1 - find-up: 4.1.0 - get-package-type: 0.1.0 - js-yaml: 3.14.1 - resolve-from: 5.0.0 - dev: true - /@istanbuljs/schema/0.1.3: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} dev: true - /@jest/console/28.1.1: - resolution: {integrity: sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - chalk: 4.1.2 - jest-message-util: 28.1.1 - jest-util: 28.1.1 - slash: 3.0.0 - dev: true - - /@jest/core/28.1.2: - resolution: {integrity: sha512-Xo4E+Sb/nZODMGOPt2G3cMmCBqL4/W2Ijwr7/mrXlq4jdJwcFQ/9KrrJZT2adQRk2otVBXXOz1GRQ4Z5iOgvRQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/console': 28.1.1 - '@jest/reporters': 28.1.2 - '@jest/test-result': 28.1.1 - '@jest/transform': 28.1.2 - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - ci-info: 3.3.2 - exit: 0.1.2 - graceful-fs: 4.2.10 - jest-changed-files: 28.0.2 - jest-config: 28.1.2_@types+node@18.0.5 - jest-haste-map: 28.1.1 - jest-message-util: 28.1.1 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.1 - jest-resolve-dependencies: 28.1.2 - jest-runner: 28.1.2 - jest-runtime: 28.1.2 - jest-snapshot: 28.1.2 - jest-util: 28.1.1 - jest-validate: 28.1.1 - jest-watcher: 28.1.1 - micromatch: 4.0.5 - pretty-format: 28.1.1 - rimraf: 3.0.2 - slash: 3.0.0 - strip-ansi: 6.0.1 - transitivePeerDependencies: - - supports-color - - ts-node - dev: true - - /@jest/environment/28.1.2: - resolution: {integrity: sha512-I0CR1RUMmOzd0tRpz10oUfaChBWs+/Hrvn5xYhMEF/ZqrDaaeHwS8yDBqEWCrEnkH2g+WE/6g90oBv3nKpcm8Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/fake-timers': 28.1.2 - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - jest-mock: 28.1.1 - dev: true - - /@jest/expect-utils/28.1.1: - resolution: {integrity: sha512-n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - jest-get-type: 28.0.2 - dev: true - - /@jest/expect/28.1.2: - resolution: {integrity: sha512-HBzyZBeFBiOelNbBKN0pilWbbrGvwDUwAqMC46NVJmWm8AVkuE58NbG1s7DR4cxFt4U5cVLxofAoHxgvC5MyOw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - expect: 28.1.1 - jest-snapshot: 28.1.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@jest/fake-timers/28.1.2: - resolution: {integrity: sha512-xSYEI7Y0D5FbZN2LsCUj/EKRR1zfQYmGuAUVh6xTqhx7V5JhjgMcK5Pa0iR6WIk0GXiHDe0Ke4A+yERKE9saqg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/types': 28.1.1 - '@sinonjs/fake-timers': 9.1.2 - '@types/node': 18.0.5 - jest-message-util: 28.1.1 - jest-mock: 28.1.1 - jest-util: 28.1.1 - dev: true - - /@jest/globals/28.1.2: - resolution: {integrity: sha512-cz0lkJVDOtDaYhvT3Fv2U1B6FtBnV+OpEyJCzTHM1fdoTsU4QNLAt/H4RkiwEUU+dL4g/MFsoTuHeT2pvbo4Hg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/environment': 28.1.2 - '@jest/expect': 28.1.2 - '@jest/types': 28.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@jest/reporters/28.1.2: - resolution: {integrity: sha512-/whGLhiwAqeCTmQEouSigUZJPVl7sW8V26EiboImL+UyXznnr1a03/YZ2BX8OlFw0n+Zlwu+EZAITZtaeRTxyA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 28.1.1 - '@jest/test-result': 28.1.1 - '@jest/transform': 28.1.2 - '@jest/types': 28.1.1 - '@jridgewell/trace-mapping': 0.3.14 - '@types/node': 18.0.5 - chalk: 4.1.2 - collect-v8-coverage: 1.0.1 - exit: 0.1.2 - glob: 7.2.3 - graceful-fs: 4.2.10 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.0 - istanbul-lib-report: 3.0.0 - istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.4 - jest-message-util: 28.1.1 - jest-util: 28.1.1 - jest-worker: 28.1.1 - slash: 3.0.0 - string-length: 4.0.2 - strip-ansi: 6.0.1 - terminal-link: 2.1.1 - v8-to-istanbul: 9.0.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@jest/schemas/28.0.2: - resolution: {integrity: sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@sinclair/typebox': 0.23.5 - dev: true - - /@jest/source-map/28.1.2: - resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jridgewell/trace-mapping': 0.3.14 - callsites: 3.1.0 - graceful-fs: 4.2.10 - dev: true - - /@jest/test-result/28.1.1: - resolution: {integrity: sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/console': 28.1.1 - '@jest/types': 28.1.1 - '@types/istanbul-lib-coverage': 2.0.4 - collect-v8-coverage: 1.0.1 - dev: true - - /@jest/test-sequencer/28.1.1: - resolution: {integrity: sha512-nuL+dNSVMcWB7OOtgb0EGH5AjO4UBCt68SLP08rwmC+iRhyuJWS9MtZ/MpipxFwKAlHFftbMsydXqWre8B0+XA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/test-result': 28.1.1 - graceful-fs: 4.2.10 - jest-haste-map: 28.1.1 - slash: 3.0.0 - dev: true - - /@jest/transform/28.1.2: - resolution: {integrity: sha512-3o+lKF6iweLeJFHBlMJysdaPbpoMmtbHEFsjzSv37HIq/wWt5ijTeO2Yf7MO5yyczCopD507cNwNLeX8Y/CuIg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@babel/core': 7.18.6 - '@jest/types': 28.1.1 - '@jridgewell/trace-mapping': 0.3.14 - babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 - convert-source-map: 1.8.0 - fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.10 - jest-haste-map: 28.1.1 - jest-regex-util: 28.0.2 - jest-util: 28.1.1 - micromatch: 4.0.5 - pirates: 4.0.5 - slash: 3.0.0 - write-file-atomic: 4.0.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@jest/types/28.1.1: - resolution: {integrity: sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/schemas': 28.0.2 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 - '@types/node': 18.0.5 - '@types/yargs': 17.0.10 - chalk: 4.1.2 - dev: true - /@jridgewell/gen-mapping/0.1.1: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} engines: {node: '>=6.0.0'} @@ -2891,7 +2610,7 @@ packages: /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.18.6 + '@babel/runtime': 7.18.9 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -2900,7 +2619,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.18.6 + '@babel/runtime': 7.18.9 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -3027,7 +2746,7 @@ packages: '@markuplint/html-parser': 2.2.2 '@markuplint/ml-ast': 2.0.1-dev.20220307.0 '@markuplint/parser-utils': 2.2.1 - svelte: 3.48.0 + svelte: 3.49.0 tslib: 2.4.0 transitivePeerDependencies: - supports-color @@ -3045,14 +2764,14 @@ packages: - supports-color dev: true - /@markuplint/vue-parser/2.3.2_eslint@8.19.0: + /@markuplint/vue-parser/2.3.2_eslint@8.20.0: resolution: {integrity: sha512-9c4GetUNLE/q4d2G2jGwkoVSTAr8iM4om/cpGs2rjKRdczTgIADeTzjx2a88wEkWlBlVojdovR7t532mufomPA==} dependencies: '@markuplint/html-parser': 2.2.2 '@markuplint/ml-ast': 2.0.1-dev.20220307.0 '@markuplint/parser-utils': 2.2.1 tslib: 2.4.0 - vue-eslint-parser: 8.3.0_eslint@8.19.0 + vue-eslint-parser: 8.3.0_eslint@8.20.0 transitivePeerDependencies: - eslint - supports-color @@ -3064,14 +2783,14 @@ packages: '@markuplint/ml-spec': 2.1.1 dev: true - /@mdx-js/loader/2.1.2_webpack@5.73.0: + /@mdx-js/loader/2.1.2_webpack@5.74.0: resolution: {integrity: sha512-P7CWhrqE5rZ3ewBngZ9t/zQPbSq42iuty78K3zJ8Bl518qnOX1d106c+n7I/zHODPAmw9JfYMQdbv9WrrHa0DA==} peerDependencies: webpack: '>=4' dependencies: '@mdx-js/mdx': 2.1.2 source-map: 0.7.4 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 transitivePeerDependencies: - supports-color dev: true @@ -3082,10 +2801,10 @@ packages: '@types/estree-jsx': 0.0.1 '@types/mdx': 2.0.2 astring: 1.8.3 - estree-util-build-jsx: 2.1.0 + estree-util-build-jsx: 2.2.0 estree-util-is-identifier-name: 2.0.1 estree-walker: 3.0.1 - hast-util-to-estree: 2.0.2 + hast-util-to-estree: 2.1.0 markdown-extensions: 1.1.1 periscopic: 3.0.4 remark-mdx: 2.1.2 @@ -3121,8 +2840,8 @@ packages: fastq: 1.13.0 dev: true - /@npmcli/config/4.1.0: - resolution: {integrity: sha512-cPQmIQ2Q0vuOfrenrA3isikdMFMAHgzlXV+EmvZ8f2JeJsU5xTU2bG7ipXECiMvPF9nM+QDnMLuIg8QLw9H4xg==} + /@npmcli/config/4.2.0: + resolution: {integrity: sha512-imWNz5dNWb2u+y41jyxL2WB389tkhu3a01Rchn16O/ur6GrnKySgOqdNG3N/9Z+mqxdISMEGKXI/POCauzz0dA==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} dependencies: '@npmcli/map-workspaces': 2.0.3 @@ -3149,10 +2868,6 @@ packages: resolution: {integrity: sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA==} dev: true - /@pkgr/es-modules/0.6.1: - resolution: {integrity: sha512-dpeWpJoUh0XAAU3W2VMgn+k/lP3zcFdxmTj4RSV6R4Hxy1JewyR+KQS/L8Hdrs4dTLiH5g7mb9Uf7frpfEqbww==} - dev: true - /@pkgr/es-modules/0.6.2: resolution: {integrity: sha512-Fx+TilP+dhat1fvnrE2pEP5xcSQDLSjPV+Uv1IMxsSX6I/G4AWkLtSPwm5b7CN/7Qmr1zt0/9RJYELAWWVSDmw==} dev: true @@ -3181,35 +2896,35 @@ packages: engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} hasBin: true dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-proposal-decorators': 7.18.6_@babel+core@7.18.6 - '@babel/preset-env': 7.18.6_@babel+core@7.18.6 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-proposal-decorators': 7.18.9_@babel+core@7.18.9 + '@babel/preset-env': 7.18.9_@babel+core@7.18.9 + '@babel/preset-typescript': 7.18.6_@babel+core@7.18.9 '@pkgr/es-modules': 0.6.2 - '@pkgr/umd-globals': 0.8.1 + '@pkgr/umd-globals': 0.8.2 '@pkgr/utils': 2.3.0 - '@rollup/plugin-alias': 3.1.9_rollup@2.75.7 - '@rollup/plugin-babel': 5.3.1_fb3qe53zzddvqjqqltveoanfhe - '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 - '@rollup/plugin-json': 4.1.0_rollup@2.75.7 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 - '@rollup/plugin-replace': 4.0.0_rollup@2.75.7 - '@rollup/plugin-url': 7.0.0_rollup@2.75.7 + '@rollup/plugin-alias': 3.1.9_rollup@2.77.2 + '@rollup/plugin-babel': 5.3.1_oqwheajkaay7jaqpswtfouael4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.77.2 + '@rollup/plugin-json': 4.1.0_rollup@2.77.2 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.2 + '@rollup/plugin-replace': 4.0.0_rollup@2.77.2 + '@rollup/plugin-url': 7.0.0_rollup@2.77.2 builtin-modules: 3.3.0 - commander: 9.3.0 - core-js: 3.23.3 + commander: 9.4.0 + core-js: 3.24.0 debug: 4.3.4 - esbuild: 0.14.48 + esbuild: 0.14.50 is-glob: 4.0.3 jsox: 1.2.113 lodash-es: 4.17.21 micromatch: 4.0.5 postcss: 8.4.14 - rollup: 2.75.7 + rollup: 2.77.2 rollup-plugin-copy: 3.4.0 - rollup-plugin-esbuild: 4.9.1_zqo64ogfzzycugxswskc4gmbhu + rollup-plugin-esbuild: 4.9.1_z4wjf5stc47okcxkgg4qwbc5si rollup-plugin-postcss: 4.0.2_postcss@8.4.14 - rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.77.2 rollup-plugin-unassert: 0.4.0 rollup-plugin-vue: 6.0.0_@vue+compiler-sfc@3.2.37 rollup-plugin-vue-jsx-compat: 0.0.6 @@ -3222,8 +2937,8 @@ packages: - ts-node dev: true - /@pkgr/umd-globals/0.8.1: - resolution: {integrity: sha512-kfRd9icobfcEPEwVps7PHBhiIVGUwcDGLFc/Shdm4a81kgVa3ktijiEEtzHWk9BrXIqa+64ZOlZaugrvf2X3Ug==} + /@pkgr/umd-globals/0.8.2: + resolution: {integrity: sha512-BN28H4aFKL8YH+ur6TCdyAQK+JjtoWAK0qxG+xVrRU3X/tks4kUVHhgETFgQbH7gy1u/KDcvU2VxBN/Aukc7IQ==} dev: true /@pkgr/utils/2.3.0: @@ -3238,11 +2953,11 @@ packages: tslib: 2.4.0 dev: true - /@pkgr/webpack-mdx/2.0.3_r3ajdkjnj6rosfo6qaenjkgcp4: + /@pkgr/webpack-mdx/2.0.3_crvhxyxb5rqemacfpd756plvfe: resolution: {integrity: sha512-RnUg9xCL0PhyDEzNw5zvp3gfgaWMPSnHmDZPRQP9dBs5XsPzt7cY9NAaCfjHDJaPT0uN8vH5izQV6uYmtVoOlw==} dependencies: - '@mdx-js/loader': 2.1.2_webpack@5.73.0 - '@pkgr/webpack-react': 2.0.2_lvgelkngcicydbgcs7wpb5p2ey + '@mdx-js/loader': 2.1.2_webpack@5.74.0 + '@pkgr/webpack-react': 2.0.3_i2noojdr7jr6wcv4gk4cdh34xa remark-gfm: 3.0.1 transitivePeerDependencies: - '@swc/core' @@ -3265,13 +2980,13 @@ packages: - webpack-cli dev: true - /@pkgr/webpack-react/2.0.2_lvgelkngcicydbgcs7wpb5p2ey: - resolution: {integrity: sha512-5/ocnSEyIPINOeeG4jJge4LgIZMzebxHq44UEZQTSUhZGurZ2lMJ52Q85D6EeswUgosmT8b/DRoSrycjg+twLw==} + /@pkgr/webpack-react/2.0.3_i2noojdr7jr6wcv4gk4cdh34xa: + resolution: {integrity: sha512-1bYLFrgURBELpm7Muu7DIgGGt+Sq60/kp8Ao1Irt7+95OhEH991zlTEpoChGa5PFP3QIzud7W7Hk2F2qjawC9g==} peerDependencies: react: '>=16.0.0' dependencies: - '@pkgr/webpack': 3.1.2_t54fbwee6mwva2xdvyly4ct6vm - '@svgr/webpack': 6.2.1 + '@pkgr/webpack': 3.2.0_xztulfwd52ja2ogv5skgvkjgqy + '@svgr/webpack': 6.3.1 react: 18.2.0 transitivePeerDependencies: - '@swc/core' @@ -3292,50 +3007,50 @@ packages: - webpack-cli dev: true - /@pkgr/webpack/3.1.2_t54fbwee6mwva2xdvyly4ct6vm: - resolution: {integrity: sha512-3wJuBsrPpYxHkjMcioqNIABEm4uCvRz7FRJUcc/+9ipDE2nrIYnyIxx7Mw9UjeMQTChoGdiz2nzxnrwcaHivaw==} + /@pkgr/webpack/3.2.0_xztulfwd52ja2ogv5skgvkjgqy: + resolution: {integrity: sha512-0jEpKZ9HN5jyi+MSO2Edkq5B7TDqFSrrXR7V6+pLo6Kcw6f60/VKjwcRlR/awJdB1IulZ84RWyHUao7NX06jyQ==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true dependencies: - '@1stg/babel-preset': 3.1.3_u4pnq6aitzjyryj6xisyu635ni - '@1stg/postcss-config': 3.2.3_ueju2bwfzqc5aneogkggyoaage - '@babel/core': 7.18.6 - '@pkgr/es-modules': 0.6.1 - '@pkgr/umd-globals': 0.8.1 + '@1stg/babel-preset': 3.1.4_p2nspltq2mrxfqigdmhjpzxdbm + '@1stg/postcss-config': 3.2.4_bujjonwylnebbx3cl7qckr3eti + '@babel/core': 7.18.9 + '@pkgr/es-modules': 0.6.2 + '@pkgr/umd-globals': 0.8.2 '@pkgr/utils': 2.3.0 - '@soda/friendly-errors-webpack-plugin': 1.8.1_webpack@5.73.0 - babel-loader: 8.2.5_fswvdo7jykdwhfxrdcvghfn6pa + '@soda/friendly-errors-webpack-plugin': 1.8.1_webpack@5.74.0 + babel-loader: 8.2.5_y3lv6tn6yokher4u7xj4j22px4 case-sensitive-paths-webpack-plugin: 2.4.0 - commander: 9.3.0 - copy-webpack-plugin: 11.0.0_webpack@5.73.0 - core-js: 3.23.3 - css-loader: 6.7.1_webpack@5.73.0 + commander: 9.4.0 + copy-webpack-plugin: 11.0.0_webpack@5.74.0 + core-js: 3.24.0 + css-loader: 6.7.1_webpack@5.74.0 debug: 4.3.4 - file-loader: 6.2.0_webpack@5.73.0 - html-loader: 3.1.2_webpack@5.73.0 - html-webpack-harddisk-plugin: 2.0.0_vaqkluxv57wdoiytlozrwxzyse - html-webpack-plugin: 5.5.0_webpack@5.73.0 + file-loader: 6.2.0_webpack@5.74.0 + html-loader: 4.1.0_webpack@5.74.0 + html-webpack-harddisk-plugin: 2.0.0_dseqt6curza6cwqlyc3eowsnru + html-webpack-plugin: 5.5.0_webpack@5.74.0 jsox: 1.2.113 - less-loader: 11.0.0_less@4.1.3+webpack@5.73.0 - mini-css-extract-plugin: 2.6.1_webpack@5.73.0 + less-loader: 11.0.0_less@4.1.3+webpack@5.74.0 + mini-css-extract-plugin: 2.6.1_webpack@5.74.0 postcss: 8.4.14 postcss-load-config: 4.0.1_postcss@8.4.14 - postcss-loader: 7.0.0_mepnsno3xmng6eyses4tepu7bu + postcss-loader: 7.0.1_m6qh27jiicejwnzfgs742cokpe pug: 3.0.2 pug-loader: 2.4.0_pug@3.0.2 pug-plain-loader: 1.1.0_pug@3.0.2 - raw-loader: 4.0.2_webpack@5.73.0 - sass: 1.53.0 - sass-loader: 13.0.2_sass@1.53.0+webpack@5.73.0 - style-loader: 3.3.1_webpack@5.73.0 + raw-loader: 4.0.2_webpack@5.74.0 + sass: 1.54.0 + sass-loader: 13.0.2_sass@1.54.0+webpack@5.74.0 + style-loader: 3.3.1_webpack@5.74.0 stylus: 0.58.1 - stylus-loader: 7.0.0_upoysbgu66vbwwn3ra5xuurp4y + stylus-loader: 7.0.0_opfhcjf5g5texmct6gy27c44rm tsconfig-paths-webpack-plugin: 3.5.2 tslib: 2.4.0 - url-loader: 4.1.1_ljnyroaqobwke7fusd7ro2cgzm - webpack: 5.73.0_esbuild@0.14.48 - webpack-dev-server: 4.9.3_debug@4.3.4+webpack@5.73.0 - workbox-webpack-plugin: 6.5.3_webpack@5.73.0 + url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu + webpack: 5.74.0_esbuild@0.14.50 + webpack-dev-server: 4.9.3_debug@4.3.4+webpack@5.74.0 + workbox-webpack-plugin: 6.5.3_webpack@5.74.0 transitivePeerDependencies: - '@swc/core' - '@types/babel__core' @@ -3369,8 +3084,8 @@ packages: pug-lexer: 5.0.1 dev: true - /@prettier/plugin-ruby/3.1.2: - resolution: {integrity: sha512-0riBsZYu9MEdWgiZPKpZTdCbvLOk01xTvOs1wJbO7Hw4Fd/rX4Qhz+qsgJm+zloO99Zng88OQy96nSb6KUQHZg==} + /@prettier/plugin-ruby/3.2.0: + resolution: {integrity: sha512-hCE4OVohe79FBAy0s9QLq8PmUc9cD4NbQtm2NHPWbSMq3mwHCRaxA+KYDRhHvG4AQIcf4YeQM8oRuTNyvLA41w==} dependencies: prettier: 2.7.1 dev: true @@ -3382,17 +3097,17 @@ packages: prettier: 2.7.1 dev: true - /@rollup/plugin-alias/3.1.9_rollup@2.75.7: + /@rollup/plugin-alias/3.1.9_rollup@2.77.2: resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==} engines: {node: '>=8.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - rollup: 2.75.7 + rollup: 2.77.2 slash: 3.0.0 dev: true - /@rollup/plugin-babel/5.3.1_fb3qe53zzddvqjqqltveoanfhe: + /@rollup/plugin-babel/5.3.1_oqwheajkaay7jaqpswtfouael4: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -3403,88 +3118,88 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@rollup/pluginutils': 3.1.0_rollup@2.75.7 - rollup: 2.75.7 + '@rollup/pluginutils': 3.1.0_rollup@2.77.2 + rollup: 2.77.2 dev: true - /@rollup/plugin-commonjs/22.0.1_rollup@2.75.7: + /@rollup/plugin-commonjs/22.0.1_rollup@2.77.2: resolution: {integrity: sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + '@rollup/pluginutils': 3.1.0_rollup@2.77.2 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 resolve: 1.22.1 - rollup: 2.75.7 + rollup: 2.77.2 dev: true - /@rollup/plugin-json/4.1.0_rollup@2.75.7: + /@rollup/plugin-json/4.1.0_rollup@2.77.2: resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.7 - rollup: 2.75.7 + '@rollup/pluginutils': 3.1.0_rollup@2.77.2 + rollup: 2.77.2 dev: true - /@rollup/plugin-node-resolve/11.2.1_rollup@2.75.7: + /@rollup/plugin-node-resolve/11.2.1_rollup@2.77.2: resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + '@rollup/pluginutils': 3.1.0_rollup@2.77.2 '@types/resolve': 1.17.1 builtin-modules: 3.3.0 deepmerge: 4.2.2 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.75.7 + rollup: 2.77.2 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.7: + /@rollup/plugin-node-resolve/13.3.0_rollup@2.77.2: resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + '@rollup/pluginutils': 3.1.0_rollup@2.77.2 '@types/resolve': 1.17.1 deepmerge: 4.2.2 is-builtin-module: 3.1.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.75.7 + rollup: 2.77.2 dev: true - /@rollup/plugin-replace/2.4.2_rollup@2.75.7: + /@rollup/plugin-replace/2.4.2_rollup@2.77.2: resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + '@rollup/pluginutils': 3.1.0_rollup@2.77.2 magic-string: 0.25.9 - rollup: 2.75.7 + rollup: 2.77.2 dev: true - /@rollup/plugin-replace/4.0.0_rollup@2.75.7: + /@rollup/plugin-replace/4.0.0_rollup@2.77.2: resolution: {integrity: sha512-+rumQFiaNac9y64OHtkHGmdjm7us9bo1PlbgQfdihQtuNxzjpaB064HbRnewUOggLQxVCCyINfStkgmBeQpv1g==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + '@rollup/pluginutils': 3.1.0_rollup@2.77.2 magic-string: 0.25.9 - rollup: 2.75.7 + rollup: 2.77.2 dev: true - /@rollup/plugin-url/7.0.0_rollup@2.75.7: + /@rollup/plugin-url/7.0.0_rollup@2.77.2: resolution: {integrity: sha512-cIWcEObrmEPAU8q8NluGWlCPlQDuoSKvkyI3eOFO4fx6W02mLNj4ZEiUT0X2mKMIvQzoWL1feEK9d1yr1ICgrw==} engines: {node: '>=10.0.0'} peerDependencies: @@ -3493,10 +3208,10 @@ packages: '@rollup/pluginutils': 4.2.1 make-dir: 3.1.0 mime: 2.6.0 - rollup: 2.75.7 + rollup: 2.77.2 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.75.7: + /@rollup/pluginutils/3.1.0_rollup@2.77.2: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -3505,7 +3220,7 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 2.75.7 + rollup: 2.77.2 dev: true /@rollup/pluginutils/4.2.1: @@ -3516,28 +3231,43 @@ packages: picomatch: 2.3.1 dev: true - /@sinclair/typebox/0.23.5: - resolution: {integrity: sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==} - dev: true - /@sindresorhus/is/0.7.0: resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==} engines: {node: '>=4'} dev: true - /@sinonjs/commons/1.8.3: - resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==} + /@size-limit/esbuild/7.0.8_size-limit@7.0.8: + resolution: {integrity: sha512-AzCrxJJThDvHrBNoolebYVgXu46c6HuS3fOxoXr3V0YWNM0qz81z5F3j7RruzboZnls8ZgME4WrH6GM5rB9gtA==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + peerDependencies: + size-limit: 7.0.8 dependencies: - type-detect: 4.0.8 + esbuild: 0.14.50 + nanoid: 3.3.4 + size-limit: 7.0.8 + dev: true + + /@size-limit/file/7.0.8_size-limit@7.0.8: + resolution: {integrity: sha512-1KeFQuMXIXAH/iELqIX7x+YNYDFvzIvmxcp9PrdwEoSNL0dXdaDIo9WE/yz8xvOmUcKaLfqbWkL75DM0k91WHQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + peerDependencies: + size-limit: 7.0.8 + dependencies: + semver: 7.3.5 + size-limit: 7.0.8 dev: true - /@sinonjs/fake-timers/9.1.2: - resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + /@size-limit/preset-small-lib/7.0.8_size-limit@7.0.8: + resolution: {integrity: sha512-CT8nIYA/c2CSD+X4rAUgwqYccQMahJ6rBnaZxvi3YKFdkXIbuGNXHNjHsYaFksgwG9P4UjG/unyO5L73f3zQBw==} + peerDependencies: + size-limit: 7.0.8 dependencies: - '@sinonjs/commons': 1.8.3 + '@size-limit/esbuild': 7.0.8_size-limit@7.0.8 + '@size-limit/file': 7.0.8_size-limit@7.0.8 + size-limit: 7.0.8 dev: true - /@soda/friendly-errors-webpack-plugin/1.8.1_webpack@5.73.0: + /@soda/friendly-errors-webpack-plugin/1.8.1_webpack@5.74.0: resolution: {integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==} engines: {node: '>=8.0.0'} peerDependencies: @@ -3547,7 +3277,7 @@ packages: error-stack-parser: 2.1.4 string-width: 4.2.3 strip-ansi: 6.0.1 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /@stylelint/postcss-css-in-js/0.38.0_ryeeqdz73dmnun3unz5nxq65vi: @@ -3556,7 +3286,7 @@ packages: postcss: '>=7.0.0' postcss-syntax: '>=0.36.2' dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 postcss: 8.4.14 postcss-syntax: 0.36.2_wwhk6mm4vrxkapktxrodsiot2e transitivePeerDependencies: @@ -3572,153 +3302,153 @@ packages: string.prototype.matchall: 4.0.7 dev: true - /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.18.6: - resolution: {integrity: sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==} + /@svgr/babel-plugin-add-jsx-attribute/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-jDBKArXYO1u0B1dmd2Nf8Oy6aTF5vLDfLoO9Oon/GLkqZ/NiggYWZA+a2HpUMH4ITwNqS3z43k8LWApB8S583w==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.18.6: - resolution: {integrity: sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==} + /@svgr/babel-plugin-remove-jsx-attribute/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-dQzyJ4prwjcFd929T43Z8vSYiTlTu8eafV40Z2gO7zy/SV5GT+ogxRJRBIKWomPBOiaVXFg3jY4S5hyEN3IBjQ==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.18.6: - resolution: {integrity: sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==} + /@svgr/babel-plugin-remove-jsx-empty-expression/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-HBOUc1XwSU67fU26V5Sfb8MQsT0HvUyxru7d0oBJ4rA2s4HW3PhyAPC7fV/mdsSGpAvOdd8Wpvkjsr0fWPUO7A==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.18.6: - resolution: {integrity: sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==} + /@svgr/babel-plugin-replace-jsx-attribute-value/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-C12e6aN4BXAolRrI601gPn5MDFCRHO7C4TM8Kks+rDtl8eEq+NN1sak0eAzJu363x3TmHXdZn7+Efd2nr9I5dA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.18.6: - resolution: {integrity: sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==} + /@svgr/babel-plugin-svg-dynamic-title/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-6NU55Mmh3M5u2CfCCt6TX29/pPneutrkJnnDCHbKZnjukZmmgUAZLtZ2g6ZoSPdarowaQmAiBRgAHqHmG0vuqA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.18.6: - resolution: {integrity: sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==} + /@svgr/babel-plugin-svg-em-dimensions/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-HV1NGHYTTe1vCNKlBgq/gKuCSfaRlKcHIADn7P8w8U3Zvujdw1rmusutghJ1pZJV7pDt3Gt8ws+SVrqHnBO/Qw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.18.6: - resolution: {integrity: sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==} + /@svgr/babel-plugin-transform-react-native-svg/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-2wZhSHvTolFNeKDAN/ZmIeSz2O9JSw72XD+o2bNp2QAaWqa8KGpn5Yk5WHso6xqfSAiRzAE+GXlsrBO4UP9LLw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.18.6: - resolution: {integrity: sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==} + /@svgr/babel-plugin-transform-svg-component/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-cZ8Tr6ZAWNUFfDeCKn/pGi976iWSkS8ijmEYKosP+6ktdZ7lW9HVLHojyusPw3w0j8PI4VBeWAXAmi/2G7owxw==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 dev: true - /@svgr/babel-preset/6.2.0_@babel+core@7.18.6: - resolution: {integrity: sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==} + /@svgr/babel-preset/6.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-tQtWtzuMMQ3opH7je+MpwfuRA1Hf3cKdSgTtAYwOBDfmhabP7rcTfBi3E7V3MuwJNy/Y02/7/RutvwS1W4Qv9g==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@svgr/babel-plugin-add-jsx-attribute': 6.0.0_@babel+core@7.18.6 - '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0_@babel+core@7.18.6 - '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0_@babel+core@7.18.6 - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0_@babel+core@7.18.6 - '@svgr/babel-plugin-svg-dynamic-title': 6.0.0_@babel+core@7.18.6 - '@svgr/babel-plugin-svg-em-dimensions': 6.0.0_@babel+core@7.18.6 - '@svgr/babel-plugin-transform-react-native-svg': 6.0.0_@babel+core@7.18.6 - '@svgr/babel-plugin-transform-svg-component': 6.2.0_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@svgr/babel-plugin-add-jsx-attribute': 6.3.1_@babel+core@7.18.9 + '@svgr/babel-plugin-remove-jsx-attribute': 6.3.1_@babel+core@7.18.9 + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.3.1_@babel+core@7.18.9 + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.3.1_@babel+core@7.18.9 + '@svgr/babel-plugin-svg-dynamic-title': 6.3.1_@babel+core@7.18.9 + '@svgr/babel-plugin-svg-em-dimensions': 6.3.1_@babel+core@7.18.9 + '@svgr/babel-plugin-transform-react-native-svg': 6.3.1_@babel+core@7.18.9 + '@svgr/babel-plugin-transform-svg-component': 6.3.1_@babel+core@7.18.9 dev: true - /@svgr/core/6.2.1: - resolution: {integrity: sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==} + /@svgr/core/6.3.1: + resolution: {integrity: sha512-Sm3/7OdXbQreemf9aO25keerZSbnKMpGEfmH90EyYpj1e8wMD4TuwJIb3THDSgRMWk1kYJfSRulELBy4gVgZUA==} engines: {node: '>=10'} dependencies: - '@svgr/plugin-jsx': 6.2.1_@svgr+core@6.2.1 + '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1 camelcase: 6.3.0 cosmiconfig: 7.0.1 transitivePeerDependencies: - supports-color dev: true - /@svgr/hast-util-to-babel-ast/6.2.1: - resolution: {integrity: sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==} + /@svgr/hast-util-to-babel-ast/6.3.1: + resolution: {integrity: sha512-NgyCbiTQIwe3wHe/VWOUjyxmpUmsrBjdoIxKpXt3Nqc3TN30BpJG22OxBvVzsAh9jqep0w0/h8Ywvdk3D9niNQ==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.18.7 - entities: 3.0.1 + '@babel/types': 7.18.9 + entities: 4.3.1 dev: true - /@svgr/plugin-jsx/6.2.1_@svgr+core@6.2.1: - resolution: {integrity: sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==} + /@svgr/plugin-jsx/6.3.1_@svgr+core@6.3.1: + resolution: {integrity: sha512-r9+0mYG3hD4nNtUgsTXWGYJomv/bNd7kC16zvsM70I/bGeoCi/3lhTmYqeN6ChWX317OtQCSZZbH4wq9WwoXbw==} engines: {node: '>=10'} peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@babel/core': 7.18.6 - '@svgr/babel-preset': 6.2.0_@babel+core@7.18.6 - '@svgr/core': 6.2.1 - '@svgr/hast-util-to-babel-ast': 6.2.1 + '@babel/core': 7.18.9 + '@svgr/babel-preset': 6.3.1_@babel+core@7.18.9 + '@svgr/core': 6.3.1 + '@svgr/hast-util-to-babel-ast': 6.3.1 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color dev: true - /@svgr/plugin-svgo/6.2.0_@svgr+core@6.2.1: - resolution: {integrity: sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q==} + /@svgr/plugin-svgo/6.3.1_@svgr+core@6.3.1: + resolution: {integrity: sha512-yJIjTDKPYqzFVjmsbH5EdIwEsmKxjxdXSGJVLeUgwZOZPAkNQmD1v7LDbOdOKbR44FG8465Du+zWPdbYGnbMbw==} engines: {node: '>=10'} peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@svgr/core': 6.2.1 + '@svgr/core': 6.3.1 cosmiconfig: 7.0.1 deepmerge: 4.2.2 svgo: 2.8.0 dev: true - /@svgr/webpack/6.2.1: - resolution: {integrity: sha512-h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw==} + /@svgr/webpack/6.3.1: + resolution: {integrity: sha512-eODxwIUShLxSMaRjzJtrj9wg89D75JLczvWg9SaB5W+OtVTkiC1vdGd8+t+pf5fTlBOy4RRXAq7x1E3DUl3D0A==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-transform-react-constant-elements': 7.18.6_@babel+core@7.18.6 - '@babel/preset-env': 7.18.6_@babel+core@7.18.6 - '@babel/preset-react': 7.18.6_@babel+core@7.18.6 - '@babel/preset-typescript': 7.18.6_@babel+core@7.18.6 - '@svgr/core': 6.2.1 - '@svgr/plugin-jsx': 6.2.1_@svgr+core@6.2.1 - '@svgr/plugin-svgo': 6.2.0_@svgr+core@6.2.1 + '@babel/core': 7.18.9 + '@babel/plugin-transform-react-constant-elements': 7.18.9_@babel+core@7.18.9 + '@babel/preset-env': 7.18.9_@babel+core@7.18.9 + '@babel/preset-react': 7.18.6_@babel+core@7.18.9 + '@babel/preset-typescript': 7.18.6_@babel+core@7.18.9 + '@svgr/core': 6.3.1 + '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1 + '@svgr/plugin-svgo': 6.3.1_@svgr+core@6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -3740,6 +3470,11 @@ packages: chevrotain: 4.1.1 dev: true + /@tootallnate/once/2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true + /@trysound/sax/0.2.0: resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} @@ -3764,68 +3499,49 @@ packages: /@types/acorn/4.0.6: resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} dependencies: - '@types/estree': 0.0.51 - dev: true - - /@types/babel__core/7.1.19: - resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} - dependencies: - '@babel/parser': 7.18.6 - '@babel/types': 7.18.7 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.17.1 - dev: true - - /@types/babel__generator/7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} - dependencies: - '@babel/types': 7.18.7 - dev: true - - /@types/babel__template/7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} - dependencies: - '@babel/parser': 7.18.6 - '@babel/types': 7.18.7 - dev: true - - /@types/babel__traverse/7.17.1: - resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} - dependencies: - '@babel/types': 7.18.7 + '@types/estree': 1.0.0 dev: true /@types/body-parser/1.19.2: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 + dev: true + + /@types/chai-subset/1.3.3: + resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + dependencies: + '@types/chai': 4.3.1 + dev: true + + /@types/chai/4.3.1: + resolution: {integrity: sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ==} dev: true /@types/concat-stream/2.0.0: resolution: {integrity: sha512-t3YCerNM7NTVjLuICZo5gYAXYoDvpuuTceCcFQWcDQz26kxUR5uIWolxbIR5jRNIXpMqhOpW/b8imCR1LEmuJw==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/connect-history-api-fallback/1.3.5: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: - '@types/express-serve-static-core': 4.17.29 - '@types/node': 18.0.5 + '@types/express-serve-static-core': 4.17.30 + '@types/node': 18.6.1 dev: true /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/debug/4.1.7: @@ -3838,20 +3554,26 @@ packages: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: '@types/eslint': 8.4.5 - '@types/estree': 0.0.52 + '@types/estree': 0.0.51 dev: true /@types/eslint/8.4.5: resolution: {integrity: sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==} dependencies: - '@types/estree': 0.0.52 + '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 dev: true /@types/estree-jsx/0.0.1: resolution: {integrity: sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==} dependencies: - '@types/estree': 0.0.52 + '@types/estree': 1.0.0 + dev: true + + /@types/estree-jsx/1.0.0: + resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==} + dependencies: + '@types/estree': 1.0.0 dev: true /@types/estree/0.0.39: @@ -3862,14 +3584,14 @@ packages: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} dev: true - /@types/estree/0.0.52: - resolution: {integrity: sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==} + /@types/estree/1.0.0: + resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} dev: true - /@types/express-serve-static-core/4.17.29: - resolution: {integrity: sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==} + /@types/express-serve-static-core/4.17.30: + resolution: {integrity: sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: true @@ -3878,7 +3600,7 @@ packages: resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==} dependencies: '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.29 + '@types/express-serve-static-core': 4.17.30 '@types/qs': 6.9.7 '@types/serve-static': 1.13.10 dev: true @@ -3886,20 +3608,14 @@ packages: /@types/fs-extra/8.1.2: resolution: {integrity: sha512-SvSrYXfWSc7R4eqnOzbQF4TZmfpNSM9FrSWLU3EUnWBuyZqNBOrv1B1JA3byUDPUl9z4Ab3jeZG2eDdySlgNMg==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/glob/7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 18.0.5 - dev: true - - /@types/graceful-fs/4.1.5: - resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} - dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/hast/2.3.4: @@ -3915,7 +3631,7 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/is-ci/3.0.0: @@ -3932,25 +3648,6 @@ packages: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} dev: true - /@types/istanbul-lib-report/3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} - dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - dev: true - - /@types/istanbul-reports/3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} - dependencies: - '@types/istanbul-lib-report': 3.0.0 - dev: true - - /@types/jest/28.1.6: - resolution: {integrity: sha512-0RbGAFMfcBJKOmqRazM8L98uokwuwD5F8rHrv/ZMbrZBwVOWZUyPG6VFNscjYr/vjM3Vu4fRrCPbOs42AfemaQ==} - dependencies: - jest-matcher-utils: 28.1.1 - pretty-format: 28.1.1 - dev: true - /@types/json-schema/7.0.11: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} dev: true @@ -3962,7 +3659,7 @@ packages: /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/mdast/3.0.10: @@ -3999,8 +3696,8 @@ packages: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node/18.0.5: - resolution: {integrity: sha512-En7tneq+j0qAiVwysBD79y86MT3ModuoIJbe7JXp+sb5UAjInSShmK3nXXMioBzfF7rXC12hv12d4IyCVwN4dA==} + /@types/node/18.6.1: + resolution: {integrity: sha512-z+2vB6yDt1fNwKOeGbckpmirO+VBDuQqecXkgeIqDlaOtmKn6hPR/viQ8cxCfqLU4fTlvM3+YjM367TukWdxpg==} dev: true /@types/normalize-package-data/2.4.1: @@ -4011,10 +3708,6 @@ packages: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true - /@types/prettier/2.6.3: - resolution: {integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==} - dev: true - /@types/prop-types/15.7.5: resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} dev: true @@ -4044,13 +3737,13 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/retry/0.12.0: @@ -4075,17 +3768,13 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 18.0.5 + '@types/node': 18.6.1 dev: true /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 18.0.5 - dev: true - - /@types/stack-utils/2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + '@types/node': 18.6.1 dev: true /@types/supports-color/8.1.1: @@ -4100,28 +3789,18 @@ packages: resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} dev: true - /@types/web/0.0.69: - resolution: {integrity: sha512-0CqMxeJ+ETljejsVQ5U6gV75C9zz9nmCBXHYqdfnVmWp54VfoJSxUgeO6NI+ezgBl0JQsSiZCs2pkCCT9ERhbA==} + /@types/web/0.0.70: + resolution: {integrity: sha512-13SLsep5Yg0V7wzoB3Ipxsgc77Odv462Gk51iYg5IYk4y+E+R1cZNrbHzKpNVJ0AifP4BOcxKDvxdvoZnKPJBw==} dev: true /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 18.0.5 - dev: true - - /@types/yargs-parser/21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} - dev: true - - /@types/yargs/17.0.10: - resolution: {integrity: sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==} - dependencies: - '@types/yargs-parser': 21.0.0 + '@types/node': 18.6.1 dev: true - /@typescript-eslint/eslint-plugin/5.30.6_2vt5mtrqleafs33qg2bhpmbaqm: - resolution: {integrity: sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==} + /@typescript-eslint/eslint-plugin/5.31.0_d5zwcxr4bwkhmuo464cb3a2puu: + resolution: {integrity: sha512-VKW4JPHzG5yhYQrQ1AzXgVgX8ZAJEvCz0QI6mLRX4tf7rnFfh5D8SKm0Pq6w5PyNfAWJk6sv313+nEt3ohWMBQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -4131,12 +3810,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm - '@typescript-eslint/scope-manager': 5.30.6 - '@typescript-eslint/type-utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm - '@typescript-eslint/utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm + '@typescript-eslint/parser': 5.31.0_he2ccbldppg44uulnyq4rwocfa + '@typescript-eslint/scope-manager': 5.31.0 + '@typescript-eslint/type-utils': 5.31.0_he2ccbldppg44uulnyq4rwocfa + '@typescript-eslint/utils': 5.31.0_he2ccbldppg44uulnyq4rwocfa debug: 4.3.4 - eslint: 8.19.0 + eslint: 8.20.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 @@ -4147,8 +3826,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.30.6_4x5o4skxv6sl53vpwefgt23khm: - resolution: {integrity: sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==} + /@typescript-eslint/parser/5.31.0_he2ccbldppg44uulnyq4rwocfa: + resolution: {integrity: sha512-UStjQiZ9OFTFReTrN+iGrC6O/ko9LVDhreEK5S3edmXgR396JGq7CoX2TWIptqt/ESzU2iRKXAHfSF2WJFcWHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -4157,11 +3836,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.30.6 - '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.31.0 + '@typescript-eslint/types': 5.31.0 + '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.4 debug: 4.3.4 - eslint: 8.19.0 + eslint: 8.20.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color @@ -4175,16 +3854,16 @@ packages: '@typescript-eslint/visitor-keys': 5.29.0 dev: true - /@typescript-eslint/scope-manager/5.30.6: - resolution: {integrity: sha512-Hkq5PhLgtVoW1obkqYH0i4iELctEKixkhWLPTYs55doGUKCASvkjOXOd/pisVeLdO24ZX9D6yymJ/twqpJiG3g==} + /@typescript-eslint/scope-manager/5.31.0: + resolution: {integrity: sha512-8jfEzBYDBG88rcXFxajdVavGxb5/XKXyvWgvD8Qix3EEJLCFIdVloJw+r9ww0wbyNLOTYyBsR+4ALNGdlalLLg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/visitor-keys': 5.30.6 + '@typescript-eslint/types': 5.31.0 + '@typescript-eslint/visitor-keys': 5.31.0 dev: true - /@typescript-eslint/type-utils/5.30.6_4x5o4skxv6sl53vpwefgt23khm: - resolution: {integrity: sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==} + /@typescript-eslint/type-utils/5.31.0_he2ccbldppg44uulnyq4rwocfa: + resolution: {integrity: sha512-7ZYqFbvEvYXFn9ax02GsPcEOmuWNg+14HIf4q+oUuLnMbpJ6eHAivCg7tZMVwzrIuzX3QCeAOqKoyMZCv5xe+w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -4193,9 +3872,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm + '@typescript-eslint/utils': 5.31.0_he2ccbldppg44uulnyq4rwocfa debug: 4.3.4 - eslint: 8.19.0 + eslint: 8.20.0 tsutils: 3.21.0_typescript@4.7.4 typescript: 4.7.4 transitivePeerDependencies: @@ -4207,8 +3886,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types/5.30.6: - resolution: {integrity: sha512-HdnP8HioL1F7CwVmT4RaaMX57RrfqsOMclZc08wGMiDYJBsLGBM7JwXM4cZJmbWLzIR/pXg1kkrBBVpxTOwfUg==} + /@typescript-eslint/types/5.31.0: + resolution: {integrity: sha512-/f/rMaEseux+I4wmR6mfpM2wvtNZb1p9hAV77hWfuKc3pmaANp5dLAZSiE3/8oXTYTt3uV9KW5yZKJsMievp6g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true @@ -4233,8 +3912,8 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.30.6_typescript@4.7.4: - resolution: {integrity: sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==} + /@typescript-eslint/typescript-estree/5.31.0_typescript@4.7.4: + resolution: {integrity: sha512-3S625TMcARX71wBc2qubHaoUwMEn+l9TCsaIzYI/ET31Xm2c9YQ+zhGgpydjorwQO9pLfR/6peTzS/0G3J/hDw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -4242,8 +3921,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/visitor-keys': 5.30.6 + '@typescript-eslint/types': 5.31.0 + '@typescript-eslint/visitor-keys': 5.31.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -4254,7 +3933,7 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.29.0_4x5o4skxv6sl53vpwefgt23khm: + /@typescript-eslint/utils/5.29.0_he2ccbldppg44uulnyq4rwocfa: resolution: {integrity: sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4264,27 +3943,27 @@ packages: '@typescript-eslint/scope-manager': 5.29.0 '@typescript-eslint/types': 5.29.0 '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4 - eslint: 8.19.0 + eslint: 8.20.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint-utils: 3.0.0_eslint@8.20.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.30.6_4x5o4skxv6sl53vpwefgt23khm: - resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==} + /@typescript-eslint/utils/5.31.0_he2ccbldppg44uulnyq4rwocfa: + resolution: {integrity: sha512-kcVPdQS6VIpVTQ7QnGNKMFtdJdvnStkqS5LeALr4rcwx11G6OWb2HB17NMPnlRHvaZP38hL9iK8DdE9Fne7NYg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.30.6 - '@typescript-eslint/types': 5.30.6 - '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4 - eslint: 8.19.0 + '@typescript-eslint/scope-manager': 5.31.0 + '@typescript-eslint/types': 5.31.0 + '@typescript-eslint/typescript-estree': 5.31.0_typescript@4.7.4 + eslint: 8.20.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint-utils: 3.0.0_eslint@8.20.0 transitivePeerDependencies: - supports-color - typescript @@ -4298,18 +3977,14 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@typescript-eslint/visitor-keys/5.30.6: - resolution: {integrity: sha512-41OiCjdL2mCaSDi2SvYbzFLlqqlm5v1ZW9Ym55wXKL/Rx6OOB1IbuFGo71Fj6Xy90gJDFTlgOS+vbmtGHPTQQA==} + /@typescript-eslint/visitor-keys/5.31.0: + resolution: {integrity: sha512-ZK0jVxSjS4gnPirpVjXHz7mgdOsZUHzNYSfTw2yPa3agfbt9YfqaBiBZFSSxeBWnpWkzCxTfUpnzA3Vily/CSg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.30.6 + '@typescript-eslint/types': 5.31.0 eslint-visitor-keys: 3.3.0 dev: true - /@unts/get-tsconfig/4.1.1: - resolution: {integrity: sha512-8mPf1bBzF2S+fyuyYOQWjDcaJTTgJ14UAnXW9I3KwrqioRWG1byRXHwciYdqXpbdOiu7Fg4WJbymBIakGk+aMA==} - dev: true - /@vue/babel-helper-vue-jsx-merge-props/1.2.1: resolution: {integrity: sha512-QOi5OW45e2R20VygMSNhyQHvpdUwQZqGPc748JLGCYEy+yp8fNFNdbNIGAgZmi9e+2JHPd6i6idRuqivyicIkA==} dev: true @@ -4318,14 +3993,14 @@ packages: resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: true - /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.6: + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.9: resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} dependencies: '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 '@babel/template': 7.18.6 - '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 + '@babel/traverse': 7.18.9 + '@babel/types': 7.18.9 '@vue/babel-helper-vue-transform-on': 1.0.2 camelcase: 6.3.0 html-tags: 3.2.0 @@ -4335,105 +4010,105 @@ packages: - supports-color dev: true - /@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.18.6: + /@vue/babel-plugin-transform-vue-jsx/1.2.1_@babel+core@7.18.9: resolution: {integrity: sha512-HJuqwACYehQwh1fNT8f4kyzqlNMpBuUK4rSiSES5D4QsYncv5fxFsLyrxFPG2ksO7t5WP+Vgix6tt6yKClwPzA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 html-tags: 2.0.0 lodash.kebabcase: 4.1.1 svg-tags: 1.0.0 dev: true - /@vue/babel-preset-jsx/1.3.0_@babel+core@7.18.6: - resolution: {integrity: sha512-WFHjZWoUV/W0VAnEM/vi3zhdKsWrYf1TVFuxrpMQXVjhU8w8cxAUzNkmUDvf5iugCNzQssTJp9LjDPHAcmCqUw==} + /@vue/babel-preset-jsx/1.3.1_@babel+core@7.18.9: + resolution: {integrity: sha512-ml+nqcSKp8uAqFZLNc7OWLMzR7xDBsUfkomF98DtiIBlLqlq4jCQoLINARhgqRIyKdB+mk/94NWpIb4pL6D3xw==} peerDependencies: '@babel/core': ^7.0.0-0 - vue: 2.x + vue: '*' peerDependenciesMeta: vue: optional: true dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 - '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.6 - '@vue/babel-sugar-composition-api-inject-h': 1.3.0_@babel+core@7.18.6 - '@vue/babel-sugar-composition-api-render-instance': 1.3.0_@babel+core@7.18.6 - '@vue/babel-sugar-functional-vue': 1.2.2_@babel+core@7.18.6 - '@vue/babel-sugar-inject-h': 1.2.2_@babel+core@7.18.6 - '@vue/babel-sugar-v-model': 1.3.0_@babel+core@7.18.6 - '@vue/babel-sugar-v-on': 1.3.0_@babel+core@7.18.6 + '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.9 + '@vue/babel-sugar-composition-api-inject-h': 1.3.0_@babel+core@7.18.9 + '@vue/babel-sugar-composition-api-render-instance': 1.3.0_@babel+core@7.18.9 + '@vue/babel-sugar-functional-vue': 1.2.2_@babel+core@7.18.9 + '@vue/babel-sugar-inject-h': 1.2.2_@babel+core@7.18.9 + '@vue/babel-sugar-v-model': 1.3.0_@babel+core@7.18.9 + '@vue/babel-sugar-v-on': 1.3.0_@babel+core@7.18.9 dev: true - /@vue/babel-sugar-composition-api-inject-h/1.3.0_@babel+core@7.18.6: + /@vue/babel-sugar-composition-api-inject-h/1.3.0_@babel+core@7.18.9: resolution: {integrity: sha512-pIDOutEpqbURdVw7xhgxmuDW8Tl+lTgzJZC5jdlUu0lY2+izT9kz3Umd/Tbu0U5cpCJ2Yhu87BZFBzWpS0Xemg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 dev: true - /@vue/babel-sugar-composition-api-render-instance/1.3.0_@babel+core@7.18.6: + /@vue/babel-sugar-composition-api-render-instance/1.3.0_@babel+core@7.18.9: resolution: {integrity: sha512-NYNnU2r7wkJLMV5p9Zj4pswmCs037O/N2+/Fs6SyX7aRFzXJRP1/2CZh5cIwQxWQajHXuCUd5mTb7DxoBVWyTg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 dev: true - /@vue/babel-sugar-functional-vue/1.2.2_@babel+core@7.18.6: + /@vue/babel-sugar-functional-vue/1.2.2_@babel+core@7.18.9: resolution: {integrity: sha512-JvbgGn1bjCLByIAU1VOoepHQ1vFsroSA/QkzdiSs657V79q6OwEWLCQtQnEXD/rLTA8rRit4rMOhFpbjRFm82w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 dev: true - /@vue/babel-sugar-inject-h/1.2.2_@babel+core@7.18.6: + /@vue/babel-sugar-inject-h/1.2.2_@babel+core@7.18.9: resolution: {integrity: sha512-y8vTo00oRkzQTgufeotjCLPAvlhnpSkcHFEp60+LJUwygGcd5Chrpn5480AQp/thrxVm8m2ifAk0LyFel9oCnw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 dev: true - /@vue/babel-sugar-v-model/1.3.0_@babel+core@7.18.6: + /@vue/babel-sugar-v-model/1.3.0_@babel+core@7.18.9: resolution: {integrity: sha512-zcsabmdX48JmxTObn3xmrvvdbEy8oo63DphVyA3WRYGp4SEvJRpu/IvZCVPl/dXLuob2xO/QRuncqPgHvZPzpA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 '@vue/babel-helper-vue-jsx-merge-props': 1.2.1 - '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.6 + '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.9 camelcase: 5.3.1 html-tags: 2.0.0 svg-tags: 1.0.0 dev: true - /@vue/babel-sugar-v-on/1.3.0_@babel+core@7.18.6: + /@vue/babel-sugar-v-on/1.3.0_@babel+core@7.18.9: resolution: {integrity: sha512-8VZgrS0G5bh7+Prj7oJkzg9GvhSPnuW5YT6MNaVAEy4uwxRLJ8GqHenaStfllChTao4XZ3EZkNtHB4Xbr/ePdA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6 - '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.9 + '@vue/babel-plugin-transform-vue-jsx': 1.2.1_@babel+core@7.18.9 camelcase: 5.3.1 dev: true /@vue/compiler-core/3.2.37: resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==} dependencies: - '@babel/parser': 7.18.6 + '@babel/parser': 7.18.9 '@vue/shared': 3.2.37 estree-walker: 2.0.2 source-map: 0.6.1 @@ -4449,7 +4124,7 @@ packages: /@vue/compiler-sfc/3.2.37: resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==} dependencies: - '@babel/parser': 7.18.6 + '@babel/parser': 7.18.9 '@vue/compiler-core': 3.2.37 '@vue/compiler-dom': 3.2.37 '@vue/compiler-ssr': 3.2.37 @@ -4471,7 +4146,7 @@ packages: /@vue/reactivity-transform/3.2.37: resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==} dependencies: - '@babel/parser': 7.18.6 + '@babel/parser': 7.18.9 '@vue/compiler-core': 3.2.37 '@vue/shared': 3.2.37 estree-walker: 2.0.2 @@ -4610,6 +4285,10 @@ packages: through: 2.3.8 dev: true + /abab/2.0.6: + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + dev: true + /abbrev/1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} dev: true @@ -4622,20 +4301,32 @@ packages: negotiator: 0.6.3 dev: true - /acorn-import-assertions/1.8.0_acorn@8.7.1: + /acorn-globals/6.0.0: + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + dependencies: + acorn: 7.4.1 + acorn-walk: 7.2.0 + dev: true + + /acorn-import-assertions/1.8.0_acorn@8.8.0: resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.7.1 + acorn: 8.8.0 dev: true - /acorn-jsx/5.3.2_acorn@8.7.1: + /acorn-jsx/5.3.2_acorn@8.8.0: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.7.1 + acorn: 8.8.0 + dev: true + + /acorn-walk/7.2.0: + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} dev: true /acorn-walk/8.2.0: @@ -4649,12 +4340,21 @@ packages: hasBin: true dev: true - /acorn/8.7.1: - resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} + /acorn/8.8.0: + resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} engines: {node: '>=0.4.0'} hasBin: true dev: true + /agent-base/6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + /aggregate-error/3.1.0: resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} engines: {node: '>=8'} @@ -4717,7 +4417,7 @@ packages: peerDependencies: '@angular-eslint/template-parser': '*' dependencies: - '@angular-eslint/template-parser': 14.0.2_4x5o4skxv6sl53vpwefgt23khm + '@angular-eslint/template-parser': 14.0.2_he2ccbldppg44uulnyq4rwocfa dev: true /angular-html-parser/1.8.0: @@ -4784,11 +4484,6 @@ packages: color-convert: 2.0.1 dev: true - /ansi-styles/5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} - dev: true - /ansi-styles/6.1.0: resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==} engines: {node: '>=12'} @@ -4895,7 +4590,18 @@ packages: es-shim-unscopables: 1.0.0 dev: true - /arrify/1.0.1: + /array.prototype.reduce/1.0.4: + resolution: {integrity: sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-array-method-boxes-properly: 1.0.0 + is-string: 1.0.7 + dev: true + + /arrify/1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} dev: true @@ -4913,6 +4619,10 @@ packages: resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} dev: true + /assertion-error/1.1.0: + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + dev: true + /astral-regex/2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} @@ -4927,6 +4637,10 @@ packages: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} dev: true + /asynckit/0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: true + /at-least-node/1.0.0: resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} engines: {node: '>= 4.0.0'} @@ -4945,8 +4659,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.1 - caniuse-lite: 1.0.30001363 + browserslist: 4.21.3 + caniuse-lite: 1.0.30001370 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -4959,37 +4673,19 @@ packages: engines: {node: '>=6.0'} dev: true - /babel-jest/28.1.2_@babel+core@7.18.6: - resolution: {integrity: sha512-pfmoo6sh4L/+5/G2OOfQrGJgvH7fTa1oChnuYH2G/6gA+JwDvO8PELwvwnofKBMNrQsam0Wy/Rw+QSrBNewq2Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.8.0 - dependencies: - '@babel/core': 7.18.6 - '@jest/transform': 28.1.2 - '@types/babel__core': 7.1.19 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.1_@babel+core@7.18.6 - chalk: 4.1.2 - graceful-fs: 4.2.10 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-loader/8.2.5_fswvdo7jykdwhfxrdcvghfn6pa: + /babel-loader/8.2.5_y3lv6tn6yokher4u7xj4j22px4: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.18.6 + '@babel/core': 7.18.9 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /babel-plugin-dynamic-import-node/2.3.3: @@ -5004,61 +4700,38 @@ packages: '@babel/helper-module-imports': 7.18.6 dev: true - /babel-plugin-istanbul/6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} - dependencies: - '@babel/helper-plugin-utils': 7.18.6 - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-instrument: 5.2.0 - test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-jest-hoist/28.1.1: - resolution: {integrity: sha512-NovGCy5Hn25uMJSAU8FaHqzs13cFoOI4lhIujiepssjCKRsAo3TA734RDWSGxuFTsUJXerYOqQQodlxgmtqbzw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@babel/template': 7.18.6 - '@babel/types': 7.18.7 - '@types/babel__core': 7.1.19 - '@types/babel__traverse': 7.17.1 - dev: true - - /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.6: - resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.9: + resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.18.6 - '@babel/core': 7.18.6 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6 + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.9 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.9 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.6: - resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.9: + resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6 - core-js-compat: 3.23.3 + '@babel/core': 7.18.9 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.9 + core-js-compat: 3.24.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.6: + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.9: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -5078,64 +4751,33 @@ packages: /babel-plugin-transform-typescript-metadata/0.3.2: resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} dependencies: - '@babel/helper-plugin-utils': 7.18.6 - dev: true - - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.6: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.6 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.6 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.6 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.6 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.6 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.6 - dev: true - - /babel-preset-jest/28.1.1_@babel+core@7.18.6: - resolution: {integrity: sha512-FCq9Oud0ReTeWtcneYf/48981aTfXYuB9gbU4rBNNJVBSQ6ssv7E6v/qvbBxtOWwZFXjLZwpg+W3q7J6vhH25g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.18.6 - babel-plugin-jest-hoist: 28.1.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.6 + '@babel/helper-plugin-utils': 7.18.9 dev: true - /babel-preset-proposal-typescript/2.2.0_u4pnq6aitzjyryj6xisyu635ni: + /babel-preset-proposal-typescript/2.2.0_p2nspltq2mrxfqigdmhjpzxdbm: resolution: {integrity: sha512-4OiSFybfaJGPyyxahJEs3hFhcPzLjX4mbmaBfGfO+HrmfDslPlErF8aeCtGmGLzrvdAzTFclpIdT3dDYlPrNYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.14.1 typescript: ^4.3.0 dependencies: - '@babel/core': 7.18.6 - '@babel/helper-plugin-utils': 7.18.6 - '@babel/plugin-proposal-async-do-expressions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-do-expressions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-function-bind': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-function-sent': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-partial-application': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-pipeline-operator': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-record-and-tuple': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-proposal-throw-expressions': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.18.6 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.6 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-proposal-async-do-expressions': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-do-expressions': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-function-bind': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-function-sent': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-partial-application': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-pipeline-operator': 7.18.9_@babel+core@7.18.9 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-record-and-tuple': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-proposal-throw-expressions': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-syntax-decorators': 7.18.6_@babel+core@7.18.9 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.9 '@bloomberg/record-tuple-polyfill': 0.0.3 compare-versions: 3.6.0 typescript: 4.7.4 @@ -5147,7 +4789,7 @@ packages: resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} engines: {node: '>= 10.0.0'} dependencies: - '@babel/types': 7.18.7 + '@babel/types': 7.18.9 dev: true /babylon/7.0.0-beta.47: @@ -5314,39 +4956,19 @@ packages: wcwidth: 1.0.1 dev: true - /browserslist/4.21.1: - resolution: {integrity: sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - dependencies: - caniuse-lite: 1.0.30001363 - electron-to-chromium: 1.4.180 - node-releases: 2.0.5 - update-browserslist-db: 1.0.4_browserslist@4.21.1 + /browser-process-hrtime/1.0.0: + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} dev: true - /browserslist/4.21.2: - resolution: {integrity: sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==} + /browserslist/4.21.3: + resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001367 - electron-to-chromium: 1.4.192 + caniuse-lite: 1.0.30001370 + electron-to-chromium: 1.4.202 node-releases: 2.0.6 - update-browserslist-db: 1.0.4_browserslist@4.21.2 - dev: true - - /bs-logger/0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} - dependencies: - fast-json-stable-stringify: 2.1.0 - dev: true - - /bser/2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} - dependencies: - node-int64: 0.4.0 + update-browserslist-db: 1.0.5_browserslist@4.21.3 dev: true /buffer-alloc-unsafe/1.1.0: @@ -5390,6 +5012,11 @@ packages: semver: 7.3.7 dev: true + /bytes-iec/3.1.1: + resolution: {integrity: sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==} + engines: {node: '>= 0.8'} + dev: true + /bytes/3.0.0: resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} @@ -5400,6 +5027,25 @@ packages: engines: {node: '>= 0.8'} dev: true + /c8/7.12.0: + resolution: {integrity: sha512-CtgQrHOkyxr5koX1wEUmN/5cfDa2ckbHRA4Gy5LAL0zaCFtVWJS5++n+w4/sr2GWGerBxgTjpKeDclk/Qk6W/A==} + engines: {node: '>=10.12.0'} + hasBin: true + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@istanbuljs/schema': 0.1.3 + find-up: 5.0.0 + foreground-child: 2.0.0 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-report: 3.0.0 + istanbul-reports: 3.1.5 + rimraf: 3.0.2 + test-exclude: 6.0.0 + v8-to-istanbul: 9.0.1 + yargs: 16.2.0 + yargs-parser: 20.2.9 + dev: true + /cacheable-request/2.1.4: resolution: {integrity: sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==} dependencies: @@ -5474,18 +5120,14 @@ packages: /caniuse-api/3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.21.1 - caniuse-lite: 1.0.30001363 + browserslist: 4.21.3 + caniuse-lite: 1.0.30001370 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite/1.0.30001363: - resolution: {integrity: sha512-HpQhpzTGGPVMnCjIomjt+jvyUu8vNFo3TaDiZ/RcoTrlOq/5+tC8zHdsbgFB6MxmaY+jCpsH09aD80Bb4Ow3Sg==} - dev: true - - /caniuse-lite/1.0.30001367: - resolution: {integrity: sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==} + /caniuse-lite/1.0.30001370: + resolution: {integrity: sha512-3PDmaP56wz/qz7G508xzjx8C+MC2qEm4SYhSEzC9IBROo+dGXFWRuaXkWti0A9tuI00g+toiriVqxtWMgl350g==} dev: true /case-sensitive-paths-webpack-plugin/2.4.0: @@ -5507,6 +5149,19 @@ packages: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} dev: true + /chai/4.3.6: + resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==} + engines: {node: '>=4'} + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.2 + deep-eql: 3.0.1 + get-func-name: 2.0.0 + loupe: 2.3.4 + pathval: 1.1.1 + type-detect: 4.0.8 + dev: true + /chalk/1.1.3: resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} engines: {node: '>=0.10.0'} @@ -5543,11 +5198,6 @@ packages: supports-color: 7.2.0 dev: true - /char-regex/1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} - dev: true - /character-entities-html4/2.1.0: resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} dev: true @@ -5586,6 +5236,10 @@ packages: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} dev: true + /check-error/1.0.2: + resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} + dev: true + /chevrotain/4.1.1: resolution: {integrity: sha512-NQky1HQyiAzxsxpq4Ppt47SYO2U3JLtmfs85QPf3kYSzGBjjp5AA8kqjH8hCjGFRpaQ781QOk1ragQIOkBgUTA==} dependencies: @@ -5627,12 +5281,12 @@ packages: resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} dev: true - /cjs-module-lexer/1.2.2: - resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} + /ci-job-number/1.2.2: + resolution: {integrity: sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==} dev: true - /clean-css/5.3.0: - resolution: {integrity: sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==} + /clean-css/5.3.1: + resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==} engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 @@ -5722,15 +5376,6 @@ packages: resolution: {integrity: sha512-CQsjCRiNObI8AtTsNIBDRMQ4oMR83CzEswHYahClvul7gKk+lDQiOKv+5qh7LQWf5sh6jkZNispz/QlsZxyNgA==} dev: true - /co/4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} - dev: true - - /collect-v8-coverage/1.0.1: - resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} - dev: true - /color-convert/1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -5764,6 +5409,13 @@ packages: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} dev: true + /combined-stream/1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: true + /comma-separated-tokens/2.0.2: resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==} dev: true @@ -5782,8 +5434,8 @@ packages: engines: {node: '>= 12'} dev: true - /commander/9.3.0: - resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} + /commander/9.4.0: + resolution: {integrity: sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==} engines: {node: ^12.20.0 || >=14} dev: true @@ -5878,8 +5530,8 @@ packages: /constantinople/4.0.1: resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} dependencies: - '@babel/parser': 7.18.6 - '@babel/types': 7.18.7 + '@babel/parser': 7.18.9 + '@babel/types': 7.18.9 dev: true /content-disposition/0.5.4: @@ -5945,7 +5597,7 @@ packages: is-what: 3.14.1 dev: true - /copy-webpack-plugin/11.0.0_webpack@5.73.0: + /copy-webpack-plugin/11.0.0_webpack@5.74.0: resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -5957,18 +5609,18 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true - /core-js-compat/3.23.3: - resolution: {integrity: sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==} + /core-js-compat/3.24.0: + resolution: {integrity: sha512-F+2E63X3ff/nj8uIrf8Rf24UDGIz7p838+xjEp+Bx3y8OWXj+VTPPZNCtdqovPaS9o7Tka5mCH01Zn5vOd6UQg==} dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 semver: 7.0.0 dev: true - /core-js/3.23.3: - resolution: {integrity: sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==} + /core-js/3.24.0: + resolution: {integrity: sha512-IeOyT8A6iK37Ep4kZDD423mpi6JfPRoPUdQwEWYiGolvn4o6j2diaRzNfDfpTdu3a5qMbrGUzKUpYpRY8jXCkQ==} requiresBuild: true dev: true @@ -5976,16 +5628,16 @@ packages: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /cosmiconfig-typescript-loader/2.0.2_47blntjhuqtdxyxfczkfdvsynq: + /cosmiconfig-typescript-loader/2.0.2_f6w67sjx3imwytyzb2qhabnzqe: resolution: {integrity: sha512-KmE+bMjWMXJbkWCeY4FJX/npHuZPNr9XF9q9CIQ/bpFwi1qHfCmSiKarrCcRa0LO4fWjk93pVoeRtJAkTGcYNw==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@types/node': '*' typescript: '>=3' dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 cosmiconfig: 7.0.1 - ts-node: 10.8.2_47blntjhuqtdxyxfczkfdvsynq + ts-node: 10.9.1_f6w67sjx3imwytyzb2qhabnzqe typescript: 4.7.4 transitivePeerDependencies: - '@swc/core' @@ -6076,7 +5728,7 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /css-loader/6.7.1_webpack@5.73.0: + /css-loader/6.7.1_webpack@5.74.0: resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -6090,7 +5742,7 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.14 postcss-value-parser: 4.2.0 semver: 7.3.7 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /css-prefers-color-scheme/6.0.3_postcss@8.4.14: @@ -6230,7 +5882,7 @@ packages: postcss: ^8.2.15 dependencies: cssnano-preset-default: 5.2.12_postcss@8.4.14 - lilconfig: 2.0.5 + lilconfig: 2.0.6 postcss: 8.4.14 yaml: 1.10.2 dev: true @@ -6242,6 +5894,21 @@ packages: css-tree: 1.1.3 dev: true + /cssom/0.3.8: + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + dev: true + + /cssom/0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + dev: true + + /cssstyle/2.3.0: + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} + dependencies: + cssom: 0.3.8 + dev: true + /csstype/3.1.0: resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} dev: true @@ -6301,6 +5968,15 @@ packages: engines: {node: '>=8'} dev: true + /data-urls/3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} + dependencies: + abab: 2.0.6 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + dev: true + /dataloader/1.4.0: resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} dev: true @@ -6352,6 +6028,10 @@ packages: engines: {node: '>=0.10.0'} dev: true + /decimal.js/10.3.1: + resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==} + dev: true + /decode-named-character-reference/1.0.2: resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} dependencies: @@ -6423,8 +6103,11 @@ packages: strip-dirs: 2.1.0 dev: true - /dedent/0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + /deep-eql/3.0.1: + resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} + engines: {node: '>=0.12'} + dependencies: + type-detect: 4.0.8 dev: true /deep-equal/1.1.1: @@ -6473,6 +6156,11 @@ packages: object-keys: 1.1.1 dev: true + /delayed-stream/1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: true + /depd/1.1.2: resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} @@ -6483,8 +6171,8 @@ packages: engines: {node: '>= 0.8'} dev: true - /dequal/2.0.2: - resolution: {integrity: sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==} + /dequal/2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} dev: true @@ -6505,20 +6193,10 @@ packages: get-installed-path: 2.1.1 dev: true - /detect-newline/3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} - dev: true - /detect-node/2.1.0: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} dev: true - /diff-sequences/28.1.1: - resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dev: true - /diff/4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} @@ -6570,8 +6248,8 @@ packages: engines: {node: '>=10'} hasBin: true dependencies: - browserslist: 4.21.2 - caniuse-lite: 1.0.30001367 + browserslist: 4.21.3 + caniuse-lite: 1.0.30001370 css-rule-stream: 1.1.0 duplexer2: 0.0.2 ldjson-stream: 1.2.1 @@ -6612,6 +6290,13 @@ packages: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} dev: true + /domexception/4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} + dependencies: + webidl-conversions: 7.0.0 + dev: true + /domhandler/4.3.1: resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} engines: {node: '>= 4'} @@ -6726,17 +6411,8 @@ packages: jake: 10.8.5 dev: true - /electron-to-chromium/1.4.180: - resolution: {integrity: sha512-7at5ash3FD9U5gPa3/wPr6OdiZd/zBjvDZaaHBpcqFOFUhZiWnb7stkqk8xUFL9H9nk7Yok5vCCNK8wyC/+f8A==} - dev: true - - /electron-to-chromium/1.4.192: - resolution: {integrity: sha512-8nCXyIQY9An88NXAp+PuPy5h3/w5ZY7Iu2lag65Q0XREprcat5F8gKhoHsBUnQcFuCRnmevpR8yEBYRU3d2HDw==} - dev: true - - /emittery/0.10.2: - resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} - engines: {node: '>=12'} + /electron-to-chromium/1.4.202: + resolution: {integrity: sha512-JYsK2ex9lmQD27kj19fhXYxzFJ/phLAkLKHv49A5UY6kMRV2xED3qMMLg/voW/+0AR6wMiI+VxlmK9NDtdxlPA==} dev: true /emoji-regex/8.0.0: @@ -6782,11 +6458,6 @@ packages: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} dev: true - /entities/3.0.1: - resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} - engines: {node: '>=0.12'} - dev: true - /entities/4.3.1: resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==} engines: {node: '>=0.12'} @@ -6842,6 +6513,10 @@ packages: unbox-primitive: 1.0.2 dev: true + /es-array-method-boxes-properly/1.0.0: + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + dev: true + /es-module-lexer/0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} dev: true @@ -6895,8 +6570,8 @@ packages: es6-symbol: 3.1.3 dev: true - /esbuild-android-64/0.14.48: - resolution: {integrity: sha512-3aMjboap/kqwCUpGWIjsk20TtxVoKck8/4Tu19rubh7t5Ra0Yrpg30Mt1QXXlipOazrEceGeWurXKeFJgkPOUg==} + /esbuild-android-64/0.14.50: + resolution: {integrity: sha512-H7iUEm7gUJHzidsBlFPGF6FTExazcgXL/46xxLo6i6bMtPim6ZmXyTccS8yOMpy6HAC6dPZ/JCQqrkkin69n6Q==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -6904,8 +6579,8 @@ packages: dev: true optional: true - /esbuild-android-arm64/0.14.48: - resolution: {integrity: sha512-vptI3K0wGALiDq+EvRuZotZrJqkYkN5282iAfcffjI5lmGG9G1ta/CIVauhY42MBXwEgDJkweiDcDMRLzBZC4g==} + /esbuild-android-arm64/0.14.50: + resolution: {integrity: sha512-NFaoqEwa+OYfoYVpQWDMdKII7wZZkAjtJFo1WdnBeCYlYikvUhTnf2aPwPu5qEAw/ie1NYK0yn3cafwP+kP+OQ==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -6913,8 +6588,8 @@ packages: dev: true optional: true - /esbuild-darwin-64/0.14.48: - resolution: {integrity: sha512-gGQZa4+hab2Va/Zww94YbshLuWteyKGD3+EsVon8EWTWhnHFRm5N9NbALNbwi/7hQ/hM1Zm4FuHg+k6BLsl5UA==} + /esbuild-darwin-64/0.14.50: + resolution: {integrity: sha512-gDQsCvGnZiJv9cfdO48QqxkRV8oKAXgR2CGp7TdIpccwFdJMHf8hyIJhMW/05b/HJjET/26Us27Jx91BFfEVSA==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -6922,8 +6597,8 @@ packages: dev: true optional: true - /esbuild-darwin-arm64/0.14.48: - resolution: {integrity: sha512-bFjnNEXjhZT+IZ8RvRGNJthLWNHV5JkCtuOFOnjvo5pC0sk2/QVk0Qc06g2PV3J0TcU6kaPC3RN9yy9w2PSLEA==} + /esbuild-darwin-arm64/0.14.50: + resolution: {integrity: sha512-36nNs5OjKIb/Q50Sgp8+rYW/PqirRiFN0NFc9hEvgPzNJxeJedktXwzfJSln4EcRFRh5Vz4IlqFRScp+aiBBzA==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -6931,8 +6606,8 @@ packages: dev: true optional: true - /esbuild-freebsd-64/0.14.48: - resolution: {integrity: sha512-1NOlwRxmOsnPcWOGTB10JKAkYSb2nue0oM1AfHWunW/mv3wERfJmnYlGzL3UAOIUXZqW8GeA2mv+QGwq7DToqA==} + /esbuild-freebsd-64/0.14.50: + resolution: {integrity: sha512-/1pHHCUem8e/R86/uR+4v5diI2CtBdiWKiqGuPa9b/0x3Nwdh5AOH7lj+8823C6uX1e0ufwkSLkS+aFZiBCWxA==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -6940,8 +6615,8 @@ packages: dev: true optional: true - /esbuild-freebsd-arm64/0.14.48: - resolution: {integrity: sha512-gXqKdO8wabVcYtluAbikDH2jhXp+Klq5oCD5qbVyUG6tFiGhrC9oczKq3vIrrtwcxDQqK6+HDYK8Zrd4bCA9Gw==} + /esbuild-freebsd-arm64/0.14.50: + resolution: {integrity: sha512-iKwUVMQztnPZe5pUYHdMkRc9aSpvoV1mkuHlCoPtxZA3V+Kg/ptpzkcSY+fKd0kuom+l6Rc93k0UPVkP7xoqrw==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -6949,8 +6624,8 @@ packages: dev: true optional: true - /esbuild-linux-32/0.14.48: - resolution: {integrity: sha512-ghGyDfS289z/LReZQUuuKq9KlTiTspxL8SITBFQFAFRA/IkIvDpnZnCAKTCjGXAmUqroMQfKJXMxyjJA69c/nQ==} + /esbuild-linux-32/0.14.50: + resolution: {integrity: sha512-sWUwvf3uz7dFOpLzYuih+WQ7dRycrBWHCdoXJ4I4XdMxEHCECd8b7a9N9u7FzT6XR2gHPk9EzvchQUtiEMRwqw==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -6958,8 +6633,8 @@ packages: dev: true optional: true - /esbuild-linux-64/0.14.48: - resolution: {integrity: sha512-vni3p/gppLMVZLghI7oMqbOZdGmLbbKR23XFARKnszCIBpEMEDxOMNIKPmMItQrmH/iJrL1z8Jt2nynY0bE1ug==} + /esbuild-linux-64/0.14.50: + resolution: {integrity: sha512-u0PQxPhaeI629t4Y3EEcQ0wmWG+tC/LpP2K7yDFvwuPq0jSQ8SIN+ARNYfRjGW15O2we3XJvklbGV0wRuUCPig==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -6967,8 +6642,8 @@ packages: dev: true optional: true - /esbuild-linux-arm/0.14.48: - resolution: {integrity: sha512-+VfSV7Akh1XUiDNXgqgY1cUP1i2vjI+BmlyXRfVz5AfV3jbpde8JTs5Q9sYgaoq5cWfuKfoZB/QkGOI+QcL1Tw==} + /esbuild-linux-arm/0.14.50: + resolution: {integrity: sha512-VALZq13bhmFJYFE/mLEb+9A0w5vo8z+YDVOWeaf9vOTrSC31RohRIwtxXBnVJ7YKLYfEMzcgFYf+OFln3Y0cWg==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -6976,8 +6651,8 @@ packages: dev: true optional: true - /esbuild-linux-arm64/0.14.48: - resolution: {integrity: sha512-3CFsOlpoxlKPRevEHq8aAntgYGYkE1N9yRYAcPyng/p4Wyx0tPR5SBYsxLKcgPB9mR8chHEhtWYz6EZ+H199Zw==} + /esbuild-linux-arm64/0.14.50: + resolution: {integrity: sha512-ZyfoNgsTftD7Rp5S7La5auomKdNeB3Ck+kSKXC4pp96VnHyYGjHHXWIlcbH8i+efRn9brszo1/Thl1qn8RqmhQ==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -6985,8 +6660,8 @@ packages: dev: true optional: true - /esbuild-linux-mips64le/0.14.48: - resolution: {integrity: sha512-cs0uOiRlPp6ymknDnjajCgvDMSsLw5mST2UXh+ZIrXTj2Ifyf2aAP3Iw4DiqgnyYLV2O/v/yWBJx+WfmKEpNLA==} + /esbuild-linux-mips64le/0.14.50: + resolution: {integrity: sha512-ygo31Vxn/WrmjKCHkBoutOlFG5yM9J2UhzHb0oWD9O61dGg+Hzjz9hjf5cmM7FBhAzdpOdEWHIrVOg2YAi6rTw==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -6994,8 +6669,8 @@ packages: dev: true optional: true - /esbuild-linux-ppc64le/0.14.48: - resolution: {integrity: sha512-+2F0vJMkuI0Wie/wcSPDCqXvSFEELH7Jubxb7mpWrA/4NpT+/byjxDz0gG6R1WJoeDefcrMfpBx4GFNN1JQorQ==} + /esbuild-linux-ppc64le/0.14.50: + resolution: {integrity: sha512-xWCKU5UaiTUT6Wz/O7GKP9KWdfbsb7vhfgQzRfX4ahh5NZV4ozZ4+SdzYG8WxetsLy84UzLX3Pi++xpVn1OkFQ==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -7003,8 +6678,8 @@ packages: dev: true optional: true - /esbuild-linux-riscv64/0.14.48: - resolution: {integrity: sha512-BmaK/GfEE+5F2/QDrIXteFGKnVHGxlnK9MjdVKMTfvtmudjY3k2t8NtlY4qemKSizc+QwyombGWTBDc76rxePA==} + /esbuild-linux-riscv64/0.14.50: + resolution: {integrity: sha512-0+dsneSEihZTopoO9B6Z6K4j3uI7EdxBP7YSF5rTwUgCID+wHD3vM1gGT0m+pjCW+NOacU9kH/WE9N686FHAJg==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -7012,8 +6687,8 @@ packages: dev: true optional: true - /esbuild-linux-s390x/0.14.48: - resolution: {integrity: sha512-tndw/0B9jiCL+KWKo0TSMaUm5UWBLsfCKVdbfMlb3d5LeV9WbijZ8Ordia8SAYv38VSJWOEt6eDCdOx8LqkC4g==} + /esbuild-linux-s390x/0.14.50: + resolution: {integrity: sha512-tVjqcu8o0P9H4StwbIhL1sQYm5mWATlodKB6dpEZFkcyTI8kfIGWiWcrGmkNGH2i1kBUOsdlBafPxR3nzp3TDA==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -7021,8 +6696,8 @@ packages: dev: true optional: true - /esbuild-netbsd-64/0.14.48: - resolution: {integrity: sha512-V9hgXfwf/T901Lr1wkOfoevtyNkrxmMcRHyticybBUHookznipMOHoF41Al68QBsqBxnITCEpjjd4yAos7z9Tw==} + /esbuild-netbsd-64/0.14.50: + resolution: {integrity: sha512-0R/glfqAQ2q6MHDf7YJw/TulibugjizBxyPvZIcorH0Mb7vSimdHy0XF5uCba5CKt+r4wjax1mvO9lZ4jiAhEg==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -7030,8 +6705,8 @@ packages: dev: true optional: true - /esbuild-openbsd-64/0.14.48: - resolution: {integrity: sha512-+IHf4JcbnnBl4T52egorXMatil/za0awqzg2Vy6FBgPcBpisDWT2sVz/tNdrK9kAqj+GZG/jZdrOkj7wsrNTKA==} + /esbuild-openbsd-64/0.14.50: + resolution: {integrity: sha512-7PAtmrR5mDOFubXIkuxYQ4bdNS6XCK8AIIHUiZxq1kL8cFIH5731jPcXQ4JNy/wbj1C9sZ8rzD8BIM80Tqk29w==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -7039,8 +6714,8 @@ packages: dev: true optional: true - /esbuild-sunos-64/0.14.48: - resolution: {integrity: sha512-77m8bsr5wOpOWbGi9KSqDphcq6dFeJyun8TA+12JW/GAjyfTwVtOnN8DOt6DSPUfEV+ltVMNqtXUeTeMAxl5KA==} + /esbuild-sunos-64/0.14.50: + resolution: {integrity: sha512-gBxNY/wyptvD7PkHIYcq7se6SQEXcSC8Y7mE0FJB+CGgssEWf6vBPfTTZ2b6BWKnmaP6P6qb7s/KRIV5T2PxsQ==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -7048,8 +6723,8 @@ packages: dev: true optional: true - /esbuild-windows-32/0.14.48: - resolution: {integrity: sha512-EPgRuTPP8vK9maxpTGDe5lSoIBHGKO/AuxDncg5O3NkrPeLNdvvK8oywB0zGaAZXxYWfNNSHskvvDgmfVTguhg==} + /esbuild-windows-32/0.14.50: + resolution: {integrity: sha512-MOOe6J9cqe/iW1qbIVYSAqzJFh0p2LBLhVUIWdMVnNUNjvg2/4QNX4oT4IzgDeldU+Bym9/Tn6+DxvUHJXL5Zw==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -7057,8 +6732,8 @@ packages: dev: true optional: true - /esbuild-windows-64/0.14.48: - resolution: {integrity: sha512-YmpXjdT1q0b8ictSdGwH3M8VCoqPpK1/UArze3X199w6u8hUx3V8BhAi1WjbsfDYRBanVVtduAhh2sirImtAvA==} + /esbuild-windows-64/0.14.50: + resolution: {integrity: sha512-r/qE5Ex3w1jjGv/JlpPoWB365ldkppUlnizhMxJgojp907ZF1PgLTuW207kgzZcSCXyquL9qJkMsY+MRtaZ5yQ==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -7066,8 +6741,8 @@ packages: dev: true optional: true - /esbuild-windows-arm64/0.14.48: - resolution: {integrity: sha512-HHaOMCsCXp0rz5BT2crTka6MPWVno121NKApsGs/OIW5QC0ggC69YMGs1aJct9/9FSUF4A1xNE/cLvgB5svR4g==} + /esbuild-windows-arm64/0.14.50: + resolution: {integrity: sha512-EMS4lQnsIe12ZyAinOINx7eq2mjpDdhGZZWDwPZE/yUTN9cnc2Ze/xUTYIAyaJqrqQda3LnDpADKpvLvol6ENQ==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -7075,32 +6750,32 @@ packages: dev: true optional: true - /esbuild/0.14.48: - resolution: {integrity: sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA==} + /esbuild/0.14.50: + resolution: {integrity: sha512-SbC3k35Ih2IC6trhbMYW7hYeGdjPKf9atTKwBUHqMCYFZZ9z8zhuvfnZihsnJypl74FjiAKjBRqFkBkAd0rS/w==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - esbuild-android-64: 0.14.48 - esbuild-android-arm64: 0.14.48 - esbuild-darwin-64: 0.14.48 - esbuild-darwin-arm64: 0.14.48 - esbuild-freebsd-64: 0.14.48 - esbuild-freebsd-arm64: 0.14.48 - esbuild-linux-32: 0.14.48 - esbuild-linux-64: 0.14.48 - esbuild-linux-arm: 0.14.48 - esbuild-linux-arm64: 0.14.48 - esbuild-linux-mips64le: 0.14.48 - esbuild-linux-ppc64le: 0.14.48 - esbuild-linux-riscv64: 0.14.48 - esbuild-linux-s390x: 0.14.48 - esbuild-netbsd-64: 0.14.48 - esbuild-openbsd-64: 0.14.48 - esbuild-sunos-64: 0.14.48 - esbuild-windows-32: 0.14.48 - esbuild-windows-64: 0.14.48 - esbuild-windows-arm64: 0.14.48 + esbuild-android-64: 0.14.50 + esbuild-android-arm64: 0.14.50 + esbuild-darwin-64: 0.14.50 + esbuild-darwin-arm64: 0.14.50 + esbuild-freebsd-64: 0.14.50 + esbuild-freebsd-arm64: 0.14.50 + esbuild-linux-32: 0.14.50 + esbuild-linux-64: 0.14.50 + esbuild-linux-arm: 0.14.50 + esbuild-linux-arm64: 0.14.50 + esbuild-linux-mips64le: 0.14.50 + esbuild-linux-ppc64le: 0.14.50 + esbuild-linux-riscv64: 0.14.50 + esbuild-linux-s390x: 0.14.50 + esbuild-netbsd-64: 0.14.50 + esbuild-openbsd-64: 0.14.50 + esbuild-sunos-64: 0.14.50 + esbuild-windows-32: 0.14.50 + esbuild-windows-64: 0.14.50 + esbuild-windows-arm64: 0.14.50 dev: true /escalade/3.1.1: @@ -7117,11 +6792,6 @@ packages: engines: {node: '>=0.8.0'} dev: true - /escape-string-regexp/2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} - dev: true - /escape-string-regexp/4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} @@ -7145,36 +6815,36 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier/8.5.0_eslint@8.19.0: + /eslint-config-prettier/8.5.0_eslint@8.20.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.19.0 + eslint: 8.20.0 dev: true - /eslint-config-standard-jsx/11.0.0_ooux7wugi57bhcgmnuegj2mmva: + /eslint-config-standard-jsx/11.0.0_d6b2yfc7lkeycvhlikcoxofgwu: resolution: {integrity: sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==} peerDependencies: eslint: ^8.8.0 eslint-plugin-react: ^7.28.0 dependencies: - eslint: 8.19.0 - eslint-plugin-react: 7.30.1_eslint@8.19.0 + eslint: 8.20.0 + eslint-plugin-react: 7.30.1_eslint@8.20.0 dev: true - /eslint-config-standard-react/11.0.1_ooux7wugi57bhcgmnuegj2mmva: + /eslint-config-standard-react/11.0.1_d6b2yfc7lkeycvhlikcoxofgwu: resolution: {integrity: sha512-4WlBynOqBZJRaX81CBcIGDHqUiqxvw4j/DbEIICz8QkMs3xEncoPgAoysiqCSsg71X92uhaBc8sgqB96smaMmg==} peerDependencies: eslint: ^7.12.1 eslint-plugin-react: ^7.21.5 dependencies: - eslint: 8.19.0 - eslint-plugin-react: 7.30.1_eslint@8.19.0 + eslint: 8.20.0 + eslint-plugin-react: 7.30.1_eslint@8.20.0 dev: true - /eslint-config-standard/17.0.0_3y77imf4oat3akor274t4exgn4: + /eslint-config-standard/17.0.0_afahsawqwkk6a7xxn76kfhtzni: resolution: {integrity: sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==} peerDependencies: eslint: ^8.0.1 @@ -7182,10 +6852,10 @@ packages: eslint-plugin-n: ^15.0.0 eslint-plugin-promise: ^6.0.0 dependencies: - eslint: 8.19.0 - eslint-plugin-import: 2.26.0_txgtzxbwwbsdf6liwdfp2zycdy - eslint-plugin-n: 15.2.4_eslint@8.19.0 - eslint-plugin-promise: 6.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-plugin-import: /eslint-plugin-i/2.26.0_hap3noddfugcdvzy74spnmfiia + eslint-plugin-n: 15.2.4_eslint@8.20.0 + eslint-plugin-promise: 6.0.0_eslint@8.20.0 dev: true /eslint-formatter-friendly/7.0.0: @@ -7208,8 +6878,8 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript/3.2.5_q2xwze32dd33a2fc2qubwr4ie4: - resolution: {integrity: sha512-yEBi/EWxFFMjcZTBxrgdu5cFAXB2atOhYDhp0P0yHqjZa5YiPNqQVt4/lNNVWwW7Kf8IIZmyeBboWOgsfffe7w==} + /eslint-import-resolver-typescript/3.3.0_rrrh6qwanyj3uwtbsjyts4vv2m: + resolution: {integrity: sha512-vlooCGKfDX59rH5TbtluOekinPlIS5Ab+dyQUoCCJoE1IV11R/kn6J+RoMBuBkJhzJEIKJ4myQJhw6lGIXfkRA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -7217,39 +6887,43 @@ packages: dependencies: debug: 4.3.4 enhanced-resolve: 5.10.0 - eslint: 8.19.0 - eslint-plugin-import: 2.26.0_txgtzxbwwbsdf6liwdfp2zycdy - get-tsconfig: /@unts/get-tsconfig/4.1.1 + eslint: 8.20.0 + eslint-plugin-import: /eslint-plugin-i/2.26.0_hap3noddfugcdvzy74spnmfiia + get-tsconfig: 4.2.0 globby: 13.1.2 is-core-module: 2.9.0 is-glob: 4.0.3 - synckit: 0.7.2 + synckit: 0.8.1 transitivePeerDependencies: - supports-color dev: true - /eslint-mdx/2.0.1_eslint@8.19.0: - resolution: {integrity: sha512-25qjdxWQGDX0zXxnZGfqwEbWjUuY1eCnK7CIq3fNE+5rWSAeleJ/i0nLKcgh6XrvmxKn6ZYcJ9msdeqmL4kPMQ==} - engines: {node: '>=12.20'} + /eslint-mdx/2.0.2_eslint@8.20.0: + resolution: {integrity: sha512-MEVpk4Up8DNvabR9chGE2sKhInmSgSdtqEW9CueYTExZB0t+qaT3KGctbDjbcD5YkDbvYhgSCYo/J72ncIPIbw==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: eslint: '>=8.0.0' dependencies: + acorn: 8.8.0 + acorn-jsx: 5.3.2_acorn@8.8.0 cosmiconfig: 7.0.1 - eslint: 8.19.0 - estree-util-visit: 1.1.0 + eslint: 8.20.0 + espree: 9.3.2 + estree-util-visit: 1.2.0 remark-mdx: 2.1.2 remark-parse: 10.0.1 remark-stringify: 10.0.2 - synckit: 0.7.2 + synckit: 0.8.1 tslib: 2.4.0 unified: 10.1.2 unist-util-visit: 4.1.0 + uvu: 0.5.6 vfile: 5.3.4 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.3_adcwpkg4usihyvzg6ysrflevky: + /eslint-module-utils/2.7.3_yzqajmhwoab43q6pv6w7mqywxm: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -7267,94 +6941,92 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm + '@typescript-eslint/parser': 5.31.0_he2ccbldppg44uulnyq4rwocfa debug: 3.2.7 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 3.2.5_q2xwze32dd33a2fc2qubwr4ie4 + eslint-import-resolver-typescript: 3.3.0_rrrh6qwanyj3uwtbsjyts4vv2m find-up: 2.1.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-css/0.6.0_eslint@8.19.0: + /eslint-plugin-css/0.6.0_eslint@8.20.0: resolution: {integrity: sha512-cQ+FsHNmVVSfMhiZnhhBvvdmzNF2oDvuY9oSpfGGMJctwDQiKtZ1rdALb0psHfobg8nBPwkgHg4i8JQhI8lXJQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=7.0.0' dependencies: colord: 2.9.2 - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 known-css-properties: 0.24.0 postcss-value-parser: 4.2.0 dev: true - /eslint-plugin-es-x/5.2.1_eslint@8.19.0: + /eslint-plugin-es-x/5.2.1_eslint@8.20.0: resolution: {integrity: sha512-NRNKsXjFwfgm11seplh8OiJ/2nbklD5ya72dbOOjURGZxpl8fzjRtQcErvl1UT306GtIoEEeG4OZqnwwsRABqg==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 regexpp: 3.2.0 dev: true - /eslint-plugin-es/4.1.0_eslint@8.19.0: + /eslint-plugin-es/4.1.0_eslint@8.20.0: resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: - eslint: 8.19.0 + eslint: 8.20.0 eslint-utils: 2.1.0 regexpp: 3.2.0 dev: true - /eslint-plugin-eslint-comments/3.2.0_eslint@8.19.0: + /eslint-plugin-eslint-comments/3.2.0_eslint@8.20.0: resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} engines: {node: '>=6.5.0'} peerDependencies: eslint: '>=4.19.1' dependencies: escape-string-regexp: 1.0.5 - eslint: 8.19.0 + eslint: 8.20.0 ignore: 5.2.0 dev: true - /eslint-plugin-import/2.26.0_txgtzxbwwbsdf6liwdfp2zycdy: - resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + /eslint-plugin-i/2.26.0_hap3noddfugcdvzy74spnmfiia: + resolution: {integrity: sha512-d1o6wLEslujT20ObVE/sAfpgsMBlU58P0rU+sudTHCuWDpVhFAuDz1cYzeM70RJ++XCUsCYBID4a3m51TOPT+g==} engines: {node: '>=4'} peerDependencies: - '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true dependencies: - '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.19.0 + eslint: 8.20.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_adcwpkg4usihyvzg6ysrflevky + eslint-module-utils: 2.7.3_yzqajmhwoab43q6pv6w7mqywxm + get-own-property-symbols: 0.9.5 + get-tsconfig: 4.2.0 has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 minimatch: 3.1.2 + object.getownpropertydescriptors: 2.1.4 object.values: 1.1.5 resolve: 1.22.1 - tsconfig-paths: 3.14.1 transitivePeerDependencies: + - '@typescript-eslint/parser' - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color dev: true - /eslint-plugin-jest/26.5.3_3yacqyit32n2tvjhojswm22mwq: - resolution: {integrity: sha512-sICclUqJQnR1bFRZGLN2jnSVsYOsmPYYnroGCIMVSvTS3y8XR3yjzy1EcTQmk6typ5pRgyIWzbjqxK6cZHEZuQ==} + /eslint-plugin-jest/26.6.0_si3czhlqitvu774dcistffj7oy: + resolution: {integrity: sha512-f8n46/97ZFdU4KqeQYqO8AEVGIhHWvkpgNBWHH3jrM28/y8llnbf3IjfIKv6p2pZIMinK1PCqbbROxs9Eud02Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 @@ -7366,16 +7038,15 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.30.6_2vt5mtrqleafs33qg2bhpmbaqm - '@typescript-eslint/utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm - eslint: 8.19.0 - jest: 28.1.2_@types+node@18.0.5 + '@typescript-eslint/eslint-plugin': 5.31.0_d5zwcxr4bwkhmuo464cb3a2puu + '@typescript-eslint/utils': 5.31.0_he2ccbldppg44uulnyq4rwocfa + eslint: 8.20.0 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsdoc/39.3.3_eslint@8.19.0: + /eslint-plugin-jsdoc/39.3.3_eslint@8.20.0: resolution: {integrity: sha512-K/DAjKRUNaUTf0KQhI9PvsF+Y3mGDx/j0pofXsJCQe/tmRsRweBIXR353c8nAro0lytZYEf7l0PluBpzKDiHxw==} engines: {node: ^14 || ^16 || ^17 || ^18} peerDependencies: @@ -7385,7 +7056,7 @@ packages: comment-parser: 1.3.1 debug: 4.3.4 escape-string-regexp: 4.0.0 - eslint: 8.19.0 + eslint: 8.20.0 esquery: 1.4.0 semver: 7.3.7 spdx-expression-parse: 3.0.1 @@ -7393,20 +7064,20 @@ packages: - supports-color dev: true - /eslint-plugin-json-schema-validator/3.2.5_eslint@8.19.0: - resolution: {integrity: sha512-++cfWdI0SNUI6er5uDd5ukpRU9t6UI1xn9wJ9sGhEzBtTDZYaZYWHG35/onptoy9keCWHbSE/r2pqk58IWADkQ==} - engines: {node: ^14.17.0 || >=16.0.0} + /eslint-plugin-json-schema-validator/4.0.0_eslint@8.20.0: + resolution: {integrity: sha512-j1BuYdrcMRN2EFkUJAB+M0xYUdXZSo07GNzf9H3q1hRA+mQ2AxgkPR7jV4r6VRuu8PSjSyb3mTZ2uhzcHLEftw==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: ajv: 8.11.0 debug: 4.3.4 - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 json-schema-migrate: 2.0.0 jsonc-eslint-parser: 2.1.0 minimatch: 5.1.0 - synckit: 0.7.2 + synckit: 0.8.1 toml-eslint-parser: 0.4.0 tunnel-agent: 0.6.0 yaml-eslint-parser: 1.0.1 @@ -7414,55 +7085,55 @@ packages: - supports-color dev: true - /eslint-plugin-jsonc/2.3.1_eslint@8.19.0: + /eslint-plugin-jsonc/2.3.1_eslint@8.20.0: resolution: {integrity: sha512-8sgWGWiVRMFL6xGawRymrE4RjZJgiU0rXYgFFb71wvdwuUkPgWSvfFtc8jfwcgjjqFjis8vzCUFsg7SciMEDWw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 jsonc-eslint-parser: 2.1.0 natural-compare: 1.4.0 dev: true - /eslint-plugin-markdown/2.2.1_eslint@8.19.0: - resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==} - engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0} + /eslint-plugin-markdown/3.0.0_eslint@8.20.0: + resolution: {integrity: sha512-hRs5RUJGbeHDLfS7ELanT0e29Ocyssf/7kBM+p7KluY5AwngGkDf8Oyu4658/NZSGTTq05FZeWbkxXtbVyHPwg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - eslint: '>=6.0.0' + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.19.0 + eslint: 8.20.0 mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-markup/0.10.0_eslint@8.19.0: - resolution: {integrity: sha512-vC7b3HJldGSb10utUC+cPm2xdsrLz+caKMsHVweOKcBTvyt7tl3wZEXl85gCFjBFsZRraDPZ9qpZlzWd2RvLww==} + /eslint-plugin-markup/0.10.1_eslint@8.20.0: + resolution: {integrity: sha512-hX5CQBv4MHCP3bhS/cRo8DCCFufn5gk9nqpTfPyM2WjLbKAojHnutQSrEzMlrm5ETBrkwaCYJSphnPfNJ1MFXQ==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: eslint: '>=5.0.0' dependencies: cosmiconfig: 7.0.1 - eslint: 8.19.0 - eslint-plugin-utils: 0.3.0_eslint@8.19.0 - markuplint: 2.9.0 - synckit: 0.7.2 + eslint: 8.20.0 + eslint-plugin-utils: 0.3.1_eslint@8.20.0 + markuplint: 2.10.0 + synckit: 0.8.1 tslib: 2.4.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-mdx/2.0.1_eslint@8.19.0: - resolution: {integrity: sha512-BKPKX6+KxOkvKe+ASxZJeBGdrWemM8NtgJrzxzS30/hwxcEo86jsQi9SJmSrWLUs0P9KAAnM2/iW5ry/oRos8g==} - engines: {node: '>=12.20'} + /eslint-plugin-mdx/2.0.2_eslint@8.20.0: + resolution: {integrity: sha512-9mHBCxfB15YaewEHRwmFZVOlnYn7CAWKA4F43oJ8UGYWERTxJjiEqZgfK3QL9wP3zOIubOWcq4gUKzNmGbolVg==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} peerDependencies: eslint: '>=8.0.0' dependencies: - eslint: 8.19.0 - eslint-mdx: 2.0.1_eslint@8.19.0 - eslint-plugin-markdown: 2.2.1_eslint@8.19.0 + eslint: 8.20.0 + eslint-mdx: 2.0.2_eslint@8.20.0 + eslint-plugin-markdown: 3.0.0_eslint@8.20.0 remark-mdx: 2.1.2 remark-parse: 10.0.1 remark-stringify: 10.0.2 @@ -7473,16 +7144,16 @@ packages: - supports-color dev: true - /eslint-plugin-n/15.2.4_eslint@8.19.0: + /eslint-plugin-n/15.2.4_eslint@8.20.0: resolution: {integrity: sha512-tjnVMv2fiXYMnuiIFI8QMtyUFI42SckEEWvi8h68SWGWshfqO6SSCASy24dGMGAiy7NUk6DZt90DM0iNUsmQ5w==} engines: {node: '>=12.22.0'} peerDependencies: eslint: '>=7.0.0' dependencies: builtins: 5.0.1 - eslint: 8.19.0 - eslint-plugin-es: 4.1.0_eslint@8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-plugin-es: 4.1.0_eslint@8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 ignore: 5.2.0 is-core-module: 2.9.0 minimatch: 3.1.2 @@ -7490,7 +7161,7 @@ packages: semver: 7.3.7 dev: true - /eslint-plugin-prettier/4.2.1_7uxdfn2xinezdgvmbammh6ev5i: + /eslint-plugin-prettier/4.2.1_g4fztgbwjyq2fvmcscny2sj6fy: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -7501,31 +7172,31 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.19.0 - eslint-config-prettier: 8.5.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-config-prettier: 8.5.0_eslint@8.20.0 prettier: 2.7.1 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-promise/6.0.0_eslint@8.19.0: + /eslint-plugin-promise/6.0.0_eslint@8.20.0: resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.19.0 + eslint: 8.20.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.19.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.20.0: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.19.0 + eslint: 8.20.0 dev: true - /eslint-plugin-react/7.30.1_eslint@8.19.0: + /eslint-plugin-react/7.30.1_eslint@8.20.0: resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==} engines: {node: '>=4'} peerDependencies: @@ -7534,9 +7205,9 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.19.0 + eslint: 8.20.0 estraverse: 5.3.0 - jsx-ast-utils: 3.3.1 + jsx-ast-utils: 3.3.2 minimatch: 3.1.2 object.entries: 1.1.5 object.fromentries: 2.0.5 @@ -7548,15 +7219,15 @@ packages: string.prototype.matchall: 4.0.7 dev: true - /eslint-plugin-regexp/1.7.0_eslint@8.19.0: - resolution: {integrity: sha512-nmhXqrEP+O+dz2z5MSkc41u/4fA8oakweoCUdfYwox7DBhzadEqZz8T+s6/UiY0NIU0kv+3UrzBfhPp4wUxbaA==} + /eslint-plugin-regexp/1.8.0_eslint@8.20.0: + resolution: {integrity: sha512-zRtG5OpWF+istPsjdZYGH23s2ONuN+EDzioGH81WUPehvwlW/l2sh2EBYdnf58UL9nF4oPQXktaABSOpfeQJ9g==} engines: {node: ^12 || >=14} peerDependencies: eslint: '>=6.0.0' dependencies: comment-parser: 1.3.1 - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 grapheme-splitter: 1.0.4 jsdoctypeparser: 9.0.0 refa: 0.9.1 @@ -7565,43 +7236,52 @@ packages: scslre: 0.1.6 dev: true - /eslint-plugin-simple-import-sort/7.0.0_eslint@8.19.0: + /eslint-plugin-simple-import-sort/7.0.0_eslint@8.20.0: resolution: {integrity: sha512-U3vEDB5zhYPNfxT5TYR7u01dboFZp+HNpnGhkDB2g/2E4wZ/g1Q9Ton8UwCLfRV9yAKyYqDh62oHOamvkFxsvw==} peerDependencies: eslint: '>=5.0.0' dependencies: - eslint: 8.19.0 + eslint: 8.20.0 dev: true - /eslint-plugin-sonar/0.8.0_2l6pd2z6wpkfvxik46nihypw3e: + /eslint-plugin-sonar/0.8.0_x45rze3t5r5rpj27b7qxdjmrpe: resolution: {integrity: sha512-5ZqgYIY1NSyR80v9RXbgwaK/jkHuGmuBa7ybsDEhwPydGplYvoj4zx8ahR8II7SoIOXPuzeh8HifEvKQSxu0iQ==} engines: {node: '>=12.20'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 typescript: ^4.0.0 dependencies: - '@babel/eslint-parser': 7.18.2_ygqbvsyswrl2cmipz2mlfqys74 + '@babel/eslint-parser': 7.18.9_454u7sltq2wfyzqnoclqps3oeu builtin-modules: 3.3.0 bytes: 3.1.2 - eslint: 8.19.0 - eslint-plugin-sonarjs: 0.13.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-plugin-sonarjs: 0.13.0_eslint@8.20.0 scslre: 0.1.6 typescript: 4.7.4 transitivePeerDependencies: - '@babel/core' dev: true - /eslint-plugin-sonarjs/0.13.0_eslint@8.19.0: + /eslint-plugin-sonarjs/0.13.0_eslint@8.20.0: resolution: {integrity: sha512-t3m7ta0EspzDxSOZh3cEOJIJVZgN/TlJYaBGnQlK6W/PZNbWep8q4RQskkJkA7/zwNpX0BaoEOSUUrqaADVoqA==} engines: {node: '>=12'} peerDependencies: eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.19.0 + eslint: 8.20.0 + dev: true + + /eslint-plugin-sonarjs/0.14.0_eslint@8.20.0: + resolution: {integrity: sha512-0X0q3fB8ghppms19cR2oIK2ajoFp7DEy3AVGDqO7WX02r1aWOzkrHa+veatGZw+R7amgBvfcF0qHCG66p9Zoag==} + engines: {node: '>=12'} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.20.0 dev: true - /eslint-plugin-svelte/2.2.0_m4jpobot6gi3xtcba7bv5cflma: - resolution: {integrity: sha512-V7LwA2lEzGqQ1/Cor3uZS/dL3ff6kdHX44TNYViXyHifIEsFiN2TJWdnH+n6NewjCQ93KVI4cWeZI0Pl7ET/hA==} + /eslint-plugin-svelte/2.3.0_piwa6j2njmnknm35bh3wz5v52y: + resolution: {integrity: sha512-yPbbqGz6e2jbYla4IJTXg1MTFVPnPvJDDhkaGLRzQg9u6czIdRHKpE/nx0S7q3r0ZkbfCRq+T5Hhk69Qg+0LlA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0-0 @@ -7611,36 +7291,36 @@ packages: optional: true dependencies: debug: 4.3.4 - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 known-css-properties: 0.25.0 postcss: 8.4.14 postcss-load-config: 3.1.4_postcss@8.4.14 postcss-safe-parser: 6.0.0_postcss@8.4.14 sourcemap-codec: 1.4.8 - svelte: 3.48.0 - svelte-eslint-parser: 0.16.4_svelte@3.48.0 + svelte: 3.49.0 + svelte-eslint-parser: 0.17.0_svelte@3.49.0 transitivePeerDependencies: - supports-color - ts-node dev: true - /eslint-plugin-toml/0.3.1_eslint@8.19.0: + /eslint-plugin-toml/0.3.1_eslint@8.20.0: resolution: {integrity: sha512-glaDFIEeDUYb9VrNdKGiSOmeRQ+jAFJVV5xhu3chYOF8+YfMYiUQhpCwzgYYiFTR2Hv5TYlO02oRwKxjMIw17Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.19.0 + eslint: 8.20.0 lodash: 4.17.21 toml-eslint-parser: 0.4.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-unicorn/43.0.1_eslint@8.19.0: - resolution: {integrity: sha512-wYvF6q0RRTKw6gzbKy5bbazWUrBEPIto2S9U6eSF+tsHgtgE+CwQ6Bww1W2Ie9TRED01QkZRN79c5aVMFgrFYw==} + /eslint-plugin-unicorn/43.0.2_eslint@8.20.0: + resolution: {integrity: sha512-DtqZ5mf/GMlfWoz1abIjq5jZfaFuHzGBZYIeuJfEoKKGWRHr2JiJR+ea+BF7Wx2N1PPRoT/2fwgiK1NnmNE3Hg==} engines: {node: '>=14.18'} peerDependencies: eslint: '>=8.18.0' @@ -7648,8 +7328,8 @@ packages: '@babel/helper-validator-identifier': 7.18.6 ci-info: 3.3.2 clean-regexp: 1.0.0 - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 esquery: 1.4.0 indent-string: 4.0.0 is-builtin-module: 3.1.0 @@ -7662,41 +7342,41 @@ packages: strip-indent: 3.0.0 dev: true - /eslint-plugin-utils/0.3.0_eslint@8.19.0: - resolution: {integrity: sha512-8f7VcZNYE1f3enuW+FdEJlcC233FEDq4ac7jtSh8PM6G+sAEj/EkNuxvcv1Vs3el7mfBKHWNtDOlC8qeKZz2FA==} + /eslint-plugin-utils/0.3.1_eslint@8.20.0: + resolution: {integrity: sha512-bomAAoDLoAZ54eu2+fTOMl02q+fhGlQkU9LqIbsADFiTaaWWpfozbeX70I9RxwwkzZdFpfG+n06yeKlWv7s8dQ==} engines: {node: '>=10'} peerDependencies: eslint: '>=5.0.0' dependencies: - eslint: 8.19.0 + eslint: 8.20.0 dev: true - /eslint-plugin-vue/9.2.0_eslint@8.19.0: - resolution: {integrity: sha512-W2hc+NUXoce8sZtWgZ45miQTy6jNyuSdub5aZ1IBune4JDeAyzucYX0TzkrQ1jMO52sNUDYlCIHDoaNePe0p5g==} + /eslint-plugin-vue/9.3.0_eslint@8.20.0: + resolution: {integrity: sha512-iscKKkBZgm6fGZwFt6poRoWC0Wy2dQOlwUPW++CiPoQiw1enctV2Hj5DBzzjJZfyqs+FAXhgzL4q0Ww03AgSmQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.19.0 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint: 8.20.0 + eslint-utils: 3.0.0_eslint@8.20.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.10 semver: 7.3.7 - vue-eslint-parser: 9.0.3_eslint@8.19.0 + vue-eslint-parser: 9.0.3_eslint@8.20.0 xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-yml/1.0.0_eslint@8.19.0: + /eslint-plugin-yml/1.0.0_eslint@8.20.0: resolution: {integrity: sha512-0RVoUFh5vpznE2DIP5agSpWO/nU8GgAWwoTAHWopU2X+1SCB5ykHU6DwS0GrZ5Hvejtk6CcADQllpQQJB4C5QA==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.19.0 + eslint: 8.20.0 lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.0.1 @@ -7732,13 +7412,13 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.19.0: + /eslint-utils/3.0.0_eslint@8.20.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.19.0 + eslint: 8.20.0 eslint-visitor-keys: 2.1.0 dev: true @@ -7757,8 +7437,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.19.0: - resolution: {integrity: sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==} + /eslint/8.20.0: + resolution: {integrity: sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -7771,7 +7451,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.19.0 + eslint-utils: 3.0.0_eslint@8.20.0 eslint-visitor-keys: 3.3.0 espree: 9.3.2 esquery: 1.4.0 @@ -7780,7 +7460,7 @@ packages: file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 6.0.2 - globals: 13.16.0 + globals: 13.17.0 ignore: 5.2.0 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -7805,8 +7485,8 @@ packages: resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.7.1 - acorn-jsx: 5.3.2_acorn@8.7.1 + acorn: 8.8.0 + acorn-jsx: 5.3.2_acorn@8.8.0 eslint-visitor-keys: 3.3.0 dev: true @@ -7844,16 +7524,16 @@ packages: engines: {node: '>=4.0'} dev: true - /estree-util-attach-comments/2.0.1: - resolution: {integrity: sha512-1wTBNndwMIsnvnuxjFIaYQz0M7PsCvcgP0YD7/dU8xWh1FuHk+O6pYpT4sLa5THY/CywJvdIdgw4uhozujga/g==} + /estree-util-attach-comments/2.1.0: + resolution: {integrity: sha512-rJz6I4L0GaXYtHpoMScgDIwM0/Vwbu5shbMeER596rB2D1EWF6+Gj0e0UKzJPZrpoOc87+Q2kgVFHfjAymIqmw==} dependencies: - '@types/estree': 0.0.51 + '@types/estree': 1.0.0 dev: true - /estree-util-build-jsx/2.1.0: - resolution: {integrity: sha512-gsBGfsY6LOJUIDwmMkTOcgCX+3r/LUjRBccgHMSW55PHjhZsV13RmPl/iwpAvW8KcQqoN9P0FEFWTSS2Zc5bGA==} + /estree-util-build-jsx/2.2.0: + resolution: {integrity: sha512-apsfRxF9uLrqosApvHVtYZjISPvTJ+lBiIydpC+9wE6cF6ssbhnjyQLqaIjgzGxvC2Hbmec1M7g91PoBayYoQQ==} dependencies: - '@types/estree-jsx': 0.0.1 + '@types/estree-jsx': 1.0.0 estree-util-is-identifier-name: 2.0.1 estree-walker: 3.0.1 dev: true @@ -7862,10 +7542,10 @@ packages: resolution: {integrity: sha512-rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ==} dev: true - /estree-util-visit/1.1.0: - resolution: {integrity: sha512-3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==} + /estree-util-visit/1.2.0: + resolution: {integrity: sha512-wdsoqhWueuJKsh5hqLw3j8lwFqNStm92VcwtAOAny8g/KS/l5Y8RISjR4k5W6skCj3Nirag/WUCMS0Nfy3sgsg==} dependencies: - '@types/estree-jsx': 0.0.1 + '@types/estree-jsx': 1.0.0 '@types/unist': 2.0.6 dev: true @@ -8007,11 +7687,6 @@ packages: pify: 2.3.0 dev: true - /exit/0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} - dev: true - /expand-tilde/2.0.2: resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} engines: {node: '>=0.10.0'} @@ -8019,17 +7694,6 @@ packages: homedir-polyfill: 1.0.3 dev: true - /expect/28.1.1: - resolution: {integrity: sha512-/AANEwGL0tWBwzLNOvO0yUdy2D52jVdNXppOqswC49sxMN2cPWsGCQdzuIf9tj6hHoBQzNvx75JUYuQAckPo3w==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/expect-utils': 28.1.1 - jest-get-type: 28.0.2 - jest-matcher-utils: 28.1.1 - jest-message-util: 28.1.1 - jest-util: 28.1.1 - dev: true - /express/4.18.1: resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} engines: {node: '>= 0.10.0'} @@ -8110,7 +7774,7 @@ packages: /fast-async/7.0.6: resolution: {integrity: sha512-/iUa3eSQC+Xh5tN6QcVLsEsN7b1DaPIoTZo++VpLLIxtdNW2tEmMZex4TcrMeRnBwMOpZwue2CB171wjt5Kgqg==} dependencies: - '@babel/generator': 7.18.7 + '@babel/generator': 7.18.9 '@babel/helper-module-imports': 7.18.6 babylon: 7.0.0-beta.47 nodent-runtime: 3.2.1 @@ -8155,8 +7819,9 @@ packages: strnum: 1.0.5 dev: true - /fastest-levenshtein/1.0.12: - resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==} + /fastest-levenshtein/1.0.14: + resolution: {integrity: sha512-tFfWHjnuUfKE186Tfgr+jtaFc0mZTApEgKDOeyN+FwOqRkO/zK/3h1AiRd8u8CY53owL3CUmGr/oI9p/RdyLTA==} + engines: {node: '>= 4.9.1'} dev: true /fastq/1.13.0: @@ -8184,12 +7849,6 @@ packages: websocket-driver: 0.7.4 dev: true - /fb-watchman/2.0.1: - resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==} - dependencies: - bser: 2.1.1 - dev: true - /fd-slicer/1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: @@ -8211,7 +7870,7 @@ packages: flat-cache: 3.0.4 dev: true - /file-loader/6.2.0_webpack@5.73.0: + /file-loader/6.2.0_webpack@5.74.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -8219,7 +7878,7 @@ packages: dependencies: loader-utils: 2.0.2 schema-utils: 3.1.1 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /file-type/10.11.0: @@ -8227,8 +7886,8 @@ packages: engines: {node: '>=6'} dev: true - /file-type/16.5.3: - resolution: {integrity: sha512-uVsl7iFhHSOY4bEONLlTK47iAHtNsFHWP5YE4xJfZ4rnX7S1Q3wce09XgqSC7E/xh8Ncv/be1lNoyprlUH/x6A==} + /file-type/16.5.4: + resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==} engines: {node: '>=10'} dependencies: readable-web-to-node-stream: 3.0.2 @@ -8381,6 +8040,23 @@ packages: debug: 4.3.4 dev: true + /foreground-child/2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 3.0.7 + dev: true + + /form-data/4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + /format/0.2.2: resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} @@ -8502,6 +8178,10 @@ packages: engines: {node: 6.* || 8.* || >= 10.*} dev: true + /get-func-name/2.0.0: + resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} + dev: true + /get-installed-path/2.1.1: resolution: {integrity: sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==} dependencies: @@ -8520,9 +8200,8 @@ packages: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} dev: true - /get-package-type/0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + /get-own-property-symbols/0.9.5: + resolution: {integrity: sha512-ZvAIlmbmRE39iErqrw45vIkUUi0TQ78AWi5RtesI8rP13kECtm56WwgaWXn8valvJ6bOhQhBrn+PoNqnDu132w==} dev: true /get-port/3.2.0: @@ -8587,6 +8266,10 @@ packages: get-intrinsic: 1.1.2 dev: true + /get-tsconfig/4.2.0: + resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==} + dev: true + /gifsicle/5.3.0: resolution: {integrity: sha512-FJTpgdj1Ow/FITB7SVza5HlzXa+/lqEY0tHQazAJbuAdvyJtkH4wIdsR2K414oaTwRXHFLLF+tYbipj+OpYg+Q==} engines: {node: '>=10'} @@ -8706,8 +8389,8 @@ packages: engines: {node: '>=4'} dev: true - /globals/13.16.0: - resolution: {integrity: sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==} + /globals/13.17.0: + resolution: {integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -8903,18 +8586,19 @@ packages: resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} dev: true - /hast-util-to-estree/2.0.2: - resolution: {integrity: sha512-UQrZVeBj6A9od0lpFvqHKNSH9zvDrNoyWKbveu1a2oSCXEDUI+3bnd6BoiQLPnLrcXXn/jzJ6y9hmJTTlvf8lQ==} + /hast-util-to-estree/2.1.0: + resolution: {integrity: sha512-Vwch1etMRmm89xGgz+voWXvVHba2iiMdGMKmaMfYt35rbVtFDq8JNwwAIvi8zHMkO6Gvqo9oTMwJTmzVRfXh4g==} dependencies: - '@types/estree-jsx': 0.0.1 + '@types/estree': 1.0.0 + '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 '@types/unist': 2.0.6 comma-separated-tokens: 2.0.2 - estree-util-attach-comments: 2.0.1 + estree-util-attach-comments: 2.1.0 estree-util-is-identifier-name: 2.0.1 hast-util-whitespace: 2.0.0 - mdast-util-mdx-expression: 1.2.1 - mdast-util-mdxjs-esm: 1.2.0 + mdast-util-mdx-expression: 1.3.0 + mdast-util-mdxjs-esm: 1.3.0 property-information: 6.1.1 space-separated-tokens: 2.0.1 style-to-object: 0.3.0 @@ -8936,7 +8620,7 @@ packages: /history/5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: - '@babel/runtime': 7.18.6 + '@babel/runtime': 7.18.9 dev: true /homedir-polyfill/1.0.3: @@ -8961,7 +8645,7 @@ packages: resolution: {integrity: sha512-rRnjWu0Bxj+nIfUOkz0695C0H6tRrN5iYIzYejb0tDEefe2AekHu/U5Kn9pEie5vsJqpNQU02az7TGSH3qpz4Q==} engines: {node: ^12.13.0 || ^14.15.0 || >=16} dependencies: - lru-cache: 7.12.0 + lru-cache: 7.13.1 dev: true /hpack.js/2.1.6: @@ -8973,6 +8657,13 @@ packages: wbuf: 1.7.3 dev: true + /html-encoding-sniffer/3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} + dependencies: + whatwg-encoding: 2.0.0 + dev: true + /html-entities/2.3.3: resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} dev: true @@ -8981,15 +8672,15 @@ packages: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true - /html-loader/3.1.2_webpack@5.73.0: - resolution: {integrity: sha512-9WQlLiAV5N9fCna4MUmBW/ifaUbuFZ2r7IZmtXzhyfyi4zgPEjXsmsYCKs+yT873MzRj+f1WMjuAiPNA7C6Tcw==} - engines: {node: '>= 12.13.0'} + /html-loader/4.1.0_webpack@5.74.0: + resolution: {integrity: sha512-QDDNmLgn96NWtTPx/VXRerFXH0hn7cm4bruqsZ333GCb+rqiqGurcxtP/M52wcui1/iLiu0l5ms/McE7/Ik6aQ==} + engines: {node: '>= 14.15.0'} peerDependencies: webpack: ^5.0.0 dependencies: html-minifier-terser: 6.1.0 - parse5: 6.0.1 - webpack: 5.73.0_esbuild@0.14.48 + parse5: 7.0.0 + webpack: 5.74.0_esbuild@0.14.50 dev: true /html-minifier-terser/6.1.0: @@ -8998,12 +8689,12 @@ packages: hasBin: true dependencies: camel-case: 4.1.2 - clean-css: 5.3.0 + clean-css: 5.3.1 commander: 8.3.0 he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.14.1 + terser: 5.14.2 dev: true /html-tags/2.0.0: @@ -9016,18 +8707,18 @@ packages: engines: {node: '>=8'} dev: true - /html-webpack-harddisk-plugin/2.0.0_vaqkluxv57wdoiytlozrwxzyse: + /html-webpack-harddisk-plugin/2.0.0_dseqt6curza6cwqlyc3eowsnru: resolution: {integrity: sha512-fWKH72FyaQ5K/j+kYy6LnQsQucSDnsEkghmB6g29TtpJ4sxHYFduEeUV1hfDqyDpCRW+bP7yacjQ+1ikeIDqeg==} engines: {node: '>=10.13'} peerDependencies: html-webpack-plugin: ^5.0.0 webpack: ^5.0.0 dependencies: - html-webpack-plugin: 5.5.0_webpack@5.73.0 - webpack: 5.73.0_esbuild@0.14.48 + html-webpack-plugin: 5.5.0_webpack@5.74.0 + webpack: 5.74.0_esbuild@0.14.50 dev: true - /html-webpack-plugin/5.5.0_webpack@5.73.0: + /html-webpack-plugin/5.5.0_webpack@5.74.0: resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -9038,7 +8729,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /htmlparser2/6.1.0: @@ -9092,6 +8783,17 @@ packages: resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} dev: true + /http-proxy-agent/5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + /http-proxy-middleware/2.0.6_vw7eq5saxorls4jwsr6ncij7dm: resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} engines: {node: '>=12.0.0'} @@ -9122,6 +8824,16 @@ packages: - debug dev: true + /https-proxy-agent/5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + /human-id/1.0.2: resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} dev: true @@ -9154,7 +8866,6 @@ packages: dependencies: safer-buffer: 2.1.2 dev: true - optional: true /icss-replace-symbols/1.1.0: resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} @@ -9265,7 +8976,7 @@ packages: resolution: {integrity: sha512-Q/QaPi+5HuwbZNtQRqUVk6hKacI6z9iWiCSQBisAv7uBynZwO7t1svkryKl7+iSQbkU/6t9DWnHz04cFs2WY7w==} engines: {node: '>=12'} dependencies: - file-type: 16.5.3 + file-type: 16.5.4 globby: 12.2.0 graceful-fs: 4.2.10 junk: 3.1.0 @@ -9315,15 +9026,6 @@ packages: engines: {node: '>=8'} dev: true - /import-local/3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} - hasBin: true - dependencies: - pkg-dir: 4.2.0 - resolve-cwd: 3.0.0 - dev: true - /import-meta-resolve/2.0.3: resolution: {integrity: sha512-fpAppnBpZ3ymQ/dPP97TNsco1HB5+V9SYJ3chY50PP8xn4U/w+Y6ovWBmTImB/prmGsTjzPh8pQYY+EVBlr9mw==} dependencies: @@ -9554,11 +9256,6 @@ packages: engines: {node: '>=12'} dev: true - /is-generator-fn/2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} - dev: true - /is-gif/3.0.0: resolution: {integrity: sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==} engines: {node: '>=6'} @@ -9665,6 +9362,10 @@ packages: engines: {node: '>=12'} dev: true + /is-potential-custom-element-name/1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + dev: true + /is-promise/2.2.2: resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} dev: true @@ -9672,13 +9373,13 @@ packages: /is-reference/1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: - '@types/estree': 0.0.52 + '@types/estree': 1.0.0 dev: true /is-reference/3.0.0: resolution: {integrity: sha512-Eo1W3wUoHWoCoVM4GVl/a+K0IgiqE5aIo4kJABFyMum1ZORlPkC+UC357sSQUL5w5QCE5kCC9upl75b7+7CY/Q==} dependencies: - '@types/estree': 0.0.52 + '@types/estree': 1.0.0 dev: true /is-regex/1.1.4: @@ -9803,19 +9504,6 @@ packages: engines: {node: '>=8'} dev: true - /istanbul-lib-instrument/5.2.0: - resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} - engines: {node: '>=8'} - dependencies: - '@babel/core': 7.18.6 - '@babel/parser': 7.18.6 - '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.0 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /istanbul-lib-report/3.0.0: resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} engines: {node: '>=8'} @@ -9825,19 +9513,8 @@ packages: supports-color: 7.2.0 dev: true - /istanbul-lib-source-maps/4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} - dependencies: - debug: 4.3.4 - istanbul-lib-coverage: 3.2.0 - source-map: 0.6.1 - transitivePeerDependencies: - - supports-color - dev: true - - /istanbul-reports/3.1.4: - resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==} + /istanbul-reports/3.1.5: + resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 @@ -9863,388 +9540,11 @@ packages: minimatch: 3.1.2 dev: true - /jest-changed-files/28.0.2: - resolution: {integrity: sha512-QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - execa: 5.1.1 - throat: 6.0.1 - dev: true - - /jest-circus/28.1.2: - resolution: {integrity: sha512-E2vdPIJG5/69EMpslFhaA46WkcrN74LI5V/cSJ59L7uS8UNoXbzTxmwhpi9XrIL3zqvMt5T0pl5k2l2u2GwBNQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/environment': 28.1.2 - '@jest/expect': 28.1.2 - '@jest/test-result': 28.1.1 - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - chalk: 4.1.2 - co: 4.6.0 - dedent: 0.7.0 - is-generator-fn: 2.1.0 - jest-each: 28.1.1 - jest-matcher-utils: 28.1.1 - jest-message-util: 28.1.1 - jest-runtime: 28.1.2 - jest-snapshot: 28.1.2 - jest-util: 28.1.1 - pretty-format: 28.1.1 - slash: 3.0.0 - stack-utils: 2.0.5 - throat: 6.0.1 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-cli/28.1.2_@types+node@18.0.5: - resolution: {integrity: sha512-l6eoi5Do/IJUXAFL9qRmDiFpBeEJAnjJb1dcd9i/VWfVWbp3mJhuH50dNtX67Ali4Ecvt4eBkWb4hXhPHkAZTw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 28.1.2 - '@jest/test-result': 28.1.1 - '@jest/types': 28.1.1 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.10 - import-local: 3.1.0 - jest-config: 28.1.2_@types+node@18.0.5 - jest-util: 28.1.1 - jest-validate: 28.1.1 - prompts: 2.4.2 - yargs: 17.5.1 - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node - dev: true - - /jest-config/28.1.2_@types+node@18.0.5: - resolution: {integrity: sha512-g6EfeRqddVbjPVBVY4JWpUY4IvQoFRIZcv4V36QkqzE0IGhEC/VkugFeBMAeUE7PRgC8KJF0yvJNDeQRbamEVA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' - peerDependenciesMeta: - '@types/node': - optional: true - ts-node: - optional: true - dependencies: - '@babel/core': 7.18.6 - '@jest/test-sequencer': 28.1.1 - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - babel-jest: 28.1.2_@babel+core@7.18.6 - chalk: 4.1.2 - ci-info: 3.3.2 - deepmerge: 4.2.2 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-circus: 28.1.2 - jest-environment-node: 28.1.2 - jest-get-type: 28.0.2 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.1 - jest-runner: 28.1.2 - jest-util: 28.1.1 - jest-validate: 28.1.1 - micromatch: 4.0.5 - parse-json: 5.2.0 - pretty-format: 28.1.1 - slash: 3.0.0 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-diff/28.1.1: - resolution: {integrity: sha512-/MUUxeR2fHbqHoMMiffe/Afm+U8U4olFRJ0hiVG2lZatPJcnGxx292ustVu7bULhjV65IYMxRdploAKLbcrsyg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - chalk: 4.1.2 - diff-sequences: 28.1.1 - jest-get-type: 28.0.2 - pretty-format: 28.1.1 - dev: true - - /jest-docblock/28.1.1: - resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - detect-newline: 3.1.0 - dev: true - - /jest-each/28.1.1: - resolution: {integrity: sha512-A042rqh17ZvEhRceDMi784ppoXR7MWGDEKTXEZXb4svt0eShMZvijGxzKsx+yIjeE8QYmHPrnHiTSQVhN4nqaw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/types': 28.1.1 - chalk: 4.1.2 - jest-get-type: 28.0.2 - jest-util: 28.1.1 - pretty-format: 28.1.1 - dev: true - - /jest-environment-node/28.1.2: - resolution: {integrity: sha512-oYsZz9Qw27XKmOgTtnl0jW7VplJkN2oeof+SwAwKFQacq3CLlG9u4kTGuuLWfvu3J7bVutWlrbEQMOCL/jughw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/environment': 28.1.2 - '@jest/fake-timers': 28.1.2 - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - jest-mock: 28.1.1 - jest-util: 28.1.1 - dev: true - - /jest-get-type/28.0.2: - resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dev: true - - /jest-haste-map/28.1.1: - resolution: {integrity: sha512-ZrRSE2o3Ezh7sb1KmeLEZRZ4mgufbrMwolcFHNRSjKZhpLa8TdooXOOFlSwoUzlbVs1t0l7upVRW2K7RWGHzbQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/types': 28.1.1 - '@types/graceful-fs': 4.1.5 - '@types/node': 18.0.5 - anymatch: 3.1.2 - fb-watchman: 2.0.1 - graceful-fs: 4.2.10 - jest-regex-util: 28.0.2 - jest-util: 28.1.1 - jest-worker: 28.1.1 - micromatch: 4.0.5 - walker: 1.0.8 - optionalDependencies: - fsevents: 2.3.2 - dev: true - - /jest-leak-detector/28.1.1: - resolution: {integrity: sha512-4jvs8V8kLbAaotE+wFR7vfUGf603cwYtFf1/PYEsyX2BAjSzj8hQSVTP6OWzseTl0xL6dyHuKs2JAks7Pfubmw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - jest-get-type: 28.0.2 - pretty-format: 28.1.1 - dev: true - - /jest-matcher-utils/28.1.1: - resolution: {integrity: sha512-NPJPRWrbmR2nAJ+1nmnfcKKzSwgfaciCCrYZzVnNoxVoyusYWIjkBMNvu0RHJe7dNj4hH3uZOPZsQA+xAYWqsw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - chalk: 4.1.2 - jest-diff: 28.1.1 - jest-get-type: 28.0.2 - pretty-format: 28.1.1 - dev: true - - /jest-message-util/28.1.1: - resolution: {integrity: sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@babel/code-frame': 7.18.6 - '@jest/types': 28.1.1 - '@types/stack-utils': 2.0.1 - chalk: 4.1.2 - graceful-fs: 4.2.10 - micromatch: 4.0.5 - pretty-format: 28.1.1 - slash: 3.0.0 - stack-utils: 2.0.5 - dev: true - - /jest-mock/28.1.1: - resolution: {integrity: sha512-bDCb0FjfsmKweAvE09dZT59IMkzgN0fYBH6t5S45NoJfd2DHkS3ySG2K+hucortryhO3fVuXdlxWcbtIuV/Skw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - dev: true - - /jest-pnp-resolver/1.2.2_jest-resolve@28.1.1: - resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} - engines: {node: '>=6'} - peerDependencies: - jest-resolve: '*' - peerDependenciesMeta: - jest-resolve: - optional: true - dependencies: - jest-resolve: 28.1.1 - dev: true - - /jest-regex-util/28.0.2: - resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dev: true - - /jest-resolve-dependencies/28.1.2: - resolution: {integrity: sha512-OXw4vbOZuyRTBi3tapWBqdyodU+T33ww5cPZORuTWkg+Y8lmsxQlVu3MWtJh6NMlKRTHQetF96yGPv01Ye7Mbg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - jest-regex-util: 28.0.2 - jest-snapshot: 28.1.2 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-resolve/28.1.1: - resolution: {integrity: sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - chalk: 4.1.2 - graceful-fs: 4.2.10 - jest-haste-map: 28.1.1 - jest-pnp-resolver: 1.2.2_jest-resolve@28.1.1 - jest-util: 28.1.1 - jest-validate: 28.1.1 - resolve: 1.22.1 - resolve.exports: 1.1.0 - slash: 3.0.0 - dev: true - - /jest-runner/28.1.2: - resolution: {integrity: sha512-6/k3DlAsAEr5VcptCMdhtRhOoYClZQmxnVMZvZ/quvPGRpN7OBQYPIC32tWSgOnbgqLXNs5RAniC+nkdFZpD4A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/console': 28.1.1 - '@jest/environment': 28.1.2 - '@jest/test-result': 28.1.1 - '@jest/transform': 28.1.2 - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - chalk: 4.1.2 - emittery: 0.10.2 - graceful-fs: 4.2.10 - jest-docblock: 28.1.1 - jest-environment-node: 28.1.2 - jest-haste-map: 28.1.1 - jest-leak-detector: 28.1.1 - jest-message-util: 28.1.1 - jest-resolve: 28.1.1 - jest-runtime: 28.1.2 - jest-util: 28.1.1 - jest-watcher: 28.1.1 - jest-worker: 28.1.1 - source-map-support: 0.5.13 - throat: 6.0.1 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-runtime/28.1.2: - resolution: {integrity: sha512-i4w93OsWzLOeMXSi9epmakb2+3z0AchZtUQVF1hesBmcQQy4vtaql5YdVe9KexdJaVRyPDw8DoBR0j3lYsZVYw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/environment': 28.1.2 - '@jest/fake-timers': 28.1.2 - '@jest/globals': 28.1.2 - '@jest/source-map': 28.1.2 - '@jest/test-result': 28.1.1 - '@jest/transform': 28.1.2 - '@jest/types': 28.1.1 - chalk: 4.1.2 - cjs-module-lexer: 1.2.2 - collect-v8-coverage: 1.0.1 - execa: 5.1.1 - glob: 7.2.3 - graceful-fs: 4.2.10 - jest-haste-map: 28.1.1 - jest-message-util: 28.1.1 - jest-mock: 28.1.1 - jest-regex-util: 28.0.2 - jest-resolve: 28.1.1 - jest-snapshot: 28.1.2 - jest-util: 28.1.1 - slash: 3.0.0 - strip-bom: 4.0.0 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-snapshot/28.1.2: - resolution: {integrity: sha512-wzrieFttZYfLvrCVRJxX+jwML2YTArOUqFpCoSVy1QUapx+LlV9uLbV/mMEhYj4t7aMeE9aSQFHSvV/oNoDAMA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@babel/core': 7.18.6 - '@babel/generator': 7.18.7 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.6 - '@babel/traverse': 7.18.6 - '@babel/types': 7.18.7 - '@jest/expect-utils': 28.1.1 - '@jest/transform': 28.1.2 - '@jest/types': 28.1.1 - '@types/babel__traverse': 7.17.1 - '@types/prettier': 2.6.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.6 - chalk: 4.1.2 - expect: 28.1.1 - graceful-fs: 4.2.10 - jest-diff: 28.1.1 - jest-get-type: 28.0.2 - jest-haste-map: 28.1.1 - jest-matcher-utils: 28.1.1 - jest-message-util: 28.1.1 - jest-util: 28.1.1 - natural-compare: 1.4.0 - pretty-format: 28.1.1 - semver: 7.3.7 - transitivePeerDependencies: - - supports-color - dev: true - - /jest-util/28.1.1: - resolution: {integrity: sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - chalk: 4.1.2 - ci-info: 3.3.2 - graceful-fs: 4.2.10 - picomatch: 2.3.1 - dev: true - - /jest-validate/28.1.1: - resolution: {integrity: sha512-Kpf6gcClqFCIZ4ti5++XemYJWUPCFUW+N2gknn+KgnDf549iLul3cBuKVe1YcWRlaF8tZV8eJCap0eECOEE3Ug==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/types': 28.1.1 - camelcase: 6.3.0 - chalk: 4.1.2 - jest-get-type: 28.0.2 - leven: 3.1.0 - pretty-format: 28.1.1 - dev: true - - /jest-watcher/28.1.1: - resolution: {integrity: sha512-RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/test-result': 28.1.1 - '@jest/types': 28.1.1 - '@types/node': 18.0.5 - ansi-escapes: 4.3.2 - chalk: 4.1.2 - emittery: 0.10.2 - jest-util: 28.1.1 - string-length: 4.0.2 - dev: true - /jest-worker/26.6.2: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -10253,40 +9553,11 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.0.5 + '@types/node': 18.6.1 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest-worker/28.1.1: - resolution: {integrity: sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@types/node': 18.0.5 - merge-stream: 2.0.0 - supports-color: 8.1.1 - dev: true - - /jest/28.1.2_@types+node@18.0.5: - resolution: {integrity: sha512-Tuf05DwLeCh2cfWCQbcz9UxldoDyiR1E9Igaei5khjonKncYdc6LDfynKCEWozK0oLE3GD+xKAo2u8x/0s6GOg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 28.1.2 - '@jest/types': 28.1.1 - import-local: 3.1.0 - jest-cli: 28.1.2_@types+node@18.0.5 - transitivePeerDependencies: - - '@types/node' - - supports-color - - ts-node - dev: true - /joycon/3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} engines: {node: '>=10'} @@ -10341,6 +9612,48 @@ packages: hasBin: true dev: true + /jsdom/20.0.0: + resolution: {integrity: sha512-x4a6CKCgx00uCmP+QakBDFXwjAJ69IkkIWHmtmjd3wvXPcdOS44hfX2vqkOQrVrq8l9DhNNADZRXaCEWvgXtVA==} + engines: {node: '>=14'} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + abab: 2.0.6 + acorn: 8.8.0 + acorn-globals: 6.0.0 + cssom: 0.5.0 + cssstyle: 2.3.0 + data-urls: 3.0.2 + decimal.js: 10.3.1 + domexception: 4.0.0 + escodegen: 2.0.0 + form-data: 4.0.0 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.1 + parse5: 7.0.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.0.0 + w3c-hr-time: 1.0.2 + w3c-xmlserializer: 3.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + ws: 8.8.1 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + /jsesc/0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true @@ -10403,14 +9716,14 @@ packages: resolution: {integrity: sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.7.1 + acorn: 8.8.0 eslint-visitor-keys: 3.3.0 espree: 9.3.2 semver: 7.3.7 dev: true - /jsonc-parser/3.0.0: - resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + /jsonc-parser/3.1.0: + resolution: {integrity: sha512-DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg==} dev: true /jsonc/2.0.0: @@ -10444,8 +9757,8 @@ packages: engines: {'0': node >= 0.2.0} dev: true - /jsonpointer/5.0.0: - resolution: {integrity: sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==} + /jsonpointer/5.0.1: + resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} engines: {node: '>=0.10.0'} dev: true @@ -10461,8 +9774,8 @@ packages: promise: 7.3.1 dev: true - /jsx-ast-utils/3.3.1: - resolution: {integrity: sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==} + /jsx-ast-utils/3.3.2: + resolution: {integrity: sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==} engines: {node: '>=4.0'} dependencies: array-includes: 3.1.5 @@ -10485,11 +9798,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /kleur/3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - dev: true - /kleur/4.1.5: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} @@ -10522,7 +9830,7 @@ packages: through2: 0.6.5 dev: true - /less-loader/11.0.0_less@4.1.3+webpack@5.73.0: + /less-loader/11.0.0_less@4.1.3+webpack@5.74.0: resolution: {integrity: sha512-9+LOWWjuoectIEx3zrfN83NAGxSUB5pWEabbbidVQVgZhN+wN68pOvuyirVlH1IK4VT1f3TmlyvAnCXh8O5KEw==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -10531,7 +9839,7 @@ packages: dependencies: klona: 2.0.5 less: 4.1.3 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /less/4.1.3: @@ -10591,6 +9899,11 @@ packages: engines: {node: '>=10'} dev: true + /lilconfig/2.0.6: + resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} + engines: {node: '>=10'} + dev: true + /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true @@ -10611,7 +9924,7 @@ packages: dependencies: cli-truncate: 3.1.0 colorette: 2.0.19 - commander: 9.3.0 + commander: 9.4.0 debug: 4.3.4 execa: 6.1.0 lilconfig: 2.0.5 @@ -10641,7 +9954,7 @@ packages: log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.5.5 + rxjs: 7.5.6 through: 2.3.8 wrap-ansi: 7.0.0 dev: true @@ -10670,7 +9983,7 @@ packages: /load-plugin/5.0.0: resolution: {integrity: sha512-jTz8tvC0BTMtof27lTSV5SAOnCRT0Z++k+S3QeQ5CrF8ZAS5L2nhi3euf4ZhJyDkds+nOQGyPcFqdQZ9s8ELkg==} dependencies: - '@npmcli/config': 4.1.0 + '@npmcli/config': 4.2.0 import-meta-resolve: 2.0.3 dev: true @@ -10717,6 +10030,11 @@ packages: engines: {node: '>=6'} dev: true + /local-pkg/0.4.2: + resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==} + engines: {node: '>=14'} + dev: true + /locate-path/2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} @@ -10829,6 +10147,12 @@ packages: signal-exit: 3.0.7 dev: true + /loupe/2.3.4: + resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==} + dependencies: + get-func-name: 2.0.0 + dev: true + /lower-case/2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: @@ -10870,8 +10194,8 @@ packages: yallist: 4.0.0 dev: true - /lru-cache/7.12.0: - resolution: {integrity: sha512-OIP3DwzRZDfLg9B9VP/huWBlpvbkmbfiBy8xmsXp4RPmE4A3MhwNozc5ZJ3fWnSg8fDcdlE/neRTPG2ycEKliw==} + /lru-cache/7.13.1: + resolution: {integrity: sha512-CHqbAq7NFlW3RSnoWXLJBxCWaZVBrfa9UEHId2M3AW8iEBurbqduNexEUCGc3SHc6iCYXNJCDi903LajSVAEPQ==} engines: {node: '>=12'} dev: true @@ -10887,6 +10211,13 @@ packages: sourcemap-codec: 1.4.8 dev: true + /magic-string/0.26.2: + resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} + engines: {node: '>=12'} + dependencies: + sourcemap-codec: 1.4.8 + dev: true + /make-dir/1.3.0: resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} engines: {node: '>=4'} @@ -10915,12 +10246,6 @@ packages: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} dev: true - /makeerror/1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} - dependencies: - tmpl: 1.0.5 - dev: true - /map-age-cleaner/0.1.3: resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} engines: {node: '>=6'} @@ -10960,8 +10285,8 @@ packages: - supports-color dev: true - /markuplint/2.9.0: - resolution: {integrity: sha512-zfJepajlWeQnfCQRME07CwZb4As0rjM8Mh/lv02zXEnVWJzsSX/DeLrTw3E2U3f3d6ehRoyV4WM4NxTlzI5IiA==} + /markuplint/2.10.0: + resolution: {integrity: sha512-baVjRvVOgV+MPR5180xEahI32yH7CbQmVH4sbnb/nc4gvSoJ9jjFg03dkZsopVOSp/XkuvH9L4JhjDwtUJmRnQ==} hasBin: true dependencies: '@markuplint/create-rule-helper': 2.3.3 @@ -10999,7 +10324,7 @@ packages: /mdast-comment-marker/2.1.0: resolution: {integrity: sha512-/+Cfm8A83PjkqjQDB9iYqHESGuXlriCWAwRGPJjkYmxXrF4r6saxeUlOKNrf+SogTwg9E8uyHRCFHLG6/BAAdA==} dependencies: - mdast-util-mdx-expression: 1.2.1 + mdast-util-mdx-expression: 1.3.0 transitivePeerDependencies: - supports-color dev: true @@ -11012,8 +10337,8 @@ packages: unist-util-visit: 4.1.0 dev: true - /mdast-util-find-and-replace/2.2.0: - resolution: {integrity: sha512-bz8hUWkMX7UcasORORcyBEsTKJ+dBiFwRPrm43hHC9NMRylIMLbfO5rwfeCN+UtY4AAi7s8WqXftb9eX6ZsqCg==} + /mdast-util-find-and-replace/2.2.1: + resolution: {integrity: sha512-SobxkQXFAdd4b5WmEakmkVoh18icjQRxGy5OWTCzgsLRm1Fu/KCtwD1HIQSsmq5ZRjVH0Ehwg6/Fn3xIUk+nKw==} dependencies: escape-string-regexp: 5.0.0 unist-util-is: 5.1.1 @@ -11068,7 +10393,7 @@ packages: dependencies: '@types/mdast': 3.0.10 ccount: 2.0.1 - mdast-util-find-and-replace: 2.2.0 + mdast-util-find-and-replace: 2.2.1 micromark-util-character: 1.1.0 dev: true @@ -11124,10 +10449,10 @@ packages: '@types/mdast': 3.0.10 dev: true - /mdast-util-mdx-expression/1.2.1: - resolution: {integrity: sha512-BtQwyalaq6jRjx0pagtuAwGrmzL1yInrfA4EJv7GOoiPOUbR4gr6h65I+G3WTh1/Cag2Eda4ip400Ch6CFmWiA==} + /mdast-util-mdx-expression/1.3.0: + resolution: {integrity: sha512-9kTO13HaL/ChfzVCIEfDRdp1m5hsvsm6+R8yr67mH+KS2ikzZ0ISGLPTbTswOFpLLlgVHO9id3cul4ajutCvCA==} dependencies: - '@types/estree-jsx': 0.0.1 + '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 '@types/mdast': 3.0.10 mdast-util-from-markdown: 1.2.0 @@ -11136,10 +10461,10 @@ packages: - supports-color dev: true - /mdast-util-mdx-jsx/2.0.1: - resolution: {integrity: sha512-oPC7/smPBf7vxnvIYH5y3fPo2lw1rdrswFfSb4i0GTAXRUQv7JUU/t/hbp07dgGdUFTSDOHm5DNamhNg/s2Hrg==} + /mdast-util-mdx-jsx/2.1.0: + resolution: {integrity: sha512-KzgzfWMhdteDkrY4mQtyvTU5bc/W4ppxhe9SzelO6QUUiwLAM+Et2Dnjjprik74a336kHdo0zKm7Tp+n6FFeRg==} dependencies: - '@types/estree-jsx': 0.0.1 + '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 '@types/mdast': 3.0.10 ccount: 2.0.1 @@ -11154,17 +10479,17 @@ packages: /mdast-util-mdx/2.0.0: resolution: {integrity: sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==} dependencies: - mdast-util-mdx-expression: 1.2.1 - mdast-util-mdx-jsx: 2.0.1 - mdast-util-mdxjs-esm: 1.2.0 + mdast-util-mdx-expression: 1.3.0 + mdast-util-mdx-jsx: 2.1.0 + mdast-util-mdxjs-esm: 1.3.0 transitivePeerDependencies: - supports-color dev: true - /mdast-util-mdxjs-esm/1.2.0: - resolution: {integrity: sha512-IPpX9GBzAIbIRCjbyeLDpMhACFb0wxTIujuR3YElB8LWbducUdMgRJuqs/Vg8xQ1bIAMm7lw8L+YNtua0xKXRw==} + /mdast-util-mdxjs-esm/1.3.0: + resolution: {integrity: sha512-7N5ihsOkAEGjFotIX9p/YPdl4TqUoMxL4ajNz7PbT89BqsdWJuBC9rvgt6wpbwTZqWWR0jKWqQbwsOWDBUZv4g==} dependencies: - '@types/estree-jsx': 0.0.1 + '@types/estree-jsx': 1.0.0 '@types/hast': 2.3.4 '@types/mdast': 3.0.10 mdast-util-from-markdown: 1.2.0 @@ -11460,7 +10785,7 @@ packages: micromark-factory-mdx-expression: 1.0.6 micromark-factory-space: 1.0.0 micromark-util-character: 1.1.0 - micromark-util-events-to-acorn: 1.1.0 + micromark-util-events-to-acorn: 1.2.0 micromark-util-symbol: 1.0.1 micromark-util-types: 1.0.2 uvu: 0.5.6 @@ -11491,7 +10816,7 @@ packages: dependencies: micromark-core-commonmark: 1.0.6 micromark-util-character: 1.1.0 - micromark-util-events-to-acorn: 1.1.0 + micromark-util-events-to-acorn: 1.2.0 micromark-util-symbol: 1.0.1 micromark-util-types: 1.0.2 unist-util-position-from-estree: 1.1.1 @@ -11502,8 +10827,8 @@ packages: /micromark-extension-mdxjs/1.0.0: resolution: {integrity: sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==} dependencies: - acorn: 8.7.1 - acorn-jsx: 5.3.2_acorn@8.7.1 + acorn: 8.8.0 + acorn-jsx: 5.3.2_acorn@8.8.0 micromark-extension-mdx-expression: 1.0.3 micromark-extension-mdx-jsx: 1.0.3 micromark-extension-mdx-md: 1.0.0 @@ -11534,7 +10859,7 @@ packages: dependencies: micromark-factory-space: 1.0.0 micromark-util-character: 1.1.0 - micromark-util-events-to-acorn: 1.1.0 + micromark-util-events-to-acorn: 1.2.0 micromark-util-symbol: 1.0.1 micromark-util-types: 1.0.2 unist-util-position-from-estree: 1.1.1 @@ -11615,12 +10940,12 @@ packages: resolution: {integrity: sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==} dev: true - /micromark-util-events-to-acorn/1.1.0: - resolution: {integrity: sha512-hB8HzidNt/Us5q2BvqXj8eeEm0U9rRfnZxcA9T65JRUMAY4MbfJRAFm7m9fXMAdSHJiVPmajsp8/rp6/FlHL8A==} + /micromark-util-events-to-acorn/1.2.0: + resolution: {integrity: sha512-WWp3bf7xT9MppNuw3yPjpnOxa8cj5ACivEzXJKu0WwnjBYfzaBvIAT9KfeyI0Qkll+bfQtfftSwdgTH6QhTOKw==} dependencies: '@types/acorn': 4.0.6 - '@types/estree': 0.0.51 - estree-util-visit: 1.1.0 + '@types/estree': 1.0.0 + estree-util-visit: 1.2.0 micromark-util-types: 1.0.2 uvu: 0.5.6 vfile-location: 4.0.1 @@ -11759,14 +11084,14 @@ packages: engines: {node: '>=4'} dev: true - /mini-css-extract-plugin/2.6.1_webpack@5.73.0: + /mini-css-extract-plugin/2.6.1_webpack@5.74.0: resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /minimalistic-assert/1.0.1: @@ -11832,6 +11157,13 @@ packages: hasBin: true dev: true + /mlly/0.5.5: + resolution: {integrity: sha512-2R4JT/SxRDPexomw4rmHYY/gWAGmL9Kkq1OR76Ua6w+P340a1aBDTWzKo2kAlxzrG82OdXs5VB9Lmcmyit0Obg==} + dependencies: + pathe: 0.3.2 + pkg-types: 0.3.3 + dev: true + /mozjpeg/8.0.0: resolution: {integrity: sha512-Ca2Yhah9hG0Iutgsn8MOrAl37P9ThnKsJatjXoWdUO+8X8GeG/6ahvHZrTyqvbs6leMww1SauWUCao/L9qBuFQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -11904,6 +11236,12 @@ packages: hasBin: true dev: true + /nanospinner/1.1.0: + resolution: {integrity: sha512-yFvNYMig4AthKYfHFl1sLj7B2nkHL4lzdig4osvl9/LdGbXwrdFRoqBS98gsEsOakr0yH+r5NZ/1Y9gdVB8trA==} + dependencies: + picocolors: 1.0.0 + dev: true + /natural-compare/1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true @@ -11963,14 +11301,6 @@ packages: engines: {node: '>= 6.13.0'} dev: true - /node-int64/0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} - dev: true - - /node-releases/2.0.5: - resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} - dev: true - /node-releases/2.0.6: resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} dev: true @@ -12090,6 +11420,10 @@ packages: boolbase: 1.0.0 dev: true + /nwsapi/2.2.1: + resolution: {integrity: sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==} + dev: true + /object-assign/4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -12140,6 +11474,16 @@ packages: es-abstract: 1.20.1 dev: true + /object.getownpropertydescriptors/2.1.4: + resolution: {integrity: sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==} + engines: {node: '>= 0.8'} + dependencies: + array.prototype.reduce: 1.0.4 + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + /object.hasown/1.1.1: resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} dependencies: @@ -12527,6 +11871,12 @@ packages: resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} dev: true + /parse5/7.0.0: + resolution: {integrity: sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==} + dependencies: + entities: 4.3.1 + dev: true + /parseurl/1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} @@ -12605,6 +11955,14 @@ packages: engines: {node: '>=8'} dev: true + /pathe/0.3.2: + resolution: {integrity: sha512-qhnmX0TOqlCvdWWTkoM83wh5J8fZ2yhbDEc9MlsnAEtEc+JCwxUKEwmd6pkY9hRe6JR1Uecbc14VcAKX2yFSTA==} + dev: true + + /pathval/1.1.1: + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + dev: true + /peek-readable/4.1.0: resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==} engines: {node: '>=8'} @@ -12674,11 +12032,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /pirates/4.0.5: - resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} - engines: {node: '>= 6'} - dev: true - /pkg-dir/4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} @@ -12686,6 +12039,14 @@ packages: find-up: 4.1.0 dev: true + /pkg-types/0.3.3: + resolution: {integrity: sha512-6AJcCMnjUQPQv/Wk960w0TOmjhdjbeaQJoSKWRQv9N3rgkessCu6J0Ydsog/nw1MbpnxHuPzYbfOn2KmlZO1FA==} + dependencies: + jsonc-parser: 3.1.0 + mlly: 0.5.5 + pathe: 0.3.2 + dev: true + /pluralize/8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} @@ -12702,24 +12063,24 @@ packages: execa: 4.1.0 dev: true - /postcss-attribute-case-insensitive/5.0.1_postcss@8.4.14: - resolution: {integrity: sha512-wrt2VndqSLJpyBRNz9OmJcgnhI9MaongeWgapdBuUMu2a/KNJ8SENesG4SdiTnQwGO9b1VKbTWYAfCPeokLqZQ==} + /postcss-attribute-case-insensitive/5.0.2_postcss@8.4.14: + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: true - /postcss-browser-comments/4.0.0_ueju2bwfzqc5aneogkggyoaage: + /postcss-browser-comments/4.0.0_bujjonwylnebbx3cl7qckr3eti: resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} engines: {node: '>=8'} peerDependencies: browserslist: '>=4' postcss: '>=8' dependencies: - browserslist: 4.21.2 + browserslist: 4.21.3 postcss: 8.4.14 dev: true @@ -12743,11 +12104,11 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-color-functional-notation/4.2.3_postcss@8.4.14: - resolution: {integrity: sha512-5fbr6FzFzjwHXKsVnkmEYrJYG8VNNzvD1tAXaPPWR97S6rhKI5uh2yOfV5TAzhDkZoq4h+chxEplFDc8GeyFtw==} + /postcss-color-functional-notation/4.2.4_postcss@8.4.14: + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 @@ -12763,11 +12124,11 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-color-rebeccapurple/7.1.0_postcss@8.4.14: - resolution: {integrity: sha512-1jtE5AKnZcKq4pjOrltFHcbEM2/IvtbD1OdhZ/wqds18//bh0UmQkffcCkzDJU+/vGodfIsVQeKn+45CJvX9Bw==} + /postcss-color-rebeccapurple/7.1.1_postcss@8.4.14: + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 @@ -12779,7 +12140,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 caniuse-api: 3.0.0 colord: 2.9.2 postcss: 8.4.14 @@ -12792,7 +12153,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true @@ -12827,11 +12188,11 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-dir-pseudo-class/6.0.4_postcss@8.4.14: - resolution: {integrity: sha512-I8epwGy5ftdzNWEYok9VjW9whC4xnelAtbajGv4adql4FIF09rnrxnA9Y8xSHN47y7gqFIv10C5+ImsLeJpKBw==} + /postcss-dir-pseudo-class/6.0.5_postcss@8.4.14: + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-selector-parser: 6.0.10 @@ -12883,11 +12244,11 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-double-position-gradients/3.1.1_postcss@8.4.14: - resolution: {integrity: sha512-jM+CGkTs4FcG53sMPjrrGE0rIvLDdCrqMzgDC5fLI7JHDO7o6QG8C5TQBtExb13hdBdoH9C2QVbG4jo2y9lErQ==} + /postcss-double-position-gradients/3.1.2_postcss@8.4.14: + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14 postcss: 8.4.14 @@ -12932,11 +12293,11 @@ packages: postcss: 8.4.14 dev: true - /postcss-gap-properties/3.0.3_postcss@8.4.14: - resolution: {integrity: sha512-rPPZRLPmEKgLk/KlXMqRaNkYTUpE7YC+bOIQFN5xcu1Vp11Y4faIXv6/Jpft6FMnl6YRxZqDZG0qQOW80stzxQ==} + /postcss-gap-properties/3.0.5_postcss@8.4.14: + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 dev: true @@ -12951,11 +12312,11 @@ packages: postcss-safe-parser: 6.0.0_postcss@8.4.14 dev: true - /postcss-image-set-function/4.0.6_postcss@8.4.14: - resolution: {integrity: sha512-KfdC6vg53GC+vPd2+HYzsZ6obmPqOk6HY09kttU19+Gj1nC3S3XBVEXDHxkhxTohgZqzbUb94bKXvKDnYWBm/A==} + /postcss-image-set-function/4.0.7_postcss@8.4.14: + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 @@ -12981,11 +12342,11 @@ packages: postcss: 8.4.14 dev: true - /postcss-lab-function/4.2.0_postcss@8.4.14: - resolution: {integrity: sha512-Zb1EO9DGYfa3CP8LhINHCcTTCTLI+R3t7AX2mKsDzdgVQ/GkCpHOTgOr6HBHslP7XDdVbqgHW5vvRPMdVANQ8w==} + /postcss-lab-function/4.2.1_postcss@8.4.14: + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14 postcss: 8.4.14 @@ -13013,7 +12374,7 @@ packages: ts-node: optional: true dependencies: - lilconfig: 2.0.5 + lilconfig: 2.0.6 postcss: 8.4.14 yaml: 1.10.2 dev: true @@ -13030,13 +12391,13 @@ packages: ts-node: optional: true dependencies: - lilconfig: 2.0.5 + lilconfig: 2.0.6 postcss: 8.4.14 yaml: 2.1.1 dev: true - /postcss-loader/7.0.0_mepnsno3xmng6eyses4tepu7bu: - resolution: {integrity: sha512-IDyttebFzTSY6DI24KuHUcBjbAev1i+RyICoPEWcAstZsj03r533uMXtDn506l6/wlsRYiS5XBdx7TpccCsyUg==} + /postcss-loader/7.0.1_m6qh27jiicejwnzfgs742cokpe: + resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==} engines: {node: '>= 14.15.0'} peerDependencies: postcss: ^7.0.0 || ^8.0.1 @@ -13046,7 +12407,7 @@ packages: klona: 2.0.5 postcss: 8.4.14 semver: 7.3.7 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /postcss-logical/5.0.4_postcss@8.4.14: @@ -13112,7 +12473,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 caniuse-api: 3.0.0 cssnano-utils: 3.1.0_postcss@8.4.14 postcss: 8.4.14 @@ -13147,7 +12508,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 cssnano-utils: 3.1.0_postcss@8.4.14 postcss: 8.4.14 postcss-value-parser: 4.2.0 @@ -13226,7 +12587,7 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/selector-specificity': 2.0.1_444rcjjorr3kpoqtvoodsr46pu + '@csstools/selector-specificity': 2.0.2_444rcjjorr3kpoqtvoodsr46pu postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: true @@ -13296,7 +12657,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: true @@ -13322,7 +12683,7 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-normalize/10.0.1_ueju2bwfzqc5aneogkggyoaage: + /postcss-normalize/10.0.1_bujjonwylnebbx3cl7qckr3eti: resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} engines: {node: '>= 12'} peerDependencies: @@ -13330,9 +12691,9 @@ packages: postcss: '>= 8' dependencies: '@csstools/normalize.css': 12.0.0 - browserslist: 4.21.2 + browserslist: 4.21.3 postcss: 8.4.14 - postcss-browser-comments: 4.0.0_ueju2bwfzqc5aneogkggyoaage + postcss-browser-comments: 4.0.0_bujjonwylnebbx3cl7qckr3eti sanitize.css: 13.0.0 dev: true @@ -13352,13 +12713,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-overflow-shorthand/3.0.3_postcss@8.4.14: - resolution: {integrity: sha512-CxZwoWup9KXzQeeIxtgOciQ00tDtnylYIlJBBODqkgS/PU2jISuWOL/mYLHmZb9ZhZiCaNKsCRiLp22dZUtNsg==} + /postcss-overflow-shorthand/3.0.4_postcss@8.4.14: + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 + postcss-value-parser: 4.2.0 dev: true /postcss-page-break/3.0.4_postcss@8.4.14: @@ -13369,11 +12731,11 @@ packages: postcss: 8.4.14 dev: true - /postcss-place/7.0.4_postcss@8.4.14: - resolution: {integrity: sha512-MrgKeiiu5OC/TETQO45kV3npRjOFxEHthsqGtkh3I1rPbZSbXGD/lZVi9j13cYh+NA8PIAPyk6sGjT9QbRyvSg==} + /postcss-place/7.0.5_postcss@8.4.14: + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.4 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-value-parser: 4.2.0 @@ -13385,58 +12747,58 @@ packages: peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-cascade-layers': 1.0.4_postcss@8.4.14 - '@csstools/postcss-color-function': 1.1.0_postcss@8.4.14 - '@csstools/postcss-font-format-keywords': 1.0.0_postcss@8.4.14 - '@csstools/postcss-hwb-function': 1.0.1_postcss@8.4.14 - '@csstools/postcss-ic-unit': 1.0.0_postcss@8.4.14 - '@csstools/postcss-is-pseudo-class': 2.0.6_postcss@8.4.14 - '@csstools/postcss-normalize-display-values': 1.0.0_postcss@8.4.14 - '@csstools/postcss-oklab-function': 1.1.0_postcss@8.4.14 + '@csstools/postcss-cascade-layers': 1.0.5_postcss@8.4.14 + '@csstools/postcss-color-function': 1.1.1_postcss@8.4.14 + '@csstools/postcss-font-format-keywords': 1.0.1_postcss@8.4.14 + '@csstools/postcss-hwb-function': 1.0.2_postcss@8.4.14 + '@csstools/postcss-ic-unit': 1.0.1_postcss@8.4.14 + '@csstools/postcss-is-pseudo-class': 2.0.7_postcss@8.4.14 + '@csstools/postcss-normalize-display-values': 1.0.1_postcss@8.4.14 + '@csstools/postcss-oklab-function': 1.1.1_postcss@8.4.14 '@csstools/postcss-progressive-custom-properties': 1.3.0_postcss@8.4.14 - '@csstools/postcss-stepped-value-functions': 1.0.0_postcss@8.4.14 - '@csstools/postcss-trigonometric-functions': 1.0.1_postcss@8.4.14 - '@csstools/postcss-unset-value': 1.0.1_postcss@8.4.14 + '@csstools/postcss-stepped-value-functions': 1.0.1_postcss@8.4.14 + '@csstools/postcss-trigonometric-functions': 1.0.2_postcss@8.4.14 + '@csstools/postcss-unset-value': 1.0.2_postcss@8.4.14 autoprefixer: 10.4.7_postcss@8.4.14 - browserslist: 4.21.1 + browserslist: 4.21.3 css-blank-pseudo: 3.0.3_postcss@8.4.14 css-has-pseudo: 3.0.4_postcss@8.4.14 css-prefers-color-scheme: 6.0.3_postcss@8.4.14 cssdb: 6.6.3 postcss: 8.4.14 - postcss-attribute-case-insensitive: 5.0.1_postcss@8.4.14 + postcss-attribute-case-insensitive: 5.0.2_postcss@8.4.14 postcss-clamp: 4.1.0_postcss@8.4.14 - postcss-color-functional-notation: 4.2.3_postcss@8.4.14 + postcss-color-functional-notation: 4.2.4_postcss@8.4.14 postcss-color-hex-alpha: 8.0.4_postcss@8.4.14 - postcss-color-rebeccapurple: 7.1.0_postcss@8.4.14 + postcss-color-rebeccapurple: 7.1.1_postcss@8.4.14 postcss-custom-media: 8.0.2_postcss@8.4.14 postcss-custom-properties: 12.1.8_postcss@8.4.14 postcss-custom-selectors: 6.0.3_postcss@8.4.14 - postcss-dir-pseudo-class: 6.0.4_postcss@8.4.14 - postcss-double-position-gradients: 3.1.1_postcss@8.4.14 + postcss-dir-pseudo-class: 6.0.5_postcss@8.4.14 + postcss-double-position-gradients: 3.1.2_postcss@8.4.14 postcss-env-function: 4.0.6_postcss@8.4.14 postcss-focus-visible: 6.0.4_postcss@8.4.14 postcss-focus-within: 5.0.4_postcss@8.4.14 postcss-font-variant: 5.0.0_postcss@8.4.14 - postcss-gap-properties: 3.0.3_postcss@8.4.14 - postcss-image-set-function: 4.0.6_postcss@8.4.14 + postcss-gap-properties: 3.0.5_postcss@8.4.14 + postcss-image-set-function: 4.0.7_postcss@8.4.14 postcss-initial: 4.0.1_postcss@8.4.14 - postcss-lab-function: 4.2.0_postcss@8.4.14 + postcss-lab-function: 4.2.1_postcss@8.4.14 postcss-logical: 5.0.4_postcss@8.4.14 postcss-media-minmax: 5.0.0_postcss@8.4.14 postcss-nesting: 10.1.10_postcss@8.4.14 postcss-opacity-percentage: 1.1.2 - postcss-overflow-shorthand: 3.0.3_postcss@8.4.14 + postcss-overflow-shorthand: 3.0.4_postcss@8.4.14 postcss-page-break: 3.0.4_postcss@8.4.14 - postcss-place: 7.0.4_postcss@8.4.14 - postcss-pseudo-class-any-link: 7.1.5_postcss@8.4.14 + postcss-place: 7.0.5_postcss@8.4.14 + postcss-pseudo-class-any-link: 7.1.6_postcss@8.4.14 postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.14 - postcss-selector-not: 6.0.0_postcss@8.4.14 + postcss-selector-not: 6.0.1_postcss@8.4.14 postcss-value-parser: 4.2.0 dev: true - /postcss-pseudo-class-any-link/7.1.5_postcss@8.4.14: - resolution: {integrity: sha512-nSGKGScwFTaaV8Cyi27W9FegX3l3b7tmNxujxmykI/j3++cBAiq8fTUAU3ZK0s2aneN2T8cTUvKdNedzp3JIEA==} + /postcss-pseudo-class-any-link/7.1.6_postcss@8.4.14: + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 @@ -13461,7 +12823,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 caniuse-api: 3.0.0 postcss: 8.4.14 dev: true @@ -13506,11 +12868,11 @@ packages: postcss: 8.4.14 dev: true - /postcss-selector-not/6.0.0_postcss@8.4.14: - resolution: {integrity: sha512-i/HI/VNd3V9e1WOLCwJsf9nePBRXqcGtVibcJ9FsVo0agfDEfsLSlFt94aYjY35wUNcdG0KrvdyjEr7It50wLQ==} + /postcss-selector-not/6.0.1_postcss@8.4.14: + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: - postcss: ^8.3 + postcss: ^8.2 dependencies: postcss: 8.4.14 postcss-selector-parser: 6.0.10 @@ -13702,14 +13064,14 @@ packages: - supports-color dev: true - /prettier-plugin-svelte/2.7.0_nakrehnrzdf7fdea5k3a4dfy4m: + /prettier-plugin-svelte/2.7.0_o3ioganyptcsrh6x4hnxvjkpqi: resolution: {integrity: sha512-fQhhZICprZot2IqEyoiUYLTRdumULGRvw0o4dzl5jt0jfzVWdGqeYW27QTWAeXhoupEZJULmNoH3ueJwUWFLIA==} peerDependencies: prettier: ^1.16.4 || ^2.0.0 svelte: ^3.2.0 dependencies: prettier: 2.7.1 - svelte: 3.48.0 + svelte: 3.49.0 dev: true /prettier-plugin-toml/0.3.1: @@ -13743,16 +13105,6 @@ packages: renderkid: 3.0.0 dev: true - /pretty-format/28.1.1: - resolution: {integrity: sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - dependencies: - '@jest/schemas': 28.0.2 - ansi-regex: 5.0.1 - ansi-styles: 5.2.0 - react-is: 18.2.0 - dev: true - /proc-log/2.0.1: resolution: {integrity: sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -13773,14 +13125,6 @@ packages: asap: 2.0.6 dev: true - /prompts/2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 - dev: true - /prop-types/15.8.1: resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} dependencies: @@ -13820,6 +13164,10 @@ packages: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: true + /psl/1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true + /pug-attrs/3.0.0: resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} dependencies: @@ -13998,7 +13346,7 @@ packages: unpipe: 1.0.0 dev: true - /raw-loader/4.0.2_webpack@5.73.0: + /raw-loader/4.0.2_webpack@5.74.0: resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -14006,7 +13354,7 @@ packages: dependencies: loader-utils: 2.0.2 schema-utils: 3.1.1 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /react-dom/18.2.0_react@18.2.0: @@ -14023,10 +13371,6 @@ packages: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} dev: true - /react-is/18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - dev: true - /react-router-dom/6.3.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: @@ -14217,7 +13561,7 @@ packages: /regenerator-transform/0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: - '@babel/runtime': 7.18.6 + '@babel/runtime': 7.18.9 dev: true /regexp-ast-analysis/0.2.4: @@ -15155,13 +14499,6 @@ packages: resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true - /resolve-cwd/3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} - dependencies: - resolve-from: 5.0.0 - dev: true - /resolve-dir/1.0.1: resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} engines: {node: '>=0.10.0'} @@ -15194,11 +14531,6 @@ packages: resolve-from: 5.0.0 dev: true - /resolve.exports/1.1.0: - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} - engines: {node: '>=10'} - dev: true - /resolve/1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} hasBin: true @@ -15270,7 +14602,7 @@ packages: is-plain-object: 3.0.1 dev: true - /rollup-plugin-esbuild/4.9.1_zqo64ogfzzycugxswskc4gmbhu: + /rollup-plugin-esbuild/4.9.1_z4wjf5stc47okcxkgg4qwbc5si: resolution: {integrity: sha512-qn/x7Wz9p3Xnva99qcb+nopH0d2VJwVnsxJTGEg+Sh2Z3tqQl33MhOwzekVo1YTKgv+yAmosjcBRJygMfGrtLw==} engines: {node: '>=12'} peerDependencies: @@ -15280,10 +14612,10 @@ packages: '@rollup/pluginutils': 4.2.1 debug: 4.3.4 es-module-lexer: 0.9.3 - esbuild: 0.14.48 + esbuild: 0.14.50 joycon: 3.1.1 - jsonc-parser: 3.0.0 - rollup: 2.75.7 + jsonc-parser: 3.1.0 + rollup: 2.77.2 transitivePeerDependencies: - supports-color dev: true @@ -15312,23 +14644,23 @@ packages: - ts-node dev: true - /rollup-plugin-terser/7.0.2_rollup@2.75.7: + /rollup-plugin-terser/7.0.2_rollup@2.77.2: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.18.6 jest-worker: 26.6.2 - rollup: 2.75.7 + rollup: 2.77.2 serialize-javascript: 4.0.0 - terser: 5.14.1 + terser: 5.14.2 dev: true /rollup-plugin-unassert/0.4.0: resolution: {integrity: sha512-ZVV88o3vYSiGVFmNH4Q+0J5j7iF3vRDkhxuyCrXwPUhZlBYPQGmQz1T3RUX0MRSI4+Xr6t5W/CQFGHve9tmyhA==} dependencies: '@rollup/pluginutils': 4.2.1 - acorn: 8.7.1 + acorn: 8.8.0 convert-source-map: 1.8.0 escodegen: 2.0.0 multi-stage-sourcemap: 0.3.1 @@ -15360,8 +14692,8 @@ packages: estree-walker: 0.6.1 dev: true - /rollup/2.75.7: - resolution: {integrity: sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==} + /rollup/2.77.2: + resolution: {integrity: sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -15374,8 +14706,8 @@ packages: queue-microtask: 1.2.3 dev: true - /rxjs/7.5.5: - resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} + /rxjs/7.5.6: + resolution: {integrity: sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==} dependencies: tslib: 2.4.0 dev: true @@ -15413,7 +14745,7 @@ packages: resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} dev: true - /sass-loader/13.0.2_sass@1.53.0+webpack@5.73.0: + /sass-loader/13.0.2_sass@1.54.0+webpack@5.74.0: resolution: {integrity: sha512-BbiqbVmbfJaWVeOOAu2o7DhYWtcNmTfvroVgFXa6k2hHheMxNAeDHLNoDy/Q5aoaVlz0LH+MbMktKwm9vN/j8Q==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -15434,12 +14766,12 @@ packages: dependencies: klona: 2.0.5 neo-async: 2.6.2 - sass: 1.53.0 - webpack: 5.73.0_esbuild@0.14.48 + sass: 1.54.0 + webpack: 5.74.0_esbuild@0.14.50 dev: true - /sass/1.53.0: - resolution: {integrity: sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==} + /sass/1.54.0: + resolution: {integrity: sha512-C4zp79GCXZfK0yoHZg+GxF818/aclhp9F48XBu/+bm9vXEVAYov9iU3FBVRMq3Hx3OA4jfKL+p2K9180mEh0xQ==} engines: {node: '>=12.0.0'} hasBin: true dependencies: @@ -15452,6 +14784,13 @@ packages: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} dev: true + /saxes/6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + dependencies: + xmlchars: 2.2.0 + dev: true + /scheduler/0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: @@ -15494,6 +14833,10 @@ packages: regexpp: 3.2.0 dev: true + /scule/0.2.1: + resolution: {integrity: sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==} + dev: true + /seek-bzip/1.0.6: resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==} hasBin: true @@ -15544,6 +14887,14 @@ packages: hasBin: true dev: true + /semver/7.3.5: + resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} engines: {node: '>=10'} @@ -15694,8 +15045,19 @@ packages: totalist: 3.0.0 dev: true - /sisteransi/1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + /size-limit/7.0.8: + resolution: {integrity: sha512-3h76c9E0e/nNhYLSR7IBI/bSoXICeo7EYkYjlyVqNIsu7KvN/PQmMbIXeyd2QKIF8iZKhaiZQoXLkGWbyPDtvQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + hasBin: true + dependencies: + bytes-iec: 3.1.1 + chokidar: 3.5.3 + ci-job-number: 1.2.2 + globby: 11.1.0 + lilconfig: 2.0.6 + mkdirp: 1.0.4 + nanospinner: 1.1.0 + picocolors: 1.0.0 dev: true /slash/3.0.0: @@ -15797,13 +15159,6 @@ packages: decode-uri-component: 0.2.0 dev: true - /source-map-support/0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} - dependencies: - buffer-from: 1.1.2 - source-map: 0.6.1 - dev: true - /source-map-support/0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: @@ -15928,13 +15283,6 @@ packages: deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' dev: true - /stack-utils/2.0.5: - resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} - engines: {node: '>=10'} - dependencies: - escape-string-regexp: 2.0.0 - dev: true - /stackframe/1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} dev: true @@ -15975,14 +15323,6 @@ packages: resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} dev: true - /string-length/4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} - dependencies: - char-regex: 1.0.2 - strip-ansi: 6.0.1 - dev: true - /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -16162,6 +15502,12 @@ packages: engines: {node: '>=8'} dev: true + /strip-literal/0.4.0: + resolution: {integrity: sha512-ql/sBDoJOybTKSIOWrrh8kgUEMjXMwRAkZTD0EwiwxQH/6tTPkZvMIEjp0CRlpi6V5FMiJyvxeRkEi1KrGISoA==} + dependencies: + acorn: 8.8.0 + dev: true + /strip-outer/1.0.1: resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} engines: {node: '>=0.10.0'} @@ -16185,13 +15531,13 @@ packages: resolution: {integrity: sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==} dev: true - /style-loader/3.3.1_webpack@5.73.0: + /style-loader/3.3.1_webpack@5.74.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /style-search/0.1.0: @@ -16210,7 +15556,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.21.1 + browserslist: 4.21.3 postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: true @@ -16329,7 +15675,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: - '@csstools/selector-specificity': 2.0.1_444rcjjorr3kpoqtvoodsr46pu + '@csstools/selector-specificity': 2.0.2_444rcjjorr3kpoqtvoodsr46pu balanced-match: 2.0.0 colord: 2.9.2 cosmiconfig: 7.0.1 @@ -16337,7 +15683,7 @@ packages: debug: 4.3.4 execall: 2.0.0 fast-glob: 3.2.11 - fastest-levenshtein: 1.0.12 + fastest-levenshtein: 1.0.14 file-entry-cache: 6.0.1 get-stdin: 8.0.0 global-modules: 2.0.0 @@ -16373,7 +15719,7 @@ packages: - supports-color dev: true - /stylus-loader/7.0.0_upoysbgu66vbwwn3ra5xuurp4y: + /stylus-loader/7.0.0_opfhcjf5g5texmct6gy27c44rm: resolution: {integrity: sha512-WTbtLrNfOfLgzTaR9Lj/BPhQroKk/LC1hfTXSUbrxmxgfUo3Y3LpmKRVA2R1XbjvTAvOfaian9vOyfv1z99E+A==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -16384,7 +15730,7 @@ packages: klona: 2.0.5 normalize-path: 3.0.0 stylus: 0.58.1 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /stylus/0.57.0: @@ -16458,8 +15804,8 @@ packages: engines: {node: '>= 0.4'} dev: true - /svelte-eslint-parser/0.16.4_svelte@3.48.0: - resolution: {integrity: sha512-hKTQxH0jiFBnvdAaNcYFScxLNqJf9+tzMDr4ojdjfVrc7OORwkK+eMNuyazhCMc2UD7Ikv+3gGrWiaCeYd5dAQ==} + /svelte-eslint-parser/0.17.0_svelte@3.49.0: + resolution: {integrity: sha512-hHuB9upgGBNIMb7mL2UyGHxnNitQqWAB3GojHtN2w+kTH4jmZmNCHR4aHln8AjXQuQ2+rYTyVS0LeBPXL+ZrDQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: svelte: ^3.37.0 @@ -16467,11 +15813,11 @@ packages: eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.3.2 - svelte: 3.48.0 + svelte: 3.49.0 dev: true - /svelte/3.48.0: - resolution: {integrity: sha512-fN2YRm/bGumvjUpu6yI3BpvZnpIm9I6A7HR4oUNYd7ggYyIwSA/BX7DJ+UXXffLp6XNcUijyLvttbPVCYa/3xQ==} + /svelte/3.49.0: + resolution: {integrity: sha512-+lmjic1pApJWDfPCpUUTc1m8azDqYCG1JN9YEngrx/hUyIcFJo6VZhj0A1Ai0wqoHcEIuQy+e9tk+4uDgdtsFA==} engines: {node: '>= 8'} dev: true @@ -16497,9 +15843,13 @@ packages: stable: 0.1.8 dev: true - /synckit/0.7.2: - resolution: {integrity: sha512-CSZRtSRZ8RhJGMtWyLRqlarmWPPlsgZJHtV6cz0VTHNOg+R7UBoE2eNPQmB5Qrhtk3RX2AAcJmVwMXFULVQSwg==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + /symbol-tree/3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + dev: true + + /synckit/0.8.1: + resolution: {integrity: sha512-rJEeygO5PNmcZICmrgnbOd2usi5zWE1ESc0Gn5tTmJlongoU8zCTwMFQtar2UgMSiR68vK9afPQ+uVs2lURSIA==} + engines: {node: ^14.18.0 || >=16.0.0} dependencies: '@pkgr/utils': 2.3.0 tslib: 2.4.0 @@ -16567,15 +15917,7 @@ packages: engines: {node: '>=8'} dev: true - /terminal-link/2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} - dependencies: - ansi-escapes: 4.3.2 - supports-hyperlinks: 2.2.0 - dev: true - - /terser-webpack-plugin/5.3.3_mlvdagjq5audvc5xmaambfzdzm: + /terser-webpack-plugin/5.3.3_sjd3gtdz2lokrpw42bbw3mwd3e: resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -16592,21 +15934,21 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.14 - esbuild: 0.14.48 + esbuild: 0.14.50 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.14.1 - webpack: 5.73.0_esbuild@0.14.48 + terser: 5.14.2 + webpack: 5.74.0_esbuild@0.14.50 dev: true - /terser/5.14.1: - resolution: {integrity: sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==} + /terser/5.14.2: + resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==} engines: {node: '>=10'} hasBin: true dependencies: '@jridgewell/source-map': 0.3.2 - acorn: 8.7.1 + acorn: 8.8.0 commander: 2.20.3 source-map-support: 0.5.21 dev: true @@ -16629,10 +15971,6 @@ packages: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true - /throat/6.0.1: - resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} - dev: true - /through/2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: true @@ -16678,6 +16016,16 @@ packages: engines: {node: '>=4'} dev: true + /tinypool/0.2.4: + resolution: {integrity: sha512-Vs3rhkUH6Qq1t5bqtb816oT+HeJTXfwt2cbPH17sWHIYKTotQIFPk3tf2fgqRrVyMDVOc1EnPgzIxfIulXVzwQ==} + engines: {node: '>=14.0.0'} + dev: true + + /tinyspy/1.0.0: + resolution: {integrity: sha512-FI5B2QdODQYDRjfuLF+OrJ8bjWRMCXokQPcwKm0W3IzcbUmBNv536cQc7eXGoAuXphZwgx1DFbqImwzz08Fnhw==} + engines: {node: '>=14.0.0'} + dev: true + /tmp/0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -16685,10 +16033,6 @@ packages: os-tmpdir: 1.0.2 dev: true - /tmpl/1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} - dev: true - /to-buffer/1.1.1: resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==} dev: true @@ -16741,6 +16085,15 @@ packages: engines: {node: '>=6'} dev: true + /tough-cookie/4.0.0: + resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==} + engines: {node: '>=6'} + dependencies: + psl: 1.9.0 + punycode: 2.1.1 + universalify: 0.1.2 + dev: true + /tr46/0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: true @@ -16751,6 +16104,13 @@ packages: punycode: 2.1.1 dev: true + /tr46/3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} + dependencies: + punycode: 2.1.1 + dev: true + /trim-lines/3.0.1: resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} dev: true @@ -16776,43 +16136,8 @@ packages: resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} dev: true - /ts-jest/28.0.7_k2r4spb5olbhsdcly5ywd2jjkq: - resolution: {integrity: sha512-wWXCSmTwBVmdvWrOpYhal79bDpioDy4rTT+0vyUnE3ZzM7LOAAGG9NXwzkEL/a516rQEgnMmS/WKP9jBPCVJyA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - hasBin: true - peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/types': ^28.0.0 - babel-jest: ^28.0.0 - esbuild: '*' - jest: ^28.0.0 - typescript: '>=4.3' - peerDependenciesMeta: - '@babel/core': - optional: true - '@jest/types': - optional: true - babel-jest: - optional: true - esbuild: - optional: true - dependencies: - '@babel/core': 7.18.6 - bs-logger: 0.2.6 - esbuild: 0.14.48 - fast-json-stable-stringify: 2.1.0 - jest: 28.1.2_@types+node@18.0.5 - jest-util: 28.1.1 - json5: 2.2.1 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.7.4 - yargs-parser: 21.0.1 - dev: true - - /ts-node/10.8.2_47blntjhuqtdxyxfczkfdvsynq: - resolution: {integrity: sha512-LYdGnoGddf1D6v8REPtIH+5iq/gTDuZqv2/UJUU7tKjuEU8xVZorBM+buCGNjj+pGEud+sOoM4CX3/YzINpENA==} + /ts-node/10.9.1_f6w67sjx3imwytyzb2qhabnzqe: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -16830,8 +16155,8 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 18.0.5 - acorn: 8.7.1 + '@types/node': 18.6.1 + acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -16865,6 +16190,7 @@ packages: /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + dev: true /tsutils/3.21.0_typescript@4.7.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} @@ -17061,7 +16387,7 @@ packages: '@types/concat-stream': 2.0.0 '@types/debug': 4.1.7 '@types/is-empty': 1.2.1 - '@types/node': 18.0.5 + '@types/node': 18.6.1 '@types/unist': 2.0.6 concat-stream: 2.0.0 debug: 4.3.4 @@ -17075,7 +16401,7 @@ packages: parse-json: 6.0.2 to-vfile: 7.2.3 trough: 2.1.0 - unist-util-inspect: 7.0.0 + unist-util-inspect: 7.0.1 vfile-message: 3.1.2 vfile-reporter: 7.0.4 vfile-statistics: 2.0.0 @@ -17122,6 +16448,26 @@ packages: vfile: 5.3.4 dev: true + /unimport/0.6.3_zhxiakfykinkigydwrmzev47um: + resolution: {integrity: sha512-+DVHqCoOoJcmYRLUrKbKDs/Iq/is6m0K7rTdFJAV7/MfyvWCKeSuSOrLeONgLBd6yC6iZFEzdc8di7S27PQyoA==} + dependencies: + '@rollup/pluginutils': 4.2.1 + escape-string-regexp: 5.0.0 + fast-glob: 3.2.11 + local-pkg: 0.4.2 + magic-string: 0.26.2 + mlly: 0.5.5 + pathe: 0.3.2 + scule: 0.2.1 + strip-literal: 0.4.0 + unplugin: 0.7.2_zhxiakfykinkigydwrmzev47um + transitivePeerDependencies: + - esbuild + - rollup + - vite + - webpack + dev: true + /unique-string/2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} @@ -17143,8 +16489,8 @@ packages: resolution: {integrity: sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==} dev: true - /unist-util-inspect/7.0.0: - resolution: {integrity: sha512-2Utgv78I7PUu461Y9cdo+IUiiKSKpDV5CE/XD6vTj849a3xlpDAScvSJ6cQmtFBGgAmCn2wR7jLuXhpg1XLlJw==} + /unist-util-inspect/7.0.1: + resolution: {integrity: sha512-gEPeSrsYXus8012VJ00p9uZC8D0iogtLLiHlBgvS61hU22KNKduQhMKezJm83viHlLf3TYS2y9SDEFglWPDMKw==} dependencies: '@types/unist': 2.0.6 dev: true @@ -17275,29 +16621,67 @@ packages: engines: {node: '>= 0.8'} dev: true - /upath/1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} + /unplugin-auto-import/0.10.1_2rke2oyl5nfm2lrwejsnq3sdfe_zhxiakfykinkigydwrmzev47um: + resolution: {integrity: sha512-aBvlCOvkgZRceYDEIEpduD86XYCS1wV4atNeUtAZsNK7FSKRb0Nu073SYYAeU46IitK3GPeGd5BETtqz6It5Ng==} + engines: {node: '>=14'} + peerDependencies: + '@vueuse/core': '*' + peerDependenciesMeta: + '@vueuse/core': + optional: true + dependencies: + '@antfu/utils': 0.5.2 + '@rollup/pluginutils': 4.2.1 + local-pkg: 0.4.2 + magic-string: 0.26.2 + unimport: 0.6.3_zhxiakfykinkigydwrmzev47um + unplugin: 0.7.2_zhxiakfykinkigydwrmzev47um + transitivePeerDependencies: + - esbuild + - rollup + - vite + - webpack dev: true + patched: true - /update-browserslist-db/1.0.4_browserslist@4.21.1: - resolution: {integrity: sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==} - hasBin: true + /unplugin/0.7.2_zhxiakfykinkigydwrmzev47um: + resolution: {integrity: sha512-m7thX4jP8l5sETpLdUASoDOGOcHaOVtgNyrYlToyQUvILUtEzEnngRBrHnAX3IKqooJVmXpoa/CwQ/QqzvGaHQ==} peerDependencies: - browserslist: '>= 4.21.0' + esbuild: '>=0.13' + rollup: ^2.50.0 + vite: ^2.3.0 || ^3.0.0-0 + webpack: 4 || 5 + peerDependenciesMeta: + esbuild: + optional: true + rollup: + optional: true + vite: + optional: true + webpack: + optional: true dependencies: - browserslist: 4.21.1 - escalade: 3.1.1 - picocolors: 1.0.0 + acorn: 8.8.0 + chokidar: 3.5.3 + esbuild: 0.14.50 + rollup: 2.77.2 + webpack: 5.74.0_esbuild@0.14.50 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.4.4 + dev: true + + /upath/1.2.0: + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} dev: true - /update-browserslist-db/1.0.4_browserslist@4.21.2: - resolution: {integrity: sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==} + /update-browserslist-db/1.0.5_browserslist@4.21.3: + resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.2 + browserslist: 4.21.3 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -17308,7 +16692,7 @@ packages: punycode: 2.1.1 dev: true - /url-loader/4.1.1_ljnyroaqobwke7fusd7ro2cgzm: + /url-loader/4.1.1_u4acmn7fe6yqgbrqzialkgh5lu: resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -17318,11 +16702,11 @@ packages: file-loader: optional: true dependencies: - file-loader: 6.2.0_webpack@5.73.0 + file-loader: 6.2.0_webpack@5.74.0 loader-utils: 2.0.2 mime-types: 2.1.35 schema-utils: 3.1.1 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true /url-parse-lax/1.0.0: @@ -17373,7 +16757,7 @@ packages: engines: {node: '>=8'} hasBin: true dependencies: - dequal: 2.0.2 + dequal: 2.0.3 diff: 5.1.0 kleur: 4.1.5 sade: 1.8.1 @@ -17454,19 +16838,92 @@ packages: vfile-message: 3.1.2 dev: true + /vite/3.0.3_less@4.1.3+stylus@0.58.1: + resolution: {integrity: sha512-sDIpIcl3mv1NUaSzZwiXGEy1ZoWwwC2vkxUHY6yiDacR6zf//ZFuBJrozO62gedpE43pmxnLATNR5IYUdAEkMQ==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + terser: ^5.4.0 + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.14.50 + less: 4.1.3 + postcss: 8.4.14 + resolve: 1.22.1 + rollup: 2.77.2 + stylus: 0.58.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vitest/0.19.1_bxeiylxtgpy7pg2qbxz6cj6rfm: + resolution: {integrity: sha512-E/ZXpFMUahn731wzhMBNzWRp4mGgiZFT0xdHa32cbNO0CSaHpE9hTfteEU247Gi2Dula8uXo5vvrNB6dtszmQA==} + engines: {node: '>=v14.16.0'} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@vitest/browser': '*' + '@vitest/ui': '*' + c8: '*' + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + c8: + optional: true + happy-dom: + optional: true + jsdom: + optional: true + dependencies: + '@types/chai': 4.3.1 + '@types/chai-subset': 1.3.3 + '@types/node': 18.6.1 + c8: 7.12.0 + chai: 4.3.6 + debug: 4.3.4 + jsdom: 20.0.0 + local-pkg: 0.4.2 + tinypool: 0.2.4 + tinyspy: 1.0.0 + vite: 3.0.3_less@4.1.3+stylus@0.58.1 + transitivePeerDependencies: + - less + - sass + - stylus + - supports-color + - terser + dev: true + /void-elements/3.1.0: resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} engines: {node: '>=0.10.0'} dev: true - /vue-eslint-parser/8.3.0_eslint@8.19.0: + /vue-eslint-parser/8.3.0_eslint@8.20.0: resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.19.0 + eslint: 8.20.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.3.2 @@ -17477,14 +16934,14 @@ packages: - supports-color dev: true - /vue-eslint-parser/9.0.3_eslint@8.19.0: + /vue-eslint-parser/9.0.3_eslint@8.20.0: resolution: {integrity: sha512-yL+ZDb+9T0ELG4VIFo/2anAOz8SvBdlqEnQnvJ3M7Scq56DvtjY0VY88bByRZB0D4J0u8olBcfrXTVONXsh4og==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: '>=6.0.0' dependencies: debug: 4.3.4 - eslint: 8.19.0 + eslint: 8.20.0 eslint-scope: 7.1.1 eslint-visitor-keys: 3.3.0 espree: 9.3.2 @@ -17495,14 +16952,21 @@ packages: - supports-color dev: true - /walk-up-path/1.0.0: - resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} + /w3c-hr-time/1.0.2: + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + dependencies: + browser-process-hrtime: 1.0.0 dev: true - /walker/1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + /w3c-xmlserializer/3.0.0: + resolution: {integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==} + engines: {node: '>=12'} dependencies: - makeerror: 1.0.12 + xml-name-validator: 4.0.0 + dev: true + + /walk-up-path/1.0.0: + resolution: {integrity: sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg==} dev: true /watchpack/2.4.0: @@ -17533,7 +16997,12 @@ packages: resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} dev: true - /webpack-dev-middleware/5.3.3_webpack@5.73.0: + /webidl-conversions/7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + dev: true + + /webpack-dev-middleware/5.3.3_webpack@5.74.0: resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -17544,10 +17013,10 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 dev: true - /webpack-dev-server/4.9.3_debug@4.3.4+webpack@5.73.0: + /webpack-dev-server/4.9.3_debug@4.3.4+webpack@5.74.0: resolution: {integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==} engines: {node: '>= 12.13.0'} hasBin: true @@ -17585,9 +17054,9 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.73.0_esbuild@0.14.48 - webpack-dev-middleware: 5.3.3_webpack@5.73.0 - ws: 8.8.0 + webpack: 5.74.0_esbuild@0.14.50 + webpack-dev-middleware: 5.3.3_webpack@5.74.0 + ws: 8.8.1 transitivePeerDependencies: - bufferutil - debug @@ -17607,8 +17076,12 @@ packages: engines: {node: '>=10.13.0'} dev: true - /webpack/5.73.0_esbuild@0.14.48: - resolution: {integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==} + /webpack-virtual-modules/0.4.4: + resolution: {integrity: sha512-h9atBP/bsZohWpHnr+2sic8Iecb60GxftXsWNLLLSqewgIsGzByd2gcIID4nXcG+3tNe4GQG3dLcff3kXupdRA==} + dev: true + + /webpack/5.74.0_esbuild@0.14.50: + resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -17622,9 +17095,9 @@ packages: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.7.1 - acorn-import-assertions: 1.8.0_acorn@8.7.1 - browserslist: 4.21.1 + acorn: 8.8.0 + acorn-import-assertions: 1.8.0_acorn@8.8.0 + browserslist: 4.21.3 chrome-trace-event: 1.0.3 enhanced-resolve: 5.10.0 es-module-lexer: 0.9.3 @@ -17638,7 +17111,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.3_mlvdagjq5audvc5xmaambfzdzm + terser-webpack-plugin: 5.3.3_sjd3gtdz2lokrpw42bbw3mwd3e watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -17661,10 +17134,30 @@ packages: engines: {node: '>=0.8.0'} dev: true + /whatwg-encoding/2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} + dependencies: + iconv-lite: 0.6.3 + dev: true + /whatwg-mimetype/2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} dev: true + /whatwg-mimetype/3.0.0: + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} + dev: true + + /whatwg-url/11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + dependencies: + tr46: 3.0.0 + webidl-conversions: 7.0.0 + dev: true + /whatwg-url/5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: @@ -17721,8 +17214,8 @@ packages: resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} engines: {node: '>= 10.0.0'} dependencies: - '@babel/parser': 7.18.6 - '@babel/types': 7.18.7 + '@babel/parser': 7.18.9 + '@babel/types': 7.18.9 assert-never: 1.2.1 babel-walk: 3.0.0-canary-5 dev: true @@ -17750,12 +17243,12 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@apideck/better-ajv-errors': 0.3.6_ajv@8.11.0 - '@babel/core': 7.18.6 - '@babel/preset-env': 7.18.6_@babel+core@7.18.6 - '@babel/runtime': 7.18.6 - '@rollup/plugin-babel': 5.3.1_fb3qe53zzddvqjqqltveoanfhe - '@rollup/plugin-node-resolve': 11.2.1_rollup@2.75.7 - '@rollup/plugin-replace': 2.4.2_rollup@2.75.7 + '@babel/core': 7.18.9 + '@babel/preset-env': 7.18.9_@babel+core@7.18.9 + '@babel/runtime': 7.18.9 + '@rollup/plugin-babel': 5.3.1_oqwheajkaay7jaqpswtfouael4 + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.77.2 + '@rollup/plugin-replace': 2.4.2_rollup@2.77.2 '@surma/rollup-plugin-off-main-thread': 2.2.3 ajv: 8.11.0 common-tags: 1.8.2 @@ -17764,8 +17257,8 @@ packages: glob: 7.2.3 lodash: 4.17.21 pretty-bytes: 5.6.0 - rollup: 2.75.7 - rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup: 2.77.2 + rollup-plugin-terser: 7.0.2_rollup@2.77.2 source-map: 0.8.0-beta.0 stringify-object: 3.3.0 strip-comments: 2.0.1 @@ -17871,7 +17364,7 @@ packages: resolution: {integrity: sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==} dev: true - /workbox-webpack-plugin/6.5.3_webpack@5.73.0: + /workbox-webpack-plugin/6.5.3_webpack@5.74.0: resolution: {integrity: sha512-Es8Xr02Gi6Kc3zaUwR691ZLy61hz3vhhs5GztcklQ7kl5k2qAusPh0s6LF3wEtlpfs9ZDErnmy5SErwoll7jBA==} engines: {node: '>=10.0.0'} peerDependencies: @@ -17880,7 +17373,7 @@ packages: fast-json-stable-stringify: 2.1.0 pretty-bytes: 5.6.0 upath: 1.2.0 - webpack: 5.73.0_esbuild@0.14.48 + webpack: 5.74.0_esbuild@0.14.50 webpack-sources: 1.4.3 workbox-build: 6.5.3 transitivePeerDependencies: @@ -17932,8 +17425,8 @@ packages: signal-exit: 3.0.7 dev: true - /ws/8.8.0: - resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==} + /ws/8.8.1: + resolution: {integrity: sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -17950,6 +17443,10 @@ packages: engines: {node: '>=12'} dev: true + /xmlchars/2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + dev: true + /xtend/4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} diff --git a/src/index.ts b/src/index.ts index f3bea86a..25ff6392 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1 +1,43 @@ -export default () => 'Hello World!' +let domParser: DOMParser | undefined + +const sanitizeEl = (el: Element | null) => { + if (!el) { + return el + } + + if (el.tagName.toLowerCase() === 'script') { + return el.remove() + } + + for (const attr of el.attributes) { + if (attr.name.toLowerCase().startsWith('on')) { + el.removeAttributeNode(attr) + } + } + + for (let i = 0, len = el.children.length; i < len; i++) { + const sanitized = sanitizeEl(el.children.item(i)) + if (sanitized == null) { + // eslint-disable-next-line sonar/updated-loop-counter -- the child is removed, the index and length must be rechecked + i-- + len-- + } + } + + return el +} + +export const sanitize = ( + domString: string, + type: DOMParserSupportedType = 'text/html', +) => { + if (!domParser) { + domParser = new DOMParser() + } + + const doc = domParser.parseFromString(domString, type) + const els = doc.children + return [...els].map(el => sanitizeEl(el)?.outerHTML ?? '').join('') +} + +export const sanitizeSvg = (svg: string) => sanitize(svg, 'image/svg+xml') diff --git a/test/basic.spec.ts b/test/basic.spec.ts deleted file mode 100644 index 482d0dc8..00000000 --- a/test/basic.spec.ts +++ /dev/null @@ -1,5 +0,0 @@ -import echo from 'lib-boilerplate' - -test('it should just work', () => { - expect(echo()).toBe('Hello World!') -}) diff --git a/test/svg.spec.ts b/test/svg.spec.ts new file mode 100644 index 00000000..45b60e33 --- /dev/null +++ b/test/svg.spec.ts @@ -0,0 +1,17 @@ +import { sanitizeSvg } from 'domiso' + +test('Remove listeners and scripts', () => { + expect( + sanitizeSvg(/* HTML */ ` + Hello World! + + `), + ).toMatchInlineSnapshot(` + " + Hello World! + + " + `) +}) diff --git a/tsconfig.json b/tsconfig.json index cf038c3e..dc462ebf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,8 @@ { "extends": "@1stg/tsconfig/node16", "compilerOptions": { - "rootDir": "." + "paths": { + "domiso": ["./src/index.ts"] + } } } diff --git a/vercel.json b/vercel.json index 3ba006f5..39968603 100644 --- a/vercel.json +++ b/vercel.json @@ -1,7 +1,7 @@ { "version": 2, "alias": [ - "lib-boilerplate.vercel.app" + "domiso.vercel.app" ], "github": { "silent": true diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 00000000..ae1209ed --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,19 @@ +import autoImport from 'unplugin-auto-import/vite' +import { defineConfig } from 'vitest/config' + +export default defineConfig({ + plugins: [ + // TODO: report the TypeScript issue + ( + autoImport as unknown as typeof import('unplugin-auto-import/vite')['default'] + )({ + imports: 'vitest', + }), + ], + test: { + coverage: { + reporter: ['lcov', 'json'], + }, + environment: 'jsdom', + }, +})