diff --git a/.gitignore b/.gitignore index dfa505b1edd..69ae83aefa8 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,7 @@ npm-debug.log build/ build-module/ build-style/ +build-style.js build-types/ dist/ diff --git a/packages/js/ai/.eslintrc.js b/packages/js/ai/.eslintrc.js new file mode 100644 index 00000000000..e7aa0662678 --- /dev/null +++ b/packages/js/ai/.eslintrc.js @@ -0,0 +1,12 @@ +module.exports = { + extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ], + root: true, + overrides: [ + { + files: [ '**/*.js', '**/*.jsx', '**/*.tsx' ], + rules: { + 'react/react-in-jsx-scope': 'off', + }, + }, + ], +}; diff --git a/packages/js/ai/.npmrc b/packages/js/ai/.npmrc new file mode 100644 index 00000000000..43c97e719a5 --- /dev/null +++ b/packages/js/ai/.npmrc @@ -0,0 +1 @@ +package-lock=false diff --git a/packages/js/ai/README.md b/packages/js/ai/README.md new file mode 100644 index 00000000000..ffd28dc6f77 --- /dev/null +++ b/packages/js/ai/README.md @@ -0,0 +1,11 @@ +# Artificial Intelligence tools + +A collection of WooCommerce tools and utilities to implement ai features. + +## Installation + +Install the module + +```bash +pnpm install @woocommerce/ai --save +``` diff --git a/packages/js/ai/babel.config.js b/packages/js/ai/babel.config.js new file mode 100644 index 00000000000..f73e04467aa --- /dev/null +++ b/packages/js/ai/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + extends: '../internal-js-tests/babel.config.js', +}; diff --git a/packages/js/ai/changelog.md b/packages/js/ai/changelog.md new file mode 100644 index 00000000000..3783eb0da3d --- /dev/null +++ b/packages/js/ai/changelog.md @@ -0,0 +1,3 @@ +# Changelog + +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). diff --git a/packages/js/ai/changelog/update-completion-hooks-39009 b/packages/js/ai/changelog/update-completion-hooks-39009 new file mode 100644 index 00000000000..d634daf8002 --- /dev/null +++ b/packages/js/ai/changelog/update-completion-hooks-39009 @@ -0,0 +1,4 @@ +Significance: minor +Type: update + +Moving text completion hooks into @woocommerce/ai package for reuse. diff --git a/packages/js/ai/composer.json b/packages/js/ai/composer.json new file mode 100644 index 00000000000..31f020d3288 --- /dev/null +++ b/packages/js/ai/composer.json @@ -0,0 +1,32 @@ +{ + "name": "woocommerce/ai", + "description": "WooCommerce AI library", + "type": "library", + "license": "GPL-3.0-or-later", + "minimum-stability": "dev", + "require-dev": { + "automattic/jetpack-changelogger": "3.3.0" + }, + "config": { + "platform": { + "php": "7.2" + } + }, + "extra": { + "changelogger": { + "formatter": { + "filename": "../../../tools/changelogger/class-package-formatter.php" + }, + "types": { + "fix": "Fixes an existing bug", + "add": "Adds functionality", + "update": "Update existing functionality", + "dev": "Development related task", + "tweak": "A minor adjustment to the codebase", + "performance": "Address performance issues", + "enhancement": "Improve existing functionality" + }, + "changelog": "CHANGELOG.md" + } + } +} diff --git a/packages/js/ai/composer.lock b/packages/js/ai/composer.lock new file mode 100644 index 00000000000..1988dd340c5 --- /dev/null +++ b/packages/js/ai/composer.lock @@ -0,0 +1,483 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "c8190a953aa0a440f30a24c71e0fef6d", + "packages": [], + "packages-dev": [ + { + "name": "automattic/jetpack-changelogger", + "version": "v3.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-changelogger.git", + "reference": "8f63c829b8d1b0d7b1d5de93510d78523ed18959" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-changelogger/zipball/8f63c829b8d1b0d7b1d5de93510d78523ed18959", + "reference": "8f63c829b8d1b0d7b1d5de93510d78523ed18959", + "shasum": "" + }, + "require": { + "php": ">=5.6", + "symfony/console": "^3.4 || ^5.2 || ^6.0", + "symfony/process": "^3.4 || ^5.2 || ^6.0", + "wikimedia/at-ease": "^1.2 || ^2.0" + }, + "require-dev": { + "wikimedia/testing-access-wrapper": "^1.0 || ^2.0", + "yoast/phpunit-polyfills": "1.0.4" + }, + "bin": [ + "bin/changelogger" + ], + "type": "project", + "extra": { + "autotagger": true, + "branch-alias": { + "dev-trunk": "3.3.x-dev" + }, + "mirror-repo": "Automattic/jetpack-changelogger", + "version-constants": { + "::VERSION": "src/Application.php" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-changelogger/compare/${old}...${new}" + } + }, + "autoload": { + "psr-4": { + "Automattic\\Jetpack\\Changelog\\": "lib", + "Automattic\\Jetpack\\Changelogger\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.", + "support": { + "source": "https://github.com/Automattic/jetpack-changelogger/tree/v3.3.0" + }, + "time": "2022-12-26T13:49:01+00:00" + }, + { + "name": "psr/log", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.4" + }, + "time": "2021-05-03T11:20:27+00:00" + }, + { + "name": "symfony/console", + "version": "3.4.x-dev", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81", + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "provide": { + "psr/log-implementation": "1.0" + }, + "require-dev": { + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Console Component", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/console/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" + }, + { + "name": "symfony/debug", + "version": "4.4.x-dev", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "1a692492190773c5310bc7877cb590c04c2f05be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be", + "reference": "1a692492190773c5310bc7877cb590c04c2f05be", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "psr/log": "^1|^2|^3" + }, + "conflict": { + "symfony/http-kernel": "<3.4" + }, + "require-dev": { + "symfony/http-kernel": "^3.4|^4.0|^5.0" + }, + "default-branch": true, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools to ease debugging PHP code", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/debug/tree/v4.4.44" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "abandoned": "symfony/error-handler", + "time": "2022-07-28T16:29:46+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "dev-main", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "f9c7affe77a00ae32ca127ca6833d034e6d33f25" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f9c7affe77a00ae32ca127ca6833d034e6d33f25", + "reference": "f9c7affe77a00ae32ca127ca6833d034e6d33f25", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, + "default-branch": true, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.28-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/main" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2023-01-30T17:25:47+00:00" + }, + { + "name": "symfony/process", + "version": "3.4.x-dev", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca", + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony Process Component", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" + }, + { + "name": "wikimedia/at-ease", + "version": "v2.0.0", + "source": { + "type": "git", + "url": "https://github.com/wikimedia/at-ease.git", + "reference": "013ac61929797839c80a111a3f1a4710d8248e7a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wikimedia/at-ease/zipball/013ac61929797839c80a111a3f1a4710d8248e7a", + "reference": "013ac61929797839c80a111a3f1a4710d8248e7a", + "shasum": "" + }, + "require": { + "php": ">=5.6.99" + }, + "require-dev": { + "jakub-onderka/php-console-highlighter": "0.3.2", + "jakub-onderka/php-parallel-lint": "1.0.0", + "mediawiki/mediawiki-codesniffer": "22.0.0", + "mediawiki/minus-x": "0.3.1", + "ockcyp/covers-validator": "0.5.1 || 0.6.1", + "phpunit/phpunit": "4.8.36 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/Wikimedia/Functions.php" + ], + "psr-4": { + "Wikimedia\\AtEase\\": "src/Wikimedia/AtEase/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Tim Starling", + "email": "tstarling@wikimedia.org" + }, + { + "name": "MediaWiki developers", + "email": "wikitech-l@lists.wikimedia.org" + } + ], + "description": "Safe replacement to @ for suppressing warnings.", + "homepage": "https://www.mediawiki.org/wiki/at-ease", + "support": { + "source": "https://github.com/wikimedia/at-ease/tree/master" + }, + "time": "2018-10-10T15:39:06+00:00" + } + ], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": [], + "platform-dev": [], + "platform-overrides": { + "php": "7.2" + }, + "plugin-api-version": "2.3.0" +} diff --git a/packages/js/ai/jest.config.json b/packages/js/ai/jest.config.json new file mode 100644 index 00000000000..3d8108048f6 --- /dev/null +++ b/packages/js/ai/jest.config.json @@ -0,0 +1,4 @@ +{ + "rootDir": "./src", + "preset": "../node_modules/@woocommerce/internal-js-tests/jest-preset.js" +} diff --git a/packages/js/ai/package.json b/packages/js/ai/package.json new file mode 100644 index 00000000000..42ae86ec4a0 --- /dev/null +++ b/packages/js/ai/package.json @@ -0,0 +1,95 @@ +{ + "name": "@woocommerce/ai", + "version": "0.1.0-beta.0", + "description": "Utilities for usage in AI features across WooCommerce.", + "author": "Automattic", + "license": "GPL-2.0-or-later", + "keywords": [ + "wordpress", + "woocommerce" + ], + "homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/ai/README.md", + "repository": { + "type": "git", + "url": "https://github.com/woocommerce/woocommerce.git" + }, + "bugs": { + "url": "https://github.com/woocommerce/woocommerce/issues" + }, + "main": "build/index.js", + "module": "build-module/index.js", + "types": "build-types", + "react-native": "src/index", + "sideEffects": [ + "build-style/**", + "src/**/*.scss" + ], + "private": true, + "dependencies": { + "@wordpress/api-fetch": "wp-6.0", + "@wordpress/compose": "wp-6.0", + "@wordpress/core-data": "wp-6.0", + "@wordpress/element": "wp-6.0", + "classnames": "^2.3.1", + "debug": "^4.3.3", + "dompurify": "^2.3.6", + "prop-types": "^15.8.1", + "react-router-dom": "^6.3.0" + }, + "devDependencies": { + "@babel/core": "^7.21.3", + "@babel/runtime": "^7.17.2", + "@testing-library/jest-dom": "^5.16.2", + "@testing-library/react": "^12.1.3", + "@testing-library/react-hooks": "^8.0.1", + "@testing-library/user-event": "^13.5.0", + "@types/debug": "^4.1.7", + "@types/dompurify": "^2.3.3", + "@types/jest": "^27.4.1", + "@types/react": "^17.0.2", + "@types/testing-library__jest-dom": "^5.14.3", + "@types/wordpress__core-data": "^2.4.5", + "@woocommerce/eslint-plugin": "workspace:*", + "@woocommerce/internal-js-tests": "workspace:*", + "@woocommerce/internal-style-build": "workspace:*", + "@wordpress/browserslist-config": "wp-6.0", + "concurrently": "^7.0.0", + "copy-webpack-plugin": "^9.1.0", + "css-loader": "^3.6.0", + "eslint": "^8.32.0", + "jest": "^27.5.1", + "jest-cli": "^27.5.1", + "postcss": "^8.4.7", + "postcss-loader": "^4.3.0", + "react": "^17.0.2", + "react-dom": "^17.0.2", + "react-hooks^8.0.1": "link:@testing-library/react-hooks^8.0.1", + "rimraf": "^3.0.2", + "sass-loader": "^10.2.1", + "ts-jest": "^27.1.3", + "typescript": "^4.9.5", + "webpack": "^5.70.0", + "webpack-cli": "^3.3.12" + }, + "scripts": { + "turbo:build": "pnpm run build:js && pnpm run build:css", + "turbo:test": "jest --config ./jest.config.json", + "prepare": "composer install", + "changelog": "composer exec -- changelogger", + "clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*", + "build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name", + "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name", + "lint": "eslint src", + "build:js": "tsc --project tsconfig.json && tsc --project tsconfig-cjs.json", + "build:css": "webpack", + "start": "concurrently \"tsc --project tsconfig.json --watch\" \"tsc --project tsconfig-cjs.json --watch\" \"webpack --watch\"", + "prepack": "pnpm run clean && pnpm run build", + "lint:fix": "eslint src --fix" + }, + "peerDependencies": { + "@types/react": "^17.0.2", + "@wordpress/data": "wp-6.0", + "react": "^17.0.2", + "react-dom": "^17.0.2" + } +} diff --git a/packages/js/ai/src/hooks/index.ts b/packages/js/ai/src/hooks/index.ts new file mode 100644 index 00000000000..41dea0bed94 --- /dev/null +++ b/packages/js/ai/src/hooks/index.ts @@ -0,0 +1 @@ +export * from './useCompletion'; diff --git a/plugins/woo-ai/src/hooks/useCompletion.ts b/packages/js/ai/src/hooks/useCompletion.ts similarity index 51% rename from plugins/woo-ai/src/hooks/useCompletion.ts rename to packages/js/ai/src/hooks/useCompletion.ts index 1f52f508d01..228d061d5c7 100644 --- a/plugins/woo-ai/src/hooks/useCompletion.ts +++ b/packages/js/ai/src/hooks/useCompletion.ts @@ -6,23 +6,27 @@ import { useRef, useState } from '@wordpress/element'; /** * Internal dependencies */ -import { getCompletion } from '../utils'; +import { getCompletion, createExtendedError } from '../utils/'; type StopReason = 'abort' | 'finished' | 'error' | 'interrupted'; +export type UseCompletionError = Error & { code?: string; cause?: Error }; + type UseCompletionProps = { onStreamMessage?: ( message: string, chunk: string ) => void; onCompletionFinished?: ( reason: StopReason, previousContent: string ) => void; - onStreamError?: ( error: string ) => void; + onStreamError?: ( error: UseCompletionError ) => void; + feature?: string; }; export const useCompletion = ( { onStreamMessage = () => {}, onCompletionFinished = () => {}, onStreamError = () => {}, + feature, }: UseCompletionProps ) => { const completionSource = useRef< EventSource | null >( null ); const previousContent = useRef< string >( '' ); @@ -51,47 +55,68 @@ export const useCompletion = ( { } }; - const onCompletionError = ( error: string ) => { + const onCompletionError = ( error: string | Error ) => { stopCompletion( 'error' ); - onStreamError( error ); + onStreamError( typeof error === 'object' ? error : new Error( error ) ); }; - const requestCompletion = async ( prompt: string ) => { + const requestCompletion = async ( + prompt: string, + featureOverride?: string + ) => { + if ( + ! window.JP_CONNECTION_INITIAL_STATE?.connectionStatus?.isActive + ) { + throw createExtendedError( + 'You must be connected to Jetpack for text completion', + 'no_jetpack_connection' + ); + } + + const completionFeature = featureOverride ?? feature; if ( completionSource.current ) { stopCompletion( 'interrupted' ); } previousContent.current = ''; - let suggestionsSource; - - try { - suggestionsSource = await getCompletion( prompt ); - } catch ( e ) { - // eslint-disable-next-line no-console - console.debug( 'Completion connection error encountered', e ); - onCompletionError( 'connection_error' ); - return; + if ( typeof completionFeature !== 'string' ) { + throw createExtendedError( + 'You must provide a feature when requesting a completion', + 'missing_feature' + ); } - setCompletionActive( true ); + try { + const suggestionsSource = await getCompletion( + prompt, + completionFeature + ); - suggestionsSource.addEventListener( 'message', ( e ) => { - onMessage( e ); - } ); - suggestionsSource.addEventListener( - 'error', - ( event: MessageEvent ) => { - // eslint-disable-next-line no-console - console.debug( 'Streaming error encountered', event ); - onCompletionError( - typeof event === 'string' ? event : event.data - ); - } - ); + setCompletionActive( true ); - completionSource.current = suggestionsSource; + suggestionsSource.addEventListener( 'message', ( e ) => { + onMessage( e ); + } ); - return suggestionsSource; + suggestionsSource.addEventListener( + 'error', + ( event: MessageEvent ) => { + onCompletionError( + typeof event === 'string' ? event : event.data + ); + } + ); + + completionSource.current = suggestionsSource; + + return suggestionsSource; + } catch ( e ) { + throw createExtendedError( + 'An error occurred while connecting to the completion service', + 'connection_error', + e as Error + ); + } }; return { diff --git a/packages/js/ai/src/index.ts b/packages/js/ai/src/index.ts new file mode 100644 index 00000000000..489c950b08e --- /dev/null +++ b/packages/js/ai/src/index.ts @@ -0,0 +1,16 @@ +/** + * Hooks + */ +export { + useCompletion as __experimentalUseCompletion, + UseCompletionError, +} from './hooks'; + +/** + * Utils + */ +export { + requestJetpackToken as __experimentalRequestJetpackToken, + getCompletion as __experimentalgetCompletion, + createExtendedError, +} from './utils'; diff --git a/packages/js/ai/src/style.scss b/packages/js/ai/src/style.scss new file mode 100644 index 00000000000..e69de29bb2d diff --git a/packages/js/ai/src/utils/create-extended-error.ts b/packages/js/ai/src/utils/create-extended-error.ts new file mode 100644 index 00000000000..e05365d619b --- /dev/null +++ b/packages/js/ai/src/utils/create-extended-error.ts @@ -0,0 +1,11 @@ +export type UseCompletionError = Error & { code?: string; cause?: Error }; + +export const createExtendedError = ( + msg: string, + code?: string, + cause?: Error +) => + Object.assign( new Error( msg ), { + code, + cause, + } ); diff --git a/packages/js/ai/src/utils/index.ts b/packages/js/ai/src/utils/index.ts new file mode 100644 index 00000000000..3fd24ee2380 --- /dev/null +++ b/packages/js/ai/src/utils/index.ts @@ -0,0 +1,2 @@ +export * from './text-completion'; +export * from './create-extended-error'; diff --git a/plugins/woo-ai/src/utils/text-completion.ts b/packages/js/ai/src/utils/text-completion.ts similarity index 81% rename from plugins/woo-ai/src/utils/text-completion.ts rename to packages/js/ai/src/utils/text-completion.ts index be57b4b539c..0512c832990 100644 --- a/plugins/woo-ai/src/utils/text-completion.ts +++ b/packages/js/ai/src/utils/text-completion.ts @@ -7,7 +7,7 @@ import debugFactory from 'debug'; /** * Internal dependencies */ -import { WOO_AI_PLUGIN_FEATURE_NAME } from '../constants'; +import { createExtendedError } from './create-extended-error'; const debugToken = debugFactory( 'jetpack-ai-assistant:token' ); @@ -19,6 +19,7 @@ declare global { JP_CONNECTION_INITIAL_STATE: { apiNonce: string; siteSuffix: string; + connectionStatus: { isActive: boolean }; }; } } @@ -37,7 +38,10 @@ export async function requestJetpackToken() { tokenData = JSON.parse( token ); } catch ( err ) { debugToken( 'Error parsing token', err ); - throw new Error( 'Error parsing cached token' ); + throw createExtendedError( + 'Error parsing cached token', + 'token_parse_error' + ); } } @@ -64,7 +68,7 @@ export async function requestJetpackToken() { blogId: siteSuffix, /** - * Let's expire the token in 5 minutes + * Let's expire the token in 2 minutes */ expire: Date.now() + JWT_TOKEN_EXPIRATION_TIME, }; @@ -74,7 +78,10 @@ export async function requestJetpackToken() { return newTokenData; } catch ( e ) { - throw new Error( 'Error fetching new token' ); + throw createExtendedError( + 'Error fetching new token', + 'token_fetch_error' + ); } } @@ -83,7 +90,7 @@ export async function requestJetpackToken() { * * @param {string} prompt - The query to send to the API */ -export async function getCompletion( prompt: string ) { +export async function getCompletion( prompt: string, feature: string ) { const { token } = await requestJetpackToken(); const url = new URL( @@ -92,7 +99,7 @@ export async function getCompletion( prompt: string ) { url.searchParams.append( 'prompt', prompt ); url.searchParams.append( 'token', token ); - url.searchParams.append( 'feature', WOO_AI_PLUGIN_FEATURE_NAME ); + url.searchParams.append( 'feature', feature ); return new EventSource( url.toString() ); } diff --git a/packages/js/ai/tsconfig-cjs.json b/packages/js/ai/tsconfig-cjs.json new file mode 100644 index 00000000000..92bfe004f21 --- /dev/null +++ b/packages/js/ai/tsconfig-cjs.json @@ -0,0 +1,16 @@ +{ + "extends": "../tsconfig-cjs", + "include": [ + "**/*.d.ts", + "src/**/*", + "src/**/*.json" + ], + "compilerOptions": { + "outDir": "build", + "resolveJsonModule": true, + "typeRoots": [ + "./typings", + "./node_modules/@types" + ] + } +} diff --git a/packages/js/ai/tsconfig.json b/packages/js/ai/tsconfig.json new file mode 100644 index 00000000000..8e7149dd74d --- /dev/null +++ b/packages/js/ai/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "../tsconfig", + "compilerOptions": { + "rootDir": "src", + "outDir": "build-module", + "declaration": true, + "declarationMap": true, + "declarationDir": "./build-types", + "resolveJsonModule": true, + "typeRoots": [ + "./node_modules/@types" + ] + }, + "include": [ + "**/*.d.ts", + "src/**/*", + "src/**/*.json" + ] +} diff --git a/packages/js/ai/webpack.config.js b/packages/js/ai/webpack.config.js new file mode 100644 index 00000000000..9335abead59 --- /dev/null +++ b/packages/js/ai/webpack.config.js @@ -0,0 +1,46 @@ +/** + * External dependencies + */ +const WebpackRTLPlugin = require( 'webpack-rtl-plugin' ); +const MiniCssExtractPlugin = require( 'mini-css-extract-plugin' ); + +/** + * Internal dependencies + */ +const { webpackConfig } = require( '@woocommerce/internal-style-build' ); + +const NODE_ENV = process.env.NODE_ENV || 'development'; + +module.exports = { + mode: process.env.NODE_ENV || 'development', + entry: { + 'build-style': __dirname + '/src/style.scss', + }, + output: { + path: __dirname, + }, + module: { + parser: webpackConfig.parser, + rules: webpackConfig.rules, + }, + plugins: [ + new MiniCssExtractPlugin( { + filename: ( data ) => { + return data.chunk.name.startsWith( '/build/blocks' ) + ? `[name].css` + : `[name]/style.css`; + }, + chunkFilename: 'chunks/[id].style.css', + } ), + new WebpackRTLPlugin( { + test: /(? { - const fetchSuggestions = async ( - request: ProductDataSuggestionRequest - ): Promise< ProductDataSuggestion[] > => { - try { - const token = await requestJetpackToken(); - const { suggestions } = - await apiFetch< ProductDataSuggestionSuccessResponse >( { - path: '/wooai/product-data-suggestions', - method: 'POST', - data: { ...request, token }, - } ); - - return suggestions; - } catch ( error ) { - /* eslint-disable-next-line no-console */ - console.error( error ); - - const errorResponse = error as ProductDataSuggestionErrorResponse; - const hasStatus = errorResponse?.data?.status; - const hasMessage = errorResponse?.message; - - // Check if the status is 500 or greater. - const isStatusGte500 = - errorResponse?.data?.status && errorResponse.data.status >= 500; - - // If the error response doesn't have a status or message, or if the status is 500 or greater, throw a generic error. - if ( ! hasStatus || ! hasMessage || isStatusGte500 ) { - throw new Error( - __( - `Apologies, this is an experimental feature and there was an error with this service. Please try again.`, - 'woocommerce' - ) - ); - } - - throw new Error( errorResponse.message ); - } - }; - - return { - fetchSuggestions, - } as const; -}; diff --git a/plugins/woo-ai/src/product-description/product-description-button-container.tsx b/plugins/woo-ai/src/product-description/product-description-button-container.tsx index 5d9d786255e..0c0044749fb 100644 --- a/plugins/woo-ai/src/product-description/product-description-button-container.tsx +++ b/plugins/woo-ai/src/product-description/product-description-button-container.tsx @@ -1,9 +1,12 @@ /** * External dependencies */ -import React from 'react'; import { __ } from '@wordpress/i18n'; import { useState, useEffect, useRef } from '@wordpress/element'; +import { + __experimentalUseCompletion as useCompletion, + UseCompletionError, +} from '@woocommerce/ai'; /** * Internal dependencies @@ -11,9 +14,10 @@ import { useState, useEffect, useRef } from '@wordpress/element'; import { MAX_TITLE_LENGTH, MIN_TITLE_LENGTH_FOR_DESCRIPTION, + WOO_AI_PLUGIN_FEATURE_NAME, } from '../constants'; import { StopCompletionBtn, WriteItForMeBtn } from '../components'; -import { useCompletion, useFeedbackSnackbar, useTinyEditor } from '../hooks'; +import { useFeedbackSnackbar, useTinyEditor } from '../hooks'; import { getProductName, getPostId, @@ -57,9 +61,14 @@ export function WriteItForMeButtonContainer() { titleEl.current?.value || '' ); const tinyEditor = useTinyEditor(); + + const handleCompletionError = ( error: UseCompletionError ) => + tinyEditor.setContent( getApiError( error.code ?? '' ) ); + const { showSnackbar, removeSnackbar } = useFeedbackSnackbar(); const { requestCompletion, completionActive, stopCompletion } = useCompletion( { + feature: WOO_AI_PLUGIN_FEATURE_NAME, onStreamMessage: ( content ) => { // This prevents printing out incomplete HTML tags. const ignoreRegex = new RegExp( /<\/?\w*[^>]*$/g ); @@ -67,12 +76,7 @@ export function WriteItForMeButtonContainer() { tinyEditor.setContent( content ); } }, - onStreamError: ( error ) => { - // eslint-disable-next-line no-console - console.debug( 'Streaming error encountered', error ); - - tinyEditor.setContent( getApiError( error ) ); - }, + onStreamError: handleCompletionError, onCompletionFinished: ( reason, content ) => { recordDescriptionTracks( 'stop', { reason, @@ -174,7 +178,7 @@ export function WriteItForMeButtonContainer() { ].join( ' ' ); }; - const onWriteItForMeClick = () => { + const onWriteItForMeClick = async () => { setFetching( true ); removeSnackbar(); @@ -182,7 +186,12 @@ export function WriteItForMeButtonContainer() { recordDescriptionTracks( 'start', { prompt, } ); - requestCompletion( prompt ); + + try { + await requestCompletion( prompt ); + } catch ( err ) { + handleCompletionError( err as UseCompletionError ); + } }; return completionActive ? ( diff --git a/plugins/woo-ai/src/product-name/product-name-suggestions.tsx b/plugins/woo-ai/src/product-name/product-name-suggestions.tsx index 11028fe485d..7f7078747fd 100644 --- a/plugins/woo-ai/src/product-name/product-name-suggestions.tsx +++ b/plugins/woo-ai/src/product-name/product-name-suggestions.tsx @@ -4,6 +4,7 @@ import React from 'react'; import { __ } from '@wordpress/i18n'; import { useCallback, useEffect, useRef, useState } from '@wordpress/element'; +import { __experimentalUseCompletion as useCompletion } from '@woocommerce/ai'; /** * Internal dependencies @@ -20,10 +21,11 @@ import { getTags, getAttributes, } from '../utils'; -import { useCompletion, useProductSlug } from '../hooks'; +import { useProductSlug } from '../hooks'; import { ProductDataSuggestion } from '../utils/types'; import { SuggestionItem, PoweredByLink, recordNameTracks } from './index'; import { RandomLoadingMessage } from '../components'; +import { WOO_AI_PLUGIN_FEATURE_NAME } from '../constants'; const MIN_TITLE_LENGTH = 10; @@ -64,12 +66,13 @@ export const ProductNameSuggestions = () => { ); const { updateProductSlug } = useProductSlug(); const { requestCompletion } = useCompletion( { + feature: WOO_AI_PLUGIN_FEATURE_NAME, onStreamError: ( error ) => { // eslint-disable-next-line no-console console.debug( 'Streaming error encountered', error ); recordNameTracks( 'stop', { reason: 'error', - error: ( error as { message?: string } )?.message || '', + error: error.code ?? error.message, } ); setSuggestionsState( SuggestionsState.Failed ); }, @@ -127,14 +130,13 @@ export const ProductNameSuggestions = () => { const onBodyClick = ( e: MouseEvent ) => { const target = e.target as HTMLElement; - if ( ! ( nameInput?.ownerDocument.activeElement === nameInput || // Need to capture errant handlediv click that happens on load as well Boolean( target.querySelector( ':scope > .handlediv' ) ) || target?.matches( - '#woocommerce-ai-app-product-name-suggestions *, #title' + '#woocommerce-ai-app-product-name-suggestions *, #title, .woo-ai-get-suggestions-btn__content' ) ) ) { @@ -259,7 +261,11 @@ export const ProductNameSuggestions = () => { current_title: getProductName(), } ); - requestCompletion( buildPrompt() ); + try { + await requestCompletion( buildPrompt() ); + } catch ( e ) { + setSuggestionsState( SuggestionsState.Failed ); + } }; const shouldRenderSuggestionsButton = useCallback( () => { diff --git a/plugins/woo-ai/src/utils/index.ts b/plugins/woo-ai/src/utils/index.ts index f2c0c23b99a..c82c9f23f8b 100644 --- a/plugins/woo-ai/src/utils/index.ts +++ b/plugins/woo-ai/src/utils/index.ts @@ -1,6 +1,5 @@ export * from './productData'; export * from './shuffleArray'; -export * from './text-completion'; export * from './recordTracksFactory'; export * from './get-post-id'; export * from './tiny-tools'; diff --git a/plugins/woo-ai/src/utils/types.ts b/plugins/woo-ai/src/utils/types.ts index 8eef93ea903..16470a00e02 100644 --- a/plugins/woo-ai/src/utils/types.ts +++ b/plugins/woo-ai/src/utils/types.ts @@ -7,24 +7,3 @@ export type ProductDataSuggestion = { reason: string; content: string; }; - -export type ProductDataSuggestionRequest = { - requested_data: string; - name: string; - description: string; - categories: string[]; - tags: string[]; - attributes: Attribute[]; -}; - -// This is the standard API response data when an error is returned. -export type ApiErrorResponse = { - code: string; - message: string; - data?: ApiErrorResponseData | undefined; -}; - -// API errors contain data with the status, and more in-depth error details. This may be null. -export type ApiErrorResponseData = { - status: number; -} | null; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 25f2c0a9e9b..fce6631a8e9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -117,7 +117,7 @@ importers: version: 1.1.2(webpack@5.76.3) webpack: specifier: ^5.76.2 - version: 5.76.3 + version: 5.76.3(webpack-cli@4.9.2) packages/js/admin-e2e-tests: dependencies: @@ -250,6 +250,139 @@ importers: specifier: ^3.3.12 version: 3.3.12(webpack@5.70.0) + packages/js/ai: + dependencies: + '@wordpress/api-fetch': + specifier: wp-6.0 + version: 6.3.1 + '@wordpress/compose': + specifier: wp-6.0 + version: 5.4.1(react@17.0.2) + '@wordpress/core-data': + specifier: wp-6.0 + version: 4.4.5(react@17.0.2) + '@wordpress/data': + specifier: wp-6.0 + version: 6.6.1(react@17.0.2) + '@wordpress/element': + specifier: wp-6.0 + version: 4.4.1 + classnames: + specifier: ^2.3.1 + version: 2.3.1 + debug: + specifier: ^4.3.3 + version: 4.3.3 + dompurify: + specifier: ^2.3.6 + version: 2.3.6 + prop-types: + specifier: ^15.8.1 + version: 15.8.1 + react-router-dom: + specifier: ^6.3.0 + version: 6.3.0(react-dom@17.0.2)(react@17.0.2) + devDependencies: + '@babel/core': + specifier: ^7.21.3 + version: 7.21.3 + '@babel/runtime': + specifier: ^7.17.2 + version: 7.21.0 + '@testing-library/jest-dom': + specifier: ^5.16.2 + version: 5.16.2 + '@testing-library/react': + specifier: ^12.1.3 + version: 12.1.4(react-dom@17.0.2)(react@17.0.2) + '@testing-library/react-hooks': + specifier: ^8.0.1 + version: 8.0.1(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) + '@testing-library/user-event': + specifier: ^13.5.0 + version: 13.5.0(@testing-library/dom@8.11.3) + '@types/debug': + specifier: ^4.1.7 + version: 4.1.7 + '@types/dompurify': + specifier: ^2.3.3 + version: 2.3.3 + '@types/jest': + specifier: ^27.4.1 + version: 27.4.1 + '@types/react': + specifier: ^17.0.2 + version: 17.0.50 + '@types/testing-library__jest-dom': + specifier: ^5.14.3 + version: 5.14.3 + '@types/wordpress__core-data': + specifier: ^2.4.5 + version: 2.4.5 + '@woocommerce/eslint-plugin': + specifier: workspace:* + version: link:../eslint-plugin + '@woocommerce/internal-js-tests': + specifier: workspace:* + version: link:../internal-js-tests + '@woocommerce/internal-style-build': + specifier: workspace:* + version: link:../internal-style-build + '@wordpress/browserslist-config': + specifier: wp-6.0 + version: 4.1.3 + concurrently: + specifier: ^7.0.0 + version: 7.0.0 + copy-webpack-plugin: + specifier: ^9.1.0 + version: 9.1.0(webpack@5.76.3) + css-loader: + specifier: ^3.6.0 + version: 3.6.0(webpack@5.76.3) + eslint: + specifier: ^8.32.0 + version: 8.32.0 + jest: + specifier: ^27.5.1 + version: 27.5.1 + jest-cli: + specifier: ^27.5.1 + version: 27.5.1 + postcss: + specifier: ^8.4.7 + version: 8.4.12 + postcss-loader: + specifier: ^4.3.0 + version: 4.3.0(postcss@8.4.12)(webpack@5.76.3) + react: + specifier: ^17.0.2 + version: 17.0.2 + react-dom: + specifier: ^17.0.2 + version: 17.0.2(react@17.0.2) + react-hooks^8.0.1: + specifier: link:@testing-library/react-hooks^8.0.1 + version: link:@testing-library/react-hooks^8.0.1 + rimraf: + specifier: ^3.0.2 + version: 3.0.2 + sass-loader: + specifier: ^10.2.1 + version: 10.4.1(sass@1.60.0)(webpack@5.76.3) + ts-jest: + specifier: ^27.1.3 + version: 27.1.3(@babel/core@7.21.3)(@types/jest@27.4.1)(jest@27.5.1)(typescript@4.9.5) + typescript: + specifier: ^4.9.5 + version: 4.9.5 + webpack: + specifier: ^5.70.0 + version: 5.76.3(webpack-cli@3.3.12) + webpack-cli: + specifier: ^3.3.12 + version: 3.3.12(webpack@5.76.3) + packages/js/api: dependencies: axios: @@ -1738,7 +1871,7 @@ importers: version: 4.9.5 webpack: specifier: ^5.70.0 - version: 5.70.0(webpack-cli@3.3.12) + version: 5.70.0(webpack-cli@4.9.2) packages/js/navigation: dependencies: @@ -2321,6 +2454,9 @@ importers: '@types/react-outside-click-handler': specifier: ^1.3.1 version: 1.3.1 + '@woocommerce/ai': + specifier: workspace:0.1.0-beta.0 + version: link:../../packages/js/ai '@woocommerce/components': specifier: workspace:* version: link:../../packages/js/components @@ -2353,7 +2489,7 @@ importers: version: 4.4.3(react@17.0.2) debug: specifier: ^4.3.3 - version: 4.3.4(supports-color@9.2.2) + version: 4.3.3 prop-types: specifier: ^15.8.1 version: 15.8.1 @@ -2390,16 +2526,16 @@ importers: version: 8.2.0 '@wordpress/prettier-config': specifier: 2.17.0 - version: 2.17.0(wp-prettier@2.6.2) + version: 2.17.0(wp-prettier@2.8.5) '@wordpress/scripts': specifier: ^19.2.4 - version: 19.2.4(@babel/core@7.21.3)(acorn@8.8.1)(debug@4.3.4)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(uglify-js@3.14.5) + version: 19.2.4(@babel/core@7.21.3)(acorn@8.8.1)(debug@4.3.3)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(uglify-js@3.14.5) eslint: specifier: ^8.32.0 version: 8.32.0 prettier: specifier: npm:wp-prettier@^2.6.2 - version: /wp-prettier@2.6.2 + version: /wp-prettier@2.8.5 ts-loader: specifier: ^9.4.1 version: 9.4.1(typescript@4.9.5)(webpack@5.76.3) @@ -3161,7 +3297,7 @@ importers: version: 2.17.0(wp-prettier@2.8.5) '@wordpress/scripts': specifier: ^19.2.4 - version: 19.2.4(@babel/core@7.21.3)(acorn@8.8.1)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(uglify-js@3.14.5) + version: 19.2.4(@babel/core@7.21.3)(acorn@8.8.1)(debug@4.3.3)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(uglify-js@3.14.5) eslint: specifier: ^8.32.0 version: 8.32.0 @@ -3219,7 +3355,7 @@ importers: version: 8.2.0 '@wordpress/prettier-config': specifier: 2.17.0 - version: 2.17.0(wp-prettier@2.6.2) + version: 2.17.0(wp-prettier@2.8.5) '@wordpress/scripts': specifier: ^26.4.0 version: 26.4.0(@types/node@16.18.21)(acorn@8.8.1)(react-dom@17.0.2)(react@17.0.2)(ts-node@10.9.1)(typescript@4.9.5) @@ -3231,7 +3367,7 @@ importers: version: 4.0.3 prettier: specifier: npm:wp-prettier@^2.6.2 - version: /wp-prettier@2.6.2 + version: /wp-prettier@2.8.5 ts-loader: specifier: ^9.4.1 version: 9.4.1(typescript@4.9.5)(webpack@5.76.3) @@ -3443,7 +3579,7 @@ importers: version: 14.1.0 '@octokit/types': specifier: ^9.2.0 - version: 9.2.1 + version: 9.2.0 '@types/cli-table': specifier: ^0.3.1 version: 0.3.1 @@ -3714,7 +3850,7 @@ importers: version: 4.9.5 webpack: specifier: ^5.70.0 - version: 5.70.0(webpack-cli@3.3.12) + version: 5.70.0(webpack-cli@4.9.2) packages: @@ -4002,7 +4138,7 @@ packages: commander: 4.1.1 convert-source-map: 1.8.0 fs-readdir-recursive: 1.1.0 - glob: 7.2.0 + glob: 7.2.3 lodash: 4.17.21 make-dir: 2.1.0 slash: 2.0.0 @@ -4214,7 +4350,7 @@ packages: resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.21.3 jsesc: 2.5.2 source-map: 0.5.7 @@ -4270,7 +4406,7 @@ packages: dependencies: '@babel/compat-data': 7.21.0 '@babel/core': 7.12.9 - '@babel/helper-validator-option': 7.21.0 + '@babel/helper-validator-option': 7.18.6 browserslist: 4.19.3 semver: 6.3.0 @@ -4399,6 +4535,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-create-class-features-plugin@7.17.6(@babel/core@7.21.3): resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==} @@ -4416,7 +4553,6 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-create-class-features-plugin@7.19.0(@babel/core@7.12.9): resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} @@ -4451,6 +4587,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-create-class-features-plugin@7.19.0(@babel/core@7.21.3): resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} @@ -4500,24 +4637,6 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.1 - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.17.8): - resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} - peerDependencies: - '@babel/core': ^7.4.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8) - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/traverse': 7.21.3 - debug: 4.3.4(supports-color@9.2.2) - lodash.debounce: 4.0.8 - resolve: 1.22.1 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.21.3): resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: @@ -4592,6 +4711,13 @@ packages: dependencies: '@babel/types': 7.22.4 + /@babel/helper-function-name@7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.20.7 + '@babel/types': 7.22.4 + /@babel/helper-function-name@7.21.0: resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} engines: {node: '>=6.9.0'} @@ -4641,13 +4767,13 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-simple-access': 7.20.2 + '@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.19.1 '@babel/template': 7.20.7 '@babel/traverse': 7.21.3 - '@babel/types': 7.22.4 + '@babel/types': 7.21.3 transitivePeerDependencies: - supports-color @@ -4698,6 +4824,7 @@ packages: /@babel/helper-plugin-utils@7.18.9: resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} engines: {node: '>=6.9.0'} + dev: true /@babel/helper-plugin-utils@7.20.2: resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} @@ -4771,6 +4898,18 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-replace-supers@7.19.1: + resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.21.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.21.3 + '@babel/types': 7.22.4 + transitivePeerDependencies: + - supports-color + /@babel/helper-replace-supers@7.20.7: resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} engines: {node: '>=6.9.0'} @@ -4784,6 +4923,12 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-simple-access@7.18.6: + resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.22.4 + /@babel/helper-simple-access@7.20.2: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} @@ -4802,6 +4947,10 @@ packages: dependencies: '@babel/types': 7.22.4 + /@babel/helper-string-parser@7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + engines: {node: '>=6.9.0'} + /@babel/helper-string-parser@7.21.5: resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==} engines: {node: '>=6.9.0'} @@ -4844,7 +4993,7 @@ packages: dependencies: '@babel/template': 7.20.7 '@babel/traverse': 7.21.3 - '@babel/types': 7.22.4 + '@babel/types': 7.21.3 transitivePeerDependencies: - supports-color @@ -4871,7 +5020,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.4 + '@babel/types': 7.21.3 /@babel/parser@7.19.3: resolution: {integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==} @@ -4927,16 +5076,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -4994,18 +5133,6 @@ packages: '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.12.9) dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.17.8) - dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} @@ -5086,21 +5213,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.8): - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.8) - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} @@ -5123,7 +5235,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -5135,7 +5247,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.21.5 transitivePeerDependencies: - supports-color dev: true @@ -5151,6 +5263,7 @@ packages: '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} @@ -5160,10 +5273,9 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.21.5 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.12.9): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} @@ -5173,23 +5285,10 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.17.8): - 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.17.8 - '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -5258,20 +5357,6 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.8) - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} @@ -5285,20 +5370,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-decorators@7.16.4(@babel/core@7.17.8): - resolution: {integrity: sha512-RESBNX16eNqnBeEVR5sCJpnW0mHiNLNNvGA8PrRuK/4ZJ4TO+6bHleRUuGQYDERVySOKtOhSya/C4MIhwAMAgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-decorators': 7.16.0(@babel/core@7.17.8) - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-decorators@7.16.4(@babel/core@7.21.3): resolution: {integrity: sha512-RESBNX16eNqnBeEVR5sCJpnW0mHiNLNNvGA8PrRuK/4ZJ4TO+6bHleRUuGQYDERVySOKtOhSya/C4MIhwAMAgg==} engines: {node: '>=6.9.0'} @@ -5320,7 +5391,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9) /@babel/plugin-proposal-dynamic-import@7.16.7(@babel/core@7.12.9): @@ -5367,17 +5438,6 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9) dev: true - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -5398,17 +5458,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.12.9) - /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.17.8): - resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-export-default-from': 7.16.7(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-export-default-from@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} engines: {node: '>=6.9.0'} @@ -5426,7 +5475,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9) /@babel/plugin-proposal-export-namespace-from@7.16.7(@babel/core@7.12.9): @@ -5473,17 +5522,6 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9) dev: true - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -5501,7 +5539,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9) /@babel/plugin-proposal-json-strings@7.16.7(@babel/core@7.12.9): @@ -5548,17 +5586,6 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9) dev: true - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} @@ -5576,7 +5603,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9) /@babel/plugin-proposal-logical-assignment-operators@7.16.7(@babel/core@7.12.9): @@ -5623,17 +5650,6 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9) dev: true - /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} @@ -5651,7 +5667,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9) /@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.12.9): @@ -5661,7 +5677,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9) dev: true @@ -5672,8 +5688,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.8) + dev: true /@babel/plugin-proposal-nullish-coalescing-operator@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} @@ -5682,9 +5699,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3) - dev: true /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.12.9): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} @@ -5696,17 +5712,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.12.9) - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -5724,7 +5729,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9) /@babel/plugin-proposal-numeric-separator@7.16.7(@babel/core@7.12.9): @@ -5771,17 +5776,6 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9) dev: true - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -5871,20 +5865,6 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.17.8): - resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.0 - '@babel/core': 7.17.8 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -5905,7 +5885,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9) /@babel/plugin-proposal-optional-catch-binding@7.16.7(@babel/core@7.12.9): @@ -5951,17 +5931,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.12.9) - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.17.8) - dev: true - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -5979,7 +5948,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9) @@ -6005,6 +5974,7 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.8) + dev: true /@babel/plugin-proposal-optional-chaining@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} @@ -6016,7 +5986,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3) - dev: true /@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.12.9): resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} @@ -6060,7 +6029,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -6072,7 +6041,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -6098,7 +6067,7 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color dev: true @@ -6116,19 +6085,6 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -6150,7 +6106,7 @@ packages: '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9) transitivePeerDependencies: - supports-color @@ -6180,7 +6136,7 @@ packages: '@babel/core': 7.21.3 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3) transitivePeerDependencies: - supports-color @@ -6201,21 +6157,6 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.8) - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} @@ -6238,7 +6179,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-proposal-unicode-property-regex@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==} @@ -6409,16 +6350,6 @@ packages: '@babel/core': 7.21.3 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-decorators@7.16.0(@babel/core@7.17.8): - resolution: {integrity: sha512-nxnnngZClvlY13nHJAIDow0S7Qzhq64fQ/NlqS+VER3kjW/4F0jLhXjeL8jcwSwz6Ca3rotT5NJD2T9I7lcv7g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-syntax-decorators@7.16.0(@babel/core@7.21.3): resolution: {integrity: sha512-nxnnngZClvlY13nHJAIDow0S7Qzhq64fQ/NlqS+VER3kjW/4F0jLhXjeL8jcwSwz6Ca3rotT5NJD2T9I7lcv7g==} engines: {node: '>=6.9.0'} @@ -6463,16 +6394,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.17.8): - resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-syntax-export-default-from@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} engines: {node: '>=6.9.0'} @@ -6524,6 +6445,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.21.5 + dev: true /@babel/plugin-syntax-flow@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==} @@ -6544,16 +6466,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.17.8): - resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.3): resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} @@ -6630,7 +6542,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-syntax-jsx@7.16.7(@babel/core@7.17.8): @@ -6720,6 +6632,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.21.5 + dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -6819,6 +6732,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.21.5 + dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -6893,6 +6807,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.21.5 + dev: true /@babel/plugin-syntax-typescript@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} @@ -6928,7 +6843,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-arrow-functions@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} @@ -6969,16 +6884,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} @@ -6995,8 +6900,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.12.9) transitivePeerDependencies: - supports-color @@ -7050,26 +6955,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-module-imports': 7.18.6 + '@babel/helper-module-imports': 7.21.4 '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.12.9) transitivePeerDependencies: - supports-color - /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.8) - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} @@ -7077,7 +6968,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-module-imports': 7.18.6 + '@babel/helper-module-imports': 7.21.4 '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3) transitivePeerDependencies: @@ -7090,7 +6981,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-block-scoped-functions@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} @@ -7131,16 +7022,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -7157,7 +7038,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-block-scoping@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} @@ -7198,16 +7079,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.17.8): - resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3): resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} @@ -7225,10 +7096,10 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-function-name': 7.21.0 + '@babel/helper-function-name': 7.19.0 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: @@ -7246,7 +7117,7 @@ packages: '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: @@ -7265,7 +7136,7 @@ packages: '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: @@ -7284,7 +7155,7 @@ packages: '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.19.1 '@babel/helper-split-export-declaration': 7.18.6 globals: 11.12.0 transitivePeerDependencies: @@ -7310,26 +7181,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.17.8): - resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8) - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 - '@babel/helper-split-export-declaration': 7.18.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.3): resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} @@ -7356,7 +7207,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-computed-properties@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} @@ -7397,16 +7248,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} @@ -7423,7 +7264,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-destructuring@7.17.7(@babel/core@7.12.9): resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==} @@ -7464,16 +7305,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.17.8): - resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3): resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} @@ -7491,7 +7322,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-dotall-regex@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} @@ -7564,7 +7395,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-duplicate-keys@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} @@ -7606,16 +7437,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} @@ -7633,7 +7454,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-exponentiation-operator@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} @@ -7678,17 +7499,6 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} @@ -7718,6 +7528,7 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8) + dev: true /@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} @@ -7736,7 +7547,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-for-of@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} @@ -7777,16 +7588,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.17.8): - resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.21.3): resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} @@ -7803,8 +7604,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-function-name@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} @@ -7853,18 +7654,6 @@ packages: '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8) - '@babel/helper-function-name': 7.21.0 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -7883,7 +7672,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-literals@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} @@ -7924,16 +7713,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -7950,7 +7729,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-member-expression-literals@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} @@ -7991,16 +7770,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -8018,7 +7787,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -8078,19 +7847,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.17.8): - resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.3): resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} @@ -8111,8 +7867,8 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-simple-access': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.18.6 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -8125,8 +7881,8 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-simple-access': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.18.6 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -8140,11 +7896,12 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-simple-access': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.18.6 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-modules-commonjs@7.17.7(@babel/core@7.21.3): resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==} @@ -8154,12 +7911,11 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-simple-access': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.18.6 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.12.9): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} @@ -8174,20 +7930,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.17.8): - resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-simple-access': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.3): resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} engines: {node: '>=6.9.0'} @@ -8210,7 +7952,7 @@ packages: '@babel/core': 7.12.9 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-identifier': 7.19.1 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: @@ -8279,21 +8021,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.17.8): - resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-validator-identifier': 7.19.1 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.3): resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} @@ -8316,7 +8043,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -8372,19 +8099,6 @@ packages: - supports-color dev: true - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-module-transforms': 7.21.2 - '@babel/helper-plugin-utils': 7.21.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -8446,17 +8160,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9) '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.17.8): - resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.21.3): resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} engines: {node: '>=6.9.0'} @@ -8474,7 +8177,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-new-target@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} @@ -8516,16 +8219,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.17.8): - 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.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} @@ -8542,8 +8235,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color @@ -8555,7 +8248,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -8568,7 +8261,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -8581,7 +8274,7 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color dev: true @@ -8598,19 +8291,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-replace-supers': 7.20.7 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} @@ -8630,7 +8310,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-parameters@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} @@ -8697,7 +8377,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-property-literals@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} @@ -8738,16 +8418,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -8822,7 +8492,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.17.8) + '@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.17.8) dev: true /@babel/plugin-transform-react-jsx-development@7.16.7(@babel/core@7.21.3): @@ -8832,7 +8502,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.21.3) + '@babel/plugin-transform-react-jsx': 7.19.0(@babel/core@7.21.3) dev: true /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.3): @@ -8920,7 +8590,7 @@ packages: '@babel/helper-module-imports': 7.16.7 '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-jsx': 7.16.7(@babel/core@7.21.3) - '@babel/types': 7.17.0 + '@babel/types': 7.22.4 dev: true /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.17.8): @@ -8963,20 +8633,6 @@ packages: '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.12.9) '@babel/types': 7.22.4 - /@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.17.8): - resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.21.4 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.17.8) - '@babel/types': 7.22.4 - dev: true - /@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.21.3): resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==} engines: {node: '>=6.9.0'} @@ -9073,17 +8729,6 @@ packages: regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - regenerator-transform: 0.15.0 - dev: true - /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} @@ -9101,7 +8746,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-reserved-words@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} @@ -9143,16 +8788,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} @@ -9187,8 +8822,8 @@ packages: dependencies: '@babel/core': 7.21.3 '@babel/helper-module-imports': 7.16.0 - '@babel/helper-plugin-utils': 7.21.5 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3) + '@babel/helper-plugin-utils': 7.14.5 + babel-plugin-polyfill-corejs2: 0.3.0(@babel/core@7.21.3) babel-plugin-polyfill-corejs3: 0.4.0(@babel/core@7.21.3) babel-plugin-polyfill-regenerator: 0.3.0(@babel/core@7.21.3) semver: 6.3.0 @@ -9235,7 +8870,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-shorthand-properties@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} @@ -9276,16 +8911,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -9302,7 +8927,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 /@babel/plugin-transform-spread@7.16.7(@babel/core@7.12.9): @@ -9348,17 +8973,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - /@babel/plugin-transform-spread@7.19.0(@babel/core@7.17.8): - resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - dev: true - /@babel/plugin-transform-spread@7.19.0(@babel/core@7.21.3): resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} @@ -9376,7 +8990,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-sticky-regex@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} @@ -9417,16 +9031,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -9443,7 +9047,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-template-literals@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} @@ -9484,16 +9088,6 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -9510,7 +9104,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-typeof-symbol@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} @@ -9552,16 +9146,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -9583,6 +9167,7 @@ packages: '@babel/plugin-syntax-typescript': 7.16.7(@babel/core@7.17.8) transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-typescript@7.16.8(@babel/core@7.21.3): resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} @@ -9630,7 +9215,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-unicode-escapes@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} @@ -9672,16 +9257,6 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.17.8): - resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.3): resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} @@ -9699,7 +9274,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9) - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-unicode-regex@7.16.7(@babel/core@7.12.9): resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} @@ -9744,17 +9319,6 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.12.9) '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.17.8): - resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.21.5 - dev: true - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.3): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -10189,92 +9753,6 @@ packages: - supports-color dev: true - /@babel/preset-env@7.20.2(@babel/core@7.17.8): - resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.0 - '@babel/core': 7.17.8 - '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.17.8) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-class-static-block': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.17.8) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.8) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.17.8) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.8) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.17.8) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.17.8) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.17.8) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.17.8) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.17.8) - '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.17.8) - '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.17.8) - '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.17.8) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.17.8) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.17.8) - '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.17.8) - '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.17.8) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.17.8) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.17.8) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-regenerator': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.17.8) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.17.8) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.17.8) - '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.17.8) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.17.8) - '@babel/preset-modules': 0.1.5(@babel/core@7.17.8) - '@babel/types': 7.21.3 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.17.8) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.17.8) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.17.8) - core-js-compat: 3.25.5 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/preset-env@7.20.2(@babel/core@7.21.3): resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} @@ -10284,8 +9762,8 @@ packages: '@babel/compat-data': 7.21.0 '@babel/core': 7.21.3 '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3) - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-option': 7.18.6 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-validator-option': 7.21.0 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3) '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.21.3) '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3) @@ -10351,7 +9829,7 @@ packages: '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.3) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3) '@babel/preset-modules': 0.1.5(@babel/core@7.21.3) - '@babel/types': 7.21.3 + '@babel/types': 7.22.4 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3) babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3) @@ -10370,6 +9848,7 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-validator-option': 7.21.0 '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.17.8) + dev: true /@babel/preset-flow@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} @@ -10378,10 +9857,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/helper-validator-option': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-option': 7.18.6 '@babel/plugin-transform-flow-strip-types': 7.16.7(@babel/core@7.21.3) - dev: true /@babel/preset-modules@0.1.5(@babel/core@7.12.9): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -10389,10 +9867,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.9) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.12.9) - '@babel/types': 7.21.3 + '@babel/types': 7.22.4 esutils: 2.0.3 /@babel/preset-modules@0.1.5(@babel/core@7.17.8): @@ -10401,10 +9879,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.17.8) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.17.8) - '@babel/types': 7.21.3 + '@babel/types': 7.22.4 esutils: 2.0.3 dev: true @@ -10414,10 +9892,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.3 - '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3) '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3) - '@babel/types': 7.21.3 + '@babel/types': 7.22.4 esutils: 2.0.3 /@babel/preset-react@7.16.7(@babel/core@7.17.8): @@ -10477,6 +9955,7 @@ packages: '@babel/plugin-transform-typescript': 7.16.8(@babel/core@7.17.8) transitivePeerDependencies: - supports-color + dev: true /@babel/preset-typescript@7.16.7(@babel/core@7.21.3): resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} @@ -10517,19 +9996,6 @@ packages: source-map-support: 0.5.20 dev: true - /@babel/register@7.18.9(@babel/core@7.17.8): - resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.5 - source-map-support: 0.5.20 - /@babel/register@7.18.9(@babel/core@7.21.3): resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} @@ -10542,7 +10008,6 @@ packages: make-dir: 2.1.0 pirates: 4.0.5 source-map-support: 0.5.20 - dev: true /@babel/runtime-corejs2@7.5.5: resolution: {integrity: sha512-FYATQVR00NSNi7mUfpPDp7E8RYMXDuO8gaix7u/w3GekfUinKgX1AcTxs7SoiEmoEW9mbpjrwqWSW6zCmw5h8A==} @@ -10583,7 +10048,7 @@ packages: dependencies: '@babel/code-frame': 7.18.6 '@babel/parser': 7.21.3 - '@babel/types': 7.22.4 + '@babel/types': 7.21.3 /@babel/template@7.18.10: resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} @@ -10608,11 +10073,11 @@ packages: '@babel/code-frame': 7.18.6 '@babel/generator': 7.21.3 '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 + '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 '@babel/parser': 7.21.3 - '@babel/types': 7.22.4 + '@babel/types': 7.21.3 debug: 4.3.4(supports-color@9.2.2) globals: 11.12.0 transitivePeerDependencies: @@ -10678,7 +10143,7 @@ packages: resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.21.5 + '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 @@ -12648,16 +12113,16 @@ packages: resolution: {integrity: sha512-S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ==} engines: {node: '>=12.0.0'} - /@octokit/app@13.1.3: - resolution: {integrity: sha512-qG3a3AddK/XLmtpQuB2eICbOUTwwdvqfdnyOzU6PlHhhhVapLfuutkbTOllHB/5OS/slUamIBD3zhOYpKsLFDQ==} + /@octokit/app@13.1.2: + resolution: {integrity: sha512-Kf+h5sa1SOI33hFsuHvTsWj1jUrjp1x4MuiJBq7U/NicfEGa6nArPUoDnyfP/YTmcQ5cQ5yvOgoIBkbwPg6kzQ==} engines: {node: '>= 14'} dependencies: '@octokit/auth-app': 4.0.9 '@octokit/auth-unauthenticated': 3.0.4 '@octokit/core': 4.0.5 - '@octokit/oauth-app': 4.2.1 + '@octokit/oauth-app': 4.2.0 '@octokit/plugin-paginate-rest': 6.0.0(@octokit/core@4.0.5) - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 '@octokit/webhooks': 10.9.1 transitivePeerDependencies: - encoding @@ -12669,9 +12134,9 @@ packages: dependencies: '@octokit/auth-oauth-app': 5.0.5 '@octokit/auth-oauth-user': 2.1.1 - '@octokit/request': 6.2.3 + '@octokit/request': 6.2.1 '@octokit/request-error': 3.0.3 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 '@types/lru-cache': 5.1.1 deprecation: 2.3.1 lru-cache: 6.0.0 @@ -12688,7 +12153,7 @@ packages: '@octokit/auth-oauth-device': 4.0.4 '@octokit/auth-oauth-user': 2.1.1 '@octokit/request': 6.2.1 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 '@types/btoa-lite': 1.0.0 btoa-lite: 1.0.0 universal-user-agent: 6.0.0 @@ -12702,7 +12167,7 @@ packages: dependencies: '@octokit/oauth-methods': 2.0.5 '@octokit/request': 6.2.3 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding @@ -12715,7 +12180,7 @@ packages: '@octokit/auth-oauth-device': 4.0.4 '@octokit/oauth-methods': 2.0.5 '@octokit/request': 6.2.1 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 btoa-lite: 1.0.0 universal-user-agent: 6.0.0 transitivePeerDependencies: @@ -12740,7 +12205,7 @@ packages: engines: {node: '>= 14'} dependencies: '@octokit/request-error': 3.0.3 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 dev: false /@octokit/core@3.5.1: @@ -12808,15 +12273,15 @@ packages: resolution: {integrity: sha512-sxmnewSwAixkP1TrLdE6yRG53eEhHhDTYUykUwdV9x8f91WcbhunIHk9x1PZLALdBZKRPUO2HRcm4kezZ79HoA==} engines: {node: '>= 14'} dependencies: - '@octokit/request': 6.2.1 + '@octokit/request': 6.2.3 '@octokit/types': 7.4.0 universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding dev: false - /@octokit/oauth-app@4.2.1: - resolution: {integrity: sha512-HtRWLzvAAizuFKJEoNlhWOktNNhfnLSXJXu2htt5+x2exhHibHupz/+1AAHU4xlBFtQLQh79OB/bQf+1GP5LBg==} + /@octokit/oauth-app@4.2.0: + resolution: {integrity: sha512-gyGclT77RQMkVUEW3YBeAKY+LBSc5u3eC9Wn/Uwt3WhuKuu9mrV18EnNpDqmeNll+mdV02yyBROU29Tlili6gg==} engines: {node: '>= 14'} dependencies: '@octokit/auth-oauth-app': 5.0.5 @@ -12825,7 +12290,7 @@ packages: '@octokit/core': 4.0.5 '@octokit/oauth-authorization-url': 5.0.0 '@octokit/oauth-methods': 2.0.5 - '@types/aws-lambda': 8.10.115 + '@types/aws-lambda': 8.10.114 fromentries: 1.3.2 universal-user-agent: 6.0.0 transitivePeerDependencies: @@ -12844,7 +12309,7 @@ packages: '@octokit/oauth-authorization-url': 5.0.0 '@octokit/request': 6.2.3 '@octokit/request-error': 3.0.3 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 btoa-lite: 1.0.0 transitivePeerDependencies: - encoding @@ -12856,8 +12321,8 @@ packages: /@octokit/openapi-types@13.10.0: resolution: {integrity: sha512-wPQDpTyy35D6VS/lekXDaKcxy6LI2hzcbmXBnP180Pdgz3dXRzoHdav0w09yZzzWX8HHLGuqwAeyMqEPtWY2XA==} - /@octokit/openapi-types@17.1.1: - resolution: {integrity: sha512-/X7Gh/qWiWaooJmUnYD48SYy72fyrk2ceisOSe89JojK7r0j8YrTwYpDi76kI+c6QiqX1KSgdoBTMJvktsDkYw==} + /@octokit/openapi-types@17.1.2: + resolution: {integrity: sha512-OaS7Ol4Y+U50PbejfzQflGWRMxO04nYWO5ZBv6JerqMKE2WS/tI9VoVDDPXHBlRMGG2fOdKwtVGlFfc7AVIstw==} dev: false /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.5.1): @@ -12886,7 +12351,7 @@ packages: '@octokit/core': '>=4' dependencies: '@octokit/core': 4.0.5 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 dev: false /@octokit/plugin-request-log@1.0.4(@octokit/core@3.5.1): @@ -12933,7 +12398,7 @@ packages: '@octokit/core': '>=3' dependencies: '@octokit/core': 4.0.5 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 deprecation: 2.3.1 dev: false @@ -12944,18 +12409,18 @@ packages: '@octokit/core': '>=3' dependencies: '@octokit/core': 4.0.5 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 bottleneck: 2.19.5 dev: false - /@octokit/plugin-throttling@5.2.0(@octokit/core@4.0.5): - resolution: {integrity: sha512-qWYvVIS1aRC3hN4a0ICWUp51IolHIn7E4iri2AKjbExJaovMDvRtae4nGoxG5pP6+WATk7JZ5epOJobFbGYV1w==} + /@octokit/plugin-throttling@5.1.1(@octokit/core@4.0.5): + resolution: {integrity: sha512-UlsdoW3ZOhhvjnK8S+OmQWOvB14kaKKdxseGFAxVHVggKZlgKO/ZtAb1AQoHXaQUCfO7uV/O5BR27o/wbKAzHg==} engines: {node: '>= 14'} peerDependencies: '@octokit/core': ^4.0.0 dependencies: '@octokit/core': 4.0.5 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 bottleneck: 2.19.5 dev: false @@ -12978,7 +12443,7 @@ packages: resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==} engines: {node: '>= 14'} dependencies: - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 deprecation: 2.3.1 once: 1.4.0 dev: false @@ -13000,7 +12465,7 @@ packages: engines: {node: '>= 14'} dependencies: '@octokit/endpoint': 7.0.2 - '@octokit/request-error': 3.0.1 + '@octokit/request-error': 3.0.3 '@octokit/types': 7.4.0 is-plain-object: 5.0.0 node-fetch: 2.6.7 @@ -13015,7 +12480,7 @@ packages: dependencies: '@octokit/endpoint': 7.0.2 '@octokit/request-error': 3.0.3 - '@octokit/types': 9.2.1 + '@octokit/types': 9.2.0 is-plain-object: 5.0.0 node-fetch: 2.6.7 universal-user-agent: 6.0.0 @@ -13056,10 +12521,10 @@ packages: dependencies: '@octokit/openapi-types': 13.10.0 - /@octokit/types@9.2.1: - resolution: {integrity: sha512-Vx4keMiD/CAiwVFasLcH0xBSVbKIHebIZke9i7ZbUWGNN4vJFWSYH6Nvga7UY9NIJCGa6x3QG849XTbi5wYmkA==} + /@octokit/types@9.2.0: + resolution: {integrity: sha512-xySzJG4noWrIBFyMu4lg4tu9vAgNg9S0aoLRONhAEz6ueyi1evBzb40HitIosaYS4XOexphG305IVcLrIX/30g==} dependencies: - '@octokit/openapi-types': 17.1.1 + '@octokit/openapi-types': 17.1.2 dev: false /@octokit/webhooks-methods@3.0.2: @@ -13590,7 +13055,7 @@ packages: '@slack/types': 1.10.0 '@types/is-stream': 1.1.0 '@types/node': 16.18.21 - axios: 0.21.4 + axios: 0.21.4(debug@4.3.3) eventemitter3: 3.1.2 form-data: 2.5.1 is-stream: 1.1.0 @@ -13778,18 +13243,18 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.17.8 + '@babel/core': 7.21.3 '@babel/generator': 7.17.7 '@babel/parser': 7.17.8 - '@babel/plugin-transform-react-jsx': 7.17.3(@babel/core@7.17.8) - '@babel/preset-env': 7.20.2(@babel/core@7.17.8) + '@babel/plugin-transform-react-jsx': 7.17.3(@babel/core@7.21.3) + '@babel/preset-env': 7.20.2(@babel/core@7.21.3) '@jest/transform': 26.6.2 '@mdx-js/loader': 1.6.22(react@17.0.2) '@mdx-js/mdx': 1.6.22 '@mdx-js/react': 1.6.22(react@17.0.2) '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) '@storybook/api': 6.4.19(react-dom@17.0.2)(react@17.0.2) - '@storybook/builder-webpack4': 6.4.19(@types/react@17.0.50)(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) + '@storybook/builder-webpack4': 6.4.19(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@storybook/client-logger': 6.4.19 '@storybook/components': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) '@storybook/core': 6.4.19(@storybook/builder-webpack5@6.4.19)(@storybook/manager-webpack5@6.4.19)(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@5.70.0) @@ -13827,7 +13292,7 @@ packages: remark-slug: 6.1.0 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.70.0(webpack-cli@4.9.2) transitivePeerDependencies: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' @@ -13891,11 +13356,11 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.17.8 + '@babel/core': 7.21.3 '@babel/generator': 7.17.7 '@babel/parser': 7.17.8 - '@babel/plugin-transform-react-jsx': 7.17.3(@babel/core@7.17.8) - '@babel/preset-env': 7.20.2(@babel/core@7.17.8) + '@babel/plugin-transform-react-jsx': 7.17.3(@babel/core@7.21.3) + '@babel/preset-env': 7.20.2(@babel/core@7.21.3) '@jest/transform': 26.6.2 '@mdx-js/loader': 1.6.22(react@17.0.2) '@mdx-js/mdx': 1.6.22 @@ -14314,6 +13779,99 @@ packages: - webpack-command dev: true + /@storybook/builder-webpack4@6.4.19(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5): + resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.21.3 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-decorators': 7.16.4(@babel/core@7.21.3) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3) + '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.21.3) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3) + '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3) + '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.21.3) + '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3) + '@babel/plugin-transform-spread': 7.19.0(@babel/core@7.21.3) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3) + '@babel/preset-env': 7.20.2(@babel/core@7.21.3) + '@babel/preset-react': 7.22.3(@babel/core@7.21.3) + '@babel/preset-typescript': 7.18.6(@babel/core@7.21.3) + '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/api': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channels': 6.4.19 + '@storybook/client-api': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) + '@storybook/core-common': 6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) + '@storybook/core-events': 6.4.19 + '@storybook/node-logger': 6.4.19 + '@storybook/preview-web': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/router': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/theming': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/ui': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + autoprefixer: 9.8.6 + babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@4.46.0) + babel-plugin-macros: 2.8.0 + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.21.3) + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.29.1 + css-loader: 3.6.0(webpack@4.46.0) + file-loader: 6.2.0(webpack@4.46.0) + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 4.1.6(eslint@8.32.0)(typescript@4.9.5)(webpack@4.46.0) + glob: 7.2.3 + glob-promise: 3.4.0(glob@7.2.3) + global: 4.4.0 + html-webpack-plugin: 4.5.2(webpack@4.46.0) + pnp-webpack-plugin: 1.6.4(typescript@4.9.5) + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.3.0(postcss@7.0.39)(webpack@4.46.0) + raw-loader: 4.0.2(webpack@4.46.0) + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + stable: 0.1.8 + style-loader: 1.3.0(webpack@4.46.0) + terser-webpack-plugin: 4.2.3(acorn@7.4.1)(webpack@4.46.0) + ts-dedent: 2.2.0 + typescript: 4.9.5 + url-loader: 4.1.1(file-loader@6.2.0)(webpack@4.46.0) + util-deprecate: 1.0.2 + webpack: 4.46.0(webpack-cli@3.3.12) + webpack-dev-middleware: 3.7.3(webpack@4.46.0) + webpack-filter-warnings-plugin: 1.2.1(webpack@4.46.0) + webpack-hot-middleware: 2.25.1 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - bluebird + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + /@storybook/builder-webpack4@6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12): resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: @@ -14417,26 +13975,26 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-decorators': 7.16.4(@babel/core@7.17.8) - '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-object-rest-spread': 7.17.3(@babel/core@7.17.8) - '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.17.8) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.17.8) - '@babel/plugin-transform-arrow-functions': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-block-scoping': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-classes': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-destructuring': 7.17.7(@babel/core@7.17.8) - '@babel/plugin-transform-for-of': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-parameters': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-shorthand-properties': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-spread': 7.16.7(@babel/core@7.17.8) - '@babel/preset-env': 7.16.11(@babel/core@7.17.8) - '@babel/preset-react': 7.16.7(@babel/core@7.17.8) - '@babel/preset-typescript': 7.16.7(@babel/core@7.17.8) + '@babel/core': 7.21.3 + '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-decorators': 7.16.4(@babel/core@7.21.3) + '@babel/plugin-proposal-export-default-from': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-object-rest-spread': 7.17.3(@babel/core@7.21.3) + '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-private-methods': 7.16.11(@babel/core@7.21.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3) + '@babel/plugin-transform-arrow-functions': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-block-scoping': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-classes': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-destructuring': 7.17.7(@babel/core@7.21.3) + '@babel/plugin-transform-for-of': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-parameters': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-shorthand-properties': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-spread': 7.16.7(@babel/core@7.21.3) + '@babel/preset-env': 7.16.11(@babel/core@7.21.3) + '@babel/preset-react': 7.16.7(@babel/core@7.21.3) + '@babel/preset-typescript': 7.16.7(@babel/core@7.21.3) '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) '@storybook/api': 6.4.19(react-dom@17.0.2)(react@17.0.2) '@storybook/channel-postmessage': 6.4.19 @@ -14453,28 +14011,28 @@ packages: '@storybook/store': 6.4.19(react-dom@17.0.2)(react@17.0.2) '@storybook/theming': 6.4.19(react-dom@17.0.2)(react@17.0.2) '@types/node': 14.14.33 - babel-loader: 8.2.3(@babel/core@7.17.8)(webpack@5.70.0) + babel-loader: 8.2.3(@babel/core@7.21.3)(webpack@5.76.3) babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.17.8) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.21.3) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.21.1 - css-loader: 5.2.7(webpack@5.70.0) - fork-ts-checker-webpack-plugin: 6.5.0(eslint@8.32.0)(typescript@4.9.5)(webpack@5.70.0) + css-loader: 5.2.7(webpack@5.76.3) + fork-ts-checker-webpack-plugin: 6.5.0(eslint@8.32.0)(typescript@4.9.5)(webpack@5.76.3) glob: 7.2.3 glob-promise: 3.4.0(glob@7.2.3) - html-webpack-plugin: 5.5.0(acorn@8.8.1)(webpack@5.70.0) + html-webpack-plugin: 5.5.0(acorn@8.8.1)(webpack@5.76.3) path-browserify: 1.0.1 process: 0.11.10 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) stable: 0.1.8 - style-loader: 2.0.0(webpack@5.70.0) - terser-webpack-plugin: 5.2.5(acorn@8.8.1)(webpack@5.70.0) + style-loader: 2.0.0(webpack@5.76.3) + terser-webpack-plugin: 5.2.5(acorn@8.8.1)(webpack@5.76.3) ts-dedent: 2.2.0 typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.70.0(webpack-cli@3.3.12) - webpack-dev-middleware: 4.3.0(webpack@5.70.0) + webpack: 5.76.3(webpack-cli@4.9.2) + webpack-dev-middleware: 4.3.0(webpack@5.76.3) webpack-hot-middleware: 2.25.1 webpack-virtual-modules: 0.4.3 transitivePeerDependencies: @@ -14671,6 +14229,123 @@ packages: - '@types/react' dev: true + /@storybook/core-client@6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0): + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/store': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/ui': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.29.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + typescript: 4.9.5 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0(webpack-cli@3.3.12) + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client@6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@5.70.0): + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/store': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/ui': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.29.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + typescript: 4.9.5 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 5.70.0(webpack-cli@4.9.2) + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client@6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@5.76.3): + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/store': 6.4.19(react-dom@17.0.2)(react@17.0.2) + '@storybook/ui': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.29.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + regenerator-runtime: 0.13.11 + ts-dedent: 2.2.0 + typescript: 4.9.5 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 5.76.3(webpack-cli@4.9.2) + transitivePeerDependencies: + - '@types/react' + dev: true + /@storybook/core-common@6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12): resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: @@ -14721,7 +14396,7 @@ packages: interpret: 2.2.0 json5: 2.2.3 lazy-universal-dotenv: 3.0.1 - picomatch: 2.3.0 + picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 react: 17.0.2 @@ -14764,9 +14439,9 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19(@types/react@17.0.50)(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) + '@storybook/builder-webpack4': 6.4.19(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) '@storybook/builder-webpack5': 6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) '@storybook/core-common': 6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 @@ -14843,7 +14518,7 @@ packages: '@discoveryjs/json-ext': 0.5.7 '@storybook/builder-webpack4': 6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) '@storybook/builder-webpack5': 6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) '@storybook/core-common': 6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 @@ -15069,7 +14744,7 @@ packages: dependencies: '@discoveryjs/json-ext': 0.5.7 '@storybook/builder-webpack4': 6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) '@storybook/core-common': 6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 @@ -15141,12 +14816,12 @@ packages: optional: true dependencies: '@storybook/builder-webpack5': 6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@5.70.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@5.70.0) '@storybook/core-server': 6.4.19(@storybook/builder-webpack5@6.4.19)(@storybook/manager-webpack5@6.4.19)(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) typescript: 4.9.5 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.70.0(webpack-cli@4.9.2) transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' @@ -15177,7 +14852,7 @@ packages: optional: true dependencies: '@storybook/builder-webpack5': 6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) '@storybook/core-server': 6.4.19(@storybook/builder-webpack5@6.4.19)(@storybook/manager-webpack5@6.4.19)(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -15282,7 +14957,7 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) '@storybook/core-server': 6.4.19(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -15469,7 +15144,7 @@ packages: '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3) '@babel/preset-react': 7.22.3(@babel/core@7.21.3) '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) '@storybook/core-common': 6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) '@storybook/node-logger': 6.4.19 '@storybook/theming': 6.4.19(react-dom@17.0.2)(react@17.0.2) @@ -15530,7 +15205,7 @@ packages: '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3) '@babel/preset-react': 7.22.3(@babel/core@7.21.3) '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@4.46.0) '@storybook/core-common': 6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) '@storybook/node-logger': 6.4.19 '@storybook/theming': 6.4.19(react-dom@17.0.2)(react@17.0.2) @@ -15587,26 +15262,26 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7(@babel/core@7.17.8) - '@babel/preset-react': 7.16.7(@babel/core@7.17.8) + '@babel/core': 7.21.3 + '@babel/plugin-transform-template-literals': 7.16.7(@babel/core@7.21.3) + '@babel/preset-react': 7.16.7(@babel/core@7.21.3) '@storybook/addons': 6.4.19(react-dom@17.0.2)(react@17.0.2) - '@storybook/core-client': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@5.70.0) + '@storybook/core-client': 6.4.19(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack@5.76.3) '@storybook/core-common': 6.4.19(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(webpack-cli@3.3.12) '@storybook/node-logger': 6.4.19 '@storybook/theming': 6.4.19(react-dom@17.0.2)(react@17.0.2) '@storybook/ui': 6.4.19(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) '@types/node': 14.14.33 - babel-loader: 8.2.3(@babel/core@7.17.8)(webpack@5.70.0) + babel-loader: 8.2.3(@babel/core@7.21.3)(webpack@5.76.3) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.21.1 - css-loader: 5.2.7(webpack@5.70.0) + css-loader: 5.2.7(webpack@5.76.3) express: 4.18.1 file-system-cache: 1.0.5 find-up: 5.0.0 fs-extra: 9.1.0 - html-webpack-plugin: 5.5.0(acorn@8.8.1)(webpack@5.70.0) + html-webpack-plugin: 5.5.0(acorn@8.8.1)(webpack@5.76.3) node-fetch: 2.6.7 process: 0.11.10 react: 17.0.2 @@ -15614,14 +15289,14 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 - style-loader: 2.0.0(webpack@5.70.0) + style-loader: 2.0.0(webpack@5.76.3) telejson: 5.3.3 - terser-webpack-plugin: 5.2.5(acorn@8.8.1)(webpack@5.70.0) + terser-webpack-plugin: 5.2.5(acorn@8.8.1)(webpack@5.76.3) ts-dedent: 2.2.0 typescript: 4.9.5 util-deprecate: 1.0.2 - webpack: 5.70.0(webpack-cli@3.3.12) - webpack-dev-middleware: 4.3.0(webpack@5.70.0) + webpack: 5.76.3(webpack-cli@4.9.2) + webpack-dev-middleware: 4.3.0(webpack@5.76.3) webpack-virtual-modules: 0.4.3 transitivePeerDependencies: - '@swc/core' @@ -15909,8 +15584,8 @@ packages: qs: 6.10.3 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-router: 6.2.2(react@17.0.2) - react-router-dom: 6.2.2(react-dom@17.0.2)(react@17.0.2) + react-router: 6.3.0(react@17.0.2) + react-router-dom: 6.3.0(react-dom@17.0.2)(react@17.0.2) ts-dedent: 2.2.0 dev: true @@ -16470,8 +16145,8 @@ packages: /@types/aria-query@4.2.2: resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} - /@types/aws-lambda@8.10.115: - resolution: {integrity: sha512-kCZuFXKLV3y8NjSoaD5+qKTpRWvPz3uh3W/u1uwlw3Mg+MtaStg1NWgjAwUXo/VJDb6n6KF1ljykFNlNwEJ53Q==} + /@types/aws-lambda@8.10.114: + resolution: {integrity: sha512-M8WpEGfC9iQ6V2Ccq6nGIXoQgeVc6z0Ngk8yCOL5V/TYIxshvb0MWQYLFFTZDesL0zmsoBc4OBjG9DB/4rei6w==} dev: false /@types/babel__core@7.1.16: @@ -16730,8 +16405,8 @@ packages: /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - /@types/jsonwebtoken@9.0.2: - resolution: {integrity: sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==} + /@types/jsonwebtoken@9.0.1: + resolution: {integrity: sha512-c5ltxazpWabia/4UzhIoaDcIza4KViOQhdbjRlfcIGVnsE3c3brkz9Z+F/EeJIECOQP7W7US2hNE930cWWkPiw==} dependencies: '@types/node': 16.18.21 dev: false @@ -17140,7 +16815,7 @@ packages: /@types/wordpress__data-controls@2.2.0: resolution: {integrity: sha512-arDQ6Sds47Lq3ZZwgCrG1QTQjBIJPhv0vpJhv8zWXSINkL/Ourus0k4y+WkgnNT1aSpTSdrISrDlAwwPuy6usw==} dependencies: - '@types/wordpress__data': 6.0.2 + '@types/wordpress__data': 6.0.0 '@wordpress/api-fetch': 5.2.6 dev: true @@ -17865,7 +17540,7 @@ packages: webpack-cli: 4.x.x dependencies: webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) - webpack-cli: 4.9.2(webpack@5.76.3) + webpack-cli: 4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3) dev: true /@webpack-cli/info@1.4.1(webpack-cli@4.9.2): @@ -17885,7 +17560,7 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.9.2(webpack@5.76.3) + webpack-cli: 4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3) dev: true /@webpack-cli/serve@1.6.1(webpack-cli@4.9.2)(webpack-dev-server@4.12.0): @@ -18046,7 +17721,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.9 - '@babel/runtime': 7.17.7 + '@babel/runtime': 7.21.0 dev: true /@wordpress/babel-plugin-import-jsx-pragma@2.7.0(@babel/core@7.21.3): @@ -18095,7 +17770,7 @@ packages: '@babel/plugin-transform-react-jsx': 7.16.0(@babel/core@7.12.9) '@babel/plugin-transform-runtime': 7.16.4(@babel/core@7.12.9) '@babel/preset-env': 7.16.11(@babel/core@7.12.9) - '@babel/runtime': 7.17.7 + '@babel/runtime': 7.21.0 '@wordpress/browserslist-config': 2.7.0 babel-core: 7.0.0-bridge.0(@babel/core@7.12.9) transitivePeerDependencies: @@ -18138,7 +17813,6 @@ packages: core-js: 3.29.1 transitivePeerDependencies: - supports-color - dev: false /@wordpress/babel-preset-default@6.6.1: resolution: {integrity: sha512-eqw6u6ndjbseWOQju9TpnXho6eimtGMlfRwPv1kO3yHV7EXDRw0p5MRMmoN29+lSG1b3MtSj6k9XwYNW0YF/qw==} @@ -18194,6 +17868,7 @@ packages: engines: {node: '>=12'} dependencies: '@babel/runtime': 7.21.0 + dev: false /@wordpress/blob@3.28.0: resolution: {integrity: sha512-Nf9nd8+uzmYu2/yObQLKukCxRORS/KgSBpGiDMRoEOZv8kGOLmwqyCXdx5oEc46yjytOW0v3D8Vt3M79R/0LNw==} @@ -18381,7 +18056,7 @@ packages: '@react-spring/web': 9.5.5(react-dom@17.0.2)(react@17.0.2) '@wordpress/a11y': 3.28.0 '@wordpress/api-fetch': 6.25.0 - '@wordpress/blob': 3.19.0 + '@wordpress/blob': 3.28.0 '@wordpress/blocks': 11.18.0(react@17.0.2) '@wordpress/components': 20.0.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) '@wordpress/compose': 5.17.0(react@17.0.2) @@ -18394,17 +18069,17 @@ packages: '@wordpress/html-entities': 3.28.0 '@wordpress/i18n': 4.31.0 '@wordpress/icons': 9.19.0 - '@wordpress/is-shallow-equal': 4.19.0 + '@wordpress/is-shallow-equal': 4.28.0 '@wordpress/keyboard-shortcuts': 3.17.0(react@17.0.2) '@wordpress/keycodes': 3.31.0 '@wordpress/notices': 3.28.0(react@17.0.2) '@wordpress/rich-text': 5.17.0(react@17.0.2) - '@wordpress/shortcode': 3.19.0 + '@wordpress/shortcode': 3.28.0 '@wordpress/style-engine': 0.15.0 - '@wordpress/token-list': 2.19.0 + '@wordpress/token-list': 2.28.0 '@wordpress/url': 3.29.0 - '@wordpress/warning': 2.19.0 - '@wordpress/wordcount': 3.19.0 + '@wordpress/warning': 2.34.0 + '@wordpress/wordcount': 3.28.0 change-case: 4.1.2 classnames: 2.3.1 colord: 2.9.2 @@ -18434,7 +18109,7 @@ packages: '@react-spring/web': 9.5.5(react-dom@17.0.2)(react@17.0.2) '@wordpress/a11y': 3.28.0 '@wordpress/api-fetch': 6.25.0 - '@wordpress/blob': 3.19.0 + '@wordpress/blob': 3.28.0 '@wordpress/blocks': 11.18.0(react@17.0.2) '@wordpress/components': 20.0.0(@babel/core@7.21.3)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2) '@wordpress/compose': 5.17.0(react@17.0.2) @@ -18447,17 +18122,17 @@ packages: '@wordpress/html-entities': 3.28.0 '@wordpress/i18n': 4.31.0 '@wordpress/icons': 9.19.0 - '@wordpress/is-shallow-equal': 4.19.0 + '@wordpress/is-shallow-equal': 4.28.0 '@wordpress/keyboard-shortcuts': 3.17.0(react@17.0.2) '@wordpress/keycodes': 3.31.0 '@wordpress/notices': 3.28.0(react@17.0.2) '@wordpress/rich-text': 5.17.0(react@17.0.2) - '@wordpress/shortcode': 3.19.0 + '@wordpress/shortcode': 3.28.0 '@wordpress/style-engine': 0.15.0 - '@wordpress/token-list': 2.19.0 + '@wordpress/token-list': 2.28.0 '@wordpress/url': 3.29.0 - '@wordpress/warning': 2.19.0 - '@wordpress/wordcount': 3.19.0 + '@wordpress/warning': 2.34.0 + '@wordpress/wordcount': 3.28.0 change-case: 4.1.2 classnames: 2.3.1 colord: 2.9.2 @@ -19500,6 +19175,18 @@ packages: json2php: 0.0.4 webpack: 5.70.0(webpack-cli@3.3.12) webpack-sources: 3.2.3 + dev: false + + /@wordpress/dependency-extraction-webpack-plugin@3.4.1(webpack@5.76.3): + resolution: {integrity: sha512-QtF3RS2eoPl3LBxur3Rt7hFzBqhrSNU5WR/nRn1FUBx+AJ5zuEO8fY/lhqyJ2cCM2irRTrrUfey3NQoerd6GBA==} + engines: {node: '>=12'} + peerDependencies: + webpack: ^4.8.3 || ^5.0.0 + dependencies: + json2php: 0.0.4 + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) + webpack-sources: 3.2.3 + dev: true /@wordpress/dependency-extraction-webpack-plugin@4.17.0(webpack@5.76.3): resolution: {integrity: sha512-vSWYcjHwdQrnvw6XeYfxRFLGZBEKR3IU82ahfiUEb0doomlR/ulZbnIZdC22Xo0KuQkvTSHEx71yhnvyKYolBg==} @@ -20126,12 +19813,6 @@ packages: dependencies: '@babel/runtime': 7.21.0 - /@wordpress/is-shallow-equal@4.19.0: - resolution: {integrity: sha512-/9DPUHJqX7QU7XuN67JHp/B3y1lqutb+UAJ+abT4fW9tCOoIRpPnBYAfqI6sNh7a/CQo1/FnCmOqfvzTb2U5dQ==} - engines: {node: '>=12'} - dependencies: - '@babel/runtime': 7.21.0 - /@wordpress/is-shallow-equal@4.28.0: resolution: {integrity: sha512-RN6ME/m+HJ3BwwpSJBG7kl7SSJgCkaJ7MR7v27vRRvzt9iAiGbv7s5wq2P1WiwX7xqCViRYDC3HVGbwqB7miAA==} engines: {node: '>=12'} @@ -20411,15 +20092,6 @@ packages: npm-package-json-lint: 5.4.2 dev: true - /@wordpress/npm-package-json-lint-config@4.2.0(npm-package-json-lint@5.4.2): - resolution: {integrity: sha512-eU7n1NsddAY0uooxe+oWtfWKxpZB9s8LBRvv6WxoFyA9eetxyvauaTrvvYhzgjxxdd5swTCPLvSR+jbkVYkuQw==} - engines: {node: '>=14'} - peerDependencies: - npm-package-json-lint: '>=3.6.0' - dependencies: - npm-package-json-lint: 5.4.2 - dev: true - /@wordpress/plugins@4.4.3(react@17.0.2): resolution: {integrity: sha512-/rUkBpHRc/5hXu4qNKjF0PfKqslMz3ZME2VhX1kfF6BVZmnMwkDNLjvS4vRpeQ9hG8FKqWQBZvmsqs2LKbFd9A==} engines: {node: '>=12'} @@ -20446,17 +20118,6 @@ packages: postcss-custom-properties: 10.0.0 dev: true - /@wordpress/postcss-plugins-preset@3.6.1(postcss@8.4.12): - resolution: {integrity: sha512-q/pTHuBaxwJQuT8sngj1X1R6/YETqTrc4UmWLuYJt0RDRh31NukEwbWHKEDqOOA7aEDxEBuyPA7EKiffGxYbrQ==} - engines: {node: '>=12'} - peerDependencies: - postcss: ^8.0.0 - dependencies: - '@wordpress/base-styles': 4.3.1 - autoprefixer: 10.4.4(postcss@8.4.12) - postcss: 8.4.12 - dev: true - /@wordpress/postcss-plugins-preset@3.6.1(postcss@8.4.21): resolution: {integrity: sha512-q/pTHuBaxwJQuT8sngj1X1R6/YETqTrc4UmWLuYJt0RDRh31NukEwbWHKEDqOOA7aEDxEBuyPA7EKiffGxYbrQ==} engines: {node: '>=12'} @@ -20466,7 +20127,6 @@ packages: '@wordpress/base-styles': 4.3.1 autoprefixer: 10.4.4(postcss@8.4.21) postcss: 8.4.21 - dev: false /@wordpress/postcss-plugins-preset@4.18.0(postcss@8.4.21): resolution: {integrity: sha512-1Z/yahgumc55tNHI3yJQgDPti5oQ4DCRSeit0aT3d6817nddzWp7WwW3FJj29hyvlRT9XbQmc6g32EJtiwu+dQ==} @@ -20533,15 +20193,6 @@ packages: prettier: /wp-prettier@2.2.1-beta-1 dev: true - /@wordpress/prettier-config@2.17.0(wp-prettier@2.6.2): - resolution: {integrity: sha512-g4TEQIRDwNW/O8cAf895YV8a3eFfJr7RNLjqu70r8JFH4jmt2clJNu/9nxRburBxJZwqQnykrnDUz0HvXSbcsA==} - engines: {node: '>=14'} - peerDependencies: - prettier: '>=2' - dependencies: - prettier: /wp-prettier@2.6.2 - dev: true - /@wordpress/prettier-config@2.17.0(wp-prettier@2.8.5): resolution: {integrity: sha512-g4TEQIRDwNW/O8cAf895YV8a3eFfJr7RNLjqu70r8JFH4jmt2clJNu/9nxRburBxJZwqQnykrnDUz0HvXSbcsA==} engines: {node: '>=14'} @@ -20797,30 +20448,30 @@ packages: - webpack-command dev: true - /@wordpress/scripts@19.2.4(@babel/core@7.21.3)(acorn@8.8.1)(debug@4.3.4)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(uglify-js@3.14.5): + /@wordpress/scripts@19.2.4(@babel/core@7.21.3)(acorn@8.8.1)(debug@4.3.3)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(uglify-js@3.14.5): resolution: {integrity: sha512-klkfjBOPfr/RT/3Tvmx+gLbZ+dxq5L0dJQHCHxEURMRW/A8SfJJPtmC29L9sE1KhO3zUMWxrkn2L6HhSzbvQbA==} engines: {node: '>=12.13', npm: '>=6.9'} hasBin: true dependencies: '@svgr/webpack': 5.5.0 - '@wordpress/babel-preset-default': 6.6.1 + '@wordpress/babel-preset-default': 6.17.0 '@wordpress/browserslist-config': 4.1.3 - '@wordpress/dependency-extraction-webpack-plugin': 3.4.1(webpack@5.70.0) + '@wordpress/dependency-extraction-webpack-plugin': 3.4.1(webpack@5.76.3) '@wordpress/eslint-plugin': 9.3.0(@babel/core@7.21.3)(eslint@7.32.0)(typescript@4.9.5) '@wordpress/jest-preset-default': 7.1.3(@babel/core@7.21.3)(jest@26.6.3)(react-dom@17.0.2)(react@17.0.2) - '@wordpress/npm-package-json-lint-config': 4.2.0(npm-package-json-lint@5.4.2) - '@wordpress/postcss-plugins-preset': 3.6.1(postcss@8.4.12) + '@wordpress/npm-package-json-lint-config': 4.19.0(npm-package-json-lint@5.4.2) + '@wordpress/postcss-plugins-preset': 3.6.1(postcss@8.4.21) '@wordpress/prettier-config': 1.4.0(wp-prettier@2.2.1-beta-1) - '@wordpress/stylelint-config': 19.1.0(stylelint@13.13.1) + '@wordpress/stylelint-config': 19.1.0(stylelint@13.8.0) babel-jest: 26.6.3(@babel/core@7.21.3) - babel-loader: 8.2.3(@babel/core@7.21.3)(webpack@5.70.0) - browserslist: 4.20.4 + babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@5.76.3) + browserslist: 4.19.3 chalk: 4.1.2 check-node-version: 4.2.1 - clean-webpack-plugin: 3.0.0(webpack@5.70.0) + clean-webpack-plugin: 3.0.0(webpack@5.76.3) cross-spawn: 5.1.0 - css-loader: 6.7.1(webpack@5.70.0) - cssnano: 5.1.13(postcss@8.4.12) + css-loader: 6.7.3(webpack@5.76.3) + cssnano: 5.1.13(postcss@8.4.21) cwd: 0.10.0 dir-glob: 3.0.1 eslint: 7.32.0 @@ -20829,114 +20480,30 @@ packages: filenamify: 4.3.0 jest: 26.6.3 jest-circus: 26.6.3 - jest-dev-server: 5.0.3(debug@4.3.4) + jest-dev-server: 5.0.3(debug@4.3.3) jest-environment-node: 26.6.2 markdownlint: 0.23.1 markdownlint-cli: 0.27.1 merge-deep: 3.0.3 - mini-css-extract-plugin: 2.6.0(webpack@5.70.0) - minimist: 1.2.5 + mini-css-extract-plugin: 2.6.0(webpack@5.76.3) + minimist: 1.2.8 npm-package-json-lint: 5.4.2 - postcss: 8.4.12 - postcss-loader: 6.2.1(postcss@8.4.12)(webpack@5.70.0) + postcss: 8.4.21 + postcss-loader: 6.2.1(postcss@8.4.21)(webpack@5.76.3) prettier: /wp-prettier@2.2.1-beta-1 puppeteer-core: 10.4.0 read-pkg-up: 1.0.1 resolve-bin: 0.4.3 - sass: 1.49.9 - sass-loader: 12.6.0(sass@1.49.9)(webpack@5.70.0) - source-map-loader: 3.0.1(webpack@5.70.0) - stylelint: 13.13.1 - terser-webpack-plugin: 5.2.5(acorn@8.8.1)(uglify-js@3.14.5)(webpack@5.70.0) - url-loader: 4.1.1(webpack@5.70.0) - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) + sass: 1.60.0 + sass-loader: 12.6.0(sass@1.60.0)(webpack@5.76.3) + source-map-loader: 3.0.1(webpack@5.76.3) + stylelint: 13.8.0 + terser-webpack-plugin: 5.2.5(acorn@8.8.1)(uglify-js@3.14.5)(webpack@5.76.3) + url-loader: 4.1.1(webpack@5.76.3) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) webpack-bundle-analyzer: 4.6.1 - webpack-cli: 4.9.2(webpack@5.76.3) - webpack-livereload-plugin: 3.0.2(webpack@5.70.0) - transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@webpack-cli/generators' - - '@webpack-cli/migrate' - - acorn - - bufferutil - - canvas - - debug - - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - fibers - - file-loader - - node-sass - - postcss-jsx - - postcss-markdown - - react - - react-dom - - sass-embedded - - supports-color - - ts-node - - typescript - - uglify-js - - utf-8-validate - - webpack-dev-server - dev: true - - /@wordpress/scripts@19.2.4(@babel/core@7.21.3)(acorn@8.8.1)(react-dom@17.0.2)(react@17.0.2)(typescript@4.9.5)(uglify-js@3.14.5): - resolution: {integrity: sha512-klkfjBOPfr/RT/3Tvmx+gLbZ+dxq5L0dJQHCHxEURMRW/A8SfJJPtmC29L9sE1KhO3zUMWxrkn2L6HhSzbvQbA==} - engines: {node: '>=12.13', npm: '>=6.9'} - hasBin: true - dependencies: - '@svgr/webpack': 5.5.0 - '@wordpress/babel-preset-default': 6.6.1 - '@wordpress/browserslist-config': 4.1.3 - '@wordpress/dependency-extraction-webpack-plugin': 3.4.1(webpack@5.70.0) - '@wordpress/eslint-plugin': 9.3.0(@babel/core@7.21.3)(eslint@7.32.0)(typescript@4.9.5) - '@wordpress/jest-preset-default': 7.1.3(@babel/core@7.21.3)(jest@26.6.3)(react-dom@17.0.2)(react@17.0.2) - '@wordpress/npm-package-json-lint-config': 4.2.0(npm-package-json-lint@5.4.2) - '@wordpress/postcss-plugins-preset': 3.6.1(postcss@8.4.12) - '@wordpress/prettier-config': 1.4.0(wp-prettier@2.2.1-beta-1) - '@wordpress/stylelint-config': 19.1.0(stylelint@13.13.1) - babel-jest: 26.6.3(@babel/core@7.21.3) - babel-loader: 8.2.3(@babel/core@7.21.3)(webpack@5.70.0) - browserslist: 4.20.4 - chalk: 4.1.2 - check-node-version: 4.2.1 - clean-webpack-plugin: 3.0.0(webpack@5.70.0) - cross-spawn: 5.1.0 - css-loader: 6.7.1(webpack@5.70.0) - cssnano: 5.1.13(postcss@8.4.12) - cwd: 0.10.0 - dir-glob: 3.0.1 - eslint: 7.32.0 - eslint-plugin-markdown: 2.2.1(eslint@7.32.0) - expect-puppeteer: 4.4.0 - filenamify: 4.3.0 - jest: 26.6.3 - jest-circus: 26.6.3 - jest-dev-server: 5.0.3 - jest-environment-node: 26.6.2 - markdownlint: 0.23.1 - markdownlint-cli: 0.27.1 - merge-deep: 3.0.3 - mini-css-extract-plugin: 2.6.0(webpack@5.70.0) - minimist: 1.2.5 - npm-package-json-lint: 5.4.2 - postcss: 8.4.12 - postcss-loader: 6.2.1(postcss@8.4.12)(webpack@5.70.0) - prettier: /wp-prettier@2.2.1-beta-1 - puppeteer-core: 10.4.0 - read-pkg-up: 1.0.1 - resolve-bin: 0.4.3 - sass: 1.49.9 - sass-loader: 12.6.0(sass@1.49.9)(webpack@5.70.0) - source-map-loader: 3.0.1(webpack@5.70.0) - stylelint: 13.13.1 - terser-webpack-plugin: 5.2.5(acorn@8.8.1)(uglify-js@3.14.5)(webpack@5.70.0) - url-loader: 4.1.1(webpack@5.70.0) - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) - webpack-bundle-analyzer: 4.6.1 - webpack-cli: 4.9.2(webpack@5.76.3) - webpack-livereload-plugin: 3.0.2(webpack@5.70.0) + webpack-cli: 4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3) + webpack-livereload-plugin: 3.0.2(webpack@5.76.3) transitivePeerDependencies: - '@babel/core' - '@swc/core' @@ -21029,7 +20596,7 @@ packages: url-loader: 4.1.1(webpack@5.76.3) webpack: 5.76.3(webpack-cli@4.9.2) webpack-bundle-analyzer: 4.6.1 - webpack-cli: 4.9.2(webpack@5.76.3) + webpack-cli: 4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3) webpack-dev-server: 4.12.0(webpack-cli@4.9.2)(webpack@5.76.3) transitivePeerDependencies: - '@swc/core' @@ -21121,13 +20688,6 @@ packages: - vite dev: false - /@wordpress/shortcode@3.19.0: - resolution: {integrity: sha512-YbxLKyg+VfndHI2QRg359tiqvMJFo4n4DyYnqkNB/YFo7U15ceq67bULxFhHeWIeuxho/p8sobWwC2XaYrQX/w==} - engines: {node: '>=12'} - dependencies: - '@babel/runtime': 7.21.0 - memize: 1.1.0 - /@wordpress/shortcode@3.28.0: resolution: {integrity: sha512-Il9NMftqN2WCMqrTxHFyKPnyQc1T80mCU34cTRvR5ZbZMrWNDDdYKMIYwmFc4ehcdWvddkMSPB8JA0ZNbw8NbA==} engines: {node: '>=12'} @@ -21208,18 +20768,11 @@ packages: - postcss dev: true - /@wordpress/token-list@2.19.0: - resolution: {integrity: sha512-YZlKrI0R/MtNg1r6FJcXftpumqY7ymvycCYHCQwS3HN2ddacVvFCi46FDRaB2nLZ8y4BnqS3/6PVMLUI25DuXQ==} - engines: {node: '>=12'} - dependencies: - '@babel/runtime': 7.21.0 - /@wordpress/token-list@2.28.0: resolution: {integrity: sha512-MLe7/Ma5BcFzz62ObRwvNFQakdBHCqNkOHLS/PBmWpDSi4Y9+qvICdEn8Od3d0RkPdjupBdtF1ZBeYoaL04K2Q==} engines: {node: '>=12'} dependencies: '@babel/runtime': 7.21.0 - dev: false /@wordpress/url@2.22.2(react-native@0.70.0): resolution: {integrity: sha512-aqpYKQXzyzkCOm+GzZRYlLb+wh58g0cwR1PaKAl0UXaBS4mdS+X6biMriylb4P8CVC/RR7CSw5XI20JC24KDwQ==} @@ -21287,14 +20840,9 @@ packages: resolution: {integrity: sha512-MjrkSp6Jyfx+92AE32A83P503noUtGb6//BYUH4GiWzzzSNhDHgbQ0UcOJwJaEYK166DxSNpMk/JXc4YENi1Cw==} dev: true - /@wordpress/warning@2.19.0: - resolution: {integrity: sha512-ED4/KYJ6quTltbJdYADzWHyuaqVJH0MkU7nlHYU0SMsbsP+seQTA6ItKIBwF3bgOe6NgpWxLXI6Q/zDkOzSzTA==} - engines: {node: '>=12'} - /@wordpress/warning@2.28.0: resolution: {integrity: sha512-6EnZBKHGJsCcgbYOqD/JX3R5B48u3Zmm3Ha1vUpJE9rIHjq8ALM9zG2bYqkTw4mieEs5TvlDOkS3tYoH+S+wsQ==} engines: {node: '>=12'} - dev: false /@wordpress/warning@2.34.0: resolution: {integrity: sha512-y1zYJjj0oydNrET+xD2ji6O4OA7MN+ugqSYvkuITMf+0tcPZfH4BdW0wMQgy1QjDGd6HPH8C3xH4Omhn+NFr5g==} @@ -21304,18 +20852,11 @@ packages: resolution: {integrity: sha512-Xs37x0IkvNewPNKs1A8cnw5xLb+AqwUqqCsH4+5Sjat5GDqP86mHgLfRIlE4d6fBYg+q6tO7DVPG49TT3/wzgA==} engines: {node: '>=12'} - /@wordpress/wordcount@3.19.0: - resolution: {integrity: sha512-x5M997RMrglq/XiGi55sO4fIPrGu20bob6h5goc9NKbbq68NTTDPrznfRbhQ+gTLLEV79AtUO/RPK3y9V9Pvkw==} - engines: {node: '>=12'} - dependencies: - '@babel/runtime': 7.21.0 - /@wordpress/wordcount@3.28.0: resolution: {integrity: sha512-SMgmLGeazocSxNpagXav8/6sRMuldH/EgCPmdXK6SKr4tJb8JbKINW74U208c7IBpRG0GjR+1JNyq6jikT/K4g==} engines: {node: '>=12'} dependencies: '@babel/runtime': 7.21.0 - dev: false /@xstate/graph@1.4.2(xstate@4.37.1): resolution: {integrity: sha512-XIh6opCf9ukXRj4dXe2fv2kwFFUl15B5Ob8ELNOOqDXB2BPyNwp6TaLe5KJn/na3gzC9B7LyOo+2d0dPkC8PWQ==} @@ -21479,11 +21020,6 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - /acorn@8.7.0: - resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} - engines: {node: '>=0.4.0'} - hasBin: true - /acorn@8.8.1: resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} engines: {node: '>=0.4.0'} @@ -21932,7 +21468,7 @@ packages: dev: false /array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + resolution: {integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=} engines: {node: '>=0.10.0'} dev: true @@ -22202,21 +21738,13 @@ packages: - supports-color dev: true - /axios@0.21.4: + /axios@0.21.4(debug@4.3.3): resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: follow-redirects: 1.14.7(debug@4.3.3) transitivePeerDependencies: - debug - /axios@0.21.4(debug@4.3.4): - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} - dependencies: - follow-redirects: 1.14.7(debug@4.3.4) - transitivePeerDependencies: - - debug - dev: true - /axios@0.24.0: resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} dependencies: @@ -22251,12 +21779,12 @@ packages: '@babel/core': 7.12.9 dev: true - /babel-core@7.0.0-bridge.0(@babel/core@7.17.8): + /babel-core@7.0.0-bridge.0(@babel/core@7.21.3): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.8 + '@babel/core': 7.21.3 /babel-eslint@10.1.0(eslint@7.32.0): resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} @@ -22265,13 +21793,13 @@ packages: peerDependencies: eslint: '>= 4.12.1' dependencies: - '@babel/code-frame': 7.16.7 - '@babel/parser': 7.17.8 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.21.3 + '@babel/traverse': 7.21.3 + '@babel/types': 7.22.4 eslint: 7.32.0 eslint-visitor-keys: 1.3.0 - resolve: 1.20.0 + resolve: 1.22.1 transitivePeerDependencies: - supports-color dev: true @@ -22490,7 +22018,7 @@ packages: webpack: 5.70.0(webpack-cli@4.9.2) dev: true - /babel-loader@8.2.3(@babel/core@7.21.3)(webpack@5.70.0): + /babel-loader@8.2.3(@babel/core@7.21.3)(webpack@5.76.3): resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==} engines: {node: '>= 8.9'} peerDependencies: @@ -22502,7 +22030,7 @@ packages: loader-utils: 1.4.0 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /babel-loader@8.3.0(@babel/core@7.12.9)(webpack@5.76.3): @@ -22517,7 +22045,7 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.76.3 + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /babel-loader@8.3.0(@babel/core@7.17.8)(webpack@4.46.0): @@ -22562,7 +22090,7 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.76.3(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true /babel-messages@6.23.0: @@ -22762,19 +22290,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.17.8): - resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.21.0 - '@babel/core': 7.17.8 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.8) - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.3): resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -22787,18 +22302,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.17.8): - resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.17.8) - core-js-compat: 3.25.5 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.21.3): resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: @@ -22882,18 +22385,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.17.8): - resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.8) - core-js-compat: 3.25.5 - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.3): resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -22948,17 +22439,6 @@ packages: transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.17.8): - resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.17.8) - transitivePeerDependencies: - - supports-color - dev: true - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.3): resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -24410,17 +23890,6 @@ packages: webpack: 4.46.0(webpack-cli@3.3.12) dev: true - /clean-webpack-plugin@3.0.0(webpack@5.70.0): - resolution: {integrity: sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==} - engines: {node: '>=8.9.0'} - peerDependencies: - webpack: '*' - dependencies: - '@types/webpack': 4.41.32 - del: 4.1.1 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) - dev: true - /clean-webpack-plugin@3.0.0(webpack@5.76.3): resolution: {integrity: sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==} engines: {node: '>=8.9.0'} @@ -24429,7 +23898,7 @@ packages: dependencies: '@types/webpack': 4.41.32 del: 4.1.1 - webpack: 5.76.3(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true /cli-boxes@1.0.0: @@ -25080,7 +24549,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.76.3 + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /copy-webpack-plugin@9.1.0(webpack@5.70.0): @@ -25098,6 +24567,21 @@ packages: webpack: 5.70.0(webpack-cli@3.3.12) dev: true + /copy-webpack-plugin@9.1.0(webpack@5.76.3): + resolution: {integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.1.0 + dependencies: + fast-glob: 3.2.11 + glob-parent: 6.0.2 + globby: 11.1.0 + normalize-path: 3.0.0 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + webpack: 5.76.3(webpack-cli@3.3.12) + dev: true + /core-js-compat@3.19.1: resolution: {integrity: sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==} dependencies: @@ -25277,7 +24761,7 @@ packages: - encoding /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=} dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -25347,15 +24831,6 @@ packages: postcss: 7.0.39 timsort: 0.3.0 - /css-declaration-sorter@6.3.1(postcss@8.4.12): - resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==} - engines: {node: ^10 || ^12 || >=14} - peerDependencies: - postcss: ^8.0.9 - dependencies: - postcss: 8.4.12 - dev: true - /css-declaration-sorter@6.3.1(postcss@8.4.21): resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==} engines: {node: ^10 || ^12 || >=14} @@ -25413,7 +24888,29 @@ packages: semver: 6.3.0 webpack: 5.70.0(webpack-cli@3.3.12) - /css-loader@5.2.7(webpack@5.70.0): + /css-loader@3.6.0(webpack@5.76.3): + resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} + engines: {node: '>= 8.9.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + camelcase: 5.3.1 + cssesc: 3.0.0 + icss-utils: 4.1.1 + loader-utils: 1.4.0 + normalize-path: 3.0.0 + postcss: 7.0.39 + postcss-modules-extract-imports: 2.0.0 + postcss-modules-local-by-default: 3.0.3 + postcss-modules-scope: 2.2.0 + postcss-modules-values: 3.0.0 + postcss-value-parser: 4.2.0 + schema-utils: 2.7.1 + semver: 6.3.0 + webpack: 5.76.3(webpack-cli@3.3.12) + dev: true + + /css-loader@5.2.7(webpack@5.76.3): resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -25429,7 +24926,7 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.5.0 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /css-loader@6.7.1(webpack@5.70.0): @@ -25438,12 +24935,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.12) - postcss: 8.4.12 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.12) - postcss-modules-local-by-default: 4.0.0(postcss@8.4.12) - postcss-modules-scope: 3.0.0(postcss@8.4.12) - postcss-modules-values: 4.0.0(postcss@8.4.12) + icss-utils: 5.1.0(postcss@8.4.21) + postcss: 8.4.21 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.21) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.21) + postcss-modules-scope: 3.0.0(postcss@8.4.21) + postcss-modules-values: 4.0.0(postcss@8.4.21) postcss-value-parser: 4.2.0 semver: 7.3.8 webpack: 5.70.0(webpack-cli@4.9.2) @@ -25463,7 +24960,7 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.21) postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.76.3 + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /css-select-base-adapter@0.1.1: @@ -25558,44 +25055,6 @@ packages: postcss-svgo: 4.0.3 postcss-unique-selectors: 4.0.1 - /cssnano-preset-default@5.2.12(postcss@8.4.12): - resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - css-declaration-sorter: 6.3.1(postcss@8.4.12) - cssnano-utils: 3.1.0(postcss@8.4.12) - postcss: 8.4.12 - postcss-calc: 8.2.4(postcss@8.4.12) - postcss-colormin: 5.3.0(postcss@8.4.12) - postcss-convert-values: 5.1.2(postcss@8.4.12) - postcss-discard-comments: 5.1.2(postcss@8.4.12) - postcss-discard-duplicates: 5.1.0(postcss@8.4.12) - postcss-discard-empty: 5.1.1(postcss@8.4.12) - postcss-discard-overridden: 5.1.0(postcss@8.4.12) - postcss-merge-longhand: 5.1.6(postcss@8.4.12) - postcss-merge-rules: 5.1.2(postcss@8.4.12) - postcss-minify-font-values: 5.1.0(postcss@8.4.12) - postcss-minify-gradients: 5.1.1(postcss@8.4.12) - postcss-minify-params: 5.1.3(postcss@8.4.12) - postcss-minify-selectors: 5.2.1(postcss@8.4.12) - postcss-normalize-charset: 5.1.0(postcss@8.4.12) - postcss-normalize-display-values: 5.1.0(postcss@8.4.12) - postcss-normalize-positions: 5.1.1(postcss@8.4.12) - postcss-normalize-repeat-style: 5.1.1(postcss@8.4.12) - postcss-normalize-string: 5.1.0(postcss@8.4.12) - postcss-normalize-timing-functions: 5.1.0(postcss@8.4.12) - postcss-normalize-unicode: 5.1.0(postcss@8.4.12) - postcss-normalize-url: 5.1.0(postcss@8.4.12) - postcss-normalize-whitespace: 5.1.1(postcss@8.4.12) - postcss-ordered-values: 5.1.3(postcss@8.4.12) - postcss-reduce-initial: 5.1.0(postcss@8.4.12) - postcss-reduce-transforms: 5.1.0(postcss@8.4.12) - postcss-svgo: 5.1.0(postcss@8.4.12) - postcss-unique-selectors: 5.1.1(postcss@8.4.12) - dev: true - /cssnano-preset-default@5.2.12(postcss@8.4.21): resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} engines: {node: ^10 || ^12 || >=14.0} @@ -25652,15 +25111,6 @@ packages: resolution: {integrity: sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==} engines: {node: '>=6.9.0'} - /cssnano-utils@3.1.0(postcss@8.4.12): - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - dev: true - /cssnano-utils@3.1.0(postcss@8.4.21): resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} engines: {node: ^10 || ^12 || >=14.0} @@ -25679,18 +25129,6 @@ packages: is-resolvable: 1.1.0 postcss: 7.0.39 - /cssnano@5.1.13(postcss@8.4.12): - resolution: {integrity: sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - cssnano-preset-default: 5.2.12(postcss@8.4.12) - lilconfig: 2.0.5 - postcss: 8.4.12 - yaml: 1.10.2 - dev: true - /cssnano@5.1.13(postcss@8.4.21): resolution: {integrity: sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==} engines: {node: ^10 || ^12 || >=14.0} @@ -25995,8 +25433,12 @@ packages: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} + /decimal.js@10.3.1: + resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==} + /decimal.js@10.4.3: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + dev: true /decode-uri-component@0.2.0: resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} @@ -26296,7 +25738,7 @@ packages: dev: false /discontinuous-range@1.0.0: - resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==} + resolution: {integrity: sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=} /dns-equal@1.0.0: resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} @@ -28743,18 +28185,6 @@ packages: dependencies: debug: 4.3.3 - /follow-redirects@1.14.7(debug@4.3.4): - resolution: {integrity: sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==} - engines: {node: '>=4.0'} - peerDependencies: - debug: '*' - peerDependenciesMeta: - debug: - optional: true - dependencies: - debug: 4.3.4(supports-color@9.2.2) - dev: true - /follow-redirects@1.5.10: resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==} engines: {node: '>=4.0'} @@ -28856,7 +28286,7 @@ packages: chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 6.0.0 - deepmerge: 4.2.2 + deepmerge: 4.3.0 eslint: 8.32.0 fs-extra: 9.1.0 glob: 7.2.3 @@ -28901,6 +28331,38 @@ packages: webpack: 5.70.0(webpack-cli@4.9.2) dev: true + /fork-ts-checker-webpack-plugin@6.5.0(eslint@8.32.0)(typescript@4.9.5)(webpack@5.76.3): + resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.18.6 + '@types/json-schema': 7.0.9 + chalk: 4.1.2 + chokidar: 3.5.3 + cosmiconfig: 6.0.0 + deepmerge: 4.3.0 + eslint: 8.32.0 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.3.0 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.5.0 + tapable: 1.1.3 + typescript: 4.9.5 + webpack: 5.76.3(webpack-cli@4.9.2) + dev: true + /form-data@2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} @@ -29360,10 +28822,10 @@ packages: hasBin: true dependencies: foreground-child: 3.1.1 - jackspeak: 2.2.1 - minimatch: 9.0.1 - minipass: 6.0.2 - path-scurry: 1.9.2 + jackspeak: 2.2.0 + minimatch: 9.0.0 + minipass: 6.0.1 + path-scurry: 1.9.1 dev: false /glob@10.2.7: @@ -29372,10 +28834,10 @@ packages: hasBin: true dependencies: foreground-child: 3.1.1 - jackspeak: 2.2.1 + jackspeak: 2.2.0 minimatch: 9.0.1 minipass: 6.0.2 - path-scurry: 1.9.2 + path-scurry: 1.9.1 dev: false /glob@5.0.15: @@ -29419,6 +28881,7 @@ packages: minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 + dev: true /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} @@ -30394,7 +29857,7 @@ packages: webpack: 4.46.0(webpack-cli@3.3.12) dev: true - /html-webpack-plugin@5.5.0(acorn@8.8.1)(webpack@5.70.0): + /html-webpack-plugin@5.5.0(acorn@8.8.1)(webpack@5.76.3): resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -30405,7 +29868,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.76.3(webpack-cli@4.9.2) transitivePeerDependencies: - acorn dev: true @@ -30684,15 +30147,6 @@ packages: dependencies: postcss: 7.0.39 - /icss-utils@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: 8.4.12 - dev: true - /icss-utils@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} @@ -31429,7 +30883,7 @@ packages: has-tostringtag: 1.0.0 /is-subset@0.1.1: - resolution: {integrity: sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw==} + resolution: {integrity: sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=} /is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} @@ -31769,8 +31223,8 @@ packages: iterate-iterator: 1.0.2 dev: true - /jackspeak@2.2.1: - resolution: {integrity: sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw==} + /jackspeak@2.2.0: + resolution: {integrity: sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ==} engines: {node: '>=14'} dependencies: '@isaacs/cliui': 8.0.2 @@ -32246,7 +31700,7 @@ packages: - supports-color dev: true - /jest-dev-server@5.0.3: + /jest-dev-server@5.0.3(debug@4.3.3): resolution: {integrity: sha512-aJR3a5KdY18Lsz+VbREKwx2HM3iukiui+J9rlv9o6iYTwZCSsJazSTStcD9K1q0AIF3oA+FqLOKDyo/sc7+fJw==} dependencies: chalk: 4.1.2 @@ -32255,26 +31709,11 @@ packages: prompts: 2.4.2 spawnd: 5.0.0 tree-kill: 1.2.2 - wait-on: 5.3.0 + wait-on: 5.3.0(debug@4.3.3) transitivePeerDependencies: - debug - supports-color - /jest-dev-server@5.0.3(debug@4.3.4): - resolution: {integrity: sha512-aJR3a5KdY18Lsz+VbREKwx2HM3iukiui+J9rlv9o6iYTwZCSsJazSTStcD9K1q0AIF3oA+FqLOKDyo/sc7+fJw==} - dependencies: - chalk: 4.1.2 - cwd: 0.10.0 - find-process: 1.4.7 - prompts: 2.4.2 - spawnd: 5.0.0 - tree-kill: 1.2.2 - wait-on: 5.3.0(debug@4.3.4) - transitivePeerDependencies: - - debug - - supports-color - dev: true - /jest-dev-server@6.2.0: resolution: {integrity: sha512-ZWh8CuvxwjhYfvw4tGeftziqIvw/26R6AG3OTgNTQeXul8aZz48RQjDpnlDwnWX53jxJJl9fcigqIdSU5lYZuw==} dependencies: @@ -32591,7 +32030,7 @@ packages: dependencies: chalk: 4.1.2 cwd: 0.10.0 - jest-dev-server: 5.0.3 + jest-dev-server: 5.0.3(debug@4.3.3) jest-environment-node: 27.5.1 merge-deep: 3.0.3 transitivePeerDependencies: @@ -34136,17 +33575,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.17.8 + '@babel/core': 7.21.3 '@babel/parser': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-modules-commonjs': 7.17.7(@babel/core@7.17.8) + '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-modules-commonjs': 7.17.7(@babel/core@7.21.3) '@babel/preset-env': 7.12.7(@babel/core@7.12.9) - '@babel/preset-flow': 7.16.7(@babel/core@7.17.8) - '@babel/preset-typescript': 7.16.7(@babel/core@7.17.8) - '@babel/register': 7.18.9(@babel/core@7.17.8) - babel-core: 7.0.0-bridge.0(@babel/core@7.17.8) + '@babel/preset-flow': 7.16.7(@babel/core@7.21.3) + '@babel/preset-typescript': 7.16.7(@babel/core@7.21.3) + '@babel/register': 7.18.9(@babel/core@7.21.3) + babel-core: 7.0.0-bridge.0(@babel/core@7.21.3) chalk: 4.1.2 flow-parser: 0.121.0 graceful-fs: 4.2.9 @@ -34165,17 +33604,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.17.8 + '@babel/core': 7.21.3 '@babel/parser': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.17.8) - '@babel/plugin-transform-modules-commonjs': 7.17.7(@babel/core@7.17.8) + '@babel/plugin-proposal-class-properties': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-proposal-optional-chaining': 7.16.7(@babel/core@7.21.3) + '@babel/plugin-transform-modules-commonjs': 7.17.7(@babel/core@7.21.3) '@babel/preset-env': 7.20.2(@babel/core@7.21.3) - '@babel/preset-flow': 7.16.7(@babel/core@7.17.8) - '@babel/preset-typescript': 7.16.7(@babel/core@7.17.8) - '@babel/register': 7.18.9(@babel/core@7.17.8) - babel-core: 7.0.0-bridge.0(@babel/core@7.17.8) + '@babel/preset-flow': 7.16.7(@babel/core@7.21.3) + '@babel/preset-typescript': 7.16.7(@babel/core@7.21.3) + '@babel/register': 7.18.9(@babel/core@7.21.3) + babel-core: 7.0.0-bridge.0(@babel/core@7.21.3) chalk: 4.1.2 flow-parser: 0.121.0 graceful-fs: 4.2.9 @@ -34304,7 +33743,7 @@ packages: cssom: 0.4.4 cssstyle: 2.3.0 data-urls: 2.0.0 - decimal.js: 10.4.3 + decimal.js: 10.3.1 domexception: 2.0.1 escodegen: 2.0.0 form-data: 3.0.1 @@ -34316,7 +33755,7 @@ packages: parse5: 6.0.1 saxes: 5.0.1 symbol-tree: 3.2.4 - tough-cookie: 4.1.3 + tough-cookie: 4.1.2 w3c-hr-time: 1.0.2 w3c-xmlserializer: 2.0.0 webidl-conversions: 6.1.0 @@ -34357,7 +33796,7 @@ packages: parse5: 7.1.2 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.3 + tough-cookie: 4.1.2 w3c-xmlserializer: 4.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 2.0.0 @@ -34916,11 +34355,11 @@ packages: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} /lodash.differencewith@4.5.0: - resolution: {integrity: sha512-/8JFjydAS+4bQuo3CpLMBv7WxGFyk7/etOAsrQUCu0a9QVDemxv0YQ0rFyeZvqlUD314SERfNlgnlqqHmaQ0Cg==} + resolution: {integrity: sha1-uvr7yRi1UVTheRdqALsK76rIVLc=} dev: true /lodash.escape@4.0.1: - resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==} + resolution: {integrity: sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=} /lodash.find@3.2.1: resolution: {integrity: sha1-BG4xnzrOkSrGySRsf2g8XsB7Nq0=} @@ -34934,11 +34373,11 @@ packages: dev: false /lodash.flatten@4.4.0: - resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} + resolution: {integrity: sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=} dev: true /lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + resolution: {integrity: sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=} /lodash.isarguments@3.1.0: resolution: {integrity: sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=} @@ -34949,7 +34388,7 @@ packages: dev: false /lodash.isequal@4.5.0: - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + resolution: {integrity: sha1-QVxEePK8wwEgwizhDtMib30+GOA=} /lodash.istypedarray@3.0.6: resolution: {integrity: sha1-yaR3SYYHUB2OhJTSg7h8OSgc72I=} @@ -35117,8 +34556,8 @@ packages: engines: {node: '>=12'} dev: true - /lru-cache@9.1.2: - resolution: {integrity: sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==} + /lru-cache@9.1.1: + resolution: {integrity: sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==} engines: {node: 14 || >=16.14} dev: false @@ -35244,7 +34683,7 @@ packages: dev: true /map-values@1.0.1: - resolution: {integrity: sha512-BbShUnr5OartXJe1GeccAWtfro11hhgNJg6G9/UtWKjVGvV5U4C09cg5nk8JUevhXODaXY+hQ3xxMUKSs62ONQ==} + resolution: {integrity: sha1-douOecAJvytk/ugG4ip7HEGQyZA=} dev: true /map-visit@1.0.0: @@ -35498,7 +34937,7 @@ packages: resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=} dev: true /media-typer@0.3.0: @@ -36207,7 +35646,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.70.0(webpack-cli@4.9.2) /mini-css-extract-plugin@2.6.0(webpack@5.76.3): resolution: {integrity: sha512-ndG8nxCEnAemsg4FSgS+yNyHKgkTB4nPKqCOgh65j3/30qqC5RaSQQXMm++Y6sb6E1zRSxPkztj9fqxhS1Eo6w==} @@ -36216,7 +35655,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.76.3(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true /minimalistic-assert@1.0.1: @@ -36255,6 +35694,13 @@ packages: brace-expansion: 2.0.1 dev: true + /minimatch@9.0.0: + resolution: {integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: false + /minimatch@9.0.1: resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} engines: {node: '>=16 || 14 >=14.17'} @@ -36341,6 +35787,11 @@ packages: yallist: 4.0.0 dev: true + /minipass@6.0.1: + resolution: {integrity: sha512-Tenl5QPpgozlOGBiveNYHg2f6y+VpxsXRoIHFUVJuSmTonXRAE6q9b8Mp/O46762/2AlW4ye4Nkyvx0fgWDKbw==} + engines: {node: '>=16 || 14 >=14.17'} + dev: false + /minipass@6.0.2: resolution: {integrity: sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==} engines: {node: '>=16 || 14 >=14.17'} @@ -36548,12 +35999,6 @@ packages: hasBin: true dev: true - /nanoid@3.3.1: - resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true - dev: true - /nanoid@3.3.6: resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -36858,7 +36303,7 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 4.0.2 - is-core-module: 2.10.0 + is-core-module: 2.8.0 semver: 7.5.0 validate-npm-package-license: 3.0.4 dev: true @@ -37077,7 +36522,7 @@ packages: kind-of: 3.2.2 /object-filter@1.0.2: - resolution: {integrity: sha512-NahvP2vZcy1ZiiYah30CEPw0FpDcSkSePJBMpzl5EQgCmISijiGuJm3SPYp7U+Lf2TljyaIw3E5EgkEx/TNEVA==} + resolution: {integrity: sha1-rwt5f/6+r4pSxmN87b6IFs/sG8g=} dev: true /object-inspect@1.12.2: @@ -37245,14 +36690,14 @@ packages: resolution: {integrity: sha512-z6cgZBFxirpFEQ1La8Lg83GCs5hOV2EPpkYYdjsGNbfQMv8qUGjq294MiRBCbZqLufviakGsPUxaNKe3JrPmsA==} engines: {node: '>= 14'} dependencies: - '@octokit/app': 13.1.3 + '@octokit/app': 13.1.2 '@octokit/core': 4.0.5 - '@octokit/oauth-app': 4.2.1 + '@octokit/oauth-app': 4.2.0 '@octokit/plugin-paginate-rest': 6.0.0(@octokit/core@4.0.5) '@octokit/plugin-rest-endpoint-methods': 7.0.1(@octokit/core@4.0.5) '@octokit/plugin-retry': 4.1.3(@octokit/core@4.0.5) - '@octokit/plugin-throttling': 5.2.0(@octokit/core@4.0.5) - '@octokit/types': 9.2.1 + '@octokit/plugin-throttling': 5.1.1(@octokit/core@4.0.5) + '@octokit/types': 9.2.0 transitivePeerDependencies: - encoding dev: false @@ -37862,11 +37307,11 @@ packages: path-root-regex: 0.1.2 dev: true - /path-scurry@1.9.2: - resolution: {integrity: sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg==} + /path-scurry@1.9.1: + resolution: {integrity: sha512-UgmoiySyjFxP6tscZDgWGEAgsW5ok8W3F5CJDnnH2pozwSTGE6eH7vwTotMwATWA2r5xqdkKdxYPkwlJjAI/3g==} engines: {node: '>=16 || 14 >=14.17'} dependencies: - lru-cache: 9.1.2 + lru-cache: 9.1.1 minipass: 6.0.2 dev: false @@ -38057,16 +37502,6 @@ packages: postcss-selector-parser: 6.0.9 postcss-value-parser: 4.2.0 - /postcss-calc@8.2.4(postcss@8.4.12): - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} - peerDependencies: - postcss: ^8.2.2 - dependencies: - postcss: 8.4.12 - postcss-selector-parser: 6.0.9 - postcss-value-parser: 4.2.0 - dev: true - /postcss-calc@8.2.4(postcss@8.4.21): resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: @@ -38098,19 +37533,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-colormin@5.3.0(postcss@8.4.12): - resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.19.3 - caniuse-api: 3.0.0 - colord: 2.9.2 - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-colormin@5.3.0(postcss@8.4.21): resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} engines: {node: ^10 || ^12 || >=14.0} @@ -38131,17 +37553,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-convert-values@5.1.2(postcss@8.4.12): - resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-convert-values@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==} engines: {node: ^10 || ^12 || >=14.0} @@ -38167,15 +37578,6 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-comments@5.1.2(postcss@8.4.12): - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - dev: true - /postcss-discard-comments@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} engines: {node: ^10 || ^12 || >=14.0} @@ -38191,15 +37593,6 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-duplicates@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - dev: true - /postcss-discard-duplicates@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} engines: {node: ^10 || ^12 || >=14.0} @@ -38215,15 +37608,6 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-empty@5.1.1(postcss@8.4.12): - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - dev: true - /postcss-discard-empty@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} engines: {node: ^10 || ^12 || >=14.0} @@ -38239,15 +37623,6 @@ packages: dependencies: postcss: 7.0.39 - /postcss-discard-overridden@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - dev: true - /postcss-discard-overridden@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} engines: {node: ^10 || ^12 || >=14.0} @@ -38331,6 +37706,22 @@ packages: webpack: 5.70.0(webpack-cli@3.3.12) dev: true + /postcss-loader@4.3.0(postcss@8.4.12)(webpack@5.76.3): + resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} + engines: {node: '>= 10.13.0'} + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^4.0.0 || ^5.0.0 + dependencies: + cosmiconfig: 7.0.1 + klona: 2.0.5 + loader-utils: 2.0.4 + postcss: 8.4.12 + schema-utils: 3.1.1 + semver: 7.5.0 + webpack: 5.76.3(webpack-cli@3.3.12) + dev: true + /postcss-loader@4.3.0(postcss@8.4.21)(webpack@5.70.0): resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} engines: {node: '>= 10.13.0'} @@ -38359,21 +37750,7 @@ packages: postcss: 8.4.21 schema-utils: 3.1.1 semver: 7.5.0 - webpack: 5.76.3 - dev: true - - /postcss-loader@6.2.1(postcss@8.4.12)(webpack@5.70.0): - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - postcss: ^7.0.0 || ^8.0.1 - webpack: ^5.0.0 - dependencies: - cosmiconfig: 7.0.1 - klona: 2.0.5 - postcss: 8.4.12 - semver: 7.5.0 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /postcss-loader@6.2.1(postcss@8.4.21)(webpack@5.76.3): @@ -38387,7 +37764,7 @@ packages: klona: 2.0.5 postcss: 8.4.21 semver: 7.5.0 - webpack: 5.76.3(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true /postcss-media-query-parser@0.2.3: @@ -38403,17 +37780,6 @@ packages: postcss-value-parser: 3.3.1 stylehacks: 4.0.3 - /postcss-merge-longhand@5.1.6(postcss@8.4.12): - resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - stylehacks: 5.1.0(postcss@8.4.12) - dev: true - /postcss-merge-longhand@5.1.6(postcss@8.4.21): resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} engines: {node: ^10 || ^12 || >=14.0} @@ -38436,19 +37802,6 @@ packages: postcss-selector-parser: 3.1.2 vendors: 1.0.4 - /postcss-merge-rules@5.1.2(postcss@8.4.12): - resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.19.3 - caniuse-api: 3.0.0 - cssnano-utils: 3.1.0(postcss@8.4.12) - postcss: 8.4.12 - postcss-selector-parser: 6.0.9 - dev: true - /postcss-merge-rules@5.1.2(postcss@8.4.21): resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==} engines: {node: ^10 || ^12 || >=14.0} @@ -38473,16 +37826,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-minify-font-values@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-font-values@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} engines: {node: ^10 || ^12 || >=14.0} @@ -38502,18 +37845,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-minify-gradients@5.1.1(postcss@8.4.12): - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - colord: 2.9.2 - cssnano-utils: 3.1.0(postcss@8.4.12) - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-gradients@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} engines: {node: ^10 || ^12 || >=14.0} @@ -38537,18 +37868,6 @@ packages: postcss-value-parser: 3.3.1 uniqs: 2.0.0 - /postcss-minify-params@5.1.3(postcss@8.4.12): - resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.19.3 - cssnano-utils: 3.1.0(postcss@8.4.12) - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-minify-params@5.1.3(postcss@8.4.21): resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==} engines: {node: ^10 || ^12 || >=14.0} @@ -38570,16 +37889,6 @@ packages: postcss: 7.0.39 postcss-selector-parser: 3.1.2 - /postcss-minify-selectors@5.2.1(postcss@8.4.12): - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-selector-parser: 6.0.9 - dev: true - /postcss-minify-selectors@5.2.1(postcss@8.4.21): resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} engines: {node: ^10 || ^12 || >=14.0} @@ -38596,15 +37905,6 @@ packages: dependencies: postcss: 7.0.39 - /postcss-modules-extract-imports@3.0.0(postcss@8.4.12): - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: 8.4.12 - dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.21): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} @@ -38623,18 +37923,6 @@ packages: postcss-selector-parser: 6.0.9 postcss-value-parser: 4.2.0 - /postcss-modules-local-by-default@4.0.0(postcss@8.4.12): - resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - icss-utils: 5.1.0(postcss@8.4.12) - postcss: 8.4.12 - postcss-selector-parser: 6.0.9 - postcss-value-parser: 4.2.0 - dev: true - /postcss-modules-local-by-default@4.0.0(postcss@8.4.21): resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} @@ -38654,16 +37942,6 @@ packages: postcss: 7.0.39 postcss-selector-parser: 6.0.9 - /postcss-modules-scope@3.0.0(postcss@8.4.12): - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - postcss: 8.4.12 - postcss-selector-parser: 6.0.9 - dev: true - /postcss-modules-scope@3.0.0(postcss@8.4.21): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} @@ -38680,16 +37958,6 @@ packages: icss-utils: 4.1.1 postcss: 7.0.39 - /postcss-modules-values@4.0.0(postcss@8.4.12): - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - dependencies: - icss-utils: 5.1.0(postcss@8.4.12) - postcss: 8.4.12 - dev: true - /postcss-modules-values@4.0.0(postcss@8.4.21): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} @@ -38706,15 +37974,6 @@ packages: dependencies: postcss: 7.0.39 - /postcss-normalize-charset@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - dev: true - /postcss-normalize-charset@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} engines: {node: ^10 || ^12 || >=14.0} @@ -38732,16 +37991,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-display-values@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-display-values@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} engines: {node: ^10 || ^12 || >=14.0} @@ -38761,16 +38010,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-positions@5.1.1(postcss@8.4.12): - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-positions@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} engines: {node: ^10 || ^12 || >=14.0} @@ -38790,16 +38029,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.12): - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-repeat-style@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} engines: {node: ^10 || ^12 || >=14.0} @@ -38818,16 +38047,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-string@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-string@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} engines: {node: ^10 || ^12 || >=14.0} @@ -38846,16 +38065,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-timing-functions@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} engines: {node: ^10 || ^12 || >=14.0} @@ -38874,17 +38083,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-unicode@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.19.3 - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-unicode@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==} engines: {node: ^10 || ^12 || >=14.0} @@ -38905,17 +38103,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-url@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - normalize-url: 6.1.0 - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-url@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} engines: {node: ^10 || ^12 || >=14.0} @@ -38934,16 +38121,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-normalize-whitespace@5.1.1(postcss@8.4.12): - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-normalize-whitespace@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} engines: {node: ^10 || ^12 || >=14.0} @@ -38962,17 +38139,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-ordered-values@5.1.3(postcss@8.4.12): - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - cssnano-utils: 3.1.0(postcss@8.4.12) - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-ordered-values@5.1.3(postcss@8.4.21): resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} engines: {node: ^10 || ^12 || >=14.0} @@ -38993,17 +38159,6 @@ packages: has: 1.0.3 postcss: 7.0.39 - /postcss-reduce-initial@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.19.3 - caniuse-api: 3.0.0 - postcss: 8.4.12 - dev: true - /postcss-reduce-initial@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==} engines: {node: ^10 || ^12 || >=14.0} @@ -39024,16 +38179,6 @@ packages: postcss: 7.0.39 postcss-value-parser: 3.3.1 - /postcss-reduce-transforms@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - dev: true - /postcss-reduce-transforms@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} engines: {node: ^10 || ^12 || >=14.0} @@ -39055,13 +38200,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-safe-parser@6.0.0(postcss@8.4.12): + /postcss-safe-parser@6.0.0(postcss@8.4.21): resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.12 + postcss: 8.4.21 dev: true /postcss-sass@0.4.4: @@ -39127,17 +38272,6 @@ packages: postcss-value-parser: 3.3.1 svgo: 1.3.2 - /postcss-svgo@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-value-parser: 4.2.0 - svgo: 2.8.0 - dev: true - /postcss-svgo@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} @@ -39184,16 +38318,6 @@ packages: postcss: 7.0.39 uniqs: 2.0.0 - /postcss-unique-selectors@5.1.1(postcss@8.4.12): - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.12 - postcss-selector-parser: 6.0.9 - dev: true - /postcss-unique-selectors@5.1.1(postcss@8.4.21): resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} engines: {node: ^10 || ^12 || >=14.0} @@ -39251,7 +38375,7 @@ packages: resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==} engines: {node: ^10 || ^12 || >=14} dependencies: - nanoid: 3.3.1 + nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 dev: true @@ -39552,7 +38676,7 @@ packages: resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} dev: true /psl@1.8.0: @@ -39741,7 +38865,7 @@ packages: dev: true /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} /qqjs@0.3.11: @@ -39820,7 +38944,7 @@ packages: performance-now: 2.1.0 /railroad-diagrams@1.0.0: - resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==} + resolution: {integrity: sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=} /ramda@0.21.0: resolution: {integrity: sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=} @@ -40485,18 +39609,6 @@ packages: dependencies: react: 17.0.2 - /react-router-dom@6.2.2(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' - dependencies: - history: 5.3.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-router: 6.2.2(react@17.0.2) - dev: true - /react-router-dom@6.3.0(react-dom@16.14.0)(react@17.0.2): resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: @@ -40519,16 +39631,6 @@ packages: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-router: 6.3.0(react@17.0.2) - dev: false - - /react-router@6.2.2(react@17.0.2): - resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} - peerDependencies: - react: '>=16.8' - dependencies: - history: 5.3.0 - react: 17.0.2 - dev: true /react-router@6.3.0(react@17.0.2): resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} @@ -40537,7 +39639,6 @@ packages: dependencies: history: 5.3.0 react: 17.0.2 - dev: false /react-select@3.2.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==} @@ -40782,7 +39883,7 @@ packages: dev: true /read-pkg-up@1.0.1: - resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=} engines: {node: '>=0.10.0'} dependencies: find-up: 1.1.2 @@ -40843,7 +39944,7 @@ packages: dev: true /read@1.0.7: - resolution: {integrity: sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=} + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} engines: {node: '>=0.8'} dependencies: mute-stream: 0.0.8 @@ -41491,7 +40592,7 @@ packages: /resolve@1.20.0: resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==} dependencies: - is-core-module: 2.10.0 + is-core-module: 2.8.0 path-parse: 1.0.7 /resolve@1.22.1: @@ -41589,7 +40690,7 @@ packages: inherits: 2.0.4 /rst-selector-parser@2.2.3: - resolution: {integrity: sha512-nDG1rZeP6oFTLN6yNDV/uiAvs1+FS/KlrEwh7+y7dpuApDBy6bI2HTBcc0/V8lv9OTqfyD34eF7au2pm8aBbhA==} + resolution: {integrity: sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=} dependencies: lodash.flattendeep: 4.4.0 nearley: 2.20.1 @@ -41829,33 +40930,8 @@ packages: neo-async: 2.6.2 sass: 1.60.0 schema-utils: 3.1.1 - semver: 7.3.8 - webpack: 5.76.3 - dev: true - - /sass-loader@12.6.0(sass@1.49.9)(webpack@5.70.0): - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - fibers: '>= 3.1.0' - node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 - sass: ^1.3.0 - sass-embedded: '*' - webpack: ^5.0.0 - peerDependenciesMeta: - fibers: - optional: true - node-sass: - optional: true - sass: - optional: true - sass-embedded: - optional: true - dependencies: - klona: 2.0.5 - neo-async: 2.6.2 - sass: 1.49.9 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) + semver: 7.5.0 + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /sass-loader@12.6.0(sass@1.60.0)(webpack@5.76.3): @@ -41880,7 +40956,7 @@ packages: klona: 2.0.5 neo-async: 2.6.2 sass: 1.60.0 - webpack: 5.76.3(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true /sass-loader@8.0.2(sass@1.60.0)(webpack@4.46.0): @@ -42532,18 +41608,6 @@ packages: loader-utils: 1.4.0 dev: true - /source-map-loader@3.0.1(webpack@5.70.0): - resolution: {integrity: sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - dependencies: - abab: 2.0.6 - iconv-lite: 0.6.3 - source-map-js: 1.0.2 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) - dev: true - /source-map-loader@3.0.1(webpack@5.76.3): resolution: {integrity: sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==} engines: {node: '>= 12.13.0'} @@ -42553,7 +41617,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.76.3(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true /source-map-resolve@0.5.3: @@ -43088,7 +42152,7 @@ packages: webpack: 4.46.0(webpack-cli@3.3.12) dev: true - /style-loader@2.0.0(webpack@5.70.0): + /style-loader@2.0.0(webpack@5.76.3): resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -43096,7 +42160,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /style-search@0.1.0: @@ -43123,17 +42187,6 @@ packages: postcss: 7.0.39 postcss-selector-parser: 3.1.2 - /stylehacks@5.1.0(postcss@8.4.12): - resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.19.3 - postcss: 8.4.12 - postcss-selector-parser: 6.0.9 - dev: true - /stylehacks@5.1.0(postcss@8.4.21): resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} engines: {node: ^10 || ^12 || >=14.0} @@ -43435,10 +42488,10 @@ packages: normalize-path: 3.0.0 normalize-selector: 0.2.0 picocolors: 1.0.0 - postcss: 8.4.12 + postcss: 8.4.21 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0(postcss@8.4.12) + postcss-safe-parser: 6.0.0(postcss@8.4.21) postcss-selector-parser: 6.0.9 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 @@ -43485,7 +42538,7 @@ packages: mime: 2.6.0 qs: 6.10.3 readable-stream: 3.6.0 - semver: 7.5.0 + semver: 7.3.8 transitivePeerDependencies: - supports-color dev: false @@ -43863,33 +42916,6 @@ packages: - bluebird dev: true - /terser-webpack-plugin@5.2.5(acorn@8.8.1)(uglify-js@3.14.5)(webpack@5.70.0): - resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - jest-worker: 27.5.1 - schema-utils: 3.1.1 - serialize-javascript: 6.0.0 - source-map: 0.6.1 - terser: 5.10.0(acorn@8.8.1) - uglify-js: 3.14.5 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) - transitivePeerDependencies: - - acorn - dev: true - /terser-webpack-plugin@5.2.5(acorn@8.8.1)(uglify-js@3.14.5)(webpack@5.76.3): resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==} engines: {node: '>= 10.13.0'} @@ -44220,8 +43246,8 @@ packages: punycode: 2.1.1 dev: true - /tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + /tough-cookie@4.1.2: + resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} engines: {node: '>=6'} dependencies: psl: 1.8.0 @@ -44339,10 +43365,10 @@ packages: fast-json-stable-stringify: 2.1.0 jest: 27.5.1 jest-util: 27.5.1 - json5: 2.2.0 + json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 + semver: 7.5.0 typescript: 4.9.5 yargs-parser: 20.2.9 dev: true @@ -44374,10 +43400,10 @@ packages: fast-json-stable-stringify: 2.1.0 jest: 27.5.1 jest-util: 27.5.1 - json5: 2.2.0 + json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 + semver: 7.5.0 typescript: 4.9.5 yargs-parser: 20.2.9 dev: true @@ -44426,7 +43452,7 @@ packages: chalk: 4.1.2 enhanced-resolve: 5.12.0 micromatch: 4.0.5 - semver: 7.3.8 + semver: 7.5.0 typescript: 4.9.5 webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true @@ -44451,7 +43477,7 @@ packages: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 '@types/node': 16.18.21 - acorn: 8.7.0 + acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -44936,7 +43962,7 @@ packages: /universal-github-app-jwt@1.1.1: resolution: {integrity: sha512-G33RTLrIBMFmlDV4u4CBF7dh71eWwykck4XgaxaIVeZKOYZRAAxvcGMRFTUclVY6xoUPQvO4Ne5wKGxYm/Yy9w==} dependencies: - '@types/jsonwebtoken': 9.0.2 + '@types/jsonwebtoken': 9.0.1 jsonwebtoken: 9.0.0 dev: false @@ -44967,7 +43993,7 @@ packages: engines: {node: '>= 0.8'} /unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=} /unset-value@1.0.0: resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} @@ -45079,7 +44105,7 @@ packages: loader-utils: 1.4.0 mime: 2.6.0 schema-utils: 1.0.0 - webpack: 5.76.3 + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /url-loader@3.0.0(webpack@4.46.0): @@ -45115,22 +44141,6 @@ packages: webpack: 4.46.0(webpack-cli@3.3.12) dev: true - /url-loader@4.1.1(webpack@5.70.0): - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - file-loader: '*' - webpack: ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - file-loader: - optional: true - dependencies: - loader-utils: 2.0.4 - mime-types: 2.1.35 - schema-utils: 3.1.1 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) - dev: true - /url-loader@4.1.1(webpack@5.76.3): resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} @@ -45144,7 +44154,7 @@ packages: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.1.1 - webpack: 5.76.3(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) dev: true /url-parse-lax@1.0.0: @@ -45557,12 +44567,12 @@ packages: rx: 4.1.0 dev: true - /wait-on@5.3.0: + /wait-on@5.3.0(debug@4.3.3): resolution: {integrity: sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==} engines: {node: '>=8.9.0'} hasBin: true dependencies: - axios: 0.21.4 + axios: 0.21.4(debug@4.3.3) joi: 17.6.0 lodash: 4.17.21 minimist: 1.2.8 @@ -45570,20 +44580,6 @@ packages: transitivePeerDependencies: - debug - /wait-on@5.3.0(debug@4.3.4): - resolution: {integrity: sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==} - engines: {node: '>=8.9.0'} - hasBin: true - dependencies: - axios: 0.21.4(debug@4.3.4) - joi: 17.6.0 - lodash: 4.17.21 - minimist: 1.2.8 - rxjs: 6.6.7 - transitivePeerDependencies: - - debug - dev: true - /wait-on@6.0.1: resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==} engines: {node: '>=10.0.0'} @@ -45776,6 +44772,27 @@ packages: webpack: 5.70.0(webpack-cli@3.3.12) yargs: 13.3.2 + /webpack-cli@3.3.12(webpack@5.76.3): + resolution: {integrity: sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==} + engines: {node: '>=6.11.5'} + hasBin: true + peerDependencies: + webpack: 4.x.x + dependencies: + chalk: 2.4.2 + cross-spawn: 6.0.5 + enhanced-resolve: 4.5.0 + findup-sync: 3.0.0(supports-color@6.1.0) + global-modules: 2.0.0 + import-local: 2.0.0 + interpret: 1.4.0 + loader-utils: 1.4.0 + supports-color: 6.1.0 + v8-compile-cache: 2.3.0 + webpack: 5.76.3(webpack-cli@3.3.12) + yargs: 13.3.2 + dev: true + /webpack-cli@4.9.2(webpack-bundle-analyzer@3.9.0)(webpack-dev-server@4.12.0)(webpack@5.70.0): resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} engines: {node: '>=10.13.0'} @@ -45812,7 +44829,7 @@ packages: webpack-dev-server: 4.12.0(debug@4.3.3)(webpack-cli@4.9.2)(webpack@5.70.0) webpack-merge: 5.8.0 - /webpack-cli@4.9.2(webpack@5.76.3): + /webpack-cli@4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3): resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -45844,6 +44861,7 @@ packages: interpret: 2.2.0 rechoir: 0.7.1 webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) + webpack-bundle-analyzer: 4.6.1 webpack-merge: 5.8.0 dev: true @@ -45861,7 +44879,7 @@ packages: webpack-log: 2.0.0 dev: true - /webpack-dev-middleware@4.3.0(webpack@5.70.0): + /webpack-dev-middleware@4.3.0(webpack@5.76.3): resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} engines: {node: '>= v10.23.3'} peerDependencies: @@ -45873,7 +44891,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.1.1 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.76.3(webpack-cli@4.9.2) dev: true /webpack-dev-middleware@5.3.3(webpack@5.70.0): @@ -45992,7 +45010,7 @@ packages: sockjs: 0.3.24 spdy: 4.0.2 webpack: 5.76.3(webpack-cli@4.9.2) - webpack-cli: 4.9.2(webpack@5.76.3) + webpack-cli: 4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3) webpack-dev-middleware: 5.3.3(webpack@5.76.3) ws: 8.13.0 transitivePeerDependencies: @@ -46034,7 +45052,7 @@ packages: - supports-color dev: true - /webpack-livereload-plugin@3.0.2(webpack@5.70.0): + /webpack-livereload-plugin@3.0.2(webpack@5.76.3): resolution: {integrity: sha512-5JeZ2dgsvSNG+clrkD/u2sEiPcNk4qwCVZZmW8KpqKcNlkGv7IJjdVrq13+etAmMZYaCF1EGXdHkVFuLgP4zfw==} engines: {node: '>= 10.18.0'} peerDependencies: @@ -46044,7 +45062,7 @@ packages: portfinder: 1.0.28 schema-utils: 4.0.0 tiny-lr: 1.1.1 - webpack: 5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2) + webpack: 5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2) transitivePeerDependencies: - supports-color dev: true @@ -46071,7 +45089,7 @@ packages: webpack: '>=5.32.0' dependencies: ansis: 1.3.4 - webpack: 5.70.0(webpack-cli@3.3.12) + webpack: 5.70.0(webpack-cli@4.9.2) dev: false /webpack-rtl-plugin@2.0.0: @@ -46153,47 +45171,6 @@ packages: - supports-color dev: true - /webpack@5.70.0(uglify-js@3.14.5)(webpack-cli@4.9.2): - resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.3 - '@types/estree': 0.0.51 - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/wasm-edit': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.8.1 - acorn-import-assertions: 1.8.0(acorn@8.8.1) - browserslist: 4.19.3 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.12.0 - es-module-lexer: 0.9.3 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.9 - json-parse-better-errors: 1.0.2 - loader-runner: 4.2.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.1.1 - tapable: 2.2.1 - terser-webpack-plugin: 5.2.5(acorn@8.8.1)(uglify-js@3.14.5)(webpack@5.70.0) - watchpack: 2.3.1 - webpack-cli: 4.9.2(webpack@5.76.3) - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: true - /webpack@5.70.0(webpack-cli@3.3.12): resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==} engines: {node: '>=10.13.0'} @@ -46274,46 +45251,6 @@ packages: - esbuild - uglify-js - /webpack@5.76.3: - resolution: {integrity: sha512-18Qv7uGPU8b2vqGeEEObnfICyw2g39CHlDEK4I7NK13LOur1d0HGmGNKGT58Eluwddpn3oEejwvBPoP4M7/KSA==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.3 - '@types/estree': 0.0.51 - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/wasm-edit': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.8.1 - acorn-import-assertions: 1.8.0(acorn@8.8.1) - browserslist: 4.21.4 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.12.0 - es-module-lexer: 0.9.3 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.9 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.2.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.1.1 - tapable: 2.2.1 - terser-webpack-plugin: 5.2.5(acorn@8.8.1)(webpack@5.76.3) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - dev: true - /webpack@5.76.3(uglify-js@3.14.5)(webpack-cli@4.9.2): resolution: {integrity: sha512-18Qv7uGPU8b2vqGeEEObnfICyw2g39CHlDEK4I7NK13LOur1d0HGmGNKGT58Eluwddpn3oEejwvBPoP4M7/KSA==} engines: {node: '>=10.13.0'} @@ -46347,7 +45284,48 @@ packages: tapable: 2.2.1 terser-webpack-plugin: 5.2.5(acorn@8.8.1)(uglify-js@3.14.5)(webpack@5.76.3) watchpack: 2.4.0 - webpack-cli: 4.9.2(webpack@5.76.3) + webpack-cli: 4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3) + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true + + /webpack@5.76.3(webpack-cli@3.3.12): + resolution: {integrity: sha512-18Qv7uGPU8b2vqGeEEObnfICyw2g39CHlDEK4I7NK13LOur1d0HGmGNKGT58Eluwddpn3oEejwvBPoP4M7/KSA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.3 + '@types/estree': 0.0.51 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/wasm-edit': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + acorn: 8.8.1 + acorn-import-assertions: 1.8.0(acorn@8.8.1) + browserslist: 4.19.3 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.12.0 + es-module-lexer: 0.9.3 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.9 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.2.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.1.1 + tapable: 2.2.1 + terser-webpack-plugin: 5.2.5(acorn@8.8.1)(webpack@5.76.3) + watchpack: 2.4.0 + webpack-cli: 3.3.12(webpack@5.76.3) webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -46388,7 +45366,7 @@ packages: tapable: 2.2.1 terser-webpack-plugin: 5.2.5(acorn@8.8.1)(webpack@5.76.3) watchpack: 2.4.0 - webpack-cli: 4.9.2(webpack@5.76.3) + webpack-cli: 4.9.2(webpack-bundle-analyzer@4.6.1)(webpack@5.76.3) webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -46605,12 +45583,6 @@ packages: hasBin: true dev: true - /wp-prettier@2.6.2: - resolution: {integrity: sha512-AV33EzqiFJ3fj+mPlKABN59YFPReLkDxQnj067Z3uEOeRQf3g05WprL0RDuqM7UBhSRo9W1rMSC2KvZmjE5UOA==} - engines: {node: '>=10.13.0'} - hasBin: true - dev: true - /wp-prettier@2.8.5: resolution: {integrity: sha512-gkphzYtVksWV6D7/V530bTehKkhrABUru/Gy4reOLOHJoKH4i9lcE1SxqU2VDxC3gCOx/Nk9alZmWk6xL/IBCw==} engines: {node: '>=10.13.0'} @@ -46620,7 +45592,7 @@ packages: resolution: {integrity: sha512-6Guapw25yCmnQHyz62TEi1OvRnIzGfyj0sVaPBhwx19QoxeD6HI2zZHWeBIUXSauJK3BIyxWPYnxlwmnqHUskg==} dependencies: chalk: 2.4.2 - glob: 7.2.0 + glob: 7.2.3 moment: 2.29.1 php-parser: 3.0.3 text-table: 0.2.0