diff --git a/packages/js/product-editor/changelog/add-37266 b/packages/js/product-editor/changelog/add-37266
new file mode 100644
index 00000000000..fb01785dd5d
--- /dev/null
+++ b/packages/js/product-editor/changelog/add-37266
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Add iframe block editor
diff --git a/packages/js/product-editor/package.json b/packages/js/product-editor/package.json
index 49b271d990a..8426c80296e 100644
--- a/packages/js/product-editor/package.json
+++ b/packages/js/product-editor/package.json
@@ -56,6 +56,7 @@
"@wordpress/icons": "wp-6.0",
"@wordpress/interface": "wp-6.0",
"@wordpress/keyboard-shortcuts": "wp-6.0",
+ "@wordpress/keycodes": "wp-6.0",
"@wordpress/media-utils": "wp-6.0",
"@wordpress/plugins": "wp-6.0",
"@wordpress/url": "wp-6.0",
@@ -85,6 +86,7 @@
"@types/wordpress__data": "^6.0.2",
"@types/wordpress__date": "^3.3.2",
"@types/wordpress__editor": "^13.0.0",
+ "@types/wordpress__keycodes": "^2.3.1",
"@types/wordpress__media-utils": "^3.0.0",
"@types/wordpress__plugins": "^3.0.0",
"@woocommerce/eslint-plugin": "workspace:*",
diff --git a/packages/js/product-editor/src/components/iframe-editor/editor-canvas.tsx b/packages/js/product-editor/src/components/iframe-editor/editor-canvas.tsx
new file mode 100644
index 00000000000..b2f14718e23
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/editor-canvas.tsx
@@ -0,0 +1,59 @@
+/**
+ * External dependencies
+ */
+import { createElement, Fragment } from '@wordpress/element';
+import {
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore No types for this exist yet.
+ __unstableIframe as Iframe,
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore No types for this exist yet.
+ __unstableUseMouseMoveTypingReset as useMouseMoveTypingReset,
+} from '@wordpress/block-editor';
+
+type EditorCanvasProps = {
+ enableResizing: boolean;
+ children: React.ReactNode;
+};
+
+export function EditorCanvas( {
+ enableResizing,
+ children,
+ ...props
+}: EditorCanvasProps ) {
+ const mouseMoveTypingRef = useMouseMoveTypingReset();
+ return (
+
+ );
+}
diff --git a/packages/js/product-editor/src/components/iframe-editor/iframe-editor.scss b/packages/js/product-editor/src/components/iframe-editor/iframe-editor.scss
new file mode 100644
index 00000000000..c985852cfc9
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/iframe-editor.scss
@@ -0,0 +1,19 @@
+.woocommerce-iframe-editor {
+ align-items: center;
+ background-color: #2f2f2f;
+ display: flex;
+ flex-direction: column;
+ height: 100%;
+ width: 100%;
+ overflow: hidden;
+ position: fixed;
+ top: 0;
+ left: 0;
+ padding: 132px 48px 48px 208px;
+ z-index: 1000;
+
+ iframe {
+ width: 100%;
+ height: 100%;
+ }
+}
diff --git a/packages/js/product-editor/src/components/iframe-editor/iframe-editor.tsx b/packages/js/product-editor/src/components/iframe-editor/iframe-editor.tsx
new file mode 100644
index 00000000000..dcb9f910d43
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/iframe-editor.tsx
@@ -0,0 +1,91 @@
+/**
+ * External dependencies
+ */
+import { BlockInstance } from '@wordpress/blocks';
+import { useDispatch, useSelect } from '@wordpress/data';
+import { createElement, useEffect, useState } from '@wordpress/element';
+import { useResizeObserver } from '@wordpress/compose';
+import {
+ BlockEditorProvider,
+ BlockList,
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ BlockTools,
+ BlockEditorKeyboardShortcuts,
+ EditorSettings,
+ EditorBlockListSettings,
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ store as blockEditorStore,
+} from '@wordpress/block-editor';
+
+/**
+ * Internal dependencies
+ */
+import { EditorCanvas } from './editor-canvas';
+import { ResizableEditor } from './resizable-editor';
+
+type IframeEditorProps = {
+ settings?: Partial< EditorSettings & EditorBlockListSettings > | undefined;
+};
+
+export function IframeEditor( { settings }: IframeEditorProps ) {
+ const [ resizeObserver, sizes ] = useResizeObserver();
+ const [ blocks, setBlocks ] = useState< BlockInstance[] >( [] );
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore This action exists in the block editor store.
+ const { clearSelectedBlock, updateSettings } =
+ useDispatch( blockEditorStore );
+
+ const parentEditorSettings = useSelect( ( select ) => {
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ return select( blockEditorStore ).getSettings();
+ }, [] );
+
+ useEffect( () => {
+ // Manually update the settings so that __unstableResolvedAssets gets added to the data store.
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore
+ updateSettings( productBlockEditorSettings );
+ }, [] );
+
+ return (
+
+
+ ) => {
+ // Clear selected block when clicking on the gray background.
+ if ( event.target === event.currentTarget ) {
+ clearSelectedBlock();
+ }
+ } }
+ >
+ { /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */ }
+ { /* @ts-ignore */ }
+
+
+
+ { resizeObserver }
+
+
+
+
+
+ );
+}
diff --git a/packages/js/product-editor/src/components/iframe-editor/index.ts b/packages/js/product-editor/src/components/iframe-editor/index.ts
new file mode 100644
index 00000000000..ccd6bb1031b
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/index.ts
@@ -0,0 +1 @@
+export * from './iframe-editor';
diff --git a/packages/js/product-editor/src/components/iframe-editor/resizable-editor.tsx b/packages/js/product-editor/src/components/iframe-editor/resizable-editor.tsx
new file mode 100644
index 00000000000..4287de93c6b
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/resizable-editor.tsx
@@ -0,0 +1,98 @@
+/**
+ * External dependencies
+ */
+import {
+ createElement,
+ useState,
+ useRef,
+ useCallback,
+} from '@wordpress/element';
+import { ResizableBox } from '@wordpress/components';
+
+/**
+ * Internal dependencies
+ */
+import ResizeHandle from './resize-handle';
+
+// Removes the inline styles in the drag handles.
+const HANDLE_STYLES_OVERRIDE = {
+ position: undefined,
+ userSelect: undefined,
+ cursor: undefined,
+ width: undefined,
+ height: undefined,
+ top: undefined,
+ right: undefined,
+ bottom: undefined,
+ left: undefined,
+};
+
+type ResizableEditorProps = {
+ enableResizing: boolean;
+ height: number;
+ children: React.ReactNode;
+};
+
+export function ResizableEditor( {
+ enableResizing,
+ height,
+ children,
+}: ResizableEditorProps ) {
+ const [ width, setWidth ] = useState( '100%' );
+ const resizableRef = useRef< HTMLDivElement >();
+ const resizeWidthBy = useCallback( ( deltaPixels ) => {
+ if ( resizableRef.current ) {
+ setWidth( resizableRef.current.offsetWidth + deltaPixels );
+ }
+ }, [] );
+ return (
+ {
+ resizableRef.current = api?.resizable;
+ } }
+ size={ {
+ width: enableResizing ? width : '100%',
+ height: enableResizing && height ? height : '100%',
+ } }
+ onResizeStop={ ( event, direction, element ) => {
+ setWidth( element.style.width );
+ } }
+ minWidth={ 300 }
+ maxWidth="100%"
+ maxHeight="100%"
+ minHeight={ height }
+ enable={ {
+ right: enableResizing,
+ left: enableResizing,
+ } }
+ showHandle={ enableResizing }
+ // The editor is centered horizontally, resizing it only
+ // moves half the distance. Hence double the ratio to correctly
+ // align the cursor to the resizer handle.
+ resizeRatio={ 2 }
+ handleComponent={ {
+ left: (
+
+ ),
+ right: (
+
+ ),
+ } }
+ handleClasses={ undefined }
+ handleStyles={ {
+ left: HANDLE_STYLES_OVERRIDE,
+ right: HANDLE_STYLES_OVERRIDE,
+ } }
+ >
+ { children }
+
+ );
+}
diff --git a/packages/js/product-editor/src/components/iframe-editor/resize-handle.scss b/packages/js/product-editor/src/components/iframe-editor/resize-handle.scss
new file mode 100644
index 00000000000..14839017544
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/resize-handle.scss
@@ -0,0 +1,36 @@
+.resizable-editor__drag-handle {
+ -webkit-appearance: none;
+ appearance: none;
+ background: none;
+ border: 0;
+ border-radius: 2px;
+ bottom: 0;
+ cursor: ew-resize;
+ margin: auto 0;
+ outline: none;
+ padding: 0;
+ position: absolute;
+ top: 0;
+ width: 12px;
+ height: 100px;
+
+ &.is-left {
+ left: -16px;
+ }
+
+ &.is-right {
+ right: -16px;
+ }
+
+ &:after {
+ background: #949494;
+ border-radius: 2px;
+ bottom: 24px;
+ content: "";
+ left: 4px;
+ position: absolute;
+ right: 0;
+ top: 24px;
+ width: 4px;
+ }
+}
diff --git a/packages/js/product-editor/src/components/iframe-editor/resize-handle.tsx b/packages/js/product-editor/src/components/iframe-editor/resize-handle.tsx
new file mode 100644
index 00000000000..8d668adeedb
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/resize-handle.tsx
@@ -0,0 +1,55 @@
+/**
+ * External dependencies
+ */
+import { __ } from '@wordpress/i18n';
+import { createElement, Fragment } from '@wordpress/element';
+import { LEFT, RIGHT } from '@wordpress/keycodes';
+import { KeyboardEvent } from 'react';
+import { VisuallyHidden } from '@wordpress/components';
+
+const DELTA_DISTANCE = 20; // The distance to resize per keydown in pixels.
+
+type ResizeHandleProps = {
+ direction: 'left' | 'right';
+ resizeWidthBy: ( width: number ) => void;
+};
+
+export default function ResizeHandle( {
+ direction,
+ resizeWidthBy,
+}: ResizeHandleProps ) {
+ function handleKeyDown( event: KeyboardEvent< HTMLButtonElement > ) {
+ const { keyCode } = event;
+
+ if (
+ ( direction === 'left' && keyCode === LEFT ) ||
+ ( direction === 'right' && keyCode === RIGHT )
+ ) {
+ resizeWidthBy( DELTA_DISTANCE );
+ } else if (
+ ( direction === 'left' && keyCode === RIGHT ) ||
+ ( direction === 'right' && keyCode === LEFT )
+ ) {
+ resizeWidthBy( -DELTA_DISTANCE );
+ }
+ }
+
+ return (
+ <>
+
+
+ { __(
+ 'Use left and right arrow keys to resize the canvas.',
+ 'woocommerce'
+ ) }
+
+ >
+ );
+}
diff --git a/packages/js/product-editor/src/components/iframe-editor/style.scss b/packages/js/product-editor/src/components/iframe-editor/style.scss
new file mode 100644
index 00000000000..91554b4b27e
--- /dev/null
+++ b/packages/js/product-editor/src/components/iframe-editor/style.scss
@@ -0,0 +1,2 @@
+@import './iframe-editor.scss';
+@import './resize-handle.scss';
diff --git a/packages/js/product-editor/src/style.scss b/packages/js/product-editor/src/style.scss
index 4c6f67e6d9a..a7bc222319f 100644
--- a/packages/js/product-editor/src/style.scss
+++ b/packages/js/product-editor/src/style.scss
@@ -12,6 +12,7 @@
@import 'components/block-editor/style.scss';
@import 'blocks/checkbox/editor.scss';
@import 'components/radio-field/style.scss';
+@import 'components/iframe-editor/style.scss';
@import 'components/section/editor.scss';
@import 'components/tab/editor.scss';
@import 'components/tabs/style.scss';
diff --git a/plugins/woocommerce/changelog/add-37266 b/plugins/woocommerce/changelog/add-37266
new file mode 100644
index 00000000000..21214fe4e59
--- /dev/null
+++ b/plugins/woocommerce/changelog/add-37266
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Add unresolved assets for iframe editors to editor settings
diff --git a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/Init.php b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/Init.php
index eccdc352acb..de000b2ce89 100644
--- a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/Init.php
+++ b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/Init.php
@@ -55,8 +55,9 @@ class Init {
$editor_settings = array();
if ( ! empty( $post_type_object->template ) ) {
- $editor_settings['template'] = $post_type_object->template;
- $editor_settings['templateLock'] = ! empty( $post_type_object->template_lock ) ? $post_type_object->template_lock : false;
+ $editor_settings['template'] = $post_type_object->template;
+ $editor_settings['templateLock'] = ! empty( $post_type_object->template_lock ) ? $post_type_object->template_lock : false;
+ $editor_settings['__unstableResolvedAssets'] = $this->get_resolved_assets();
}
$editor_settings = get_block_editor_settings( $editor_settings, $block_editor_context );
@@ -115,4 +116,103 @@ class Init {
return $link;
}
+ /**
+ * Get the resolved assets needed for the iframe editor.
+ *
+ * @return array Styles and scripts.
+ */
+ private function get_resolved_assets() {
+ if ( function_exists( 'gutenberg_resolve_assets_override' ) ) {
+ return gutenberg_resolve_assets_override();
+ }
+
+ global $pagenow;
+
+ $script_handles = array(
+ 'wp-polyfill',
+ );
+ // Note for core merge: only 'wp-edit-blocks' should be in this array.
+ $style_handles = array(
+ 'wp-edit-blocks',
+ );
+
+ if ( current_theme_supports( 'wp-block-styles' ) ) {
+ $style_handles[] = 'wp-block-library-theme';
+ }
+
+ if ( 'widgets.php' === $pagenow || 'customize.php' === $pagenow ) {
+ $style_handles[] = 'wp-widgets';
+ $style_handles[] = 'wp-edit-widgets';
+ }
+
+ $block_registry = \WP_Block_Type_Registry::get_instance();
+
+ foreach ( $block_registry->get_all_registered() as $block_type ) {
+ // In older WordPress versions, like 6.0, these properties are not defined.
+ if ( isset( $block_type->style_handles ) && is_array( $block_type->style_handles ) ) {
+ $style_handles = array_merge( $style_handles, $block_type->style_handles );
+ }
+
+ if ( isset( $block_type->editor_style_handles ) && is_array( $block_type->editor_style_handles ) ) {
+ $style_handles = array_merge( $style_handles, $block_type->editor_style_handles );
+ }
+
+ if ( isset( $block_type->script_handles ) && is_array( $block_type->script_handles ) ) {
+ $script_handles = array_merge( $script_handles, $block_type->script_handles );
+ }
+ }
+
+ $style_handles = array_unique( $style_handles );
+ $done = wp_styles()->done;
+
+ ob_start();
+
+ // We do not need reset styles for the iframed editor.
+ wp_styles()->done = array( 'wp-reset-editor-styles' );
+ wp_styles()->do_items( $style_handles );
+ wp_styles()->done = $done;
+
+ $styles = ob_get_clean();
+
+ $script_handles = array_unique( $script_handles );
+ $done = wp_scripts()->done;
+
+ ob_start();
+
+ wp_scripts()->done = array();
+ wp_scripts()->do_items( $script_handles );
+ wp_scripts()->done = $done;
+
+ $scripts = ob_get_clean();
+
+ /*
+ * Generate font @font-face styles for the site editor iframe.
+ * Use the registered font families for printing.
+ */
+ if ( class_exists( '\WP_Fonts' ) ) {
+ $wp_fonts = wp_fonts();
+ $registered = $wp_fonts->get_registered_font_families();
+ if ( ! empty( $registered ) ) {
+ $queue = $wp_fonts->queue;
+ $done = $wp_fonts->done;
+
+ $wp_fonts->done = array();
+ $wp_fonts->queue = $registered;
+
+ ob_start();
+ $wp_fonts->do_items();
+ $styles .= ob_get_clean();
+
+ // Reset the Web Fonts API.
+ $wp_fonts->done = $done;
+ $wp_fonts->queue = $queue;
+ }
+ }
+
+ return array(
+ 'styles' => $styles,
+ 'scripts' => $scripts,
+ );
+ }
+
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 9d24fa04cd5..e9b8b61a0fa 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1426,6 +1426,7 @@ importers:
'@types/wordpress__data': ^6.0.2
'@types/wordpress__date': ^3.3.2
'@types/wordpress__editor': ^13.0.0
+ '@types/wordpress__keycodes': ^2.3.1
'@types/wordpress__media-utils': ^3.0.0
'@types/wordpress__plugins': ^3.0.0
'@woocommerce/admin-layout': workspace:*
@@ -1457,6 +1458,7 @@ importers:
'@wordpress/icons': wp-6.0
'@wordpress/interface': wp-6.0
'@wordpress/keyboard-shortcuts': wp-6.0
+ '@wordpress/keycodes': wp-6.0
'@wordpress/media-utils': wp-6.0
'@wordpress/plugins': wp-6.0
'@wordpress/url': wp-6.0
@@ -1512,6 +1514,7 @@ importers:
'@wordpress/icons': 8.2.3
'@wordpress/interface': 4.5.6_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/keyboard-shortcuts': 3.4.1_react@17.0.2
+ '@wordpress/keycodes': 3.6.1
'@wordpress/media-utils': 3.4.1
'@wordpress/plugins': 4.4.3_react@17.0.2
'@wordpress/url': 3.7.1
@@ -1539,6 +1542,7 @@ importers:
'@types/wordpress__data': 6.0.2
'@types/wordpress__date': 3.3.2
'@types/wordpress__editor': 13.0.0_sfoxds7t5ydpegc3knd667wn6m
+ '@types/wordpress__keycodes': 2.3.1
'@types/wordpress__media-utils': 3.0.0_sfoxds7t5ydpegc3knd667wn6m
'@types/wordpress__plugins': 3.0.0_sfoxds7t5ydpegc3knd667wn6m
'@woocommerce/eslint-plugin': link:../eslint-plugin
@@ -2545,7 +2549,7 @@ packages:
qs: 6.10.3
react: 17.0.2
redux: 4.2.0
- tslib: 2.5.0
+ tslib: 2.3.1
utility-types: 3.10.0
validator: 13.7.0
transitivePeerDependencies:
@@ -2594,13 +2598,13 @@ packages:
dependencies:
'@automattic/explat-client': 0.0.3
react: 17.0.2
- tslib: 2.5.0
+ tslib: 2.3.1
dev: false
/@automattic/explat-client/0.0.3:
resolution: {integrity: sha512-N2/H9l3JZLZLSIyZJMnHKUWZWFjeakU40vm3k3EHdCHdKh8pu2Mz/BrMbtWImYBzaEJnbUZrHM/fAuhFy4sORg==}
dependencies:
- tslib: 2.5.0
+ tslib: 2.3.1
dev: false
/@automattic/format-currency/1.0.0-alpha.0:
@@ -2644,7 +2648,7 @@ packages:
'@automattic/calypso-url': 1.0.0
'@automattic/languages': 1.0.0
'@wordpress/compose': 5.17.0_react@17.0.2
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
react: 17.0.2
tslib: 2.5.0
transitivePeerDependencies:
@@ -2700,7 +2704,7 @@ packages:
'@wordpress/data': 6.6.1_react@17.0.2
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/primitives': 3.8.0
'@wordpress/react-i18n': 3.8.0
@@ -3011,32 +3015,6 @@ packages:
browserslist: 4.19.3
semver: 6.3.0
- /@babel/helper-compilation-targets/7.17.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.21.0
- '@babel/core': 7.12.9
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.4
- semver: 6.3.0
- dev: true
-
- /@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.21.0
- '@babel/core': 7.17.8
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.4
- semver: 6.3.0
- dev: true
-
/@babel/helper-compilation-targets/7.17.7_@babel+core@7.21.3:
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
engines: {node: '>=6.9.0'}
@@ -3102,24 +3080,6 @@ packages:
lru-cache: 5.1.1
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.12.9:
- resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.20.7
- '@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.17.8:
resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
engines: {node: '>=6.9.0'}
@@ -3199,9 +3159,9 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.21.0
- '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-replace-supers': 7.20.7
'@babel/helper-split-export-declaration': 7.18.6
transitivePeerDependencies:
- supports-color
@@ -3349,12 +3309,6 @@ packages:
dependencies:
'@babel/types': 7.21.3
- /@babel/helper-member-expression-to-functions/7.18.9:
- resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.21.3
-
/@babel/helper-member-expression-to-functions/7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
@@ -3644,26 +3598,6 @@ packages:
dependencies:
'@babel/types': 7.21.3
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
engines: {node: '>=6.9.0'}
@@ -3703,30 +3637,6 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@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.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@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.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
engines: {node: '>=6.9.0'}
@@ -3787,34 +3697,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.12.9:
- resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.12.9
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.8:
- resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@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.16.8_@babel+core@7.21.3:
resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
engines: {node: '>=6.9.0'}
@@ -3884,19 +3766,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- 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.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
engines: {node: '>=6.9.0'}
@@ -3959,34 +3828,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.12.9:
- resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.12.0
- 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/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.12.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.8:
- resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
- 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.20.2
- '@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.17.6_@babel+core@7.21.3:
resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
engines: {node: '>=6.9.0'}
@@ -4080,28 +3921,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@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:
- resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
engines: {node: '>=6.9.0'}
@@ -4186,28 +4005,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@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:
- resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
engines: {node: '>=6.9.0'}
@@ -4261,28 +4058,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@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:
- resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
engines: {node: '>=6.9.0'}
@@ -4336,28 +4111,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@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:
- resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
engines: {node: '>=6.9.0'}
@@ -4411,17 +4164,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@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:
- resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9
- dev: true
-
/@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
engines: {node: '>=6.9.0'}
@@ -4484,28 +4226,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@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:
- resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
engines: {node: '>=6.9.0'}
@@ -4573,20 +4293,6 @@ packages:
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
'@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.12.9
- /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.12.9:
- resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.21.0
- '@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@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
- dev: true
-
/@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.8:
resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
engines: {node: '>=6.9.0'}
@@ -4665,28 +4371,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@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:
- resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
engines: {node: '>=6.9.0'}
@@ -4740,18 +4424,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9
- /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@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
- dev: true
-
/@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
engines: {node: '>=6.9.0'}
@@ -4821,19 +4493,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.12.9:
- resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- 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.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.8:
resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
engines: {node: '>=6.9.0'}
@@ -4898,21 +4557,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@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.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
engines: {node: '>=6.9.0'}
@@ -4997,28 +4641,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- 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.20.2
- dev: true
-
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
- engines: {node: '>=4'}
- 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.20.2
- dev: true
-
/@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
engines: {node: '>=4'}
@@ -5677,16 +5299,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
engines: {node: '>=6.9.0'}
@@ -5748,20 +5360,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.12.9:
- resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.16.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.8:
resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
engines: {node: '>=6.9.0'}
@@ -5839,26 +5437,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
engines: {node: '>=6.9.0'}
@@ -5906,16 +5484,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
engines: {node: '>=6.9.0'}
@@ -5981,25 +5549,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-classes/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@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.20.2
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
engines: {node: '>=6.9.0'}
@@ -6105,26 +5654,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
engines: {node: '>=6.9.0'}
@@ -6172,16 +5701,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.8:
resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
engines: {node: '>=6.9.0'}
@@ -6240,28 +5759,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- 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.20.2
- dev: true
-
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
- 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.20.2
- dev: true
-
/@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
engines: {node: '>=6.9.0'}
@@ -6313,26 +5810,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
engines: {node: '>=6.9.0'}
@@ -6382,28 +5859,6 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
- 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.20.2
- dev: true
-
/@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
engines: {node: '>=6.9.0'}
@@ -6485,16 +5940,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
engines: {node: '>=6.9.0'}
@@ -6553,30 +5998,6 @@ packages:
'@babel/helper-function-name': 7.19.0
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
- 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.20.2
- dev: true
-
/@babel/plugin-transform-function-name/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
engines: {node: '>=6.9.0'}
@@ -6632,26 +6053,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-literals/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
engines: {node: '>=6.9.0'}
@@ -6699,26 +6100,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
engines: {node: '>=6.9.0'}
@@ -6770,34 +6151,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.20.2
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
- 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.20.2
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
engines: {node: '>=6.9.0'}
@@ -6864,21 +6217,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.21.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.17.8:
resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
engines: {node: '>=6.9.0'}
@@ -6963,38 +6301,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.12.9:
- resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-validator-identifier': 7.19.1
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.8:
- resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
- 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.20.2
- '@babel/helper-validator-identifier': 7.19.1
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.21.3:
resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
engines: {node: '>=6.9.0'}
@@ -7067,32 +6373,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
- 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.20.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
engines: {node: '>=6.9.0'}
@@ -7153,26 +6433,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.12.9:
- resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.8:
- resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
- 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
- dev: true
-
/@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.21.3:
resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
engines: {node: '>=6.9.0'}
@@ -7223,26 +6483,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-new-target/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
engines: {node: '>=6.9.0'}
@@ -7294,32 +6534,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-replace-supers': 7.19.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-object-super/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
engines: {node: '>=6.9.0'}
@@ -7379,16 +6593,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
engines: {node: '>=6.9.0'}
@@ -7446,26 +6650,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
engines: {node: '>=6.9.0'}
@@ -7711,26 +6895,6 @@ packages:
'@babel/core': 7.12.9
regenerator-transform: 0.14.5
- /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- regenerator-transform: 0.14.5
- dev: true
-
- /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- regenerator-transform: 0.14.5
- dev: true
-
/@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
engines: {node: '>=6.9.0'}
@@ -7782,26 +6946,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
engines: {node: '>=6.9.0'}
@@ -7916,16 +7060,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
engines: {node: '>=6.9.0'}
@@ -7984,17 +7118,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- /@babel/plugin-transform-spread/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- dev: true
-
/@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
engines: {node: '>=6.9.0'}
@@ -8057,26 +7180,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
engines: {node: '>=6.9.0'}
@@ -8124,16 +7227,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
engines: {node: '>=6.9.0'}
@@ -8191,26 +7284,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
engines: {node: '>=6.9.0'}
@@ -8311,26 +7384,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
- dev: true
-
/@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
engines: {node: '>=6.9.0'}
@@ -8380,28 +7433,6 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- 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.20.2
- dev: true
-
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
- 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.20.2
- dev: true
-
/@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
engines: {node: '>=6.9.0'}
@@ -8533,28 +7564,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.12.9
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.12.9
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.12.9
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.12.9
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.12.9
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
+ '@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.12.9
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.12.9
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.12.9
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.12.9
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.9
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.9
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.12.9
@@ -8569,44 +7600,44 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.9
- '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.12.9
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.12.9
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.12.9
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.12.9
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.12.9
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.12.9
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.12.9
+ '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.12.9
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.12.9
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.12.9
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.12.9
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.12.9
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.12.9
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.12.9
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.12.9
'@babel/preset-modules': 0.1.5_@babel+core@7.12.9
- '@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.12.9
+ '@babel/types': 7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.12.9
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.12.9
babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.12.9
- core-js-compat: 3.21.1
+ core-js-compat: 3.25.5
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -8618,28 +7649,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.8
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.8
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-logical-assignment-operators': 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-numeric-separator': 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-catch-binding': 7.16.7_@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-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@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
@@ -8654,44 +7685,44 @@ packages:
'@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.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoped-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-computed-properties': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.17.8
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.8
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-reserved-words': 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/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-unicode-regex': 7.16.7_@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.17.0
- babel-plugin-polyfill-corejs2: 0.3.0_@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.5.2_@babel+core@7.17.8
babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.17.8
- core-js-compat: 3.21.1
+ core-js-compat: 3.25.5
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -11252,7 +10283,7 @@ packages:
strip-ansi: 6.0.1
supports-color: 8.1.1
supports-hyperlinks: 2.2.0
- tslib: 2.5.0
+ tslib: 2.3.1
widest-line: 3.1.0
wrap-ansi: 7.0.0
@@ -11322,7 +10353,7 @@ packages:
load-json-file: 5.3.0
npm-run-path: 4.0.1
semver: 7.3.7
- tslib: 2.5.0
+ tslib: 2.3.1
yarn: 1.22.19
transitivePeerDependencies:
- supports-color
@@ -16782,7 +15813,7 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/dom-ready': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
/@wordpress/a11y/3.6.1:
resolution: {integrity: sha512-mOQtwpY5hUt4vMLyshZPPV1x9MBRF2FimUjIImfYJb1x8o6jY4npikzWplAfWYQUJJjWfw/1NmfqD7vUOh9+ww==}
@@ -16827,7 +15858,7 @@ packages:
engines: {node: '>=12'}
dependencies:
'@babel/runtime': 7.21.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/url': 3.29.0
/@wordpress/api-fetch/6.3.1:
@@ -17035,13 +16066,13 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
'@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
- '@wordpress/keycodes': 3.28.0
+ '@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.28.0
@@ -17093,13 +16124,13 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
'@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
- '@wordpress/keycodes': 3.28.0
+ '@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.28.0
@@ -17151,13 +16182,13 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 8.4.0
'@wordpress/is-shallow-equal': 4.28.0
'@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
- '@wordpress/keycodes': 3.28.0
+ '@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.28.0
@@ -17204,20 +16235,20 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.19.0
'@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
- '@wordpress/keycodes': 3.28.0
+ '@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/style-engine': 0.15.0
'@wordpress/token-list': 2.19.0
'@wordpress/url': 3.29.0
- '@wordpress/warning': 2.19.0
+ '@wordpress/warning': 2.28.0
'@wordpress/wordcount': 3.19.0
change-case: 4.1.2
classnames: 2.3.1
@@ -17258,13 +16289,13 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.19.0
'@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
- '@wordpress/keycodes': 3.28.0
+ '@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
@@ -17313,11 +16344,11 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/notices': 3.28.0_react@17.0.2
'@wordpress/primitives': 3.17.0
'@wordpress/reusable-blocks': 3.17.0_vcke6catv4iqpjdw24uwvlzyyi
@@ -17366,9 +16397,9 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/is-shallow-equal': 4.28.0
'@wordpress/shortcode': 3.28.0
change-case: 4.1.2
@@ -17399,9 +16430,9 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/dom': 3.28.0
'@wordpress/element': 5.5.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/is-shallow-equal': 4.28.0
'@wordpress/private-apis': 0.10.0
'@wordpress/shortcode': 3.28.0
@@ -17457,11 +16488,11 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/escape-html': 2.28.0
- '@wordpress/hooks': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/hooks': 3.31.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/primitives': 3.26.0
'@wordpress/rich-text': 5.17.0_react@17.0.2
'@wordpress/warning': 2.28.0
@@ -17511,11 +16542,11 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/escape-html': 2.28.0
- '@wordpress/hooks': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/hooks': 3.31.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/primitives': 3.26.0
'@wordpress/rich-text': 5.17.0_react@17.0.2
'@wordpress/warning': 2.28.0
@@ -17835,11 +16866,11 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/escape-html': 2.28.0
- '@wordpress/hooks': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/hooks': 3.31.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/primitives': 3.26.0
'@wordpress/rich-text': 5.17.0_react@17.0.2
'@wordpress/warning': 2.28.0
@@ -17890,11 +16921,11 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/escape-html': 2.28.0
- '@wordpress/hooks': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/hooks': 3.31.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/primitives': 3.26.0
'@wordpress/rich-text': 5.17.0_react@17.0.2
'@wordpress/warning': 2.28.0
@@ -17944,11 +16975,11 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/escape-html': 2.28.0
- '@wordpress/hooks': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/hooks': 3.31.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/primitives': 3.26.0
'@wordpress/rich-text': 5.17.0_react@17.0.2
'@wordpress/warning': 2.28.0
@@ -18005,11 +17036,11 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/escape-html': 2.28.0
- '@wordpress/hooks': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/hooks': 3.31.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/primitives': 3.26.0
'@wordpress/rich-text': 5.17.0_react@17.0.2
'@wordpress/warning': 2.28.0
@@ -18074,7 +17105,7 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/priority-queue': 2.28.0
change-case: 4.1.2
clipboard: 2.0.10
@@ -18116,7 +17147,7 @@ packages:
'@wordpress/dom': 3.28.0
'@wordpress/element': 5.5.0
'@wordpress/is-shallow-equal': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
'@wordpress/priority-queue': 2.28.0
change-case: 4.1.2
clipboard: 2.0.10
@@ -18162,7 +17193,7 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/html-entities': 3.28.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/is-shallow-equal': 4.28.0
'@wordpress/url': 3.29.0
change-case: 4.1.2
@@ -18381,7 +17412,7 @@ packages:
engines: {node: '>=12'}
dependencies:
'@babel/runtime': 7.21.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
/@wordpress/deprecated/3.6.1:
resolution: {integrity: sha512-ilOkjXejcnJMxnq1gTVkBnDPP9W+XjlEe1TIfaMKcCwKsfsNy6bgURxWl1qIM2dPjH+5KK65bPjW0XELTMJy4w==}
@@ -18799,8 +17830,8 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
- /@wordpress/hooks/3.28.0:
- resolution: {integrity: sha512-u81dqGGhvq9QGjll41hN6vYhQP3UoT06vIls4xhp7Uc+fhQpce3cGyRw9PYjPrL17gK2derJy30edmQR5v7OzQ==}
+ /@wordpress/hooks/3.31.0:
+ resolution: {integrity: sha512-dtXTk6miFaqAQmtjuO1Ox11sdkJNMl/Wv402VlPI8Z3QBUyEAH+FMGoHbAwpy3AGHJJb5pFYSRQBNAgZMGZLIw==}
engines: {node: '>=12'}
dependencies:
'@babel/runtime': 7.21.0
@@ -18836,13 +17867,13 @@ packages:
sprintf-js: 1.1.2
tannin: 1.2.0
- /@wordpress/i18n/4.28.0:
- resolution: {integrity: sha512-SGtdwMfokvye+7nt3OEMZiUn+VqnDsVvg1aGjOElzdxAvAGTB5eEjgLfD/pWnKwqzgOe7vWtvS9e1X0hA8uq1A==}
+ /@wordpress/i18n/4.31.0:
+ resolution: {integrity: sha512-MRPnym60ZUqZv4AZkXK3HPdZBRUEUD+zU11sB+5ydBPYMQXLSSxOGmt3NlEiPxynYPNkjBtW/52DCQz99rsDzw==}
engines: {node: '>=12'}
hasBin: true
dependencies:
'@babel/runtime': 7.21.0
- '@wordpress/hooks': 3.28.0
+ '@wordpress/hooks': 3.31.0
gettext-parser: 1.4.0
memize: 1.1.0
sprintf-js: 1.1.2
@@ -19099,7 +18130,7 @@ packages:
'@babel/runtime': 7.21.0
'@wordpress/data': 7.3.0_react@17.0.2
'@wordpress/element': 4.20.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/keycodes': 3.31.0
react: 17.0.2
rememo: 4.0.0
@@ -19125,12 +18156,12 @@ packages:
'@wordpress/i18n': 3.20.0
lodash: 4.17.21
- /@wordpress/keycodes/3.28.0:
- resolution: {integrity: sha512-J449VGhB6txs7jBlwSv4MHTihIWDmh2RbG6CTxS9mG3jKL7YJq3+smZ8OUYYH1/4CAZCBumFXShokH5WP6Aynw==}
+ /@wordpress/keycodes/3.31.0:
+ resolution: {integrity: sha512-Uq6TFeDhbQzTQ2vyvJ3GrkbX/jnzTUr3f3cI9PQExhjg3SsCYqWKT2nxc+X03FXc0kV4XkPN3MJhGpzmx/Kikw==}
engines: {node: '>=12'}
dependencies:
'@babel/runtime': 7.21.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
change-case: 4.1.2
/@wordpress/keycodes/3.4.1:
@@ -19280,7 +18311,7 @@ packages:
'@wordpress/a11y': 3.28.0
'@wordpress/components': 19.12.0_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/data': 6.15.0_react@17.0.2
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 8.4.0
classnames: 2.3.1
react: 17.0.2
@@ -19396,7 +18427,7 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/element': 4.20.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
utility-types: 3.10.0
dev: false
@@ -19434,7 +18465,7 @@ packages:
'@wordpress/core-data': 5.2.0_react@17.0.2
'@wordpress/data': 7.3.0_react@17.0.2
'@wordpress/element': 4.20.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/notices': 3.28.0_react@17.0.2
'@wordpress/url': 3.29.0
@@ -19463,7 +18494,7 @@ packages:
'@wordpress/core-data': 5.2.0_react@17.0.2
'@wordpress/data': 7.3.0_react@17.0.2
'@wordpress/element': 4.20.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/icons': 9.19.0
'@wordpress/notices': 3.28.0_react@17.0.2
'@wordpress/url': 3.29.0
@@ -19492,8 +18523,8 @@ packages:
'@wordpress/deprecated': 3.28.0
'@wordpress/element': 4.20.0
'@wordpress/escape-html': 2.28.0
- '@wordpress/i18n': 4.28.0
- '@wordpress/keycodes': 3.28.0
+ '@wordpress/i18n': 4.31.0
+ '@wordpress/keycodes': 3.31.0
memize: 1.1.0
react: 17.0.2
rememo: 4.0.0
@@ -19683,7 +18714,7 @@ packages:
'@wordpress/data': 7.3.0_react@17.0.2
'@wordpress/deprecated': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/url': 3.29.0
lodash: 4.17.21
react: 17.0.2
@@ -19713,7 +18744,7 @@ packages:
'@wordpress/data': 7.3.0_react@17.0.2
'@wordpress/deprecated': 3.28.0
'@wordpress/element': 4.20.0
- '@wordpress/i18n': 4.28.0
+ '@wordpress/i18n': 4.31.0
'@wordpress/url': 3.29.0
lodash: 4.17.21
react: 17.0.2
@@ -20721,7 +19752,7 @@ packages:
/axios/0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies:
- follow-redirects: 1.14.7_debug@4.3.3
+ follow-redirects: 1.14.7
transitivePeerDependencies:
- debug
@@ -21209,19 +20240,6 @@ packages:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.17.8:
- resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
- 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.0_@babel+core@7.21.3:
resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
peerDependencies:
@@ -27246,6 +26264,15 @@ packages:
debug:
optional: true
+ /follow-redirects/1.14.7:
+ resolution: {integrity: sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+
/follow-redirects/1.14.7_debug@4.3.3:
resolution: {integrity: sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==}
engines: {node: '>=4.0'}
@@ -27256,6 +26283,7 @@ packages:
optional: true
dependencies:
debug: 4.3.3
+ dev: true
/follow-redirects/1.5.10:
resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==}
@@ -27404,18 +26432,18 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@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.2.2
+ deepmerge: 4.3.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.3.5
+ semver: 7.3.8
tapable: 1.1.3
typescript: 4.9.5
webpack: 5.70.0
@@ -27435,18 +26463,18 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@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.2.2
+ deepmerge: 4.3.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.3.5
+ semver: 7.3.8
tapable: 1.1.3
typescript: 4.9.5
webpack: 4.46.0
@@ -27466,19 +26494,19 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@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.2.2
+ 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.3.5
+ semver: 7.3.8
tapable: 1.1.3
typescript: 4.9.5
webpack: 4.46.0_webpack-cli@3.3.12
@@ -35574,7 +34602,7 @@ packages:
normalize-package-data: 3.0.3
qqjs: 0.3.11
semver: 7.3.7
- tslib: 2.5.0
+ tslib: 2.3.1
yeoman-environment: 3.10.0_7yoz4vugw4qcykie6sit5r22dm
yeoman-generator: 5.7.0_yeoman-environment@3.10.0
yosay: 2.0.2
@@ -42436,7 +41464,6 @@ packages:
/tslib/2.3.1:
resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
- dev: true
/tslib/2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}