diff --git a/client/cody-ui/BUILD.bazel b/client/cody-ui/BUILD.bazel index 840830df648..9e44befbe7d 100644 --- a/client/cody-ui/BUILD.bazel +++ b/client/cody-ui/BUILD.bazel @@ -32,6 +32,7 @@ ts_project( "src/chat/Transcript.story.tsx", "src/chat/Transcript.tsx", "src/chat/TranscriptItem.tsx", + "src/chat/actions/TranscriptAction.tsx", "src/chat/fixtures.ts", "src/chat/inputContext/ChatInputContext.story.tsx", "src/chat/inputContext/ChatInputContext.tsx", diff --git a/client/cody-ui/src/Chat.tsx b/client/cody-ui/src/Chat.tsx index fd72b363d00..def2729ae96 100644 --- a/client/cody-ui/src/Chat.tsx +++ b/client/cody-ui/src/Chat.tsx @@ -72,6 +72,7 @@ export const Chat: React.FunctionComponent = ({ transcriptItemClassName, humanTranscriptItemClassName, transcriptItemParticipantClassName, + transcriptActionClassName, inputRowClassName, chatInputContextClassName, chatInputClassName, @@ -148,6 +149,7 @@ export const Chat: React.FunctionComponent = ({ transcriptItemClassName={transcriptItemClassName} humanTranscriptItemClassName={humanTranscriptItemClassName} transcriptItemParticipantClassName={transcriptItemParticipantClassName} + transcriptActionClassName={transcriptActionClassName} className={styles.transcriptContainer} /> diff --git a/client/cody-ui/src/chat/ContextFiles.module.css b/client/cody-ui/src/chat/ContextFiles.module.css deleted file mode 100644 index 71fdf8555d8..00000000000 --- a/client/cody-ui/src/chat/ContextFiles.module.css +++ /dev/null @@ -1,41 +0,0 @@ -.context-files-collapsed { - display: flex; - cursor: pointer; -} - -.context-files-expanded { - display: flex; -} - -.context-files-toggle-icon { - cursor: pointer; - margin-right: 0.5rem; -} - -.context-files-list-title { - cursor: pointer; - font-style: italic; -} - -.context-files-list-container { - margin-top: 0; - padding-inline-start: 0; - list-style: none; -} - -.context-files-list-container li { - padding: 0.1rem; - /* stylelint-disable-next-line declaration-property-unit-allowed-list */ - font-size: 90%; -} - -.context-files-collapsed .context-files-toggle-icon { - display: flex; - align-items: flex-start; -} - -.context-files-collapsed-text { - display: flex; - align-items: flex-start; - font-style: italic; -} diff --git a/client/cody-ui/src/chat/ContextFiles.tsx b/client/cody-ui/src/chat/ContextFiles.tsx index 619a1dccd0e..4e24854e770 100644 --- a/client/cody-ui/src/chat/ContextFiles.tsx +++ b/client/cody-ui/src/chat/ContextFiles.tsx @@ -1,11 +1,10 @@ -/* eslint-disable jsx-a11y/no-static-element-interactions */ -/* eslint-disable jsx-a11y/click-events-have-key-events */ -import React, { useState } from 'react' +import React from 'react' -import { mdiChevronDown, mdiChevronRight } from '@mdi/js' -import classNames from 'classnames' +import { mdiFileDocumentOutline, mdiMagnify } from '@mdi/js' -import styles from './ContextFiles.module.css' +import { pluralize } from '@sourcegraph/common' + +import { TranscriptAction } from './actions/TranscriptAction' export interface FileLinkProps { path: string @@ -15,60 +14,17 @@ export const ContextFiles: React.FunctionComponent<{ contextFiles: string[] fileLinkComponent: React.FunctionComponent className?: string -}> = ({ contextFiles, fileLinkComponent: FileLink, className }) => { - const [isExpanded, setIsExpanded] = useState(false) - - if (contextFiles.length === 1) { - return ( -

- Cody read{' '} - - - {' '} - to provide an answer. -

- ) - } - - if (isExpanded) { - return ( -
- setIsExpanded(false)}> - - -
-
setIsExpanded(false)}> - Cody read the following files to provide an answer: -
-
    - {contextFiles.map(file => ( -
  • - -
  • - ))} -
-
-
- ) - } - - return ( -
setIsExpanded(true)}> - - - -
- - Cody read {contextFiles[0].split('/').pop()} and{' '} - {contextFiles.length - 1} other {contextFiles.length > 2 ? 'files' : 'file'} to provide an answer. - -
-
- ) -} - -const Icon: React.FC<{ svgPath: string }> = ({ svgPath }) => ( - - - +}> = ({ contextFiles, fileLinkComponent: FileLink, className }) => ( + ({ + verb: 'Read', + object: , + icon: mdiFileDocumentOutline, + })), + ]} + className={className} + /> ) diff --git a/client/cody-ui/src/chat/Transcript.story.module.css b/client/cody-ui/src/chat/Transcript.story.module.css index c5efd8de443..75188757624 100644 --- a/client/cody-ui/src/chat/Transcript.story.module.css +++ b/client/cody-ui/src/chat/Transcript.story.module.css @@ -4,6 +4,7 @@ --row-foreground-color: black; --row-participant-name-color: #777; --row-border-color: #cccccc; + --transcript-action-background-color: #00000011; } :global(.theme-dark) { @@ -12,6 +13,7 @@ --row-foreground-color: #ffffffee; --row-participant-name-color: #ffffff88; --row-border-color: #ffffff33; + --transcript-action-background-color: #ffffff11; } .transcript-item { @@ -35,3 +37,7 @@ .transcript-item-participant { color: var(--row-participant-name-color); } + +.transcript-action { + background-color: var(--transcript-action-background-color); +} diff --git a/client/cody-ui/src/chat/Transcript.story.tsx b/client/cody-ui/src/chat/Transcript.story.tsx index 433ff6e9e99..66c4f8493a1 100644 --- a/client/cody-ui/src/chat/Transcript.story.tsx +++ b/client/cody-ui/src/chat/Transcript.story.tsx @@ -46,6 +46,7 @@ export const Simple: ComponentStoryObj = { transcriptItemClassName={styles.transcriptItem} humanTranscriptItemClassName={styles.humanTranscriptItem} transcriptItemParticipantClassName={styles.transcriptItemParticipant} + transcriptActionClassName={styles.transcriptAction} /> ), } diff --git a/client/cody-ui/src/chat/Transcript.tsx b/client/cody-ui/src/chat/Transcript.tsx index 5d4114fee0c..aa8f942816a 100644 --- a/client/cody-ui/src/chat/Transcript.tsx +++ b/client/cody-ui/src/chat/Transcript.tsx @@ -25,6 +25,7 @@ export const Transcript: React.FunctionComponent< transcriptItemClassName, humanTranscriptItemClassName, transcriptItemParticipantClassName, + transcriptActionClassName, }) => { const transcriptContainerRef = useRef(null) useEffect(() => { @@ -71,6 +72,7 @@ export const Transcript: React.FunctionComponent< transcriptItemClassName={transcriptItemClassName} humanTranscriptItemClassName={humanTranscriptItemClassName} transcriptItemParticipantClassName={transcriptItemParticipantClassName} + transcriptActionClassName={transcriptActionClassName} /> ))} {messageInProgress && messageInProgress.speaker === 'assistant' && ( @@ -81,6 +83,7 @@ export const Transcript: React.FunctionComponent< codeBlocksCopyButtonClassName={codeBlocksCopyButtonClassName} transcriptItemClassName={transcriptItemClassName} transcriptItemParticipantClassName={transcriptItemParticipantClassName} + transcriptActionClassName={transcriptActionClassName} /> )} diff --git a/client/cody-ui/src/chat/TranscriptItem.module.css b/client/cody-ui/src/chat/TranscriptItem.module.css index dd052e2da91..7bf22462c4a 100644 --- a/client/cody-ui/src/chat/TranscriptItem.module.css +++ b/client/cody-ui/src/chat/TranscriptItem.module.css @@ -46,6 +46,14 @@ width: 1rem; } +.actions { + display: flex; + flex-direction: column; + align-items: flex-start; + gap: calc(var(--spacing) * 0.5); + padding: 0 var(--spacing); +} + .content { padding: 0 var(--spacing) var(--spacing) var(--spacing); word-break: break-word; @@ -63,8 +71,3 @@ .content > div:first-child > *:last-child { margin-bottom: 0; } - -.context-files { - margin-top: var(--spacing); - font-size: 0.9rem; -} diff --git a/client/cody-ui/src/chat/TranscriptItem.tsx b/client/cody-ui/src/chat/TranscriptItem.tsx index 8f5d7241c39..9880883a8bc 100644 --- a/client/cody-ui/src/chat/TranscriptItem.tsx +++ b/client/cody-ui/src/chat/TranscriptItem.tsx @@ -20,6 +20,7 @@ export interface TranscriptItemClassNames { humanTranscriptItemClassName?: string transcriptItemParticipantClassName?: string codeBlocksCopyButtonClassName?: string + transcriptActionClassName?: string } /** @@ -39,6 +40,7 @@ export const TranscriptItem: React.FunctionComponent< humanTranscriptItemClassName, transcriptItemParticipantClassName, codeBlocksCopyButtonClassName, + transcriptActionClassName, }) => (
+ {message.contextFiles && message.contextFiles.length > 0 && ( +
+ +
+ )}
{message.displayText ? ( - <> - - {message.contextFiles && message.contextFiles.length > 0 && ( - - )} - + ) : inProgress ? ( ) : null} diff --git a/client/cody-ui/src/chat/actions/TranscriptAction.module.css b/client/cody-ui/src/chat/actions/TranscriptAction.module.css new file mode 100644 index 00000000000..bd85337fe1d --- /dev/null +++ b/client/cody-ui/src/chat/actions/TranscriptAction.module.css @@ -0,0 +1,60 @@ +.container { + display: inline-block; + padding: 0.4rem 0.4rem 0.3rem 0.7rem; + font-size: 0.9rem; +} +.container-open { + padding-bottom: 0.6rem; + display: flex; + flex-direction: column; + align-self: stretch; + gap: 0.75rem; +} + +.open-close-button { + display: inline-flex; + align-items: center; + gap: 0.2rem; + cursor: pointer; + + padding: 0; + appearance: none; + background: none; + border: none; + outline: none; + color: currentColor; + font-family: inherit; +} +.open-close-icon { + opacity: 0.8; + width: 1.25rem; + height: 1.25rem; +} + +.steps { + display: flex; + flex-direction: column; + gap: 0.75rem; + list-style-type: none; + margin: 0; + padding: 0; +} + +.step { + display: flex; + align-items: center; + gap: 0.3rem; +} +.step-icon { + width: 1.25rem; + height: 1.25rem; + opacity: 0.5; + flex-shrink: 0; + margin-right: 0.3rem; +} +.step-object { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + flex: 1; +} diff --git a/client/cody-ui/src/chat/actions/TranscriptAction.tsx b/client/cody-ui/src/chat/actions/TranscriptAction.tsx new file mode 100644 index 00000000000..ca53b97c1bc --- /dev/null +++ b/client/cody-ui/src/chat/actions/TranscriptAction.tsx @@ -0,0 +1,62 @@ +import React, { useState } from 'react' + +import { mdiChevronDown, mdiChevronUp } from '@mdi/js' +import classNames from 'classnames' + +import styles from './TranscriptAction.module.css' + +export interface TranscriptActionStep { + verb: string + object: string | JSX.Element + + /** + * The SVG path of an icon. + * + * @example mdiSearchWeb + */ + icon?: string +} + +export const TranscriptAction: React.FunctionComponent<{ + title: string | { verb: string; object: string } + steps: TranscriptActionStep[] + className?: string +}> = ({ title, steps, className }) => { + const [open, setOpen] = useState(false) + + return ( +
+ + {open && ( +
    + {steps.map((step, index) => ( + // eslint-disable-next-line react/no-array-index-key +
  1. + {step.icon && } {step.verb}{' '} + {step.object} +
  2. + ))} +
+ )} +
+ ) +} + +const Icon: React.FunctionComponent<{ svgPath: string; className?: string }> = ({ svgPath, className }) => ( + + + +) diff --git a/client/cody-ui/tsconfig.json b/client/cody-ui/tsconfig.json index dc61e521869..68e470ab698 100644 --- a/client/cody-ui/tsconfig.json +++ b/client/cody-ui/tsconfig.json @@ -12,10 +12,10 @@ "exclude": ["out", "dist"], "references": [ { - "path": "../common", + "path": "../cody-shared", }, { - "path": "../cody-shared", + "path": "../common", }, ], } diff --git a/client/cody-web/src/Chat.module.css b/client/cody-web/src/Chat.module.css index dfe1ff6bf8a..169c4a55aa3 100644 --- a/client/cody-web/src/Chat.module.css +++ b/client/cody-web/src/Chat.module.css @@ -35,6 +35,10 @@ color: #ffffff; } +.transcript-action { + background-color: Field; +} + .input-row { background-color: Canvas; border-top: solid 1px ButtonBorder; diff --git a/client/cody-web/src/Chat.tsx b/client/cody-web/src/Chat.tsx index 7c2b956f996..7ef825ce6c0 100644 --- a/client/cody-web/src/Chat.tsx +++ b/client/cody-web/src/Chat.tsx @@ -38,6 +38,7 @@ export const Chat: React.FunctionComponent< transcriptItemClassName={styles.transcriptItem} humanTranscriptItemClassName={styles.humanTranscriptItem} transcriptItemParticipantClassName={styles.transcriptItemParticipant} + transcriptActionClassName={styles.transcriptAction} inputRowClassName={styles.inputRow} chatInputClassName={styles.chatInput} /> diff --git a/client/cody/webviews/Chat.module.css b/client/cody/webviews/Chat.module.css index cc6f1508d8a..2612cc55173 100644 --- a/client/cody/webviews/Chat.module.css +++ b/client/cody/webviews/Chat.module.css @@ -38,6 +38,10 @@ body[data-vscode-theme-kind='vscode-high-contrast'] .human-transcript-item { color: var(--vscode-input-foreground); } +.transcript-action { + background-color: var(--code-background); +} + .code-blocks-copy-button { color: var(--vscode-button-secondaryForeground); background-color: var(--vscode-button-secondaryBackground); diff --git a/client/cody/webviews/Chat.tsx b/client/cody/webviews/Chat.tsx index 8a184279a9e..5b6c7d5bc29 100644 --- a/client/cody/webviews/Chat.tsx +++ b/client/cody/webviews/Chat.tsx @@ -54,6 +54,7 @@ export const Chat: React.FunctionComponent transcriptItemClassName={styles.transcriptItem} humanTranscriptItemClassName={styles.humanTranscriptItem} transcriptItemParticipantClassName={styles.transcriptItemParticipant} + transcriptActionClassName={styles.transcriptAction} inputRowClassName={styles.inputRow} chatInputContextClassName={styles.chatInputContext} chatInputClassName={styles.chatInputClassName} diff --git a/client/cody/webviews/FileLink.module.css b/client/cody/webviews/FileLink.module.css index e4dc7480f48..890144e9f98 100644 --- a/client/cody/webviews/FileLink.module.css +++ b/client/cody/webviews/FileLink.module.css @@ -5,7 +5,7 @@ cursor: pointer; font-size: inherit; text-decoration: underline; - display: inline; + display: contents; /* so our parent can tell us to truncate with ellipsis */ padding: 0; margin: 0; text-align: left; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d0dad033a76..d9d9395e9e5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -880,7 +880,7 @@ importers: buffer: 6.0.3 css-loader: 6.7.2_webpack@5.75.0 enhanced-resolve: 5.10.0 - esbuild: 0.17.8 + esbuild: 0.17.14 monaco-editor-webpack-plugin: 3.1.0_36f7bgbtpy6cm3hrsl56zvqhfa postcss: 8.4.21 postcss-cli: 10.1.0_postcss@8.4.21 @@ -891,9 +891,9 @@ importers: sass-loader: 13.2.0_sass@1.32.4+webpack@5.75.0 signale: 1.4.0 style-loader: 3.3.1_webpack@5.75.0 - terser-webpack-plugin: 5.3.6_6hyl5w2uqyeivowpusuiulbmoy + terser-webpack-plugin: 5.3.6_zj7shrtzhjuywytipisjis56au typed-scss-modules: 4.1.1_sass@1.32.4 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 devDependencies: '@types/sass': 1.16.1 @@ -1186,13 +1186,13 @@ importers: '@playwright/test': 1.25.0 '@sveltejs/adapter-auto': 2.0.0_@sveltejs+kit@1.5.6 '@sveltejs/adapter-static': 2.0.1_@sveltejs+kit@1.5.6 - '@sveltejs/kit': 1.5.6_svelte@3.55.1+vite@4.1.4 + '@sveltejs/kit': 1.5.6_svelte@3.57.0+vite@4.1.4 '@types/cookie': 0.5.1 '@types/prismjs': 1.26.0 - eslint-plugin-svelte3: 4.0.0_dbthnr4b2bdkhyiebwn7su3hnq - prettier-plugin-svelte: 2.9.0_4h247imu46srxjbpsfob5j3nnq - svelte: 3.55.1 - svelte-check: 3.0.4_svelte@3.55.1 + eslint-plugin-svelte3: 4.0.0_rj5u64jvf2goeyzkzkbbavvdee + prettier-plugin-svelte: 2.9.0_c25feh7akwshegxdj2xzo3ajiu + svelte: 3.57.0 + svelte-check: 3.0.4_svelte@3.57.0 tslib: 2.1.0 vite: 4.1.4 @@ -1291,14 +1291,14 @@ packages: graphql: '*' dependencies: '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 - '@babel/parser': 7.21.2 + '@babel/generator': 7.21.3 + '@babel/parser': 7.21.3 '@babel/runtime': 7.20.6 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.3 babel-preset-fbjs: 3.4.0_@babel+core@7.21.0 chalk: 4.1.2 - fb-watchman: 2.0.0 + fb-watchman: 2.0.2 fbjs: 3.0.0 glob: 7.2.3 graphql: 15.4.0 @@ -1381,10 +1381,6 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.20.5: - resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==} - engines: {node: '>=6.9.0'} - /@babel/compat-data/7.21.0: resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==} engines: {node: '>=6.9.0'} @@ -1394,12 +1390,12 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.21.1 + '@babel/generator': 7.21.3 '@babel/helper-module-transforms': 7.21.2 '@babel/helpers': 7.21.0 - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.3 convert-source-map: 1.7.0 debug: 4.3.4 @@ -1419,14 +1415,14 @@ packages: dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.21.1 + '@babel/generator': 7.21.3 '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-module-transforms': 7.21.2 '@babel/helpers': 7.21.0 - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 convert-source-map: 1.7.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -1435,15 +1431,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/generator/7.21.1: - resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.21.2 - '@jridgewell/gen-mapping': 0.3.2 - '@jridgewell/trace-mapping': 0.3.17 - jsesc: 2.5.2 - /@babel/generator/7.21.3: resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==} engines: {node: '>=6.9.0'} @@ -1452,7 +1439,6 @@ packages: '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.17 jsesc: 2.5.2 - dev: false /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} @@ -1473,7 +1459,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.20.5 + '@babel/compat-data': 7.21.0 '@babel/core': 7.21.0 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 @@ -1490,9 +1476,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 @@ -1516,7 +1502,7 @@ packages: '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -1562,18 +1548,11 @@ 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'} dependencies: '@babel/types': 7.21.3 - dev: false /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} @@ -1591,8 +1570,8 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 transitivePeerDependencies: - supports-color @@ -1624,18 +1603,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-replace-supers/7.19.1: - resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.3 - transitivePeerDependencies: - - supports-color - /@babel/helper-replace-supers/7.20.7: resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} engines: {node: '>=6.9.0'} @@ -1648,7 +1615,6 @@ packages: '@babel/types': 7.21.3 transitivePeerDependencies: - supports-color - dev: false /@babel/helper-simple-access/7.20.2: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} @@ -1686,7 +1652,7 @@ packages: dependencies: '@babel/helper-function-name': 7.21.0 '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.3 transitivePeerDependencies: - supports-color @@ -1696,8 +1662,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 transitivePeerDependencies: - supports-color @@ -1717,20 +1683,12 @@ packages: '@babel/types': 7.21.3 dev: true - /@babel/parser/7.21.2: - resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.21.2 - /@babel/parser/7.21.3: resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==} engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.21.3 - dev: false /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} @@ -1750,21 +1708,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 - - /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.21.0: - resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 - transitivePeerDependencies: - - supports-color + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} @@ -1779,7 +1723,6 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} @@ -1828,15 +1771,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 - /@babel/plugin-proposal-export-default-from/7.12.1_@babel+core@7.21.0: - resolution: {integrity: sha512-z5Q4Ke7j0AexQRfgUvnD+BdCSgpTEKnqQ3kskk2jWtOBulxICzd1X9BGt7kmWftxZ2W3++OZdt5gtmC8KLxdRQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-default-from': 7.12.1_@babel+core@7.21.0 - /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.21.0: resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} @@ -1846,7 +1780,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.21.0 - dev: false /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} @@ -1906,22 +1839,9 @@ packages: '@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.20.5_@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.20.2_@babel+core@7.21.0: - resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.21.0 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.21.0 - /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -1934,7 +1854,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.0 - dev: false /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} @@ -1946,17 +1865,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.0 - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.21.0: - resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 - /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} @@ -1967,7 +1875,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 - dev: false /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} @@ -2055,14 +1962,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-export-default-from/7.12.1_@babel+core@7.21.0: - resolution: {integrity: sha512-dP5eGg6tHEkhnRD2/vRG/KJKRSg8gtxu2i+P/8/yFPJn/CfPU5G0/7Gks2i3M6IOVAPQekmsLN9LPsmXFFL4Uw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} @@ -2071,7 +1970,6 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - dev: false /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} @@ -2218,15 +2116,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.21.0: - resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} @@ -2235,20 +2124,6 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - dev: false - - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.21.0: - resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 - transitivePeerDependencies: - - supports-color /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} @@ -2262,7 +2137,6 @@ packages: '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} @@ -2273,15 +2147,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.21.0: - resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} @@ -2290,26 +2155,6 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - dev: false - - /@babel/plugin-transform-classes/7.20.2_@babel+core@7.21.0: - resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 - '@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 /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} @@ -2329,16 +2174,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false - - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.21.0: - resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} @@ -2349,16 +2184,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/template': 7.20.7 - dev: false - - /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.21.0: - resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.21.0: resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} @@ -2368,7 +2193,6 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - dev: false /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} @@ -2399,16 +2223,6 @@ packages: '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.21.0: - resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 - /@babel/plugin-transform-flow-strip-types/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} engines: {node: '>=6.9.0'} @@ -2418,7 +2232,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 - dev: false /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.21.0: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} @@ -2536,12 +2349,12 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.12.9: - resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==} + /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.12.9: + resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2550,15 +2363,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.21.0: - resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.21.0: resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -2567,7 +2371,6 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - dev: false /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} @@ -2594,17 +2397,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.0 - '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.21.0 - - /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.21.0: - resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - dev: true + '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 /@babel/plugin-transform-react-jsx-self/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==} @@ -2614,7 +2407,6 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - dev: false /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.21.0: resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} @@ -2625,19 +2417,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.21.0: - resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0 - '@babel/types': 7.21.2 - /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} engines: {node: '>=6.9.0'} @@ -2650,7 +2429,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0 '@babel/types': 7.21.3 - dev: false /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} @@ -2706,16 +2484,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.21.0: - resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0: resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -2725,7 +2493,6 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - dev: false /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} @@ -2792,14 +2559,14 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.5 + '@babel/compat-data': 7.21.0 '@babel/core': 7.21.0 '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 '@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.21.0 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.21.0 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.0 @@ -2808,9 +2575,9 @@ packages: '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.21.0 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.21.0 '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0 @@ -2829,13 +2596,13 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.0 '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.0 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0 '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.21.0 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.0 '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.0 @@ -2850,19 +2617,19 @@ packages: '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0 '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.0 '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.0 '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.0 '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0 '@babel/preset-modules': 0.1.5_@babel+core@7.21.0 - '@babel/types': 7.21.2 + '@babel/types': 7.21.3 babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.0 babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.0 babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.0 @@ -2880,7 +2647,7 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.21.0 + '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.21.0 /@babel/preset-modules/0.1.5_@babel+core@7.21.0: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -2891,7 +2658,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.0 - '@babel/types': 7.21.2 + '@babel/types': 7.21.3 esutils: 2.0.3 /@babel/preset-react/7.18.6_@babel+core@7.21.0: @@ -2904,7 +2671,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.0 @@ -2921,19 +2688,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/register/7.18.9_@babel+core@7.21.0: - resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.0 - clone-deep: 4.0.1 - find-cache-dir: 2.1.0 - make-dir: 2.1.0 - pirates: 4.0.5 - source-map-support: 0.5.21 - /@babel/register/7.21.0_@babel+core@7.21.0: resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} engines: {node: '>=6.9.0'} @@ -2946,7 +2700,6 @@ packages: make-dir: 2.1.0 pirates: 4.0.5 source-map-support: 0.5.21 - dev: false /@babel/runtime-corejs3/7.10.3: resolution: {integrity: sha512-HA7RPj5xvJxQl429r5Cxr2trJwOfPjKiqhCXcdQPSqO2G0RHPZpXu4fkYmBaTKCp2c/jRaMK9GB/lN+7zvvFPw==} @@ -2966,17 +2719,17 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 + '@babel/parser': 7.21.3 + '@babel/types': 7.21.3 /@babel/traverse/7.10.5: resolution: {integrity: sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ==} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.21.1 + '@babel/generator': 7.21.3 '@babel/helper-function-name': 7.21.0 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 '@babel/types': 7.21.3 debug: 4.3.4 globals: 11.12.0 @@ -2985,23 +2738,6 @@ packages: - supports-color dev: true - /@babel/traverse/7.21.2: - resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.21.1 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.21.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/traverse/7.21.3: resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==} engines: {node: '>=6.9.0'} @@ -3018,7 +2754,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: false /@babel/types/7.10.5: resolution: {integrity: sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==} @@ -3028,14 +2763,6 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.21.2: - resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 - to-fast-properties: 2.0.0 - /@babel/types/7.21.3: resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==} engines: {node: '>=6.9.0'} @@ -3241,14 +2968,6 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm/0.17.8: - resolution: {integrity: sha512-0/rb91GYKhrtbeglJXOhAv9RuYimgI8h623TplY2X+vA4EXnk3Zj1fXZreJ0J3OJJu1bwmb0W7g+2cT/d8/l/w==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true - /@esbuild/android-arm64/0.16.17: resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} engines: {node: '>=12'} @@ -3266,14 +2985,6 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm64/0.17.8: - resolution: {integrity: sha512-oa/N5j6v1svZQs7EIRPqR8f+Bf8g6HBDjD/xHC02radE/NjKHK7oQmtmLxPs1iVwYyvE+Kolo6lbpfEQ9xnhxQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true - /@esbuild/android-x64/0.16.17: resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} engines: {node: '>=12'} @@ -3291,14 +3002,6 @@ packages: requiresBuild: true optional: true - /@esbuild/android-x64/0.17.8: - resolution: {integrity: sha512-bTliMLqD7pTOoPg4zZkXqCDuzIUguEWLpeqkNfC41ODBHwoUgZ2w5JBeYimv4oP6TDVocoYmEhZrCLQTrH89bg==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true - /@esbuild/darwin-arm64/0.16.17: resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} engines: {node: '>=12'} @@ -3316,14 +3019,6 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-arm64/0.17.8: - resolution: {integrity: sha512-ghAbV3ia2zybEefXRRm7+lx8J/rnupZT0gp9CaGy/3iolEXkJ6LYRq4IpQVI9zR97ID80KJVoUlo3LSeA/sMAg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - /@esbuild/darwin-x64/0.16.17: resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} engines: {node: '>=12'} @@ -3341,14 +3036,6 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-x64/0.17.8: - resolution: {integrity: sha512-n5WOpyvZ9TIdv2V1K3/iIkkJeKmUpKaCTdun9buhGRWfH//osmUjlv4Z5mmWdPWind/VGcVxTHtLfLCOohsOXw==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - /@esbuild/freebsd-arm64/0.16.17: resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} engines: {node: '>=12'} @@ -3366,14 +3053,6 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-arm64/0.17.8: - resolution: {integrity: sha512-a/SATTaOhPIPFWvHZDoZYgxaZRVHn0/LX1fHLGfZ6C13JqFUZ3K6SMD6/HCtwOQ8HnsNaEeokdiDSFLuizqv5A==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - /@esbuild/freebsd-x64/0.16.17: resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} engines: {node: '>=12'} @@ -3391,14 +3070,6 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-x64/0.17.8: - resolution: {integrity: sha512-xpFJb08dfXr5+rZc4E+ooZmayBW6R3q59daCpKZ/cDU96/kvDM+vkYzNeTJCGd8rtO6fHWMq5Rcv/1cY6p6/0Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - /@esbuild/linux-arm/0.16.17: resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} engines: {node: '>=12'} @@ -3416,14 +3087,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm/0.17.8: - resolution: {integrity: sha512-6Ij8gfuGszcEwZpi5jQIJCVIACLS8Tz2chnEBfYjlmMzVsfqBP1iGmHQPp7JSnZg5xxK9tjCc+pJ2WtAmPRFVA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-arm64/0.16.17: resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} engines: {node: '>=12'} @@ -3441,14 +3104,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm64/0.17.8: - resolution: {integrity: sha512-v3iwDQuDljLTxpsqQDl3fl/yihjPAyOguxuloON9kFHYwopeJEf1BkDXODzYyXEI19gisEsQlG1bM65YqKSIww==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-ia32/0.16.17: resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} engines: {node: '>=12'} @@ -3466,14 +3121,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ia32/0.17.8: - resolution: {integrity: sha512-8svILYKhE5XetuFk/B6raFYIyIqydQi+GngEXJgdPdI7OMKUbSd7uzR02wSY4kb53xBrClLkhH4Xs8P61Q2BaA==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-loong64/0.16.17: resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} engines: {node: '>=12'} @@ -3491,14 +3138,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64/0.17.8: - resolution: {integrity: sha512-B6FyMeRJeV0NpyEOYlm5qtQfxbdlgmiGdD+QsipzKfFky0K5HW5Td6dyK3L3ypu1eY4kOmo7wW0o94SBqlqBSA==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-mips64el/0.16.17: resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} engines: {node: '>=12'} @@ -3516,14 +3155,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-mips64el/0.17.8: - resolution: {integrity: sha512-CCb67RKahNobjm/eeEqeD/oJfJlrWyw29fgiyB6vcgyq97YAf3gCOuP6qMShYSPXgnlZe/i4a8WFHBw6N8bYAA==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-ppc64/0.16.17: resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} engines: {node: '>=12'} @@ -3541,14 +3172,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ppc64/0.17.8: - resolution: {integrity: sha512-bytLJOi55y55+mGSdgwZ5qBm0K9WOCh0rx+vavVPx+gqLLhxtSFU0XbeYy/dsAAD6xECGEv4IQeFILaSS2auXw==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-riscv64/0.16.17: resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} engines: {node: '>=12'} @@ -3566,14 +3189,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-riscv64/0.17.8: - resolution: {integrity: sha512-2YpRyQJmKVBEHSBLa8kBAtbhucaclb6ex4wchfY0Tj3Kg39kpjeJ9vhRU7x4mUpq8ISLXRXH1L0dBYjAeqzZAw==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-s390x/0.16.17: resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} engines: {node: '>=12'} @@ -3591,14 +3206,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-s390x/0.17.8: - resolution: {integrity: sha512-QgbNY/V3IFXvNf11SS6exkpVcX0LJcob+0RWCgV9OiDAmVElnxciHIisoSix9uzYzScPmS6dJFbZULdSAEkQVw==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-x64/0.16.17: resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} engines: {node: '>=12'} @@ -3616,14 +3223,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-x64/0.17.8: - resolution: {integrity: sha512-mM/9S0SbAFDBc4OPoyP6SEOo5324LpUxdpeIUUSrSTOfhHU9hEfqRngmKgqILqwx/0DVJBzeNW7HmLEWp9vcOA==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/netbsd-x64/0.16.17: resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} engines: {node: '>=12'} @@ -3641,14 +3240,6 @@ packages: requiresBuild: true optional: true - /@esbuild/netbsd-x64/0.17.8: - resolution: {integrity: sha512-eKUYcWaWTaYr9zbj8GertdVtlt1DTS1gNBWov+iQfWuWyuu59YN6gSEJvFzC5ESJ4kMcKR0uqWThKUn5o8We6Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true - /@esbuild/openbsd-x64/0.16.17: resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} engines: {node: '>=12'} @@ -3666,14 +3257,6 @@ packages: requiresBuild: true optional: true - /@esbuild/openbsd-x64/0.17.8: - resolution: {integrity: sha512-Vc9J4dXOboDyMXKD0eCeW0SIeEzr8K9oTHJU+Ci1mZc5njPfhKAqkRt3B/fUNU7dP+mRyralPu8QUkiaQn7iIg==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true - /@esbuild/sunos-x64/0.16.17: resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} engines: {node: '>=12'} @@ -3691,14 +3274,6 @@ packages: requiresBuild: true optional: true - /@esbuild/sunos-x64/0.17.8: - resolution: {integrity: sha512-0xvOTNuPXI7ft1LYUgiaXtpCEjp90RuBBYovdd2lqAFxje4sEucurg30M1WIm03+3jxByd3mfo+VUmPtRSVuOw==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - /@esbuild/win32-arm64/0.16.17: resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} engines: {node: '>=12'} @@ -3716,14 +3291,6 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-arm64/0.17.8: - resolution: {integrity: sha512-G0JQwUI5WdEFEnYNKzklxtBheCPkuDdu1YrtRrjuQv30WsYbkkoixKxLLv8qhJmNI+ATEWquZe/N0d0rpr55Mg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-ia32/0.16.17: resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} engines: {node: '>=12'} @@ -3741,14 +3308,6 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-ia32/0.17.8: - resolution: {integrity: sha512-Fqy63515xl20OHGFykjJsMnoIWS+38fqfg88ClvPXyDbLtgXal2DTlhb1TfTX34qWi3u4I7Cq563QcHpqgLx8w==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-x64/0.16.17: resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} engines: {node: '>=12'} @@ -3766,14 +3325,6 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-x64/0.17.8: - resolution: {integrity: sha512-1iuezdyDNngPnz8rLRDO2C/ZZ/emJLb72OsZeqQ6gL6Avko/XCXZw+NuxBSNhBAP13Hie418V7VMt9et1FMvpg==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - /@eslint/eslintrc/1.4.1: resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3911,9 +3462,9 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@babel/generator': 7.21.1 + '@babel/generator': 7.21.3 '@babel/template': 7.20.7 - '@babel/types': 7.21.2 + '@babel/types': 7.21.3 '@graphql-codegen/core': 2.6.8_graphql@15.4.0 '@graphql-codegen/plugin-helpers': 3.1.1_graphql@15.4.0 '@graphql-tools/apollo-engine-loader': 7.3.21_graphql@15.4.0 @@ -3940,12 +3491,12 @@ packages: json-to-pretty-yaml: 1.2.2 listr2: 4.0.5 log-symbols: 4.1.0 - shell-quote: 1.7.4 + shell-quote: 1.8.0 string-env-interpolation: 1.0.1 ts-log: 2.2.3 tslib: 2.1.0 yaml: 1.10.2 - yargs: 17.6.2 + yargs: 17.7.1 transitivePeerDependencies: - '@babel/core' - '@swc/core' @@ -4276,9 +3827,9 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.0 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.3 '@graphql-tools/utils': 9.1.3_graphql@15.4.0 graphql: 15.4.0 @@ -4545,10 +4096,10 @@ packages: optional: true dependencies: '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 - '@babel/parser': 7.21.2 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/generator': 7.21.3 + '@babel/parser': 7.21.3 + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 javascript-natural-sort: 0.7.1 lodash.clone: 4.5.0 lodash.isequal: 4.5.0 @@ -4619,9 +4170,9 @@ packages: '@types/node': 13.13.5 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.3.1 + ci-info: 3.8.0 exit: 0.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jest-changed-files: 28.1.3 jest-config: 28.1.3_sgfsbmxe5qwkqmsj7h2d7flbny jest-haste-map: 28.1.3 @@ -4766,19 +4317,11 @@ packages: dependencies: '@sinclair/typebox': 0.24.51 - /@jest/schemas/29.4.2: - resolution: {integrity: sha512-ZrGzGfh31NtdVH8tn0mgJw4khQuNHiKqdzJAFbCaERbyCP9tHlxWuL/mnMu8P7e/+k4puWjI1NOzi/sFsjce/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@sinclair/typebox': 0.25.21 - dev: true - /@jest/schemas/29.4.3: resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.25.24 - dev: false /@jest/source-map/28.1.2: resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} @@ -4795,7 +4338,7 @@ packages: dependencies: '@jest/console': 28.1.3 '@jest/types': 28.1.3 - '@types/istanbul-lib-coverage': 2.0.1 + '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.0 dev: true @@ -4819,7 +4362,7 @@ packages: chalk: 4.1.2 convert-source-map: 1.7.0 fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jest-haste-map: 26.6.2 jest-regex-util: 26.0.0 jest-util: 26.6.2 @@ -4843,7 +4386,7 @@ packages: chalk: 4.1.2 convert-source-map: 1.7.0 fast-json-stable-stringify: 2.1.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jest-haste-map: 28.1.3 jest-regex-util: 28.0.2 jest-util: 28.1.3 @@ -4859,8 +4402,8 @@ packages: resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} engines: {node: '>= 10.14.2'} dependencies: - '@types/istanbul-lib-coverage': 2.0.1 - '@types/istanbul-reports': 3.0.0 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 '@types/node': 13.13.5 '@types/yargs': 15.0.3 chalk: 4.1.2 @@ -4880,24 +4423,12 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/schemas': 28.1.3 - '@types/istanbul-lib-coverage': 2.0.1 - '@types/istanbul-reports': 3.0.0 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 '@types/node': 13.13.5 - '@types/yargs': 17.0.16 + '@types/yargs': 17.0.23 chalk: 4.1.2 - /@jest/types/29.4.2: - resolution: {integrity: sha512-CKlngyGP0fwlgC1BRUtPZSiWLBhyS9dKwKmyGxk8Z6M82LBEGB2aLQSg+U1MyLsU+M7UjnlLllBM2BLWKVm/Uw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/schemas': 29.4.2 - '@types/istanbul-lib-coverage': 2.0.1 - '@types/istanbul-reports': 3.0.0 - '@types/node': 13.13.5 - '@types/yargs': 17.0.16 - chalk: 4.1.2 - dev: true - /@jest/types/29.5.0: resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4908,7 +4439,6 @@ packages: '@types/node': 13.13.5 '@types/yargs': 17.0.23 chalk: 4.1.2 - dev: false /@jridgewell/gen-mapping/0.1.1: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} @@ -5114,7 +4644,7 @@ packages: hasBin: true dependencies: chalk: 4.1.2 - commander: 9.4.1 + commander: 9.5.0 mermaid: 8.13.5 puppeteer: 13.7.0 transitivePeerDependencies: @@ -5966,13 +5496,13 @@ packages: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 core-js-pure: 3.26.1 - error-stack-parser: 2.0.6 + error-stack-parser: 2.1.4 find-up: 5.0.0 html-entities: 2.3.2 loader-utils: 2.0.4 react-refresh: 0.10.0 schema-utils: 3.1.1 - source-map: 0.7.3 + source-map: 0.7.4 webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-server: 4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq dev: true @@ -6006,13 +5536,13 @@ packages: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 core-js-pure: 3.26.1 - error-stack-parser: 2.0.6 + error-stack-parser: 2.1.4 find-up: 5.0.0 html-entities: 2.3.2 loader-utils: 2.0.4 react-refresh: 0.11.0 schema-utils: 3.1.1 - source-map: 0.7.3 + source-map: 0.7.4 webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-server: 4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq dev: true @@ -6676,7 +6206,7 @@ packages: requiresBuild: true dependencies: https-proxy-agent: 5.0.1 - mkdirp: 0.5.5 + mkdirp: 0.5.6 node-fetch: 2.6.7 npmlog: 4.1.2 progress: 2.0.3 @@ -6747,13 +6277,8 @@ packages: /@sinclair/typebox/0.24.51: resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} - /@sinclair/typebox/0.25.21: - resolution: {integrity: sha512-gFukHN4t8K4+wVC+ECqeqwzBDeFeTzBXroBTqE6vcWrQGbEUpHO7LYdG0f4xnvYq4VOEwITSlHlp0JBAIFMS/g==} - dev: true - /@sinclair/typebox/0.25.24: resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} - dev: false /@sindresorhus/fnv1a/1.2.0: resolution: {integrity: sha512-5ezb/dBSTWtKQ4sLQwMgOJyREXJcZZkTMbendMwKrXTghUhWjZhstzkkmt4/WkFy/GSTSGzfJOKU7dEXv3C/XQ==} @@ -7030,12 +6555,12 @@ packages: resolution: {integrity: sha512-vy9tewUjx7w+4WpQ+vVADYypBI9/yXjYy3BJ23e3XbXPOEJBL6Upt8s6tphDSVGfeRUUnYv/1BnG5nlH68XPSw==} dependencies: '@sourcegraph/prettierrc': 3.0.3 - '@typescript-eslint/eslint-plugin': 5.54.1_emkfwyl7gxrlk4vmzhaprx2gq4 - '@typescript-eslint/parser': 5.51.0_qxbo2xm47qt6fxnlmgbosp4hva + '@typescript-eslint/eslint-plugin': 5.54.1_ftvidnylzkqlsgegxlccclav64 + '@typescript-eslint/parser': 5.56.0_qxbo2xm47qt6fxnlmgbosp4hva eslint-config-prettier: 6.15.0_eslint@8.34.0 eslint-plugin-ban: 1.4.0 eslint-plugin-etc: 2.0.2_qxbo2xm47qt6fxnlmgbosp4hva - eslint-plugin-import: 2.26.0_62tsymtiqxebhmxuag4hg3gx2m + eslint-plugin-import: 2.26.0_ya2lvxxv4bb7tehjnpefoum3zm eslint-plugin-jest-dom: 3.6.5_eslint@8.34.0 eslint-plugin-jsdoc: 30.7.8_eslint@8.34.0 eslint-plugin-jsx-a11y: 6.5.1_eslint@8.34.0 @@ -7167,9 +6692,9 @@ packages: '@statoscope/types': 5.22.0 '@statoscope/webpack-model': 5.24.0 '@statoscope/webpack-ui': 5.24.0 - '@types/yargs': 17.0.16 + '@types/yargs': 17.0.23 open: 8.4.0 - yargs: 17.6.2 + yargs: 17.7.1 dev: true /@statoscope/config/5.22.0: @@ -7289,7 +6814,7 @@ packages: '@statoscope/webpack-stats-extension-package-info': 5.24.0_webpack@5.75.0 '@statoscope/webpack-ui': 5.24.0 open: 8.4.0 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 dev: false /@statoscope/webpack-stats-extension-compressed/5.24.0_webpack@5.75.0: @@ -7300,7 +6825,7 @@ packages: '@statoscope/stats': 5.14.1 '@statoscope/stats-extension-compressed': 5.24.0 '@statoscope/webpack-model': 5.24.0 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 dev: false /@statoscope/webpack-stats-extension-package-info/5.24.0_webpack@5.75.0: @@ -7311,7 +6836,7 @@ packages: '@statoscope/stats': 5.14.1 '@statoscope/stats-extension-package-info': 5.24.0 '@statoscope/webpack-model': 5.24.0 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 dev: false /@statoscope/webpack-ui/5.24.0: @@ -7443,7 +6968,7 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 '@babel/preset-env': 7.20.2_@babel+core@7.21.0 '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22_react@18.1.0 @@ -7997,25 +7522,25 @@ packages: '@babel/core': 7.21.0 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-decorators': 7.14.2_@babel+core@7.21.0 - '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.21.0 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.21.0 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.21.0 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.21.0 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.0 '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.0 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 '@babel/preset-env': 7.20.2_@babel+core@7.21.0 '@babel/preset-react': 7.18.6_@babel+core@7.21.0 '@babel/preset-typescript': 7.18.6_@babel+core@7.21.0 - '@babel/register': 7.18.9_@babel+core@7.21.0 + '@babel/register': 7.21.0_@babel+core@7.21.0 '@storybook/node-logger': 6.5.14 '@storybook/semver': 7.3.2 '@types/node': 16.18.11 @@ -8191,11 +7716,11 @@ packages: optional: true dependencies: '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 - '@babel/parser': 7.21.2 - '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.21.0 + '@babel/generator': 7.21.3 + '@babel/parser': 7.21.3 + '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 '@babel/preset-env': 7.20.2_@babel+core@7.21.0 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.3 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/mdx1-csf': 0.0.1_@babel+core@7.21.0 @@ -8348,8 +7873,8 @@ packages: /@storybook/mdx1-csf/0.0.1_@babel+core@7.21.0: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.21.1 - '@babel/parser': 7.21.2 + '@babel/generator': 7.21.3 + '@babel/parser': 7.21.3 '@babel/preset-env': 7.20.2_@babel+core@7.21.0 '@babel/types': 7.21.3 '@mdx-js/mdx': 1.6.22 @@ -8652,7 +8177,7 @@ packages: peerDependencies: '@sveltejs/kit': ^1.0.0 dependencies: - '@sveltejs/kit': 1.5.6_svelte@3.55.1+vite@4.1.4 + '@sveltejs/kit': 1.5.6_svelte@3.57.0+vite@4.1.4 import-meta-resolve: 2.2.1 dev: true @@ -8661,10 +8186,10 @@ packages: peerDependencies: '@sveltejs/kit': ^1.5.0 dependencies: - '@sveltejs/kit': 1.5.6_svelte@3.55.1+vite@4.1.4 + '@sveltejs/kit': 1.5.6_svelte@3.57.0+vite@4.1.4 dev: true - /@sveltejs/kit/1.5.6_svelte@3.55.1+vite@4.1.4: + /@sveltejs/kit/1.5.6_svelte@3.57.0+vite@4.1.4: resolution: {integrity: sha512-CHVeQpbcwSIUekF6WwevmExKXyfHnzM5nlCEUv13lGgfJ0zKA0ny5YwIe40vccrm5w5Caec7jMTt9Ih3McJr5g==} engines: {node: ^16.14 || >=18} hasBin: true @@ -8673,7 +8198,7 @@ packages: svelte: ^3.54.0 vite: ^4.0.0 dependencies: - '@sveltejs/vite-plugin-svelte': 2.0.2_svelte@3.55.1+vite@4.1.4 + '@sveltejs/vite-plugin-svelte': 2.0.2_svelte@3.57.0+vite@4.1.4 '@types/cookie': 0.5.1 cookie: 0.5.0 devalue: 4.3.0 @@ -8684,7 +8209,7 @@ packages: sade: 1.8.1 set-cookie-parser: 2.5.1 sirv: 2.0.2 - svelte: 3.55.1 + svelte: 3.57.0 tiny-glob: 0.2.9 undici: 5.18.0 vite: 4.1.4 @@ -8692,7 +8217,7 @@ packages: - supports-color dev: true - /@sveltejs/vite-plugin-svelte/2.0.2_svelte@3.55.1+vite@4.1.4: + /@sveltejs/vite-plugin-svelte/2.0.2_svelte@3.57.0+vite@4.1.4: resolution: {integrity: sha512-xCEan0/NNpQuL0l5aS42FjwQ6wwskdxC3pW1OeFtEKNZwRg7Evro9lac9HesGP6TdFsTv2xMes5ASQVKbCacxg==} engines: {node: ^14.18.0 || >= 16} peerDependencies: @@ -8703,8 +8228,8 @@ packages: deepmerge: 4.2.2 kleur: 4.1.5 magic-string: 0.27.0 - svelte: 3.55.1 - svelte-hmr: 0.15.1_svelte@3.55.1 + svelte: 3.57.0 + svelte-hmr: 0.15.1_svelte@3.57.0 vite: 4.1.4 vitefu: 0.2.4_vite@4.1.4 transitivePeerDependencies: @@ -8862,8 +8387,8 @@ packages: /@types/babel__core/7.1.20: resolution: {integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==} dependencies: - '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 + '@babel/parser': 7.21.3 + '@babel/types': 7.21.3 '@types/babel__generator': 7.0.2 '@types/babel__template': 7.0.2 '@types/babel__traverse': 7.0.15 @@ -8878,7 +8403,7 @@ packages: /@types/babel__template/7.0.2: resolution: {integrity: sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==} dependencies: - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 '@babel/types': 7.21.3 dev: true @@ -9173,27 +8698,14 @@ packages: resolution: {integrity: sha512-ulw4d+vW1HKn4oErSmNN2HYEcHGq0N1C5exlrMM0CRqX1UUpFhGb5lwiom5j9KN3LBJJDLRmYIZz1ghm7FIzZw==} dev: true - /@types/istanbul-lib-coverage/2.0.1: - resolution: {integrity: sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==} - /@types/istanbul-lib-coverage/2.0.4: resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} - /@types/istanbul-lib-report/1.1.1: - resolution: {integrity: sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==} - dependencies: - '@types/istanbul-lib-coverage': 2.0.1 - /@types/istanbul-lib-report/3.0.0: resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} dependencies: '@types/istanbul-lib-coverage': 2.0.4 - /@types/istanbul-reports/3.0.0: - resolution: {integrity: sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==} - dependencies: - '@types/istanbul-lib-report': 1.1.1 - /@types/istanbul-reports/3.0.1: resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} dependencies: @@ -9616,12 +9128,8 @@ packages: - webpack-cli dev: true - /@types/stack-utils/2.0.0: - resolution: {integrity: sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==} - /@types/stack-utils/2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} - dev: false /@types/stream-chain/2.0.1: resolution: {integrity: sha512-D+Id9XpcBpampptkegH7WMsEk6fUdf9LlCIX7UhLydILsqDin4L0QT7ryJR0oycwC7OqohIzdfcMHVZ34ezNGg==} @@ -9756,32 +9264,23 @@ packages: dependencies: '@types/node': 13.13.5 - /@types/yargs-parser/13.0.0: - resolution: {integrity: sha512-wBlsw+8n21e6eTd4yVv8YD/E3xq0O6nNnJIquutAsFGE7EyMKz7W6RNT6BRu1SmdgmlCZ9tb0X+j+D6HGr8pZw==} - /@types/yargs-parser/21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} /@types/yargs/15.0.3: resolution: {integrity: sha512-XCMQRK6kfpNBixHLyHUsGmXrpEmFFxzMrcnSXFMziHd8CoNJo8l16FkHyQq4x+xbM7E2XL83/O78OD8u+iZTdQ==} dependencies: - '@types/yargs-parser': 13.0.0 + '@types/yargs-parser': 21.0.0 /@types/yargs/16.0.4: resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==} dependencies: '@types/yargs-parser': 21.0.0 - /@types/yargs/17.0.16: - resolution: {integrity: sha512-Mh3OP0oh8X7O7F9m5AplC+XHYLBWuPKNkGVD3gIZFLFebBnuFI2Nz5Sf8WLvwGxECJ8YjifQvFdh79ubODkdug==} - dependencies: - '@types/yargs-parser': 13.0.0 - /@types/yargs/17.0.23: resolution: {integrity: sha512-yuogunc04OnzGQCrfHx+Kk883Q4X0aSwmYZhKjI21m+SVYzjIbrWl8dOOwSv5hf2Um2pdCOXWo9isteZTNXUZQ==} dependencies: '@types/yargs-parser': 21.0.0 - dev: false /@types/yauzl/2.10.0: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} @@ -9789,7 +9288,7 @@ packages: '@types/node': 13.13.5 dev: true - /@typescript-eslint/eslint-plugin/5.54.1_emkfwyl7gxrlk4vmzhaprx2gq4: + /@typescript-eslint/eslint-plugin/5.54.1_ftvidnylzkqlsgegxlccclav64: resolution: {integrity: sha512-a2RQAkosH3d3ZIV08s3DcL/mcGc2M/UC528VkPULFxR9VnVPT8pBu0IyBAJJmVsCmhVfwQX1v6q+QGnmSe1bew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -9800,7 +9299,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.51.0_qxbo2xm47qt6fxnlmgbosp4hva + '@typescript-eslint/parser': 5.56.0_qxbo2xm47qt6fxnlmgbosp4hva '@typescript-eslint/scope-manager': 5.54.1 '@typescript-eslint/type-utils': 5.54.1_qxbo2xm47qt6fxnlmgbosp4hva '@typescript-eslint/utils': 5.54.1_qxbo2xm47qt6fxnlmgbosp4hva @@ -9835,26 +9334,6 @@ packages: - typescript dev: true - /@typescript-eslint/parser/5.51.0_qxbo2xm47qt6fxnlmgbosp4hva: - resolution: {integrity: sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.51.0 - '@typescript-eslint/types': 5.51.0 - '@typescript-eslint/typescript-estree': 5.51.0_typescript@5.0.2 - debug: 4.3.4 - eslint: 8.34.0 - typescript: 5.0.2 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/parser/5.56.0_qxbo2xm47qt6fxnlmgbosp4hva: resolution: {integrity: sha512-sn1OZmBxUsgxMmR8a8U5QM/Wl+tyqlH//jTqCg8daTAmhAk26L2PFhcqPLlYBhYUJMZJK276qLXlHN3a83o2cg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9883,14 +9362,6 @@ packages: '@typescript-eslint/visitor-keys': 5.4.0 dev: true - /@typescript-eslint/scope-manager/5.51.0: - resolution: {integrity: sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.51.0 - '@typescript-eslint/visitor-keys': 5.51.0 - dev: true - /@typescript-eslint/scope-manager/5.54.1: resolution: {integrity: sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9932,11 +9403,6 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types/5.51.0: - resolution: {integrity: sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dev: true - /@typescript-eslint/types/5.54.1: resolution: {integrity: sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9968,27 +9434,6 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree/5.51.0_typescript@5.0.2: - resolution: {integrity: sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 5.51.0 - '@typescript-eslint/visitor-keys': 5.51.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0_typescript@5.0.2 - typescript: 5.0.2 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/typescript-estree/5.54.1_typescript@5.0.2: resolution: {integrity: sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -10059,14 +9504,6 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@typescript-eslint/visitor-keys/5.51.0: - resolution: {integrity: sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - '@typescript-eslint/types': 5.51.0 - eslint-visitor-keys: 3.3.0 - dev: true - /@typescript-eslint/visitor-keys/5.54.1: resolution: {integrity: sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -10291,7 +9728,7 @@ packages: vite: ^4.1.0-beta.0 dependencies: '@babel/core': 7.21.0 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.21.0 '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.21.0 magic-string: 0.27.0 react-refresh: 0.14.0 @@ -10658,12 +10095,12 @@ packages: acorn: 7.4.1 acorn-walk: 7.2.0 - /acorn-import-assertions/1.8.0_acorn@8.8.1: + /acorn-import-assertions/1.8.0_acorn@8.8.2: resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.8.1 + acorn: 8.8.2 /acorn-jsx/5.3.2_acorn@7.4.1: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -10673,12 +10110,12 @@ packages: acorn: 7.4.1 dev: true - /acorn-jsx/5.3.2_acorn@8.8.1: + /acorn-jsx/5.3.2_acorn@8.8.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.1 + acorn: 8.8.2 /acorn-walk/7.2.0: resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} @@ -10693,16 +10130,10 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - /acorn/8.8.1: - resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} - engines: {node: '>=0.4.0'} - hasBin: true - /acorn/8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} hasBin: true - dev: false /address/1.1.2: resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==} @@ -11261,7 +10692,7 @@ packages: dependencies: browserslist: 4.21.4 caniuse-lite: 1.0.30001439 - colorette: 1.2.2 + colorette: 1.4.0 fraction.js: 4.0.13 normalize-range: 0.1.2 postcss: 8.4.21 @@ -11274,7 +10705,7 @@ packages: dependencies: browserslist: 4.21.4 caniuse-lite: 1.0.30001439 - colorette: 1.2.2 + colorette: 1.4.0 normalize-range: 0.1.2 num2fraction: 1.2.2 postcss: 7.0.39 @@ -11351,7 +10782,7 @@ packages: babel-plugin-istanbul: 6.1.1 babel-preset-jest: 28.1.3_@babel+core@7.21.0 chalk: 4.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color @@ -11431,7 +10862,7 @@ packages: resolution: {integrity: sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==} dependencies: '@babel/helper-module-imports': 7.18.6 - '@babel/types': 7.21.2 + '@babel/types': 7.21.3 glob: 7.2.3 lodash: 4.17.21 require-package-name: 2.0.1 @@ -11537,30 +10968,30 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.0 '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0 '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.21.0 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.21.0 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.0 + '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.21.0 '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.0 '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0 '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.0 '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: @@ -11867,17 +11298,10 @@ packages: node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 - /bser/2.0.0: - resolution: {integrity: sha512-FozP+z0rEpi3AywbeT1QnOrGFJDbC0986aFDR2NlNLF+/WEYdv/7/qb1FVtla+KBWswkQBOA7okWd+85ThWlCQ==} - dependencies: - node-int64: 0.4.0 - dev: true - /bser/2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: node-int64: 0.4.0 - dev: false /btoa-lite/1.0.0: resolution: {integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==} @@ -11888,7 +11312,7 @@ packages: dev: true /buffer-equal-constant-time/1.0.1: - resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=} + resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} /buffer-equal/1.0.0: resolution: {integrity: sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==} @@ -12393,7 +11817,7 @@ packages: escape-string-regexp: 1.0.5 is-wsl: 2.2.0 lighthouse-logger: 1.2.0 - mkdirp: 0.5.5 + mkdirp: 0.5.6 rimraf: 3.0.2 transitivePeerDependencies: - supports-color @@ -12445,13 +11869,9 @@ packages: /ci-info/2.0.0: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} - /ci-info/3.3.1: - resolution: {integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==} - /ci-info/3.8.0: resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} engines: {node: '>=8'} - dev: false /cjs-module-lexer/1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} @@ -12773,13 +12193,8 @@ packages: resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==} dev: true - /colorette/1.2.2: - resolution: {integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==} - dev: true - /colorette/1.4.0: resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} - dev: false /colorette/2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} @@ -12846,14 +12261,9 @@ packages: engines: {node: '>= 12'} dev: true - /commander/9.4.1: - resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} - engines: {node: ^12.20.0 || >=14} - /commander/9.5.0: resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} engines: {node: ^12.20.0 || >=14} - dev: false /comment-json/4.1.0: resolution: {integrity: sha512-WEghmVYaNq9NlWbrkzQTSsya9ycLyxJxpTQfZEan6a5Jomnjw18zS3Podf8q1Zf9BvonvQd/+Z7Z39L7KKzzdQ==} @@ -12943,11 +12353,11 @@ packages: date-fns: 2.29.3 lodash: 4.17.21 rxjs: 7.6.0 - shell-quote: 1.7.4 + shell-quote: 1.8.0 spawn-command: 0.0.2-1 supports-color: 8.1.1 tree-kill: 1.2.2 - yargs: 17.6.2 + yargs: 17.7.1 dev: true /configstore/4.0.0: @@ -12955,7 +12365,7 @@ packages: engines: {node: '>=6'} dependencies: dot-prop: 4.2.1 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 make-dir: 1.3.0 unique-string: 1.0.0 write-file-atomic: 2.4.3 @@ -12967,7 +12377,7 @@ packages: engines: {node: '>=8'} dependencies: dot-prop: 5.2.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 make-dir: 3.1.0 unique-string: 2.0.0 write-file-atomic: 3.0.3 @@ -13322,7 +12732,7 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 /css-minimizer-webpack-plugin/4.2.2_zj7shrtzhjuywytipisjis56au: resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==} @@ -14724,7 +14134,7 @@ packages: safe-buffer: 5.2.1 /ee-first/1.1.1: - resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} /electron-to-chromium/1.4.284: resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} @@ -14820,7 +14230,7 @@ packages: resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==} engines: {node: '>=10.13.0'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 tapable: 2.2.1 /enquirer/2.3.6: @@ -14866,17 +14276,10 @@ packages: dependencies: is-arrayish: 0.2.1 - /error-stack-parser/2.0.6: - resolution: {integrity: sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==} - dependencies: - stackframe: 1.3.4 - dev: true - /error-stack-parser/2.1.4: resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: stackframe: 1.3.4 - dev: false /errorhandler/1.5.1: resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} @@ -15080,35 +14483,6 @@ packages: '@esbuild/win32-ia32': 0.17.14 '@esbuild/win32-x64': 0.17.14 - /esbuild/0.17.8: - resolution: {integrity: sha512-g24ybC3fWhZddZK6R3uD2iF/RIPnRpwJAqLov6ouX3hMbY4+tKolP0VMF3zuIYCaXun+yHwS5IPQ91N2BT191g==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.17.8 - '@esbuild/android-arm64': 0.17.8 - '@esbuild/android-x64': 0.17.8 - '@esbuild/darwin-arm64': 0.17.8 - '@esbuild/darwin-x64': 0.17.8 - '@esbuild/freebsd-arm64': 0.17.8 - '@esbuild/freebsd-x64': 0.17.8 - '@esbuild/linux-arm': 0.17.8 - '@esbuild/linux-arm64': 0.17.8 - '@esbuild/linux-ia32': 0.17.8 - '@esbuild/linux-loong64': 0.17.8 - '@esbuild/linux-mips64el': 0.17.8 - '@esbuild/linux-ppc64': 0.17.8 - '@esbuild/linux-riscv64': 0.17.8 - '@esbuild/linux-s390x': 0.17.8 - '@esbuild/linux-x64': 0.17.8 - '@esbuild/netbsd-x64': 0.17.8 - '@esbuild/openbsd-x64': 0.17.8 - '@esbuild/sunos-x64': 0.17.8 - '@esbuild/win32-arm64': 0.17.8 - '@esbuild/win32-ia32': 0.17.8 - '@esbuild/win32-x64': 0.17.8 - /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -15217,7 +14591,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_rmuafgkb5ungjwyigp3uzf5j5y: + /eslint-module-utils/2.7.3_7tkqywrydjbibzbrmc2verxdma: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -15235,7 +14609,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.51.0_qxbo2xm47qt6fxnlmgbosp4hva + '@typescript-eslint/parser': 5.56.0_qxbo2xm47qt6fxnlmgbosp4hva debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -15268,7 +14642,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.26.0_62tsymtiqxebhmxuag4hg3gx2m: + /eslint-plugin-import/2.26.0_ya2lvxxv4bb7tehjnpefoum3zm: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -15278,14 +14652,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.51.0_qxbo2xm47qt6fxnlmgbosp4hva + '@typescript-eslint/parser': 5.56.0_qxbo2xm47qt6fxnlmgbosp4hva array-includes: 3.1.6 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.34.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_rmuafgkb5ungjwyigp3uzf5j5y + eslint-module-utils: 2.7.3_7tkqywrydjbibzbrmc2verxdma has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -15421,14 +14795,14 @@ packages: - supports-color dev: true - /eslint-plugin-svelte3/4.0.0_dbthnr4b2bdkhyiebwn7su3hnq: + /eslint-plugin-svelte3/4.0.0_rj5u64jvf2goeyzkzkbbavvdee: resolution: {integrity: sha512-OIx9lgaNzD02+MDFNLw0GEUbuovNcglg+wnd/UY0fbZmlQSz7GlQiQ1f+yX0XvC07XPcDOnFcichqI3xCwp71g==} peerDependencies: eslint: '>=8.0.0' svelte: ^3.2.0 dependencies: eslint: 8.34.0 - svelte: 3.55.1 + svelte: 3.57.0 dev: true /eslint-plugin-unicorn/42.0.0_eslint@8.34.0: @@ -15438,7 +14812,7 @@ packages: eslint: '>=8.8.0' dependencies: '@babel/helper-validator-identifier': 7.19.1 - ci-info: 3.3.1 + ci-info: 3.8.0 clean-regexp: 1.0.0 eslint: 8.34.0 eslint-utils: 3.0.0_eslint@8.34.0 @@ -15464,7 +14838,7 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.54.1_emkfwyl7gxrlk4vmzhaprx2gq4 + '@typescript-eslint/eslint-plugin': 5.54.1_ftvidnylzkqlsgegxlccclav64 eslint: 8.34.0 eslint-rule-composer: 0.3.0 dev: true @@ -15560,8 +14934,8 @@ packages: resolution: {integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.8.1 - acorn-jsx: 5.3.2_acorn@8.8.1 + acorn: 8.8.2 + acorn-jsx: 5.3.2_acorn@8.8.2 eslint-visitor-keys: 3.3.0 /esprima/4.0.1: @@ -15969,17 +15343,10 @@ packages: dependencies: websocket-driver: 0.7.4 - /fb-watchman/2.0.0: - resolution: {integrity: sha512-+6dk4acfiWsbMc8pH0boQDeQprOM4mO/kS4IAvZVJZk4B6CZYLg4DkTGbL82vhglUXDtkJPnLfO0WXv3uxGNfA==} - dependencies: - bser: 2.0.0 - dev: true - /fb-watchman/2.0.2: resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} dependencies: bser: 2.1.1 - dev: false /fbjs-css-vars/1.0.2: resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} @@ -16415,7 +15782,7 @@ packages: resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==} engines: {node: '>=14.14'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jsonfile: 6.0.1 universalify: 2.0.0 @@ -16423,7 +15790,7 @@ packages: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jsonfile: 4.0.0 universalify: 0.1.2 @@ -16432,7 +15799,7 @@ packages: engines: {node: '>=10'} dependencies: at-least-node: 1.0.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jsonfile: 6.0.1 universalify: 1.0.0 @@ -17060,9 +16427,6 @@ packages: graphql: 14.7.0 dev: true - /graceful-fs/4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} - /graceful-fs/4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -17287,7 +16651,7 @@ packages: engines: {node: '>=0.4.7'} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.8 neo-async: 2.6.2 source-map: 0.6.1 wordwrap: 1.0.0 @@ -17613,7 +16977,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.16.1 + terser: 5.16.8 dev: true /html-tags/3.1.0: @@ -18701,7 +18065,7 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.21.0 - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 '@istanbuljs/schema': 0.1.2 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -18818,7 +18182,7 @@ packages: p-limit: 3.1.0 pretty-format: 28.1.3 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 transitivePeerDependencies: - supports-color dev: true @@ -18838,7 +18202,7 @@ packages: '@jest/types': 28.1.3 chalk: 4.1.2 exit: 0.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 import-local: 3.0.2 jest-config: 28.1.3_sgfsbmxe5qwkqmsj7h2d7flbny jest-util: 28.1.3 @@ -18869,7 +18233,7 @@ packages: '@types/node': 13.13.5 babel-jest: 28.1.3_@babel+core@7.21.0 chalk: 4.1.2 - ci-info: 3.3.1 + ci-info: 3.8.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.11 @@ -19013,8 +18377,8 @@ packages: '@types/graceful-fs': 4.1.5 '@types/node': 13.13.5 anymatch: 3.1.3 - fb-watchman: 2.0.0 - graceful-fs: 4.2.10 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 jest-regex-util: 26.0.0 jest-serializer: 26.6.2 jest-util: 26.6.2 @@ -19036,7 +18400,7 @@ packages: '@types/graceful-fs': 4.1.5 '@types/node': 13.13.5 anymatch: 3.1.3 - fb-watchman: 2.0.0 + fb-watchman: 2.0.2 graceful-fs: 4.2.11 jest-regex-util: 28.0.2 jest-util: 28.1.3 @@ -19058,7 +18422,7 @@ packages: glur: 1.1.2 jest: 28.1.3_sgfsbmxe5qwkqmsj7h2d7flbny lodash: 4.17.21 - mkdirp: 0.5.5 + mkdirp: 0.5.6 pixelmatch: 5.2.1 pngjs: 3.4.0 rimraf: 2.6.3 @@ -19119,13 +18483,13 @@ packages: dependencies: '@babel/code-frame': 7.18.6 '@jest/types': 26.6.2 - '@types/stack-utils': 2.0.0 + '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 pretty-format: 26.6.2 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 dev: true /jest-message-util/27.5.1: @@ -19134,13 +18498,13 @@ packages: dependencies: '@babel/code-frame': 7.18.6 '@jest/types': 27.5.1 - '@types/stack-utils': 2.0.0 + '@types/stack-utils': 2.0.1 chalk: 4.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 micromatch: 4.0.5 pretty-format: 27.5.1 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 dev: true /jest-message-util/28.1.3: @@ -19149,13 +18513,13 @@ packages: dependencies: '@babel/code-frame': 7.18.6 '@jest/types': 28.1.3 - '@types/stack-utils': 2.0.0 + '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 pretty-format: 28.1.3 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 /jest-message-util/29.5.0: resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==} @@ -19362,7 +18726,7 @@ packages: '@types/prettier': 2.7.2 chalk: 4.1.2 expect: 26.6.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 jest-diff: 26.6.2 jest-get-type: 26.3.0 jest-haste-map: 26.6.2 @@ -19381,9 +18745,9 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 + '@babel/generator': 7.21.3 '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.3 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 @@ -19425,7 +18789,7 @@ packages: '@jest/types': 26.6.2 '@types/node': 13.13.5 chalk: 4.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 is-ci: 2.0.0 micromatch: 4.0.5 dev: true @@ -19449,21 +18813,9 @@ packages: '@jest/types': 28.1.3 '@types/node': 13.13.5 chalk: 4.1.2 - ci-info: 3.3.1 - graceful-fs: 4.2.10 - picomatch: 2.3.1 - - /jest-util/29.4.0: - resolution: {integrity: sha512-lCCwlze7UEV8TpR9ArS8w0cTbcMry5tlBkg7QSc5og5kNyV59dnY2aKHu5fY2k5aDJMQpCUGpvL2w6ZU44lveA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - dependencies: - '@jest/types': 29.4.2 - '@types/node': 13.13.5 - chalk: 4.1.2 - ci-info: 3.3.1 + ci-info: 3.8.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - dev: true /jest-util/29.5.0: resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} @@ -19475,7 +18827,6 @@ packages: ci-info: 3.8.0 graceful-fs: 4.2.11 picomatch: 2.3.1 - dev: false /jest-validate/26.6.2: resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} @@ -19546,7 +18897,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/node': 13.13.5 - jest-util: 29.4.0 + jest-util: 29.5.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -19688,7 +19039,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.8.1 + acorn: 8.8.2 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 @@ -19730,7 +19081,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.8.1 + acorn: 8.8.2 acorn-globals: 6.0.0 cssom: 0.5.0 cssstyle: 2.3.0 @@ -19824,7 +19175,7 @@ packages: json-schema-ref-parser: 9.0.6 json-stringify-safe: 5.0.1 lodash: 4.17.21 - minimist: 1.2.6 + minimist: 1.2.8 mkdirp: 1.0.4 mz: 2.7.0 prettier: 2.8.1 @@ -20125,7 +19476,7 @@ packages: dependencies: chalk: 2.4.2 debug: 3.2.7 - mkdirp: 0.5.5 + mkdirp: 0.5.6 nopt: 4.0.3 read-installed: 4.0.3 semver: 5.7.1 @@ -20275,7 +19626,7 @@ packages: resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} engines: {node: '>=4'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 3.0.0 strip-bom: 3.0.0 @@ -20803,7 +20154,7 @@ packages: resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} /media-typer/0.3.0: - resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} /mem/4.3.0: @@ -20866,7 +20217,7 @@ packages: decamelize: 1.2.0 loud-rejection: 1.6.0 map-obj: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.8 normalize-package-data: 2.5.0 object-assign: 4.1.1 read-pkg-up: 1.0.1 @@ -21482,12 +20833,8 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.6: - resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} - /minimist/1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} @@ -21543,18 +20890,11 @@ packages: resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} dev: true - /mkdirp/0.5.5: - resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==} - hasBin: true - dependencies: - minimist: 1.2.6 - dev: true - /mkdirp/0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.8 /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} @@ -21622,7 +20962,7 @@ packages: dependencies: loader-utils: 2.0.4 monaco-editor: 0.24.0 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 dev: false /monaco-editor/0.24.0: @@ -22987,7 +22327,7 @@ packages: pretty-hrtime: 1.0.3 read-cache: 1.0.0 slash: 5.0.0 - yargs: 17.6.2 + yargs: 17.7.1 transitivePeerDependencies: - ts-node dev: true @@ -23011,7 +22351,7 @@ packages: pretty-hrtime: 1.0.3 read-cache: 1.0.0 slash: 5.0.0 - yargs: 17.6.2 + yargs: 17.7.1 transitivePeerDependencies: - ts-node dev: false @@ -23154,7 +22494,7 @@ packages: klona: 2.0.5 postcss: 8.4.21 semver: 7.3.8 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 /postcss-media-query-parser/0.2.3: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} @@ -23558,7 +22898,7 @@ packages: detect-libc: 2.0.1 expand-template: 2.0.3 github-from-package: 0.0.0 - minimist: 1.2.6 + minimist: 1.2.8 mkdirp-classic: 0.5.3 napi-build-utils: 1.0.2 node-abi: 3.8.0 @@ -23588,16 +22928,6 @@ packages: engines: {node: '>=4'} dev: true - /prettier-plugin-svelte/2.9.0_4h247imu46srxjbpsfob5j3nnq: - resolution: {integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==} - peerDependencies: - prettier: ^1.16.4 || ^2.0.0 - svelte: ^3.2.0 - dependencies: - prettier: 2.8.1 - svelte: 3.55.1 - dev: true - /prettier-plugin-svelte/2.9.0_c25feh7akwshegxdj2xzo3ajiu: resolution: {integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==} peerDependencies: @@ -23892,7 +23222,7 @@ packages: /puppeteer/13.7.0: resolution: {integrity: sha512-U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA==} engines: {node: '>=10.18.1'} - deprecated: < 19.2.0 is no longer supported + deprecated: < 19.4.0 is no longer supported requiresBuild: true dependencies: cross-fetch: 3.1.5 @@ -25341,7 +24671,7 @@ packages: resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} dependencies: es6-promise: 3.3.1 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 mkdirp: 0.5.6 rimraf: 2.6.3 dev: true @@ -25357,7 +24687,7 @@ packages: capture-exit: 2.0.0 exec-sh: 0.3.2 execa: 1.0.0 - fb-watchman: 2.0.0 + fb-watchman: 2.0.2 micromatch: 3.1.10 minimist: 1.2.8 walker: 1.0.8 @@ -25387,7 +24717,7 @@ packages: klona: 2.0.5 neo-async: 2.6.2 sass: 1.32.4 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 /sass/1.32.4: resolution: {integrity: sha512-N0BT0PI/t3+gD8jKa83zJJUb7ssfQnRRfqN+GIErokW6U4guBpfYl8qYB+OFLEho+QvnV5ZH1R9qhUC/Z2Ch9w==} @@ -25671,13 +25001,8 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - /shell-quote/1.7.4: - resolution: {integrity: sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==} - dev: true - /shell-quote/1.8.0: resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==} - dev: false /shelljs/0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} @@ -26074,15 +25399,9 @@ packages: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} - /source-map/0.7.3: - resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} - engines: {node: '>= 8'} - dev: true - /source-map/0.7.4: resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} engines: {node: '>= 8'} - dev: false /sourcegraph/25.7.0_graphql@15.4.0: resolution: {integrity: sha512-3Xdr480Ojkl9fZfaOH7xDy4N8YeQOyccNKVlObOJcj4SR7oFLOra1EFYoMrJPZ9axuD1hSi+34YCx5vocGlRzQ==} @@ -26243,18 +25562,11 @@ packages: resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} dev: true - /stack-utils/2.0.5: - resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} - engines: {node: '>=10'} - dependencies: - escape-string-regexp: 2.0.0 - /stack-utils/2.0.6: resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} engines: {node: '>=10'} dependencies: escape-string-regexp: 2.0.0 - dev: false /stackframe/1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} @@ -26589,7 +25901,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_esbuild@0.17.14 /style-mod/4.0.0: resolution: {integrity: sha512-OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw==} @@ -26817,7 +26129,7 @@ packages: react: 18.1.0 dev: false - /svelte-check/3.0.4_svelte@3.55.1: + /svelte-check/3.0.4_svelte@3.57.0: resolution: {integrity: sha512-feIyBAA5cSIxq4vq6mwGvGQTHy/wBVQbs5b+/VvE21WN8X7nonAuSqwvZv0UDBowzRka3Rh4gmLPH8rPePz3/w==} hasBin: true peerDependencies: @@ -26829,8 +26141,8 @@ packages: import-fresh: 3.3.0 picocolors: 1.0.0 sade: 1.8.1 - svelte: 3.55.1 - svelte-preprocess: 5.0.1_4x7phaipmicbaooxtnresslofa + svelte: 3.57.0 + svelte-preprocess: 5.0.1_wkdgp32a7s6524odeddpfzb52q typescript: 4.9.5 transitivePeerDependencies: - '@babel/core' @@ -26844,16 +26156,16 @@ packages: - sugarss dev: true - /svelte-hmr/0.15.1_svelte@3.55.1: + /svelte-hmr/0.15.1_svelte@3.57.0: resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==} engines: {node: ^12.20 || ^14.13.1 || >= 16} peerDependencies: svelte: '>=3.19.0' dependencies: - svelte: 3.55.1 + svelte: 3.57.0 dev: true - /svelte-preprocess/5.0.1_4x7phaipmicbaooxtnresslofa: + /svelte-preprocess/5.0.1_wkdgp32a7s6524odeddpfzb52q: resolution: {integrity: sha512-0HXyhCoc9rsW4zGOgtInylC6qj259E1hpFnJMJWTf+aIfeqh4O/QHT31KT2hvPEqQfdjmqBR/kO2JDkkciBLrQ==} engines: {node: '>= 14.10.0'} requiresBuild: true @@ -26897,15 +26209,10 @@ packages: magic-string: 0.27.0 sorcery: 0.11.0 strip-indent: 3.0.0 - svelte: 3.55.1 + svelte: 3.57.0 typescript: 4.9.5 dev: true - /svelte/3.55.1: - resolution: {integrity: sha512-S+87/P0Ve67HxKkEV23iCdAh/SX1xiSfjF1HOglno/YTbSTW7RniICMCofWGdJJbdjw3S+0PfFb1JtGfTXE0oQ==} - engines: {node: '>= 8'} - dev: true - /svelte/3.57.0: resolution: {integrity: sha512-WMXEvF+RtAaclw0t3bPDTUe19pplMlfyKDsixbHQYgCWi9+O9VN0kXU1OppzrB9gPAvz4NALuoca2LfW2bOjTQ==} engines: {node: '>= 8'} @@ -27104,37 +26411,13 @@ packages: schema-utils: 3.1.1 serialize-javascript: 5.0.1 source-map: 0.6.1 - terser: 5.16.1 + terser: 5.16.8 webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird dev: true - /terser-webpack-plugin/5.3.6_6hyl5w2uqyeivowpusuiulbmoy: - resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - '@jridgewell/trace-mapping': 0.3.17 - esbuild: 0.17.8 - jest-worker: 27.5.1 - schema-utils: 3.1.1 - serialize-javascript: 6.0.0 - terser: 5.16.1 - webpack: 5.75.0_esbuild@0.17.8 - /terser-webpack-plugin/5.3.6_zj7shrtzhjuywytipisjis56au: resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} engines: {node: '>= 10.13.0'} @@ -27156,30 +26439,20 @@ packages: jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - terser: 5.16.1 - webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a + terser: 5.16.8 + webpack: 5.75.0_esbuild@0.17.14 /terser/4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - acorn: 8.8.1 + acorn: 8.8.2 commander: 2.20.3 source-map: 0.6.1 source-map-support: 0.5.21 dev: true - /terser/5.16.1: - resolution: {integrity: sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==} - engines: {node: '>=10'} - hasBin: true - dependencies: - '@jridgewell/source-map': 0.3.2 - acorn: 8.8.1 - commander: 2.20.3 - source-map-support: 0.5.21 - /terser/5.16.8: resolution: {integrity: sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==} engines: {node: '>=10'} @@ -27189,7 +26462,6 @@ packages: acorn: 8.8.2 commander: 2.20.3 source-map-support: 0.5.21 - dev: false /test-exclude/6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} @@ -27521,7 +26793,7 @@ packages: '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 '@types/node': 13.13.5 - acorn: 8.8.1 + acorn: 8.8.2 acorn-walk: 8.2.0 arg: 4.1.0 create-require: 1.1.1 @@ -27568,7 +26840,7 @@ packages: tsutils: ^3.0.0 typescript: ^4.0.0 dependencies: - '@types/yargs': 17.0.16 + '@types/yargs': 17.0.23 tsutils: 3.21.0_typescript@5.0.2 typescript: 5.0.2 yargs: 17.7.1 @@ -28052,7 +27324,7 @@ packages: buffer-indexof-polyfill: 1.0.2 duplexer2: 0.1.4 fstream: 1.0.12 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 listenercount: 1.0.1 readable-stream: 2.3.7 setimmediate: 1.0.5 @@ -28343,7 +27615,7 @@ packages: engines: {node: '>=10.12.0'} dependencies: '@jridgewell/trace-mapping': 0.3.17 - '@types/istanbul-lib-coverage': 2.0.1 + '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.7.0 dev: true @@ -28410,7 +27682,7 @@ packages: dependencies: fs-mkdirp-stream: 1.0.0 glob-stream: 6.1.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 is-valid-glob: 1.0.0 lazystream: 1.0.0 lead: 1.0.0 @@ -28540,7 +27812,7 @@ packages: engines: {node: '>=6.0'} hasBin: true dependencies: - acorn: 8.8.1 + acorn: 8.8.2 acorn-walk: 8.2.0 dev: true @@ -28624,7 +27896,7 @@ packages: engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 /wbuf/1.7.3: resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} @@ -28702,7 +27974,7 @@ packages: engines: {node: '>= 10.13.0'} hasBin: true dependencies: - acorn: 8.8.1 + acorn: 8.8.2 acorn-walk: 8.2.0 chalk: 4.1.2 commander: 7.2.0 @@ -28737,7 +28009,7 @@ packages: '@webpack-cli/info': 2.0.1_rjsyjcrmk25kqsjzwkvj3a2evq '@webpack-cli/serve': 2.0.1_ewykyfxtgmraekx43xa23ld4wa colorette: 2.0.19 - commander: 9.4.1 + commander: 9.5.0 cross-spawn: 7.0.3 envinfo: 7.8.1 fastest-levenshtein: 1.0.12 @@ -28769,7 +28041,7 @@ packages: peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - colorette: 1.2.2 + colorette: 1.4.0 mem: 8.1.1 memfs: 3.4.12 mime-types: 2.1.35 @@ -28817,7 +28089,7 @@ packages: connect-history-api-fallback: 2.0.0 default-gateway: 6.0.3 express: 4.18.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 html-entities: 2.3.2 http-proxy-middleware: 2.0.6_@types+express@4.17.14 ipaddr.js: 2.0.1 @@ -28918,7 +28190,7 @@ packages: resolution: {integrity: sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==} dev: true - /webpack/5.75.0_esbuild@0.17.8: + /webpack/5.75.0_esbuild@0.17.14: resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} engines: {node: '>=10.13.0'} hasBin: true @@ -28933,8 +28205,8 @@ packages: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.8.1 - acorn-import-assertions: 1.8.0_acorn@8.8.1 + acorn: 8.8.2 + acorn-import-assertions: 1.8.0_acorn@8.8.2 browserslist: 4.21.4 chrome-trace-event: 1.0.2 enhanced-resolve: 5.10.0 @@ -28942,14 +28214,14 @@ packages: eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 json-parse-even-better-errors: 2.3.1 loader-runner: 4.2.0 mime-types: 2.1.35 neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_6hyl5w2uqyeivowpusuiulbmoy + terser-webpack-plugin: 5.3.6_zj7shrtzhjuywytipisjis56au watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -28972,8 +28244,8 @@ packages: '@webassemblyjs/ast': 1.11.1 '@webassemblyjs/wasm-edit': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.8.1 - acorn-import-assertions: 1.8.0_acorn@8.8.1 + acorn: 8.8.2 + acorn-import-assertions: 1.8.0_acorn@8.8.2 browserslist: 4.21.4 chrome-trace-event: 1.0.2 enhanced-resolve: 5.10.0 @@ -28981,7 +28253,7 @@ packages: eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 json-parse-even-better-errors: 2.3.1 loader-runner: 4.2.0 mime-types: 2.1.35 @@ -29447,10 +28719,6 @@ packages: /y18n/4.0.3: resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} - /y18n/5.0.5: - resolution: {integrity: sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==} - engines: {node: '>=10'} - /y18n/5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} @@ -29582,22 +28850,10 @@ packages: get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 - y18n: 5.0.5 + y18n: 5.0.8 yargs-parser: 20.2.4 dev: true - /yargs/17.6.2: - resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} - engines: {node: '>=12'} - dependencies: - cliui: 8.0.1 - escalade: 3.1.1 - get-caller-file: 2.0.5 - require-directory: 2.1.1 - string-width: 4.2.3 - y18n: 5.0.5 - yargs-parser: 21.1.1 - /yargs/17.7.1: resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} engines: {node: '>=12'}