From 842f995ca69600c4c06c46d202fe713b80373418 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 May 2022 22:30:43 +0200 Subject: [PATCH] fix(deps): update all non-major dependencies (#8391) --- package.json | 20 +- .../create-vite/template-lit-ts/package.json | 2 +- .../create-vite/template-lit/package.json | 2 +- .../template-react-ts/package.json | 2 +- .../create-vite/template-react/package.json | 2 +- .../template-svelte-ts/package.json | 2 +- .../create-vite/template-svelte/package.json | 2 +- .../create-vite/template-vue-ts/package.json | 4 +- .../create-vite/template-vue/package.json | 2 +- packages/plugin-legacy/package.json | 6 +- packages/plugin-react/package.json | 2 +- packages/plugin-vue-jsx/package.json | 4 +- packages/plugin-vue/package.json | 2 +- packages/vite/package.json | 16 +- playground/alias/package.json | 2 +- playground/css-sourcemap/package.json | 2 +- playground/css/package.json | 2 +- playground/extensions/package.json | 2 +- playground/json/package.json | 2 +- playground/optimize-deps/package.json | 2 +- playground/preload/package.json | 2 +- playground/react-emotion/package.json | 2 +- playground/resolve/package.json | 2 +- playground/ssr-vue/package.json | 2 +- playground/tailwind/package.json | 4 +- playground/vue-jsx/package.json | 2 +- playground/vue-lib/package.json | 2 +- playground/vue-server-origin/package.json | 2 +- playground/vue-sourcemap/package.json | 2 +- playground/vue/package.json | 4 +- pnpm-lock.yaml | 606 +++++++++--------- 31 files changed, 350 insertions(+), 360 deletions(-) diff --git a/package.json b/package.json index 5811ce3f6f519d..6fe896eccb3662 100644 --- a/package.json +++ b/package.json @@ -34,8 +34,8 @@ "ci-docs": "run-s build docs-build" }, "devDependencies": { - "@babel/types": "^7.17.10", - "@microsoft/api-extractor": "^7.24.1", + "@babel/types": "^7.18.4", + "@microsoft/api-extractor": "^7.24.2", "@rollup/plugin-typescript": "^8.3.2", "@types/babel__core": "^7.1.19", "@types/babel__standalone": "^7.1.4", @@ -57,8 +57,8 @@ "@types/semver": "^7.3.9", "@types/stylus": "^0.48.38", "@types/ws": "^8.5.3", - "@typescript-eslint/eslint-plugin": "^5.25.0", - "@typescript-eslint/parser": "^5.25.0", + "@typescript-eslint/eslint-plugin": "^5.27.0", + "@typescript-eslint/parser": "^5.27.0", "conventional-changelog-cli": "^2.2.2", "cross-env": "^7.0.3", "esbuild": "^0.14.38", @@ -70,27 +70,27 @@ "execa": "^5.1.1", "fs-extra": "^10.1.0", "kill-port": "^1.6.1", - "lint-staged": "^12.4.1", + "lint-staged": "^12.4.3", "minimist": "^1.2.6", "node-fetch": "^2.6.7", "npm-run-all": "^4.1.5", "picocolors": "^1.0.0", "playwright-chromium": "^1.22.2", - "pnpm": "^7.1.3", + "pnpm": "^7.1.7", "prettier": "2.6.2", "prompts": "^2.4.2", "rimraf": "^3.0.2", "rollup": "^2.72.1", "semver": "^7.3.7", - "simple-git-hooks": "^2.7.0", + "simple-git-hooks": "^2.8.0", "sirv": "^2.0.2", "tslib": "^2.4.0", "typescript": "^4.6.4", "unbuild": "^0.7.4", "vite": "workspace:*", "vitepress": "1.0.0-draft.8", - "vitest": "^0.12.9", - "vue": "^3.2.35" + "vitest": "^0.13.0", + "vue": "^3.2.36" }, "simple-git-hooks": { "pre-commit": "pnpm exec lint-staged --concurrent false", @@ -110,7 +110,7 @@ "eslint --fix" ] }, - "packageManager": "pnpm@7.1.3", + "packageManager": "pnpm@7.1.7", "pnpm": { "overrides": { "vite": "workspace:*", diff --git a/packages/create-vite/template-lit-ts/package.json b/packages/create-vite/template-lit-ts/package.json index b8376ef424953f..57358902f93458 100644 --- a/packages/create-vite/template-lit-ts/package.json +++ b/packages/create-vite/template-lit-ts/package.json @@ -17,7 +17,7 @@ "build": "tsc && vite build" }, "dependencies": { - "lit": "^2.2.4" + "lit": "^2.2.5" }, "devDependencies": { "typescript": "^4.6.4", diff --git a/packages/create-vite/template-lit/package.json b/packages/create-vite/template-lit/package.json index cda355c551588b..0ef4af046dfa8d 100644 --- a/packages/create-vite/template-lit/package.json +++ b/packages/create-vite/template-lit/package.json @@ -15,7 +15,7 @@ "build": "vite build" }, "dependencies": { - "lit": "^2.2.4" + "lit": "^2.2.5" }, "devDependencies": { "vite": "^2.9.9" diff --git a/packages/create-vite/template-react-ts/package.json b/packages/create-vite/template-react-ts/package.json index 345ba8ed8197e8..7e91f9c6589b16 100644 --- a/packages/create-vite/template-react-ts/package.json +++ b/packages/create-vite/template-react-ts/package.json @@ -14,7 +14,7 @@ }, "devDependencies": { "@types/react": "^18.0.9", - "@types/react-dom": "^18.0.4", + "@types/react-dom": "^18.0.5", "@vitejs/plugin-react": "^1.3.2", "typescript": "^4.6.4", "vite": "^2.9.9" diff --git a/packages/create-vite/template-react/package.json b/packages/create-vite/template-react/package.json index 4cdfad55c5aa45..b79e9889800e06 100644 --- a/packages/create-vite/template-react/package.json +++ b/packages/create-vite/template-react/package.json @@ -14,7 +14,7 @@ }, "devDependencies": { "@types/react": "^18.0.9", - "@types/react-dom": "^18.0.4", + "@types/react-dom": "^18.0.5", "@vitejs/plugin-react": "^1.3.2", "vite": "^2.9.9" } diff --git a/packages/create-vite/template-svelte-ts/package.json b/packages/create-vite/template-svelte-ts/package.json index 6efa5660e804cc..53a4c5ea8e01a0 100644 --- a/packages/create-vite/template-svelte-ts/package.json +++ b/packages/create-vite/template-svelte-ts/package.json @@ -10,7 +10,7 @@ "check": "svelte-check --tsconfig ./tsconfig.json" }, "devDependencies": { - "@sveltejs/vite-plugin-svelte": "^1.0.0-next.44", + "@sveltejs/vite-plugin-svelte": "^1.0.0-next.46", "@tsconfig/svelte": "^3.0.0", "svelte": "^3.48.0", "svelte-check": "^2.7.1", diff --git a/packages/create-vite/template-svelte/package.json b/packages/create-vite/template-svelte/package.json index a8da0b4e39263b..5d469f55d796b9 100644 --- a/packages/create-vite/template-svelte/package.json +++ b/packages/create-vite/template-svelte/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "devDependencies": { - "@sveltejs/vite-plugin-svelte": "^1.0.0-next.44", + "@sveltejs/vite-plugin-svelte": "^1.0.0-next.46", "svelte": "^3.48.0", "vite": "^2.9.9" } diff --git a/packages/create-vite/template-vue-ts/package.json b/packages/create-vite/template-vue-ts/package.json index c2861bf4020a84..5f352e2519aa25 100644 --- a/packages/create-vite/template-vue-ts/package.json +++ b/packages/create-vite/template-vue-ts/package.json @@ -9,12 +9,12 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.2.35" + "vue": "^3.2.36" }, "devDependencies": { "@vitejs/plugin-vue": "^2.3.3", "typescript": "^4.6.4", "vite": "^2.9.9", - "vue-tsc": "^0.34.15" + "vue-tsc": "^0.35.2" } } diff --git a/packages/create-vite/template-vue/package.json b/packages/create-vite/template-vue/package.json index 47293319f25fe0..c519cb36270f61 100644 --- a/packages/create-vite/template-vue/package.json +++ b/packages/create-vite/template-vue/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.2.35" + "vue": "^3.2.36" }, "devDependencies": { "@vitejs/plugin-vue": "^2.3.3", diff --git a/packages/plugin-legacy/package.json b/packages/plugin-legacy/package.json index f7a696eb9b2893..3321c4de7815c7 100644 --- a/packages/plugin-legacy/package.json +++ b/packages/plugin-legacy/package.json @@ -35,8 +35,8 @@ }, "homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-legacy#readme", "dependencies": { - "@babel/standalone": "^7.18.1", - "core-js": "^3.22.6", + "@babel/standalone": "^7.18.4", + "core-js": "^3.22.7", "magic-string": "^0.26.2", "regenerator-runtime": "^0.13.9", "systemjs": "^6.12.1" @@ -46,6 +46,6 @@ }, "devDependencies": { "vite": "workspace:*", - "@babel/core": "^7.18.0" + "@babel/core": "^7.18.2" } } diff --git a/packages/plugin-react/package.json b/packages/plugin-react/package.json index cd034b183b978e..25ab4a39d72044 100644 --- a/packages/plugin-react/package.json +++ b/packages/plugin-react/package.json @@ -39,7 +39,7 @@ }, "homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-react#readme", "dependencies": { - "@babel/core": "^7.18.0", + "@babel/core": "^7.18.2", "@babel/plugin-transform-react-jsx": "^7.17.12", "@babel/plugin-transform-react-jsx-development": "^7.16.7", "@babel/plugin-transform-react-jsx-self": "^7.17.12", diff --git a/packages/plugin-vue-jsx/package.json b/packages/plugin-vue-jsx/package.json index 69f27be9f8e898..1e345081113256 100644 --- a/packages/plugin-vue-jsx/package.json +++ b/packages/plugin-vue-jsx/package.json @@ -35,9 +35,9 @@ }, "homepage": "https://github.com/vitejs/vite/tree/main/packages/plugin-vue-jsx#readme", "dependencies": { - "@babel/core": "^7.18.0", + "@babel/core": "^7.18.2", "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-transform-typescript": "^7.18.1", + "@babel/plugin-transform-typescript": "^7.18.4", "@rollup/pluginutils": "^4.2.1", "@vue/babel-plugin-jsx": "^1.1.1" }, diff --git a/packages/plugin-vue/package.json b/packages/plugin-vue/package.json index 6725ec2eb6152d..999cda6486ad9f 100644 --- a/packages/plugin-vue/package.json +++ b/packages/plugin-vue/package.json @@ -46,7 +46,7 @@ "slash": "^4.0.0", "source-map": "^0.6.1", "vite": "workspace:*", - "vue": "^3.2.35" + "vue": "^3.2.36" }, "dependencies": { "@rollup/pluginutils": "^4.2.1" diff --git a/packages/vite/package.json b/packages/vite/package.json index 1d3460d58dd3dd..cca4b07d3c289b 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -70,8 +70,8 @@ }, "devDependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/parser": "^7.18.0", - "@babel/types": "^7.18.0", + "@babel/parser": "^7.18.4", + "@babel/types": "^7.18.4", "@jridgewell/trace-mapping": "^0.3.13", "@rollup/plugin-alias": "^3.1.9", "@rollup/plugin-commonjs": "^21.1.0", @@ -80,7 +80,7 @@ "@rollup/plugin-node-resolve": "13.3.0", "@rollup/plugin-typescript": "^8.3.2", "@rollup/pluginutils": "^4.2.1", - "@vue/compiler-dom": "^3.2.35", + "@vue/compiler-dom": "^3.2.36", "acorn": "^8.7.1", "cac": "6.7.9", "chokidar": "^3.5.3", @@ -99,7 +99,7 @@ "fast-glob": "^3.2.11", "http-proxy": "^1.18.1", "json5": "^2.2.1", - "launch-editor-middleware": "^2.3.0", + "launch-editor-middleware": "^2.4.0", "magic-string": "^0.26.2", "micromatch": "^4.0.5", "mrmime": "^1.0.0", @@ -112,18 +112,18 @@ "postcss-load-config": "^3.1.4", "postcss-modules": "^4.3.1", "resolve.exports": "^1.1.0", - "rollup-plugin-license": "^2.7.0", + "rollup-plugin-license": "^2.8.0", "sirv": "^2.0.2", "source-map-js": "^1.0.2", "source-map-support": "^0.5.21", "strip-ansi": "^6.0.1", "strip-literal": "^0.3.0", - "terser": "^5.13.1", - "tsconfck": "^2.0.0", + "terser": "^5.14.0", + "tsconfck": "^2.0.1", "tslib": "^2.4.0", "types": "link:./types", "ufo": "^0.8.4", - "ws": "^8.6.0" + "ws": "^8.7.0" }, "peerDependencies": { "less": "*", diff --git a/playground/alias/package.json b/playground/alias/package.json index afba673824f94d..c9883422d785d4 100644 --- a/playground/alias/package.json +++ b/playground/alias/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "aliased-module": "file:./dir/module", - "vue": "^3.2.35" + "vue": "^3.2.36" }, "devDependencies": { "resolve-linked": "workspace:*" diff --git a/playground/css-sourcemap/package.json b/playground/css-sourcemap/package.json index 02caa1b46126a3..f235b613e17922 100644 --- a/playground/css-sourcemap/package.json +++ b/playground/css-sourcemap/package.json @@ -12,6 +12,6 @@ "less": "^4.1.2", "magic-string": "^0.26.2", "sass": "^1.52.1", - "stylus": "^0.57.0" + "stylus": "^0.58.0" } } diff --git a/playground/css/package.json b/playground/css/package.json index 07b3b11b36aee2..b83dcf384ad7e6 100644 --- a/playground/css/package.json +++ b/playground/css/package.json @@ -14,6 +14,6 @@ "less": "^4.1.2", "postcss-nested": "^5.0.6", "sass": "^1.52.1", - "stylus": "^0.57.0" + "stylus": "^0.58.0" } } diff --git a/playground/extensions/package.json b/playground/extensions/package.json index 096fdba15c6bd6..3224757b1c4e0d 100644 --- a/playground/extensions/package.json +++ b/playground/extensions/package.json @@ -9,6 +9,6 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.2.35" + "vue": "^3.2.36" } } diff --git a/playground/json/package.json b/playground/json/package.json index 79de2749b3d45e..5b7b28da0bafe2 100644 --- a/playground/json/package.json +++ b/playground/json/package.json @@ -15,6 +15,6 @@ "cross-env": "^7.0.3", "express": "^4.18.1", "json-module": "file:./json-module", - "vue": "^3.2.35" + "vue": "^3.2.36" } } diff --git a/playground/optimize-deps/package.json b/playground/optimize-deps/package.json index 4f30b07d5a39f9..055d23bc9ce597 100644 --- a/playground/optimize-deps/package.json +++ b/playground/optimize-deps/package.json @@ -26,7 +26,7 @@ "react-dom": "^17.0.2", "resolve-linked": "workspace:0.0.0", "url": "^0.11.0", - "vue": "^3.2.35", + "vue": "^3.2.36", "vuex": "^4.0.2" }, "devDependencies": { diff --git a/playground/preload/package.json b/playground/preload/package.json index 899b81accadde8..7a2c9edc585706 100644 --- a/playground/preload/package.json +++ b/playground/preload/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.2.35", + "vue": "^3.2.36", "vue-router": "^4.0.15" }, "devDependencies": { diff --git a/playground/react-emotion/package.json b/playground/react-emotion/package.json index e066a4fe2a0c83..7ffa5d454b8151 100644 --- a/playground/react-emotion/package.json +++ b/playground/react-emotion/package.json @@ -15,7 +15,7 @@ "react-switch": "^6.0.0" }, "devDependencies": { - "@babel/plugin-proposal-pipeline-operator": "^7.17.12", + "@babel/plugin-proposal-pipeline-operator": "^7.18.2", "@emotion/babel-plugin": "^11.9.2", "@vitejs/plugin-react": "workspace:*" }, diff --git a/playground/resolve/package.json b/playground/resolve/package.json index ffb49232780061..5d508555b55cee 100644 --- a/playground/resolve/package.json +++ b/playground/resolve/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "@babel/runtime": "^7.18.0", + "@babel/runtime": "^7.18.3", "es5-ext": "0.10.61", "normalize.css": "^8.0.1", "require-pkg-with-module-field": "link:./require-pkg-with-module-field", diff --git a/playground/ssr-vue/package.json b/playground/ssr-vue/package.json index ab1270f9024878..28ad825ccb455b 100644 --- a/playground/ssr-vue/package.json +++ b/playground/ssr-vue/package.json @@ -16,7 +16,7 @@ }, "dependencies": { "example-external-component": "file:example-external-component", - "vue": "^3.2.35", + "vue": "^3.2.36", "vue-router": "^4.0.15", "vuex": "^4.0.2" }, diff --git a/playground/tailwind/package.json b/playground/tailwind/package.json index 56fdb7776c29c8..454ce968fbd82d 100644 --- a/playground/tailwind/package.json +++ b/playground/tailwind/package.json @@ -11,11 +11,11 @@ "dependencies": { "autoprefixer": "^10.4.7", "tailwindcss": "^2.2.19", - "vue": "^3.2.35", + "vue": "^3.2.36", "vue-router": "^4.0.15" }, "devDependencies": { "@vitejs/plugin-vue": "workspace:*", - "ts-node": "^10.7.0" + "ts-node": "^10.8.0" } } diff --git a/playground/vue-jsx/package.json b/playground/vue-jsx/package.json index 25eba00a0b4020..dd10e5506ba99b 100644 --- a/playground/vue-jsx/package.json +++ b/playground/vue-jsx/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.2.35" + "vue": "^3.2.36" }, "devDependencies": { "@vitejs/plugin-vue": "workspace:*", diff --git a/playground/vue-lib/package.json b/playground/vue-lib/package.json index 060843126f59b7..cfd37778ac9d9a 100644 --- a/playground/vue-lib/package.json +++ b/playground/vue-lib/package.json @@ -8,7 +8,7 @@ "build-consumer": "vite build --config ./vite.config.consumer.ts" }, "dependencies": { - "vue": "^3.2.35" + "vue": "^3.2.36" }, "devDependencies": { "@vitejs/plugin-vue": "workspace:*" diff --git a/playground/vue-server-origin/package.json b/playground/vue-server-origin/package.json index eeb09fb770e944..e2b984b365e681 100644 --- a/playground/vue-server-origin/package.json +++ b/playground/vue-server-origin/package.json @@ -9,7 +9,7 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.2.35" + "vue": "^3.2.36" }, "devDependencies": { "@vitejs/plugin-vue": "workspace:*" diff --git a/playground/vue-sourcemap/package.json b/playground/vue-sourcemap/package.json index db9893105c9c6f..b5e42d8d3f83d4 100644 --- a/playground/vue-sourcemap/package.json +++ b/playground/vue-sourcemap/package.json @@ -15,6 +15,6 @@ "sass": "^1.52.1" }, "dependencies": { - "vue": "^3.2.35" + "vue": "^3.2.36" } } diff --git a/playground/vue/package.json b/playground/vue/package.json index bffa3179749135..7bed9b7083bf88 100644 --- a/playground/vue/package.json +++ b/playground/vue/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "lodash-es": "^4.17.21", - "vue": "^3.2.35" + "vue": "^3.2.36" }, "devDependencies": { "@vitejs/plugin-vue": "workspace:*", @@ -18,6 +18,6 @@ "less": "^4.1.2", "pug": "^3.0.2", "sass": "^1.52.1", - "stylus": "^0.57.0" + "stylus": "^0.58.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4495b294a0b344..2f01ebb7dbeab9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,8 +10,8 @@ importers: .: specifiers: - '@babel/types': ^7.17.10 - '@microsoft/api-extractor': ^7.24.1 + '@babel/types': ^7.18.4 + '@microsoft/api-extractor': ^7.24.2 '@rollup/plugin-typescript': ^8.3.2 '@types/babel__core': ^7.1.19 '@types/babel__standalone': ^7.1.4 @@ -33,8 +33,8 @@ importers: '@types/semver': ^7.3.9 '@types/stylus': ^0.48.38 '@types/ws': ^8.5.3 - '@typescript-eslint/eslint-plugin': ^5.25.0 - '@typescript-eslint/parser': ^5.25.0 + '@typescript-eslint/eslint-plugin': ^5.27.0 + '@typescript-eslint/parser': ^5.27.0 conventional-changelog-cli: ^2.2.2 cross-env: ^7.0.3 esbuild: ^0.14.38 @@ -46,30 +46,30 @@ importers: execa: ^5.1.1 fs-extra: ^10.1.0 kill-port: ^1.6.1 - lint-staged: ^12.4.1 + lint-staged: ^12.4.3 minimist: ^1.2.6 node-fetch: ^2.6.7 npm-run-all: ^4.1.5 picocolors: ^1.0.0 playwright-chromium: ^1.22.2 - pnpm: ^7.1.3 + pnpm: ^7.1.7 prettier: 2.6.2 prompts: ^2.4.2 rimraf: ^3.0.2 rollup: ^2.72.1 semver: ^7.3.7 - simple-git-hooks: ^2.7.0 + simple-git-hooks: ^2.8.0 sirv: ^2.0.2 tslib: ^2.4.0 typescript: ^4.6.4 unbuild: ^0.7.4 vite: workspace:* vitepress: 1.0.0-draft.8 - vitest: ^0.12.9 - vue: ^3.2.35 + vitest: ^0.13.0 + vue: ^3.2.36 devDependencies: - '@babel/types': 7.17.10 - '@microsoft/api-extractor': 7.24.1 + '@babel/types': 7.18.4 + '@microsoft/api-extractor': 7.24.2 '@rollup/plugin-typescript': 8.3.2_dsrqihoegvzgycupzno43pt4sq '@types/babel__core': 7.1.19 '@types/babel__standalone': 7.1.4 @@ -91,39 +91,39 @@ importers: '@types/semver': 7.3.9 '@types/stylus': 0.48.38 '@types/ws': 8.5.3 - '@typescript-eslint/eslint-plugin': 5.25.0_jorowkvdqu6pwramweg5le7ncu - '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la + '@typescript-eslint/eslint-plugin': 5.27.0_wty7taswolhs3dkiohqfkuwyye + '@typescript-eslint/parser': 5.27.0_utdtartgf6fqqgkivzeynh76la conventional-changelog-cli: 2.2.2 cross-env: 7.0.3 esbuild: 0.14.38 eslint: 8.16.0 eslint-define-config: 1.4.1 - eslint-plugin-import: 2.26.0_fpv4l7j2iomztwskn7bai2v6a4 + eslint-plugin-import: 2.26.0_xsmuhwqsfrjm7m3kqio7zoeziq eslint-plugin-node: 11.1.0_eslint@8.16.0 esno: 0.16.3 execa: 5.1.1 fs-extra: 10.1.0 kill-port: 1.6.1 - lint-staged: 12.4.1 + lint-staged: 12.4.3 minimist: 1.2.6 node-fetch: 2.6.7 npm-run-all: 4.1.5 picocolors: 1.0.0 playwright-chromium: 1.22.2 - pnpm: 7.1.3 + pnpm: 7.1.7 prettier: 2.6.2 prompts: 2.4.2 rimraf: 3.0.2 rollup: 2.72.1 semver: 7.3.7 - simple-git-hooks: 2.7.0 + simple-git-hooks: 2.8.0 sirv: 2.0.2 tslib: 2.4.0 typescript: 4.6.4 unbuild: 0.7.4 vite: link:packages/vite vitepress: 1.0.0-draft.8 - vitest: 0.12.9 + vitest: 0.13.0 vue: 3.2.36 packages/create-vite: @@ -138,26 +138,26 @@ importers: packages/plugin-legacy: specifiers: - '@babel/core': ^7.18.0 - '@babel/standalone': ^7.18.1 - core-js: ^3.22.6 + '@babel/core': ^7.18.2 + '@babel/standalone': ^7.18.4 + core-js: ^3.22.7 magic-string: ^0.26.2 regenerator-runtime: ^0.13.9 systemjs: ^6.12.1 vite: workspace:* dependencies: - '@babel/standalone': 7.18.1 - core-js: 3.22.6 + '@babel/standalone': 7.18.4 + core-js: 3.22.7 magic-string: 0.26.2 regenerator-runtime: 0.13.9 systemjs: 6.12.1 devDependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 vite: link:../vite packages/plugin-react: specifiers: - '@babel/core': ^7.18.0 + '@babel/core': ^7.18.2 '@babel/plugin-transform-react-jsx': ^7.17.12 '@babel/plugin-transform-react-jsx-development': ^7.16.7 '@babel/plugin-transform-react-jsx-self': ^7.17.12 @@ -167,11 +167,11 @@ importers: resolve: ^1.22.0 vite: workspace:* dependencies: - '@babel/core': 7.18.0 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.0 - '@babel/plugin-transform-react-jsx-self': 7.17.12_@babel+core@7.18.0 - '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.2 + '@babel/plugin-transform-react-jsx-self': 7.17.12_@babel+core@7.18.2 + '@babel/plugin-transform-react-jsx-source': 7.16.7_@babel+core@7.18.2 '@rollup/pluginutils': 4.2.1 react-refresh: 0.13.0 resolve: 1.22.0 @@ -188,7 +188,7 @@ importers: slash: ^4.0.0 source-map: ^0.6.1 vite: workspace:* - vue: ^3.2.35 + vue: ^3.2.36 dependencies: '@rollup/pluginutils': 4.2.1 devDependencies: @@ -203,26 +203,26 @@ importers: packages/plugin-vue-jsx: specifiers: - '@babel/core': ^7.18.0 + '@babel/core': ^7.18.2 '@babel/plugin-syntax-import-meta': ^7.10.4 - '@babel/plugin-transform-typescript': ^7.18.1 + '@babel/plugin-transform-typescript': ^7.18.4 '@rollup/pluginutils': ^4.2.1 '@vue/babel-plugin-jsx': ^1.1.1 vite: workspace:* dependencies: - '@babel/core': 7.18.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.0 - '@babel/plugin-transform-typescript': 7.18.1_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.2 + '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.2 '@rollup/pluginutils': 4.2.1 - '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.0 + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.18.2 devDependencies: vite: link:../vite packages/vite: specifiers: '@ampproject/remapping': ^2.2.0 - '@babel/parser': ^7.18.0 - '@babel/types': ^7.18.0 + '@babel/parser': ^7.18.4 + '@babel/types': ^7.18.4 '@jridgewell/trace-mapping': ^0.3.13 '@rollup/plugin-alias': ^3.1.9 '@rollup/plugin-commonjs': ^21.1.0 @@ -231,7 +231,7 @@ importers: '@rollup/plugin-node-resolve': 13.3.0 '@rollup/plugin-typescript': ^8.3.2 '@rollup/pluginutils': ^4.2.1 - '@vue/compiler-dom': ^3.2.35 + '@vue/compiler-dom': ^3.2.36 acorn: ^8.7.1 cac: 6.7.9 chokidar: ^3.5.3 @@ -252,7 +252,7 @@ importers: fsevents: ~2.3.2 http-proxy: ^1.18.1 json5: ^2.2.1 - launch-editor-middleware: ^2.3.0 + launch-editor-middleware: ^2.4.0 magic-string: ^0.26.2 micromatch: ^4.0.5 mrmime: ^1.0.0 @@ -268,18 +268,18 @@ importers: resolve: ^1.22.0 resolve.exports: ^1.1.0 rollup: ^2.72.1 - rollup-plugin-license: ^2.7.0 + rollup-plugin-license: ^2.8.0 sirv: ^2.0.2 source-map-js: ^1.0.2 source-map-support: ^0.5.21 strip-ansi: ^6.0.1 strip-literal: ^0.3.0 - terser: ^5.13.1 - tsconfck: ^2.0.0 + terser: ^5.14.0 + tsconfck: ^2.0.1 tslib: ^2.4.0 types: link:./types ufo: ^0.8.4 - ws: ^8.6.0 + ws: ^8.7.0 dependencies: esbuild: 0.14.38 postcss: 8.4.14 @@ -289,8 +289,8 @@ importers: fsevents: 2.3.2 devDependencies: '@ampproject/remapping': 2.2.0 - '@babel/parser': 7.18.0 - '@babel/types': 7.18.0 + '@babel/parser': 7.18.4 + '@babel/types': 7.18.4 '@jridgewell/trace-mapping': 0.3.13 '@rollup/plugin-alias': 3.1.9_rollup@2.72.1 '@rollup/plugin-commonjs': 21.1.0_rollup@2.72.1 @@ -318,7 +318,7 @@ importers: fast-glob: 3.2.11 http-proxy: 1.18.1_debug@4.3.4 json5: 2.2.1 - launch-editor-middleware: 2.3.0 + launch-editor-middleware: 2.4.0 magic-string: 0.26.2 micromatch: 4.0.5 mrmime: 1.0.0 @@ -331,18 +331,18 @@ importers: postcss-load-config: 3.1.4_postcss@8.4.14 postcss-modules: 4.3.1_postcss@8.4.14 resolve.exports: 1.1.0 - rollup-plugin-license: 2.7.0_rollup@2.72.1 + rollup-plugin-license: 2.8.0_rollup@2.72.1 sirv: 2.0.2 source-map-js: 1.0.2 source-map-support: 0.5.21 strip-ansi: 6.0.1 strip-literal: 0.3.0 - terser: 5.13.1 - tsconfck: 2.0.0 + terser: 5.14.0 + tsconfck: 2.0.1 tslib: 2.4.0 types: link:types ufo: 0.8.4 - ws: 8.6.0 + ws: 8.7.0 playground: specifiers: @@ -356,7 +356,7 @@ importers: specifiers: aliased-module: file:./dir/module resolve-linked: workspace:* - vue: ^3.2.35 + vue: ^3.2.36 dependencies: aliased-module: file:playground/alias/dir/module vue: 3.2.36 @@ -391,14 +391,14 @@ importers: less: ^4.1.2 postcss-nested: ^5.0.6 sass: ^1.52.1 - stylus: ^0.57.0 + stylus: ^0.58.0 devDependencies: css-dep: link:css-dep fast-glob: 3.2.11 less: 4.1.2 postcss-nested: 5.0.6 sass: 1.52.1 - stylus: 0.57.0 + stylus: 0.58.0 playground/css-codesplit: specifiers: {} @@ -411,12 +411,12 @@ importers: less: ^4.1.2 magic-string: ^0.26.2 sass: ^1.52.1 - stylus: ^0.57.0 + stylus: ^0.58.0 devDependencies: less: 4.1.2 magic-string: 0.26.2 sass: 1.52.1 - stylus: 0.57.0 + stylus: 0.58.0 playground/css/css-dep: specifiers: {} @@ -456,7 +456,7 @@ importers: playground/extensions: specifiers: - vue: ^3.2.35 + vue: ^3.2.36 dependencies: vue: 3.2.36 @@ -491,7 +491,7 @@ importers: cross-env: ^7.0.3 express: ^4.18.1 json-module: file:./json-module - vue: ^3.2.35 + vue: ^3.2.36 devDependencies: cross-env: 7.0.3 express: 4.18.1 @@ -589,7 +589,7 @@ importers: react-dom: ^17.0.2 resolve-linked: workspace:0.0.0 url: ^0.11.0 - vue: ^3.2.35 + vue: ^3.2.36 vuex: ^4.0.2 dependencies: axios: 0.27.2 @@ -674,7 +674,7 @@ importers: playground/preload: specifiers: '@vitejs/plugin-vue': workspace:* - vue: ^3.2.35 + vue: ^3.2.36 vue-router: ^4.0.15 dependencies: vue: 3.2.36 @@ -704,7 +704,7 @@ importers: playground/react-emotion: specifiers: - '@babel/plugin-proposal-pipeline-operator': ^7.17.12 + '@babel/plugin-proposal-pipeline-operator': ^7.18.2 '@emotion/babel-plugin': ^11.9.2 '@emotion/react': ^11.9.0 '@vitejs/plugin-react': workspace:* @@ -717,13 +717,13 @@ importers: react-dom: 17.0.2_react@17.0.2 react-switch: 6.0.0_sfoxds7t5ydpegc3knd667wn6m devDependencies: - '@babel/plugin-proposal-pipeline-operator': 7.17.12 + '@babel/plugin-proposal-pipeline-operator': 7.18.2 '@emotion/babel-plugin': 11.9.2 '@vitejs/plugin-react': link:../../packages/plugin-react playground/resolve: specifiers: - '@babel/runtime': ^7.18.0 + '@babel/runtime': ^7.18.3 es5-ext: 0.10.61 normalize.css: ^8.0.1 require-pkg-with-module-field: link:./require-pkg-with-module-field @@ -734,7 +734,7 @@ importers: resolve-exports-path: link:./exports-path resolve-linked: workspace:* dependencies: - '@babel/runtime': 7.18.0 + '@babel/runtime': 7.18.3 es5-ext: 0.10.61 normalize.css: 8.0.1 require-pkg-with-module-field: link:require-pkg-with-module-field @@ -885,7 +885,7 @@ importers: example-external-component: file:example-external-component express: ^4.18.1 serve-static: ^1.15.0 - vue: ^3.2.35 + vue: ^3.2.36 vue-router: ^4.0.15 vuex: ^4.0.2 dependencies: @@ -924,17 +924,17 @@ importers: '@vitejs/plugin-vue': workspace:* autoprefixer: ^10.4.7 tailwindcss: ^2.2.19 - ts-node: ^10.7.0 - vue: ^3.2.35 + ts-node: ^10.8.0 + vue: ^3.2.36 vue-router: ^4.0.15 dependencies: autoprefixer: 10.4.7 - tailwindcss: 2.2.19_eq6rdkkr572vfnsce6ssjbbos4 + tailwindcss: 2.2.19_tob5czlylbhxx3vaetl5hdifjq vue: 3.2.36 vue-router: 4.0.15_vue@3.2.36 devDependencies: '@vitejs/plugin-vue': link:../../packages/plugin-vue - ts-node: 10.7.0 + ts-node: 10.8.0 playground/tailwind-sourcemap: specifiers: @@ -956,8 +956,8 @@ importers: lodash-es: ^4.17.21 pug: ^3.0.2 sass: ^1.52.1 - stylus: ^0.57.0 - vue: ^3.2.35 + stylus: ^0.58.0 + vue: ^3.2.36 dependencies: lodash-es: 4.17.21 vue: 3.2.36 @@ -967,13 +967,13 @@ importers: less: 4.1.2 pug: 3.0.2 sass: 1.52.1 - stylus: 0.57.0 + stylus: 0.58.0 playground/vue-jsx: specifiers: '@vitejs/plugin-vue': workspace:* '@vitejs/plugin-vue-jsx': workspace:* - vue: ^3.2.35 + vue: ^3.2.36 dependencies: vue: 3.2.36 devDependencies: @@ -983,7 +983,7 @@ importers: playground/vue-lib: specifiers: '@vitejs/plugin-vue': workspace:* - vue: ^3.2.35 + vue: ^3.2.36 dependencies: vue: 3.2.36 devDependencies: @@ -992,7 +992,7 @@ importers: playground/vue-server-origin: specifiers: '@vitejs/plugin-vue': workspace:* - vue: ^3.2.35 + vue: ^3.2.36 dependencies: vue: 3.2.36 devDependencies: @@ -1004,7 +1004,7 @@ importers: less: ^4.1.2 postcss-nested: ^5.0.6 sass: ^1.52.1 - vue: ^3.2.35 + vue: ^3.2.36 dependencies: vue: 3.2.36 devDependencies: @@ -1164,7 +1164,7 @@ packages: '@babel/parser': 7.17.10 '@babel/template': 7.16.7 '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -1174,20 +1174,20 @@ packages: - supports-color dev: true - /@babel/core/7.18.0: - resolution: {integrity: sha512-Xyw74OlJwDijToNi0+6BBI5mLLR5+5R3bcSH80LXzjzEGEUlvNzujEE71BaD/ApEZHAvFI/Mlmp4M5lIkdeeWw==} + /@babel/core/7.18.2: + resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.16.7 - '@babel/generator': 7.18.0 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.18.0 + '@babel/generator': 7.18.2 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.2 '@babel/helper-module-transforms': 7.18.0 - '@babel/helpers': 7.18.0 + '@babel/helpers': 7.18.2 '@babel/parser': 7.18.0 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -1200,15 +1200,15 @@ packages: resolution: {integrity: sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 '@jridgewell/gen-mapping': 0.1.1 jsesc: 2.5.2 - /@babel/generator/7.18.0: - resolution: {integrity: sha512-81YO9gGx6voPXlvYdZBliFXAZU8vZ9AZ6z+CjlmcnaeOcYSFbMTpdeDUO9xD9dh/68Vq03I8ZspfUTPfitcDHg==} + /@babel/generator/7.18.2: + resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 '@jridgewell/gen-mapping': 0.3.1 jsesc: 2.5.2 @@ -1232,25 +1232,25 @@ packages: semver: 6.3.0 dev: true - /@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.0: - resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.2: + resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.17.10 - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-validator-option': 7.16.7 browserslist: 4.20.3 semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.0: + /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.2: resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-function-name': 7.17.9 @@ -1266,26 +1266,30 @@ packages: resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 + + /@babel/helper-environment-visitor/7.18.2: + resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} + engines: {node: '>=6.9.0'} /@babel/helper-function-name/7.17.9: resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/helper-hoist-variables/7.16.7: resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/helper-member-expression-to-functions/7.17.7: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: false /@babel/helper-module-imports/7.16.7: @@ -1305,7 +1309,7 @@ packages: '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: true @@ -1320,8 +1324,8 @@ packages: '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -1329,12 +1333,13 @@ packages: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 dev: false /@babel/helper-plugin-utils/7.16.7: resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} engines: {node: '>=6.9.0'} + dev: false /@babel/helper-plugin-utils/7.17.12: resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} @@ -1344,11 +1349,11 @@ packages: resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: false @@ -1357,13 +1362,13 @@ packages: resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/helper-validator-identifier/7.16.7: resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} @@ -1379,18 +1384,18 @@ packages: dependencies: '@babel/template': 7.16.7 '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.18.0: - resolution: {integrity: sha512-AE+HMYhmlMIbho9nbvicHyxFwhrO+xhKB6AhRxzl8w46Yj0VXTZjEsAoBVC7rB2I0jzX+yWyVybnO08qkfx6kg==} + /@babel/helpers/7.18.2: + resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/traverse': 7.18.0 - '@babel/types': 7.18.0 + '@babel/traverse': 7.18.2 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color @@ -1407,17 +1412,25 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/parser/7.18.0: resolution: {integrity: sha512-AqDccGC+m5O/iUStSJy3DGRIUFu7WbY/CppZYwrEUB4N0tZlnI8CSTsgL7v5fHVFmUbRv2sd+yy27o8Ydt4MGg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 + + /@babel/parser/7.18.4: + resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.18.4 + dev: true - /@babel/plugin-proposal-pipeline-operator/7.17.12: - resolution: {integrity: sha512-YMEADWY6q4+u4QQ7CypEQn2RndArsSOEeeKV7KGspQOiLCWa4AM7iOWmCyqv+UnQidw8faEAlgkOkPBHZwILiw==} + /@babel/plugin-proposal-pipeline-operator/7.18.2: + resolution: {integrity: sha512-EeXGb75lqRe+BRJeRRgyPJtbYykdgoCZtIXMWohhGvxnAwmrQv/x4d6WYtk6pGk+wAkqIqVb8ySUp5rJNBTDAA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -1426,12 +1439,12 @@ packages: '@babel/plugin-syntax-pipeline-operator': 7.17.12 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.0: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.2: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.16.7 dev: false @@ -1441,25 +1454,25 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.18.0: + /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.2 + '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.0: + /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false @@ -1472,70 +1485,70 @@ packages: '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.0: + /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 - '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.2 dev: false - /@babel/plugin-transform-react-jsx-self/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-react-jsx-self/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-7S9G2B44EnYOx74mue02t1uD8ckWZ/ee6Uz/qfdzc35uWHX5NgRy9i+iJSb2LFRgMd+QV9zNcStQaazzzZ3n3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.17.12 dev: false - /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.18.0: + /@babel/plugin-transform-react-jsx-source/7.16.7_@babel+core@7.18.2: resolution: {integrity: sha512-rONFiQz9vgbsnaMtQlZCjIRwhJvlrPET8TabIUK2hzlXw9B9s2Ieaxte1SCOOXMbWRHodbKixNf3BLcWVOQ8Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.16.7 dev: false - /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.0: + /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.2: resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 + '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.0 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.2 '@babel/types': 7.18.0 dev: false - /@babel/plugin-transform-typescript/7.18.1_@babel+core@7.18.0: - resolution: {integrity: sha512-F+RJmL479HJmC0KeqqwEGZMg1P7kWArLGbAKfEi9yPthJyMNjF+DjxFF/halfQvq1Q9GFM4TUbYDNV8xe4Ctqg==} + /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.2: + resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.0 - '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.0 + '@babel/core': 7.18.2 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.2 '@babel/helper-plugin-utils': 7.17.12 - '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.0 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.2 transitivePeerDependencies: - supports-color dev: false @@ -1546,8 +1559,8 @@ packages: dependencies: regenerator-runtime: 0.13.9 - /@babel/runtime/7.18.0: - resolution: {integrity: sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg==} + /@babel/runtime/7.18.3: + resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 @@ -1558,8 +1571,8 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/standalone/7.18.1: - resolution: {integrity: sha512-RPTw2fR7FlvRqOa4/UCVgFz7RrL+gka8imIaswu6a8DOLDZ0bP+/ttHNw3W4vvabvScjDWNVtR0RG/C13KQBtw==} + /@babel/standalone/7.18.4: + resolution: {integrity: sha512-3dDouWyjdS8sJTm6hf8KkJq7fr9ORWMlWGNcMV/Uz2rNnoI6uu8wJGhZ7E65J+x6v8ta9yPbzkUT2YBFcWUbWg==} engines: {node: '>=6.9.0'} dev: false @@ -1569,7 +1582,7 @@ packages: dependencies: '@babel/code-frame': 7.16.7 '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/traverse/7.17.10: resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==} @@ -1577,29 +1590,29 @@ packages: dependencies: '@babel/code-frame': 7.16.7 '@babel/generator': 7.17.10 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-split-export-declaration': 7.16.7 '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse/7.18.0: - resolution: {integrity: sha512-oNOO4vaoIQoGjDQ84LgtF/IAlxlyqL4TUuoQ7xLkQETFaHkY1F7yazhB4Kt3VcZGL0ZF/jhrEpnXqUb0M7V3sw==} + /@babel/traverse/7.18.2: + resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.18.0 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-split-export-declaration': 7.16.7 '@babel/parser': 7.18.0 - '@babel/types': 7.18.0 + '@babel/types': 7.18.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: @@ -1618,22 +1631,24 @@ packages: dependencies: '@babel/helper-validator-identifier': 7.16.7 to-fast-properties: 2.0.0 + dev: false + + /@babel/types/7.18.4: + resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + to-fast-properties: 2.0.0 /@cloudflare/workers-types/2.2.2: resolution: {integrity: sha512-kaMn2rueJ0PL1TYVGknTCh0X0x0d9G+FNXAFep7/4uqecEZoQb/63o6rOmMuiqI09zLuHV6xhKRXinokV/MY9A==} dev: true - /@cspotcode/source-map-consumer/0.8.0: - resolution: {integrity: sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==} - engines: {node: '>= 12'} - dev: true - - /@cspotcode/source-map-support/0.7.0: - resolution: {integrity: sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==} + /@cspotcode/source-map-support/0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: - '@cspotcode/source-map-consumer': 0.8.0 - dev: true + '@jridgewell/trace-mapping': 0.3.9 /@docsearch/css/3.0.0: resolution: {integrity: sha512-1kkV7tkAsiuEd0shunYRByKJe3xQDG2q7wYg24SOw1nV9/2lwEd4WrUYRJC/ukGTl2/kHeFxsaUvtiOy0y6fFA==} @@ -1830,6 +1845,13 @@ packages: resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} engines: {node: '>=6.0.0'} + /@jridgewell/source-map/0.3.2: + resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} + dependencies: + '@jridgewell/gen-mapping': 0.3.1 + '@jridgewell/trace-mapping': 0.3.13 + dev: true + /@jridgewell/sourcemap-codec/1.4.13: resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} @@ -1839,6 +1861,12 @@ packages: '@jridgewell/resolve-uri': 3.0.7 '@jridgewell/sourcemap-codec': 1.4.13 + /@jridgewell/trace-mapping/0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + dependencies: + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 + /@mapbox/node-pre-gyp/1.0.9: resolution: {integrity: sha512-aDF3S3rK9Q2gey/WAttUlISduDItz5BU3306M9Eyv6/oS40aMprnopshtlKTykxRNIBEZuRMaZAnbrQ4QtKGyw==} hasBin: true @@ -1865,8 +1893,8 @@ packages: '@rushstack/node-core-library': 3.45.5 dev: true - /@microsoft/api-extractor/7.24.1: - resolution: {integrity: sha512-RjcKRvKRAtTK4z8UdC2qYsvgTYHEYvdsqF4QGoX4mNAVo7s6Jj4zcHtSrMEQMTUHujZbSd5+ihI5ktISp338mQ==} + /@microsoft/api-extractor/7.24.2: + resolution: {integrity: sha512-QWZh9aQZvBAdRVK+Go8NiW8YNMN//OGiNqgA3iZ2sEy8imUqkRBCybXgmw2HkEYyPnn55CFoMKvnAHvV9+4B/A==} hasBin: true dependencies: '@microsoft/api-extractor-model': 7.17.3 @@ -2123,19 +2151,15 @@ packages: /@tsconfig/node10/1.0.8: resolution: {integrity: sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==} - dev: true /@tsconfig/node12/1.0.9: resolution: {integrity: sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==} - dev: true /@tsconfig/node14/1.0.1: resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==} - dev: true /@tsconfig/node16/1.0.2: resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==} - dev: true /@types/argparse/1.0.38: resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} @@ -2149,7 +2173,7 @@ packages: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.17.1 @@ -2158,7 +2182,7 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@types/babel__standalone/7.1.4: @@ -2173,13 +2197,13 @@ packages: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@types/babel__traverse/7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@types/braces/3.0.1: @@ -2325,8 +2349,8 @@ packages: '@types/node': 17.0.32 dev: true - /@typescript-eslint/eslint-plugin/5.25.0_jorowkvdqu6pwramweg5le7ncu: - resolution: {integrity: sha512-icYrFnUzvm+LhW0QeJNKkezBu6tJs9p/53dpPLFH8zoM9w1tfaKzVurkPotEpAqQ8Vf8uaFyL5jHd0Vs6Z0ZQg==} + /@typescript-eslint/eslint-plugin/5.27.0_wty7taswolhs3dkiohqfkuwyye: + resolution: {integrity: sha512-DDrIA7GXtmHXr1VCcx9HivA39eprYBIFxbQEHI6NyraRDxCGpxAFiYQAT/1Y0vh1C+o2vfBiy4IuPoXxtTZCAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -2336,10 +2360,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la - '@typescript-eslint/scope-manager': 5.25.0 - '@typescript-eslint/type-utils': 5.25.0_utdtartgf6fqqgkivzeynh76la - '@typescript-eslint/utils': 5.25.0_utdtartgf6fqqgkivzeynh76la + '@typescript-eslint/parser': 5.27.0_utdtartgf6fqqgkivzeynh76la + '@typescript-eslint/scope-manager': 5.27.0 + '@typescript-eslint/type-utils': 5.27.0_utdtartgf6fqqgkivzeynh76la + '@typescript-eslint/utils': 5.27.0_utdtartgf6fqqgkivzeynh76la debug: 4.3.4 eslint: 8.16.0 functional-red-black-tree: 1.0.1 @@ -2352,8 +2376,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.25.0_utdtartgf6fqqgkivzeynh76la: - resolution: {integrity: sha512-r3hwrOWYbNKP1nTcIw/aZoH+8bBnh/Lh1iDHoFpyG4DnCpvEdctrSl6LOo19fZbzypjQMHdajolxs6VpYoChgA==} + /@typescript-eslint/parser/5.27.0_utdtartgf6fqqgkivzeynh76la: + resolution: {integrity: sha512-8oGjQF46c52l7fMiPPvX4It3u3V3JipssqDfHQ2hcR0AeR8Zge+OYyKUCm5b70X72N1qXt0qgHenwN6Gc2SXZA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2362,9 +2386,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.25.0 - '@typescript-eslint/types': 5.25.0 - '@typescript-eslint/typescript-estree': 5.25.0_typescript@4.6.4 + '@typescript-eslint/scope-manager': 5.27.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.6.4 debug: 4.3.4 eslint: 8.16.0 typescript: 4.6.4 @@ -2372,16 +2396,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.25.0: - resolution: {integrity: sha512-p4SKTFWj+2VpreUZ5xMQsBMDdQ9XdRvODKXN4EksyBjFp2YvQdLkyHqOffakYZPuWJUDNu3jVXtHALDyTv3cww==} + /@typescript-eslint/scope-manager/5.27.0: + resolution: {integrity: sha512-VnykheBQ/sHd1Vt0LJ1JLrMH1GzHO+SzX6VTXuStISIsvRiurue/eRkTqSrG0CexHQgKG8shyJfR4o5VYioB9g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.25.0 - '@typescript-eslint/visitor-keys': 5.25.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/visitor-keys': 5.27.0 dev: true - /@typescript-eslint/type-utils/5.25.0_utdtartgf6fqqgkivzeynh76la: - resolution: {integrity: sha512-B6nb3GK3Gv1Rsb2pqalebe/RyQoyG/WDy9yhj8EE0Ikds4Xa8RR28nHz+wlt4tMZk5bnAr0f3oC8TuDAd5CPrw==} + /@typescript-eslint/type-utils/5.27.0_utdtartgf6fqqgkivzeynh76la: + resolution: {integrity: sha512-vpTvRRchaf628Hb/Xzfek+85o//zEUotr1SmexKvTfs7czXfYjXVT/a5yDbpzLBX1rhbqxjDdr1Gyo0x1Fc64g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -2390,7 +2414,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.25.0_utdtartgf6fqqgkivzeynh76la + '@typescript-eslint/utils': 5.27.0_utdtartgf6fqqgkivzeynh76la debug: 4.3.4 eslint: 8.16.0 tsutils: 3.21.0_typescript@4.6.4 @@ -2399,13 +2423,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.25.0: - resolution: {integrity: sha512-7fWqfxr0KNHj75PFqlGX24gWjdV/FDBABXL5dyvBOWHpACGyveok8Uj4ipPX/1fGU63fBkzSIycEje4XsOxUFA==} + /@typescript-eslint/types/5.27.0: + resolution: {integrity: sha512-lY6C7oGm9a/GWhmUDOs3xAVRz4ty/XKlQ2fOLr8GAIryGn0+UBOoJDWyHer3UgrHkenorwvBnphhP+zPmzmw0A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.25.0_typescript@4.6.4: - resolution: {integrity: sha512-MrPODKDych/oWs/71LCnuO7NyR681HuBly2uLnX3r5i4ME7q/yBqC4hW33kmxtuauLTM0OuBOhhkFaxCCOjEEw==} + /@typescript-eslint/typescript-estree/5.27.0_typescript@4.6.4: + resolution: {integrity: sha512-QywPMFvgZ+MHSLRofLI7BDL+UczFFHyj0vF5ibeChDAJgdTV8k4xgEwF0geFhVlPc1p8r70eYewzpo6ps+9LJQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -2413,8 +2437,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.25.0 - '@typescript-eslint/visitor-keys': 5.25.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/visitor-keys': 5.27.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -2425,16 +2449,16 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.25.0_utdtartgf6fqqgkivzeynh76la: - resolution: {integrity: sha512-qNC9bhnz/n9Kba3yI6HQgQdBLuxDoMgdjzdhSInZh6NaDnFpTUlwNGxplUFWfY260Ya0TRPvkg9dd57qxrJI9g==} + /@typescript-eslint/utils/5.27.0_utdtartgf6fqqgkivzeynh76la: + resolution: {integrity: sha512-nZvCrkIJppym7cIbP3pOwIkAefXOmfGPnCM0LQfzNaKxJHI6VjI8NC662uoiPlaf5f6ymkTy9C3NQXev2mdXmA==} 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.25.0 - '@typescript-eslint/types': 5.25.0 - '@typescript-eslint/typescript-estree': 5.25.0_typescript@4.6.4 + '@typescript-eslint/scope-manager': 5.27.0 + '@typescript-eslint/types': 5.27.0 + '@typescript-eslint/typescript-estree': 5.27.0_typescript@4.6.4 eslint: 8.16.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.16.0 @@ -2443,11 +2467,11 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys/5.25.0: - resolution: {integrity: sha512-yd26vFgMsC4h2dgX4+LR+GeicSKIfUvZREFLf3DDjZPtqgLx5AJZr6TetMNwFP9hcKreTTeztQYBTNbNoOycwA==} + /@typescript-eslint/visitor-keys/5.27.0: + resolution: {integrity: sha512-46cYrteA2MrIAjv9ai44OQDUoCZyHeGIc4lsjCUX2WT6r4C+kidz1bNiR4017wHOPUythYeH+Sc7/cFP97KEAA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.25.0 + '@typescript-eslint/types': 5.27.0 eslint-visitor-keys: 3.3.0 dev: true @@ -2455,11 +2479,11 @@ packages: resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} dev: false - /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.0: + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.18.2: resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} dependencies: '@babel/helper-module-imports': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.18.0 + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.18.2 '@babel/template': 7.16.7 '@babel/traverse': 7.17.10 '@babel/types': 7.17.10 @@ -2717,7 +2741,6 @@ packages: /acorn-walk/8.2.0: resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} engines: {node: '>=0.4.0'} - dev: true /acorn/7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} @@ -2728,7 +2751,6 @@ packages: resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} engines: {node: '>=0.4.0'} hasBin: true - dev: true /add-stream/1.0.0: resolution: {integrity: sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=} @@ -2833,7 +2855,6 @@ packages: /arg/4.1.3: resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true /arg/5.0.1: resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==} @@ -2850,7 +2871,7 @@ packages: dev: true /array-find-index/1.0.2: - resolution: {integrity: sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=} + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} engines: {node: '>=0.10.0'} dev: true @@ -3304,6 +3325,12 @@ packages: /commander/8.3.0: resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} engines: {node: '>= 12'} + dev: false + + /commander/9.3.0: + resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} + engines: {node: ^12.20.0 || >=14} + dev: true /commenting/1.1.0: resolution: {integrity: sha512-YeNK4tavZwtH7jEgK1ZINXzLKm6DZdEMfsaaieOsCAN0S8vsY7UeuO3Q7d/M018EFgE+IeUAuBOKkFccBZsUZA==} @@ -3353,7 +3380,7 @@ packages: dev: true /concat-map/0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} /connect-history-api-fallback/1.6.0: resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} @@ -3582,8 +3609,8 @@ packages: is-what: 3.14.1 dev: true - /core-js/3.22.6: - resolution: {integrity: sha512-2IGcGH00z9I4twgNWU4uGCNEsBFG1s2JudVQrgSCoVhOfwoTwQjxC8aMo9exrpTMOxvobggEpaHnGMmQY4cfBQ==} + /core-js/3.22.7: + resolution: {integrity: sha512-Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg==} requiresBuild: true dev: false @@ -3622,7 +3649,6 @@ packages: /create-require/1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true /cross-env/7.0.3: resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} @@ -3766,7 +3792,7 @@ packages: dev: true /decode-uri-component/0.2.0: - resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} + resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} engines: {node: '>=0.10'} dev: true @@ -3868,7 +3894,6 @@ packages: /diff/4.0.2: resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} engines: {node: '>=0.3.1'} - dev: true /dir-glob/3.0.1: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} @@ -3982,7 +4007,7 @@ packages: is-shared-array-buffer: 1.0.2 is-string: 1.0.7 is-weakref: 1.0.2 - object-inspect: 1.12.0 + object-inspect: 1.12.2 object-keys: 1.1.1 object.assign: 4.1.2 regexp.prototype.flags: 1.4.3 @@ -4416,7 +4441,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_mcjqbk7r2nrqjiufidliyvmmpu: + /eslint-module-utils/2.7.3_nd4nb6nccnlbwilvit6hlaep3q: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -4434,7 +4459,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la + '@typescript-eslint/parser': 5.27.0_utdtartgf6fqqgkivzeynh76la debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -4453,7 +4478,7 @@ packages: regexpp: 3.2.0 dev: true - /eslint-plugin-import/2.26.0_fpv4l7j2iomztwskn7bai2v6a4: + /eslint-plugin-import/2.26.0_xsmuhwqsfrjm7m3kqio7zoeziq: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -4463,14 +4488,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.25.0_utdtartgf6fqqgkivzeynh76la + '@typescript-eslint/parser': 5.27.0_utdtartgf6fqqgkivzeynh76la array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.16.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_mcjqbk7r2nrqjiufidliyvmmpu + eslint-module-utils: 2.7.3_nd4nb6nccnlbwilvit6hlaep3q has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 @@ -4881,7 +4906,7 @@ packages: dev: false /fs.realpath/1.0.0: - resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} /fsevents/2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} @@ -4942,7 +4967,7 @@ packages: dev: true /get-func-name/2.0.0: - resolution: {integrity: sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=} + resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} dev: true /get-intrinsic/1.1.1: @@ -5257,7 +5282,7 @@ packages: dev: true /image-size/0.5.5: - resolution: {integrity: sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=} + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} engines: {node: '>=0.10.0'} hasBin: true requiresBuild: true @@ -5291,7 +5316,7 @@ packages: dev: true /inflight/1.0.6: - resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 @@ -5545,7 +5570,7 @@ packages: dev: true /jju/1.4.0: - resolution: {integrity: sha1-o6vicYryQaKykE+EpiWXDzia4yo=} + resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} dev: true /joycon/3.1.1: @@ -5608,7 +5633,7 @@ packages: dev: true /jsonfile/4.0.0: - resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.10 dev: true @@ -5658,14 +5683,14 @@ packages: resolution: {integrity: sha512-lxpCM3HTvquGxKGzHeknB/sUjuVoUElLlfYnXZT73K8geR9jQbroGlSCFBax9/0mpGoD3kzcMLnOlGQPJJNyqQ==} dev: false - /launch-editor-middleware/2.3.0: - resolution: {integrity: sha512-GJR64trLdFFwCoL9DMn/d1SZX0OzTDPixu4mcfWTShQ4tIqCHCGvlg9fOEYQXyBlrSMQwylsJfUWncheShfV2w==} + /launch-editor-middleware/2.4.0: + resolution: {integrity: sha512-/M7AX/6xktZY60KE7j71XLrj9U6H5TBoP+mJzhYB3fcdAq8rcazit/K0qWiu1jvytUPXP4lJRd1VJFwvdMQ/uw==} dependencies: - launch-editor: 2.3.0 + launch-editor: 2.4.0 dev: true - /launch-editor/2.3.0: - resolution: {integrity: sha512-3QrsCXejlWYHjBPFXTyGNhPj4rrQdB+5+r5r3wArpLH201aR+nWUgw/zKKkTmilCfY/sv6u8qo98pNvtg8LUTA==} + /launch-editor/2.4.0: + resolution: {integrity: sha512-mZ0BHeSn/ohL+Ib+b+JnxC59vcNz6v5IR9d0CuM8f0x8ni8oK3IIG6G0vMkpxc0gFsmvINkztGOHiWTaX4BmAg==} dependencies: picocolors: 1.0.0 shell-quote: 1.7.3 @@ -5699,11 +5724,6 @@ packages: type-check: 0.4.0 dev: true - /lilconfig/2.0.4: - resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==} - engines: {node: '>=10'} - dev: true - /lilconfig/2.0.5: resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==} engines: {node: '>=10'} @@ -5711,21 +5731,21 @@ packages: /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lint-staged/12.4.1: - resolution: {integrity: sha512-PTXgzpflrQ+pODQTG116QNB+Q6uUTDg5B5HqGvNhoQSGt8Qy+MA/6zSnR8n38+sxP5TapzeQGTvoKni0KRS8Vg==} + /lint-staged/12.4.3: + resolution: {integrity: sha512-eH6SKOmdm/ZwCRMTZAmM3q3dPkpq6vco/BfrOw8iGun4Xs/thYegPD/MLIwKO+iPkzibkLJuQcRhRLXKvaKreg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: cli-truncate: 3.1.0 colorette: 2.0.16 - commander: 8.3.0 + commander: 9.3.0 debug: 4.3.4_supports-color@9.2.2 execa: 5.1.1 - lilconfig: 2.0.4 + lilconfig: 2.0.5 listr2: 4.0.5 micromatch: 4.0.5 normalize-path: 3.0.0 - object-inspect: 1.12.0 + object-inspect: 1.12.2 pidtree: 0.5.0 string-argv: 0.3.1 supports-color: 9.2.2 @@ -5805,7 +5825,7 @@ packages: dev: true /lodash.get/4.4.2: - resolution: {integrity: sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=} + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} dev: true /lodash.isarguments/3.1.0: @@ -5813,7 +5833,7 @@ packages: dev: true /lodash.isequal/4.5.0: - resolution: {integrity: sha1-QVxEePK8wwEgwizhDtMib30+GOA=} + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} dev: true /lodash.ismatch/4.4.0: @@ -5824,10 +5844,6 @@ packages: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} dev: true - /lodash.sortby/4.7.0: - resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=} - dev: true - /lodash.topath/4.5.2: resolution: {integrity: sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=} dev: false @@ -5901,7 +5917,6 @@ packages: /make-error/1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true /map-obj/1.0.1: resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=} @@ -6129,8 +6144,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /moment/2.29.2: - resolution: {integrity: sha512-UgzG4rvxYpN15jgCmVJwac49h9ly9NurikMWGPdVxm8GZD6XjkKPxDTjQQ43gtGgnV3X0cAyWDdP2Wexoquifg==} + /moment/2.29.3: + resolution: {integrity: sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw==} dev: true /mri/1.2.0: @@ -6332,6 +6347,10 @@ packages: resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} dev: true + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + dev: true + /object-keys/1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} @@ -6631,8 +6650,8 @@ packages: hasBin: true dev: true - /pnpm/7.1.3: - resolution: {integrity: sha512-dQEYAJ7FT7I23mGfRnkT0GGVIoM4IUj4Mu+/gughv0s/zY8HlJUP5X4GeT67rncOSr021z6MNBj2oOoNL/LoAw==} + /pnpm/7.1.7: + resolution: {integrity: sha512-8+IAfyunrOHfNmVu03E9rSBVUgypFGMKeyhVif0Drv/gcWgXuzxSBkCxrfNJbEf0cHtA+ftTqMQ20uSlrtnSEg==} engines: {node: '>=14.19'} hasBin: true dev: true @@ -6717,7 +6736,7 @@ packages: yaml: 1.10.2 dev: true - /postcss-load-config/3.1.4_ts-node@10.7.0: + /postcss-load-config/3.1.4_ts-node@10.8.0: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -6730,7 +6749,7 @@ packages: optional: true dependencies: lilconfig: 2.0.5 - ts-node: 10.7.0 + ts-node: 10.8.0 yaml: 1.10.2 dev: false @@ -7367,8 +7386,8 @@ packages: - supports-color dev: true - /rollup-plugin-license/2.7.0_rollup@2.72.1: - resolution: {integrity: sha512-0H1Fbuf85rvpadpmAaairdahzQHY0zHtcXkOFV5EStjX9aMCO2Hz5AQp/zZe+K/PB3o6As7R9uzcb8Pw1K94dg==} + /rollup-plugin-license/2.8.0_rollup@2.72.1: + resolution: {integrity: sha512-P+CM6tlgahnpnOFKeirABCcs3Eez4AQsm2fC7rvVR3aMIWd/KgSNAImmcfGS+Pmd0dGFmjE1tYgflnTINxNpIQ==} engines: {node: '>=10.0.0'} peerDependencies: rollup: ^1.0.0 || ^2.0.0 @@ -7376,9 +7395,9 @@ packages: commenting: 1.1.0 glob: 7.2.0 lodash: 4.17.21 - magic-string: 0.26.1 + magic-string: 0.26.2 mkdirp: 1.0.4 - moment: 2.29.2 + moment: 2.29.3 package-name-regex: 2.0.6 rollup: 2.72.1 spdx-expression-validate: 2.0.0 @@ -7567,8 +7586,8 @@ packages: /signal-exit/3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - /simple-git-hooks/2.7.0: - resolution: {integrity: sha512-nQe6ASMO9zn5/htIrU37xEIHGr9E6wikXelLbOeTcfsX2O++DHaVug7RSQoq+kO7DvZTH37WA5gW49hN9HTDmQ==} + /simple-git-hooks/2.8.0: + resolution: {integrity: sha512-ocmZQORwa6x9mxg+gVIAp5o4wXiWOHGXyrDBA0+UxGKIEKOyFtL4LWNKkP/2ornQPdlnlDGDteVeYP5FjhIoWA==} hasBin: true requiresBuild: true dev: true @@ -7659,13 +7678,6 @@ packages: engines: {node: '>= 8'} dev: true - /source-map/0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} - dependencies: - whatwg-url: 7.1.0 - dev: true - /sourcemap-codec/1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} @@ -7862,14 +7874,13 @@ packages: /stylis/4.0.13: resolution: {integrity: sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==} - /stylus/0.57.0: - resolution: {integrity: sha512-yOI6G8WYfr0q8v8rRvE91wbxFU+rJPo760Va4MF6K0I6BZjO4r+xSynkvyPBP9tV1CIEUeRsiidjIs2rzb1CnQ==} + /stylus/0.58.0: + resolution: {integrity: sha512-q27Pof0PINInv/gTO1AH+6C1VkoedEOPp38CB/DFWdSgu4fBCwnxM8cZEm4M1zU+Jr6rmZ75hkmqk2QyDze10g==} hasBin: true dependencies: css: 3.0.0 debug: 4.3.4 glob: 7.2.0 - safer-buffer: 2.1.2 sax: 1.2.4 source-map: 0.7.3 transitivePeerDependencies: @@ -7949,7 +7960,7 @@ packages: - ts-node dev: false - /tailwindcss/2.2.19_eq6rdkkr572vfnsce6ssjbbos4: + /tailwindcss/2.2.19_tob5czlylbhxx3vaetl5hdifjq: resolution: {integrity: sha512-6Ui7JSVtXadtTUo2NtkBBacobzWiQYVjYW0ZnKaP9S1ZCKQ0w7KVNz+YSDI/j7O7KCMHbOkz94ZMQhbT9pOqjw==} engines: {node: '>=12.13.0'} hasBin: true @@ -7980,7 +7991,7 @@ packages: normalize-path: 3.0.0 object-hash: 2.2.0 postcss-js: 3.0.3 - postcss-load-config: 3.1.4_ts-node@10.7.0 + postcss-load-config: 3.1.4_ts-node@10.8.0 postcss-nested: 5.0.6 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 @@ -8049,14 +8060,14 @@ packages: uuid: 3.4.0 dev: true - /terser/5.13.1: - resolution: {integrity: sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==} + /terser/5.14.0: + resolution: {integrity: sha512-JC6qfIEkPBd9j1SMO3Pfn+A6w2kQV54tv+ABQLgZr7dA3k/DL/OBoYSWxzVpZev3J+bUHXfr55L8Mox7AaNo6g==} engines: {node: '>=10'} hasBin: true dependencies: + '@jridgewell/source-map': 0.3.2 acorn: 8.7.1 commander: 2.20.3 - source-map: 0.8.0-beta.0 source-map-support: 0.5.21 dev: true @@ -8146,12 +8157,6 @@ packages: /tr46/0.0.3: resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} - /tr46/1.0.1: - resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=} - dependencies: - punycode: 2.1.1 - dev: true - /tr46/2.1.0: resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} engines: {node: '>=8'} @@ -8170,8 +8175,8 @@ packages: utf8-byte-length: 1.0.4 dev: true - /ts-node/10.7.0: - resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} + /ts-node/10.8.0: + resolution: {integrity: sha512-/fNd5Qh+zTt8Vt1KbYZjRHCE9sI5i7nqfD/dzBBRDeVXZXS6kToW6R7tTU6Nd4XavFs0mAVCg29Q//ML7WsZYA==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -8184,7 +8189,7 @@ packages: '@swc/wasm': optional: true dependencies: - '@cspotcode/source-map-support': 0.7.0 + '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.8 '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 @@ -8197,10 +8202,9 @@ packages: make-error: 1.3.6 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - dev: true - /tsconfck/2.0.0: - resolution: {integrity: sha512-GVDTXF4MdNBBxKfUfjs/wkb7LHd8Ho8WLavESCddTFQFG9AUZOZEm6kODBGmQopQ9OG+EHpkT6dBaIIGhYVt+Q==} + /tsconfck/2.0.1: + resolution: {integrity: sha512-/ipap2eecmVBmBlsQLBRbUmUNFwNJV/z2E+X0FPtHNjPwroMZQ7m39RMaCywlCulBheYXgMdUlWDd9rzxwMA0Q==} engines: {node: ^14.13.1 || ^16 || >=18, pnpm: ^7.0.1} hasBin: true peerDependencies: @@ -8400,7 +8404,7 @@ packages: dependencies: '@babel/core': 7.17.10 '@babel/standalone': 7.17.11 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 scule: 0.2.1 transitivePeerDependencies: - supports-color @@ -8439,7 +8443,6 @@ packages: /v8-compile-cache-lib/3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - dev: true /v8-compile-cache/2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} @@ -8487,8 +8490,8 @@ packages: - react-dom dev: true - /vitest/0.12.9: - resolution: {integrity: sha512-1NtyUANS72Qw5PwYvoztk067NX4fSiis2xQxhByOWS33eL2er/yupHyLxlBCOkF2ANe0dLFRvT1GVb+nczL5aw==} + /vitest/0.13.0: + resolution: {integrity: sha512-vuYt3+G25MMnANgyMHHG3VK86C9K/VFi/8uH5myQ2v660W4WArv99ElakPlVFxxSXXM1jqQPiPj2ht35Bod9LQ==} engines: {node: '>=v14.16.0'} hasBin: true peerDependencies: @@ -8601,10 +8604,6 @@ packages: /webidl-conversions/3.0.1: resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} - /webidl-conversions/4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - dev: true - /webidl-conversions/6.1.0: resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} engines: {node: '>=10.4'} @@ -8616,14 +8615,6 @@ packages: tr46: 0.0.3 webidl-conversions: 3.0.1 - /whatwg-url/7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - dependencies: - lodash.sortby: 4.7.0 - tr46: 1.0.1 - webidl-conversions: 4.0.2 - dev: true - /whatwg-url/8.7.0: resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} engines: {node: '>=10'} @@ -8717,8 +8708,8 @@ packages: optional: true dev: true - /ws/8.6.0: - resolution: {integrity: sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==} + /ws/8.7.0: + resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -8767,7 +8758,6 @@ packages: /yn/3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} engines: {node: '>=6'} - dev: true /youch/2.2.2: resolution: {integrity: sha512-/FaCeG3GkuJwaMR34GHVg0l8jCbafZLHiFowSjqLlqhC6OMyf2tPJBu8UirF7/NI9X/R5ai4QfEKUCOxMAGxZQ==}