diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index eeb8fddc..f2fc8535 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -5,19 +5,23 @@ on:
push:
branches: [main]
+env:
+ NODE_VERSION: 18
+ PNPM_VERSION: 18.11.0
+
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
- node-version: [16]
+ node-version: [${{ env.NODE_VERSION }}]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.4.0
with:
- version: 7.8.0
+ version: ${{ env.PNPM_VERSION }}
- name: Install Node.js
uses: actions/setup-node@v3
@@ -35,13 +39,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- node-version: [16]
+ node-version: [${{ env.NODE_VERSION}}]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.4.0
with:
- version: 7.8.0
+ version: ${{ env.PNPM_VERSION }}
- name: Install Node.js
uses: actions/setup-node@v3
@@ -65,13 +69,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- node-version: [16]
+ node-version: [${{ env.NODE_VERSION }}]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.4.0
with:
- version: 7.8.0
+ version: ${{ env.PNPM_VERSION }}
- name: Install Node.js
uses: actions/setup-node@v3
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 71db171c..b3273a27 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -4,13 +4,17 @@ on:
release:
types: [published]
+env:
+ NODE_VERSION: 18
+ PNPM_VERSION: 8.11.0
+
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
strategy:
matrix:
- node-version: [16]
+ node-version: [${{ env.NODE_VERSION }}]
steps:
- uses: actions/checkout@v3
with:
@@ -18,7 +22,7 @@ jobs:
- uses: pnpm/action-setup@v2.4.0
with:
- version: 7.8.0
+ version: ${{ env.PNPM_VERSION }}
- name: Install Node.js
uses: actions/setup-node@v3
diff --git a/components/src/components/molecules/Backdrop/Backdrop.tsx b/components/src/components/molecules/Backdrop/Backdrop.tsx
index 4b4114b1..a624ef25 100644
--- a/components/src/components/molecules/Backdrop/Backdrop.tsx
+++ b/components/src/components/molecules/Backdrop/Backdrop.tsx
@@ -1,5 +1,7 @@
import * as React from 'react'
-import { TransitionState, useTransition } from 'react-transition-state'
+import { TransitionState } from 'react-transition-state'
+
+import { useTransition } from '../../../hooks/useTransition/useTransition'
import { Portal } from '../..'
@@ -81,7 +83,7 @@ export const Backdrop = ({
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [open, noBackground])
- return state !== 'unmounted' ? (
+ return state.status !== 'unmounted' ? (
{onDismiss && (
)}
- {children({ state })}
+ {children({ state: state.status as TransitionState })}
) : null
}
diff --git a/components/src/hooks/useTransition/useTransition.ts b/components/src/hooks/useTransition/useTransition.ts
new file mode 100644
index 00000000..bad125b8
--- /dev/null
+++ b/components/src/hooks/useTransition/useTransition.ts
@@ -0,0 +1,109 @@
+import { useCallback, useEffect, useRef, useState } from 'react'
+
+import {
+ ENTERED,
+ ENTERING,
+ EXITING,
+ PRE_ENTER,
+ PRE_EXIT,
+ getEndStatus,
+ getState,
+ getTimeout,
+ nextTick,
+ startOrEnd,
+} from './utils'
+
+const updateState = (
+ status: any,
+ setState: any,
+ latestState: any,
+ timeoutId: any,
+ onChange: any,
+) => {
+ clearTimeout(timeoutId.current)
+ const state = getState(status)
+ setState(state)
+ latestState.current = state
+ onChange && onChange({ current: state })
+}
+
+export const useTransition = ({
+ enter = true,
+ exit = true,
+ preEnter,
+ preExit,
+ timeout,
+ initialEntered,
+ mountOnEnter,
+ unmountOnExit,
+ onStateChange: onChange,
+}: any = {}) => {
+ const [state, setState] = useState(() =>
+ getState(initialEntered ? ENTERED : startOrEnd(mountOnEnter)),
+ )
+ const latestState = useRef(state)
+ const timeoutId = useRef()
+ const [enterTimeout, exitTimeout] = getTimeout(timeout)
+
+ const endTransition = useCallback(() => {
+ const status = getEndStatus(latestState.current._s, unmountOnExit)
+ status && updateState(status, setState, latestState, timeoutId, onChange)
+ }, [onChange, unmountOnExit])
+
+ const toggle = useCallback(
+ (toEnter: any) => {
+ const transitState = (status: any) => {
+ updateState(status, setState, latestState, timeoutId, onChange)
+
+ switch (status) {
+ case ENTERING:
+ if (enterTimeout >= 0)
+ timeoutId.current = setTimeout(endTransition, enterTimeout)
+ break
+
+ case EXITING:
+ if (exitTimeout >= 0)
+ timeoutId.current = setTimeout(endTransition, exitTimeout)
+ break
+
+ case PRE_ENTER:
+ case PRE_EXIT:
+ timeoutId.current = nextTick(transitState, status)
+ break
+ }
+ }
+
+ const enterStage = latestState.current.isEnter
+ if (typeof toEnter !== 'boolean') toEnter = !enterStage
+
+ if (toEnter) {
+ !enterStage &&
+ transitState(enter ? (preEnter ? PRE_ENTER : ENTERING) : ENTERED)
+ } else {
+ enterStage &&
+ transitState(
+ exit ? (preExit ? PRE_EXIT : EXITING) : startOrEnd(unmountOnExit),
+ )
+ }
+ },
+ [
+ endTransition,
+ onChange,
+ enter,
+ exit,
+ preEnter,
+ preExit,
+ enterTimeout,
+ exitTimeout,
+ unmountOnExit,
+ ],
+ )
+
+ useEffect(() => {
+ return () => {
+ clearTimeout(timeoutId.current)
+ }
+ }, [])
+
+ return [state, toggle, endTransition] as const
+}
diff --git a/components/src/hooks/useTransition/utils.ts b/components/src/hooks/useTransition/utils.ts
new file mode 100644
index 00000000..60387706
--- /dev/null
+++ b/components/src/hooks/useTransition/utils.ts
@@ -0,0 +1,50 @@
+export const PRE_ENTER = 0
+export const ENTERING = 1
+export const ENTERED = 2
+export const PRE_EXIT = 3
+export const EXITING = 4
+export const EXITED = 5
+export const UNMOUNTED = 6
+
+export const STATUS = [
+ 'preEnter',
+ 'entering',
+ 'entered',
+ 'preExit',
+ 'exiting',
+ 'exited',
+ 'unmounted',
+]
+
+export const getState = (status: any) => ({
+ _s: status,
+ status: STATUS[status],
+ isEnter: status < PRE_EXIT,
+ isMounted: status !== UNMOUNTED,
+ isResolved: status === ENTERED || status > EXITING,
+})
+
+export const startOrEnd = (unmounted: any) => (unmounted ? UNMOUNTED : EXITED)
+
+export const getEndStatus = (status: any, unmountOnExit: any) => {
+ switch (status) {
+ case ENTERING:
+ case PRE_ENTER:
+ return ENTERED
+
+ case EXITING:
+ case PRE_EXIT:
+ return startOrEnd(unmountOnExit)
+ }
+}
+
+export const getTimeout = (timeout: any) =>
+ typeof timeout === 'object'
+ ? [timeout.enter, timeout.exit]
+ : [timeout, timeout]
+
+export const nextTick = (transitState: any, status: any) =>
+ setTimeout(() => {
+ // Reading document.body.offsetTop can force browser to repaint before transition to the next state
+ isNaN(document.body.offsetTop) || transitState(status + 1)
+ }, 0)
diff --git a/docs/package.json b/docs/package.json
index 73ad74c2..9edde207 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -8,7 +8,7 @@
"build:next": "next build",
"export": "next export",
"clean": "rimraf .next public/playroom",
- "dev": "NODE_OPTIONS='--inspect' next dev & playroom start",
+ "dev": "NODE_OPTIONS='--inspect' next dev & NODE_OPTIONS='--openssl-legacy-provider' playroom start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"lint:types": "tsc --noEmit",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 941c205d..d344b74a 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,4 +1,8 @@
-lockfileVersion: 5.4
+lockfileVersion: '6.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
overrides:
ts-morph: 17.0.1
@@ -6,279 +10,416 @@ overrides:
importers:
.:
- specifiers:
- '@size-limit/preset-big-lib': ^6.0.3
- '@stylelint/postcss-css-in-js': ^0.38.0
- '@svgr/babel-plugin-remove-jsx-attribute': ^6.0.0
- '@svgr/cli': ^5.5.0
- '@svgr/core': ^5.5.0
- '@types/dedent': ^0.7.0
- '@types/fs-extra': ^9.0.13
- '@types/glob': ^7.2.0
- '@types/styled-components': ^5
- '@types/webpack-env': ^1.16.3
- '@typescript-eslint/eslint-plugin': ^5.45.1
- '@typescript-eslint/parser': ^5.45.1
- babel-jest: ^27.5.1
- change-case: ^4.1.2
- dedent: ^0.7.0
- eslint: ^7.32.0
- eslint-config-next: 12.0.1
- eslint-config-prettier: ^8.5.0
- eslint-import-resolver-typescript: ^3.5.2
- eslint-plugin-eslint-comments: ^3.2.0
- eslint-plugin-jest: ^24.5.2
- eslint-plugin-mdx: ^1.15.1
- eslint-plugin-prettier: ^4.0.0
- fs-extra: ^10.0.0
- glob: ^7.2.0
- husky: ^7.0.4
- jest-styled-components: ^7.0.8
- lint-staged: ^11.2.6
- postcss-syntax: ^0.36.2
- prettier: ^2.8.0
- prompt: ^1.2.0
- react: ^18.3.1
- react-docgen-typescript: ^2.1.1
- react-dom: ^18.3.1
- react-hook-form: ^7.31.2
- react-transition-state: ^1.1.4
- size-limit: ^6.0.3
- styled-components: ^5.3.6
- stylelint: ^14.8.5
- stylelint-config-prettier: ^9.0.3
- stylelint-config-recommended: ^7.0.0
- stylelint-config-styled-components: ^0.1.1
- typescript: 4.9.4
- typescript-styled-plugin: ^0.18.2
- utility-types: ^3.10.0
dependencies:
- react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
- react-transition-state: 1.1.4_nnrd3gsncyragczmpvfhocinkq
- styled-components: 5.3.6_nnrd3gsncyragczmpvfhocinkq
+ eslint-plugin-import:
+ specifier: ^2.24.2
+ version: 2.26.0(@typescript-eslint/parser@5.45.1)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0)
+ eslint-plugin-react:
+ specifier: ^7.26.0
+ version: 7.31.11(eslint@7.32.0)
+ eslint-plugin-react-hooks:
+ specifier: ^4.2.0
+ version: 4.6.0(eslint@7.32.0)
+ react:
+ specifier: ^18.3.1
+ version: 18.3.1
+ react-dom:
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
+ react-transition-state:
+ specifier: ^1.1.4
+ version: 1.1.4(react-dom@18.3.1)(react@18.3.1)
+ styled-components:
+ specifier: ^5.3.6
+ version: 5.3.6(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
devDependencies:
- '@size-limit/preset-big-lib': 6.0.3_size-limit@6.0.3
- '@stylelint/postcss-css-in-js': 0.38.0_postcss-syntax@0.36.2
- '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0
- '@svgr/cli': 5.5.0
- '@svgr/core': 5.5.0
- '@types/dedent': 0.7.0
- '@types/fs-extra': 9.0.13
- '@types/glob': 7.2.0
- '@types/styled-components': 5.1.23
- '@types/webpack-env': 1.16.3
- '@typescript-eslint/eslint-plugin': 5.45.1_gzownqpuqpv4wlegrjxgkhyhy4
- '@typescript-eslint/parser': 5.45.1_yfqovispp7u7jaktymfaqwl2py
- babel-jest: 27.5.1
- change-case: 4.1.2
- dedent: 0.7.0
- eslint: 7.32.0
- eslint-config-next: 12.0.1_yfqovispp7u7jaktymfaqwl2py
- eslint-config-prettier: 8.5.0_eslint@7.32.0
- eslint-import-resolver-typescript: 3.5.2_eslint@7.32.0
- eslint-plugin-eslint-comments: 3.2.0_eslint@7.32.0
- eslint-plugin-jest: 24.5.2_lu625izcmv7ncn4wtsowv2m5du
- eslint-plugin-mdx: 1.15.1_eslint@7.32.0
- eslint-plugin-prettier: 4.0.0_uxd3uwca74b5prxme7kige3a7y
- fs-extra: 10.0.0
- glob: 7.2.0
- husky: 7.0.4
- jest-styled-components: 7.0.8_styled-components@5.3.6
- lint-staged: 11.2.6
- postcss-syntax: 0.36.2
- prettier: 2.8.0
- prompt: 1.2.0
- react-docgen-typescript: 2.1.1_typescript@4.9.4
- react-hook-form: 7.31.2_react@18.3.1
- size-limit: 6.0.3
- stylelint: 14.8.5
- stylelint-config-prettier: 9.0.3_stylelint@14.8.5
- stylelint-config-recommended: 7.0.0_stylelint@14.8.5
- stylelint-config-styled-components: 0.1.1
- typescript: 4.9.4
- typescript-styled-plugin: 0.18.2
- utility-types: 3.10.0
+ '@size-limit/preset-big-lib':
+ specifier: ^6.0.3
+ version: 6.0.3(size-limit@6.0.3)
+ '@stylelint/postcss-css-in-js':
+ specifier: ^0.38.0
+ version: 0.38.0(postcss-syntax@0.36.2)(postcss@8.4.19)
+ '@svgr/babel-plugin-remove-jsx-attribute':
+ specifier: ^6.0.0
+ version: 6.0.0(@babel/core@7.20.5)
+ '@svgr/cli':
+ specifier: ^5.5.0
+ version: 5.5.0
+ '@svgr/core':
+ specifier: ^5.5.0
+ version: 5.5.0
+ '@types/dedent':
+ specifier: ^0.7.0
+ version: 0.7.0
+ '@types/fs-extra':
+ specifier: ^9.0.13
+ version: 9.0.13
+ '@types/glob':
+ specifier: ^7.2.0
+ version: 7.2.0
+ '@types/styled-components':
+ specifier: ^5
+ version: 5.1.23
+ '@types/webpack-env':
+ specifier: ^1.16.3
+ version: 1.16.3
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^5.45.1
+ version: 5.45.1(@typescript-eslint/parser@5.45.1)(eslint@7.32.0)(typescript@4.9.4)
+ '@typescript-eslint/parser':
+ specifier: ^5.45.1
+ version: 5.45.1(eslint@7.32.0)(typescript@4.9.4)
+ babel-jest:
+ specifier: ^27.5.1
+ version: 27.5.1(@babel/core@7.20.5)
+ change-case:
+ specifier: ^4.1.2
+ version: 4.1.2
+ dedent:
+ specifier: ^0.7.0
+ version: 0.7.0
+ eslint:
+ specifier: ^7.32.0
+ version: 7.32.0
+ eslint-config-next:
+ specifier: 12.0.1
+ version: 12.0.1(eslint@7.32.0)(next@12.3.0)(typescript@4.9.4)
+ eslint-config-prettier:
+ specifier: ^8.5.0
+ version: 8.5.0(eslint@7.32.0)
+ eslint-import-resolver-typescript:
+ specifier: ^3.5.2
+ version: 3.5.2(eslint-plugin-import@2.26.0)(eslint@7.32.0)
+ eslint-plugin-eslint-comments:
+ specifier: ^3.2.0
+ version: 3.2.0(eslint@7.32.0)
+ eslint-plugin-jest:
+ specifier: ^24.5.2
+ version: 24.5.2(@typescript-eslint/eslint-plugin@5.45.1)(eslint@7.32.0)(typescript@4.9.4)
+ eslint-plugin-mdx:
+ specifier: ^1.15.1
+ version: 1.15.1(eslint@7.32.0)
+ eslint-plugin-prettier:
+ specifier: ^4.0.0
+ version: 4.0.0(eslint-config-prettier@8.5.0)(eslint@7.32.0)(prettier@2.8.0)
+ fs-extra:
+ specifier: ^10.0.0
+ version: 10.0.0
+ glob:
+ specifier: ^7.2.0
+ version: 7.2.0
+ husky:
+ specifier: ^7.0.4
+ version: 7.0.4
+ jest-styled-components:
+ specifier: ^7.0.8
+ version: 7.0.8(styled-components@5.3.6)
+ lint-staged:
+ specifier: ^11.2.6
+ version: 11.2.6
+ postcss-syntax:
+ specifier: ^0.36.2
+ version: 0.36.2(postcss@8.4.19)
+ prettier:
+ specifier: ^2.8.0
+ version: 2.8.0
+ prompt:
+ specifier: ^1.2.0
+ version: 1.2.0
+ react-docgen-typescript:
+ specifier: ^2.1.1
+ version: 2.1.1(typescript@4.9.4)
+ react-hook-form:
+ specifier: ^7.31.2
+ version: 7.31.2(react@18.3.1)
+ size-limit:
+ specifier: ^6.0.3
+ version: 6.0.3
+ stylelint:
+ specifier: ^14.8.5
+ version: 14.8.5
+ stylelint-config-prettier:
+ specifier: ^9.0.3
+ version: 9.0.3(stylelint@14.8.5)
+ stylelint-config-recommended:
+ specifier: ^7.0.0
+ version: 7.0.0(stylelint@14.8.5)
+ stylelint-config-styled-components:
+ specifier: ^0.1.1
+ version: 0.1.1
+ typescript:
+ specifier: 4.9.4
+ version: 4.9.4
+ typescript-styled-plugin:
+ specifier: ^0.18.2
+ version: 0.18.2
+ utility-types:
+ specifier: ^3.10.0
+ version: 3.10.0
components:
- specifiers:
- '@babel/core': ^7.20.5
- '@honkhonk/vite-plugin-svgr': ^1.1.0
- '@jest/types': ^27.2.5
- '@stylelint/postcss-css-in-js': ^0.38.0
- '@svgr/babel-plugin-remove-jsx-attribute': ^6.0.0
- '@svgr/rollup': ^6.2.1
- '@testing-library/dom': ^8.10.1
- '@testing-library/jest-dom': ^5.14.1
- '@testing-library/react': ^12.1.2
- '@testing-library/react-hooks': ^7.0.2
- '@testing-library/user-event': ^13.5.0
- '@types/glob': ^7.2.0
- '@types/lodash': ^4.14.176
- '@types/node': ^16.11.6
- '@types/react': ^18.3.2
- '@types/react-dom': ^18.3.0
- '@types/rimraf': ^3.0.2
- '@types/styled-components': ^5
- '@types/testing-library__jest-dom': ^5.14.1
- babel-plugin-styled-components: ^2.0.6
- clsx: ^1.1.1
- deepmerge: ^4.2.2
- esbuild-darwin-arm64: ^0.14.27
- focus-visible: ^5.2.0
- glob: ^7.2.0
- jest: ^27.3.1
- jest-styled-components: ^7.0.8
- jest-watch-typeahead: ^1.0.0
- lodash: ^4.17.21
- react: ^18.3.1
- react-dom: ^18.3.1
- rimraf: ^3.0.2
- ts-jest: ^27.0.7
- ts-node: ^10.4.0
- ts-pattern: ^4.3.0
- typescript: 4.9.4
- vite: ^3.2.5
- vite-plugin-babel-macros: ^1.0.6
- vite-plugin-dts: 1.7.1
- vite-plugin-stylelint: ^2.2.3
- vite-plugin-svgr: ^1.1.0
- vite-tsconfig-paths: ^4.0.1
- dependencies:
- clsx: 1.2.1
- focus-visible: 5.2.0
- lodash: 4.17.21
- ts-pattern: 4.3.0
+ dependencies:
+ clsx:
+ specifier: ^1.1.1
+ version: 1.2.1
+ focus-visible:
+ specifier: ^5.2.0
+ version: 5.2.0
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ react-transition-state:
+ specifier: ^1.1.4
+ version: 1.1.4(react-dom@18.3.1)(react@18.3.1)
+ styled-components:
+ specifier: ^5.3.6
+ version: 5.3.6(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
+ ts-pattern:
+ specifier: ^4.3.0
+ version: 4.3.0
devDependencies:
- '@babel/core': 7.20.5
- '@honkhonk/vite-plugin-svgr': 1.1.0_vite@3.2.5
- '@jest/types': 27.5.1
- '@stylelint/postcss-css-in-js': 0.38.0
- '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0_@babel+core@7.20.5
- '@svgr/rollup': 6.3.1
- '@testing-library/dom': 8.16.0
- '@testing-library/jest-dom': 5.16.4
- '@testing-library/react': 12.1.5_nnrd3gsncyragczmpvfhocinkq
- '@testing-library/react-hooks': 7.0.2_nnrd3gsncyragczmpvfhocinkq
- '@testing-library/user-event': 13.5.0_gwcpuyfvwbszhlmedmugzivgzu
- '@types/glob': 7.2.0
- '@types/lodash': 4.14.182
- '@types/node': 16.11.6
- '@types/react': 18.3.2
- '@types/react-dom': 18.3.0
- '@types/rimraf': 3.0.2
- '@types/styled-components': 5.1.23
- '@types/testing-library__jest-dom': 5.14.5
- babel-plugin-styled-components: 2.0.6
- deepmerge: 4.2.2
- esbuild-darwin-arm64: 0.14.53
- glob: 7.2.0
- jest: 27.5.1_ts-node@10.9.1
- jest-styled-components: 7.0.8
- jest-watch-typeahead: 1.1.0_jest@27.5.1
- react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
- rimraf: 3.0.2
- ts-jest: 27.1.5_o3dordnsyemiqst2x4vh2uebdy
- ts-node: 10.9.1_bt5sflnlgjdtoyp24iylol6xsy
- typescript: 4.9.4
- vite: 3.2.5_@types+node@16.11.6
- vite-plugin-babel-macros: 1.0.6_vite@3.2.5
- vite-plugin-dts: 1.7.1_vite@3.2.5
- vite-plugin-stylelint: 2.3.1_vite@3.2.5
- vite-plugin-svgr: 1.1.0_vite@3.2.5
- vite-tsconfig-paths: 4.0.1_7g3uriyb4kqeq2yf2bucr7z2ea
+ '@babel/core':
+ specifier: ^7.20.5
+ version: 7.20.5
+ '@honkhonk/vite-plugin-svgr':
+ specifier: ^1.1.0
+ version: 1.1.0(vite@3.2.5)
+ '@jest/types':
+ specifier: ^27.2.5
+ version: 27.5.1
+ '@stylelint/postcss-css-in-js':
+ specifier: ^0.38.0
+ version: 0.38.0(postcss-syntax@0.36.2)(postcss@8.4.19)
+ '@svgr/babel-plugin-remove-jsx-attribute':
+ specifier: ^6.0.0
+ version: 6.0.0(@babel/core@7.20.5)
+ '@svgr/rollup':
+ specifier: ^6.2.1
+ version: 6.3.1
+ '@testing-library/dom':
+ specifier: ^8.10.1
+ version: 8.16.0
+ '@testing-library/jest-dom':
+ specifier: ^5.14.1
+ version: 5.16.4
+ '@testing-library/react':
+ specifier: ^12.1.2
+ version: 12.1.5(react-dom@18.3.1)(react@18.3.1)
+ '@testing-library/react-hooks':
+ specifier: ^7.0.2
+ version: 7.0.2(react-dom@18.3.1)(react@18.3.1)
+ '@testing-library/user-event':
+ specifier: ^13.5.0
+ version: 13.5.0(@testing-library/dom@8.16.0)
+ '@types/glob':
+ specifier: ^7.2.0
+ version: 7.2.0
+ '@types/lodash':
+ specifier: ^4.14.176
+ version: 4.14.182
+ '@types/node':
+ specifier: ^16.11.6
+ version: 16.11.6
+ '@types/react':
+ specifier: ^18.3.2
+ version: 18.3.2
+ '@types/react-dom':
+ specifier: ^18.3.0
+ version: 18.3.0
+ '@types/rimraf':
+ specifier: ^3.0.2
+ version: 3.0.2
+ '@types/styled-components':
+ specifier: ^5
+ version: 5.1.23
+ '@types/testing-library__jest-dom':
+ specifier: ^5.14.1
+ version: 5.14.5
+ babel-plugin-styled-components:
+ specifier: ^2.0.6
+ version: 2.0.6(styled-components@5.3.6)
+ deepmerge:
+ specifier: ^4.2.2
+ version: 4.2.2
+ esbuild-darwin-arm64:
+ specifier: ^0.14.27
+ version: 0.14.53
+ glob:
+ specifier: ^7.2.0
+ version: 7.2.0
+ jest:
+ specifier: ^27.3.1
+ version: 27.5.1(ts-node@10.9.1)
+ jest-styled-components:
+ specifier: ^7.0.8
+ version: 7.0.8(styled-components@5.3.6)
+ jest-watch-typeahead:
+ specifier: ^1.0.0
+ version: 1.1.0(jest@27.5.1)
+ react:
+ specifier: ^18.3.1
+ version: 18.3.1
+ react-dom:
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
+ rimraf:
+ specifier: ^3.0.2
+ version: 3.0.2
+ ts-jest:
+ specifier: ^27.0.7
+ version: 27.1.5(@babel/core@7.20.5)(babel-jest@27.5.1)(jest@27.5.1)(typescript@4.9.4)
+ ts-node:
+ specifier: ^10.4.0
+ version: 10.9.1(@types/node@16.11.6)(typescript@4.9.4)
+ typescript:
+ specifier: 4.9.4
+ version: 4.9.4
+ vite:
+ specifier: ^3.2.5
+ version: 3.2.5(@types/node@16.11.6)
+ vite-plugin-babel-macros:
+ specifier: ^1.0.6
+ version: 1.0.6(vite@3.2.5)
+ vite-plugin-dts:
+ specifier: 1.7.1
+ version: 1.7.1(vite@3.2.5)
+ vite-plugin-stylelint:
+ specifier: ^2.2.3
+ version: 2.3.1(stylelint@14.8.5)(vite@3.2.5)
+ vite-plugin-svgr:
+ specifier: ^1.1.0
+ version: 1.1.0(vite@3.2.5)
+ vite-tsconfig-paths:
+ specifier: ^4.0.1
+ version: 4.0.1(typescript@4.9.4)(vite@3.2.5)
docs:
- specifiers:
- '@ensdomains/thorin': workspace:*
- '@mdx-js/loader': ^1.6.22
- '@mdx-js/react': ^1.6.22
- '@next/mdx': ^12.0.1
- '@reach/skip-nav': ^0.16.0
- '@sindresorhus/slugify': ^2.1.0
- '@svgr/webpack': ^6.2.1
- '@types/fs-extra': ^9.0.13
- '@types/glob': ^7.2.0
- '@types/lodash': ^4.14.176
- '@types/mdx-js__react': ^1.5.5
- '@types/node': ^16.11.6
- '@types/react': ^18.3.2
- '@types/react-dom': ^18.3.0
- '@types/rimraf': ^3.0.2
- '@types/styled-components': ^5
- babel-loader: ^8.2.4
- copy-to-clipboard: ^3.3.1
- fs-extra: ^10.0.0
- glob: ^7.2.0
- gray-matter: ^4.0.3
- lodash: ^4.17.21
- next: 12.3.0
- next-mdx-remote: ^3.0.6
- nookies: ^2.5.2
- playroom: ^0.28.1
- prism-react-renderer: ^1.2.1
- react: ^18.3.1
- react-docgen-typescript: ^2.1.1
- react-dom: ^18.3.1
- react-element-to-jsx-string: ^14.3.4
- react-live: 3.1.1
- react-transition-state: ^1.1.4
- rimraf: ^3.0.2
- styled-components: 5.3.6
- stylelint-webpack-plugin: ^3.3.0
- typescript: ^4.6.2
- utility-types: ^3.10.0
- dependencies:
- '@ensdomains/thorin': link:../components
- '@reach/skip-nav': 0.16.0_nnrd3gsncyragczmpvfhocinkq
- '@sindresorhus/slugify': 2.1.0
- copy-to-clipboard: 3.3.2
- gray-matter: 4.0.3
- lodash: 4.17.21
- next: 12.3.0_nnrd3gsncyragczmpvfhocinkq
- next-mdx-remote: 3.0.8_nnrd3gsncyragczmpvfhocinkq
- nookies: 2.5.2
- playroom: 0.28.1_nnrd3gsncyragczmpvfhocinkq
- prism-react-renderer: 1.3.5_react@18.3.1
- react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
- react-element-to-jsx-string: 14.3.4_nnrd3gsncyragczmpvfhocinkq
- react-live: 3.1.1_nnrd3gsncyragczmpvfhocinkq
- react-transition-state: 1.1.4_nnrd3gsncyragczmpvfhocinkq
- styled-components: 5.3.6_nnrd3gsncyragczmpvfhocinkq
+ dependencies:
+ '@ensdomains/thorin':
+ specifier: workspace:*
+ version: link:../components
+ '@reach/skip-nav':
+ specifier: ^0.16.0
+ version: 0.16.0(react-dom@18.3.1)(react@18.3.1)
+ '@sindresorhus/slugify':
+ specifier: ^2.1.0
+ version: 2.1.0
+ copy-to-clipboard:
+ specifier: ^3.3.1
+ version: 3.3.2
+ gray-matter:
+ specifier: ^4.0.3
+ version: 4.0.3
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ next:
+ specifier: 12.3.0
+ version: 12.3.0(@babel/core@7.20.5)(react-dom@18.3.1)(react@18.3.1)
+ next-mdx-remote:
+ specifier: ^3.0.6
+ version: 3.0.8(react-dom@18.3.1)(react@18.3.1)
+ nookies:
+ specifier: ^2.5.2
+ version: 2.5.2
+ playroom:
+ specifier: ^0.28.1
+ version: 0.28.1(react-dom@18.3.1)(react@18.3.1)
+ prism-react-renderer:
+ specifier: ^1.2.1
+ version: 1.3.5(react@18.3.1)
+ react:
+ specifier: ^18.3.1
+ version: 18.3.1
+ react-dom:
+ specifier: ^18.3.1
+ version: 18.3.1(react@18.3.1)
+ react-element-to-jsx-string:
+ specifier: ^14.3.4
+ version: 14.3.4(react-dom@18.3.1)(react@18.3.1)
+ react-live:
+ specifier: 3.1.1
+ version: 3.1.1(react-dom@18.3.1)(react@18.3.1)
+ react-transition-state:
+ specifier: ^1.1.4
+ version: 1.1.4(react-dom@18.3.1)(react@18.3.1)
+ styled-components:
+ specifier: 5.3.6
+ version: 5.3.6(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
devDependencies:
- '@mdx-js/loader': 1.6.22_react@18.3.1
- '@mdx-js/react': 1.6.22_react@18.3.1
- '@next/mdx': 12.2.3_6vwedlnwdegenaf6jioaeirvlu
- '@svgr/webpack': 6.3.1
- '@types/fs-extra': 9.0.13
- '@types/glob': 7.2.0
- '@types/lodash': 4.14.182
- '@types/mdx-js__react': 1.5.5
- '@types/node': 16.11.6
- '@types/react': 18.3.2
- '@types/react-dom': 18.3.0
- '@types/rimraf': 3.0.2
- '@types/styled-components': 5.1.23
- babel-loader: 8.2.5
- fs-extra: 10.0.0
- glob: 7.2.0
- react-docgen-typescript: 2.1.1_typescript@4.9.4
- rimraf: 3.0.2
- stylelint-webpack-plugin: 3.3.0
- typescript: 4.9.4
- utility-types: 3.10.0
+ '@mdx-js/loader':
+ specifier: ^1.6.22
+ version: 1.6.22(react@18.3.1)
+ '@mdx-js/react':
+ specifier: ^1.6.22
+ version: 1.6.22(react@18.3.1)
+ '@next/mdx':
+ specifier: ^12.0.1
+ version: 12.2.3(@mdx-js/loader@1.6.22)(@mdx-js/react@1.6.22)
+ '@svgr/webpack':
+ specifier: ^6.2.1
+ version: 6.3.1
+ '@types/fs-extra':
+ specifier: ^9.0.13
+ version: 9.0.13
+ '@types/glob':
+ specifier: ^7.2.0
+ version: 7.2.0
+ '@types/lodash':
+ specifier: ^4.14.176
+ version: 4.14.182
+ '@types/mdx-js__react':
+ specifier: ^1.5.5
+ version: 1.5.5
+ '@types/node':
+ specifier: ^16.11.6
+ version: 16.11.6
+ '@types/react':
+ specifier: ^18.3.2
+ version: 18.3.2
+ '@types/react-dom':
+ specifier: ^18.3.0
+ version: 18.3.0
+ '@types/rimraf':
+ specifier: ^3.0.2
+ version: 3.0.2
+ '@types/styled-components':
+ specifier: ^5
+ version: 5.1.23
+ babel-loader:
+ specifier: ^8.2.4
+ version: 8.2.5(@babel/core@7.20.5)(webpack@5.58.2)
+ fs-extra:
+ specifier: ^10.0.0
+ version: 10.0.0
+ glob:
+ specifier: ^7.2.0
+ version: 7.2.0
+ react-docgen-typescript:
+ specifier: ^2.1.1
+ version: 2.1.1(typescript@4.9.4)
+ rimraf:
+ specifier: ^3.0.2
+ version: 3.0.2
+ stylelint-webpack-plugin:
+ specifier: ^3.3.0
+ version: 3.3.0(stylelint@14.8.5)(webpack@5.58.2)
+ typescript:
+ specifier: ^4.6.2
+ version: 4.9.4
+ utility-types:
+ specifier: ^3.10.0
+ version: 3.10.0
packages:
- /@ampproject/remapping/2.1.2:
+ /@ampproject/remapping@2.1.2:
resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/trace-mapping': 0.3.13
- /@babel/cli/7.18.10_@babel+core@7.20.5:
+ /@babel/cli@7.18.10(@babel/core@7.20.5):
resolution: {integrity: sha512-dLvWH+ZDFAkd2jPBSghrsFBuXrREvFwjpDycXbmUoeochqKYe4zNSLEJYErpLg8dvxvZYe79/MkN461XCwpnGw==}
engines: {node: '>=6.9.0'}
hasBin: true
@@ -298,34 +439,33 @@ packages:
chokidar: 3.5.3
dev: false
- /@babel/code-frame/7.12.11:
+ /@babel/code-frame@7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
'@babel/highlight': 7.16.10
- dev: true
- /@babel/code-frame/7.16.7:
+ /@babel/code-frame@7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.16.10
dev: true
- /@babel/code-frame/7.18.6:
+ /@babel/code-frame@7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
- /@babel/compat-data/7.18.8:
+ /@babel/compat-data@7.18.8:
resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==}
engines: {node: '>=6.9.0'}
- /@babel/compat-data/7.20.5:
+ /@babel/compat-data@7.20.5:
resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.12.9:
+ /@babel/core@7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -348,14 +488,14 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/core/7.18.10:
+ /@babel/core@7.18.10:
resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.1.2
'@babel/code-frame': 7.18.6
'@babel/generator': 7.20.5
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.18.10)
'@babel/helper-module-transforms': 7.18.9
'@babel/helpers': 7.18.9
'@babel/parser': 7.20.5
@@ -371,14 +511,14 @@ packages:
- supports-color
dev: true
- /@babel/core/7.20.5:
+ /@babel/core@7.20.5:
resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.1.2
'@babel/code-frame': 7.18.6
'@babel/generator': 7.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
+ '@babel/helper-compilation-targets': 7.20.0(@babel/core@7.20.5)
'@babel/helper-module-transforms': 7.20.2
'@babel/helpers': 7.20.6
'@babel/parser': 7.20.5
@@ -393,7 +533,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/generator/7.20.5:
+ /@babel/generator@7.20.5:
resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -401,20 +541,20 @@ packages:
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
'@babel/types': 7.20.5
- /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10:
+ /@babel/helper-compilation-targets@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -427,7 +567,7 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-compilation-targets/7.18.9_@babel+core@7.20.5:
+ /@babel/helper-compilation-targets@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -439,7 +579,7 @@ packages:
browserslist: 4.20.3
semver: 6.3.0
- /@babel/helper-compilation-targets/7.20.0_@babel+core@7.18.10:
+ /@babel/helper-compilation-targets@7.20.0(@babel/core@7.18.10):
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -452,7 +592,7 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5:
+ /@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.5):
resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -464,7 +604,7 @@ packages:
browserslist: 4.21.3
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10:
+ /@babel/helper-create-class-features-plugin@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -482,7 +622,7 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.20.5:
+ /@babel/helper-create-class-features-plugin@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -491,7 +631,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.18.9
+ '@babel/helper-function-name': 7.19.0
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.18.9
@@ -499,7 +639,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.10:
+ /@babel/helper-create-regexp-features-plugin@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -510,7 +650,7 @@ packages:
regexpu-core: 5.1.0
dev: true
- /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.20.5:
+ /@babel/helper-create-regexp-features-plugin@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -520,13 +660,13 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.1.0
- /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10:
+ /@babel/helper-define-polyfill-provider@0.3.2(@babel/core@7.18.10):
resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.10
+ '@babel/helper-compilation-targets': 7.20.0(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -536,13 +676,13 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.20.5:
+ /@babel/helper-define-polyfill-provider@0.3.2(@babel/core@7.20.5):
resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5
+ '@babel/helper-compilation-targets': 7.20.0(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -551,49 +691,49 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-environment-visitor/7.18.9:
+ /@babel/helper-environment-visitor@7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-explode-assignable-expression/7.18.6:
+ /@babel/helper-explode-assignable-expression@7.18.6:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-function-name/7.18.9:
+ /@babel/helper-function-name@7.18.9:
resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
'@babel/types': 7.20.5
- /@babel/helper-function-name/7.19.0:
+ /@babel/helper-function-name@7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.18.10
'@babel/types': 7.20.5
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-member-expression-to-functions/7.18.9:
+ /@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.20.5
- /@babel/helper-module-imports/7.18.6:
+ /@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-module-transforms/7.18.0:
+ /@babel/helper-module-transforms@7.18.0:
resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -608,7 +748,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-module-transforms/7.18.9:
+ /@babel/helper-module-transforms@7.18.9:
resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -623,7 +763,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-module-transforms/7.20.2:
+ /@babel/helper-module-transforms@7.20.2:
resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -638,24 +778,24 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-optimise-call-expression/7.18.6:
+ /@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-plugin-utils/7.10.4:
+ /@babel/helper-plugin-utils@7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
- /@babel/helper-plugin-utils/7.16.7:
+ /@babel/helper-plugin-utils@7.16.7:
resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==}
engines: {node: '>=6.9.0'}
- /@babel/helper-plugin-utils/7.18.9:
+ /@babel/helper-plugin-utils@7.18.9:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -670,7 +810,7 @@ packages:
- supports-color
dev: true
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.5:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -684,7 +824,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-replace-supers/7.18.9:
+ /@babel/helper-replace-supers@7.18.9:
resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -696,62 +836,61 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helper-simple-access/7.17.7:
+ /@babel/helper-simple-access@7.17.7:
resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-simple-access/7.18.6:
+ /@babel/helper-simple-access@7.18.6:
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-simple-access/7.20.2:
+ /@babel/helper-simple-access@7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-skip-transparent-expression-wrappers/7.18.9:
+ /@babel/helper-skip-transparent-expression-wrappers@7.18.9:
resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-split-export-declaration/7.18.6:
+ /@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.20.5
- /@babel/helper-string-parser/7.18.10:
+ /@babel/helper-string-parser@7.18.10:
resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-string-parser/7.19.4:
+ /@babel/helper-string-parser@7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.16.7:
+ /@babel/helper-validator-identifier@7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
engines: {node: '>=6.9.0'}
- dev: true
- /@babel/helper-validator-identifier/7.18.6:
+ /@babel/helper-validator-identifier@7.18.6:
resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option/7.18.6:
+ /@babel/helper-validator-option@7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
engines: {node: '>=6.9.0'}
- /@babel/helper-wrap-function/7.18.10:
+ /@babel/helper-wrap-function@7.18.10:
resolution: {integrity: sha512-95NLBP59VWdfK2lyLKe6eTMq9xg+yWKzxzxbJ1wcYNi1Auz200+83fMDADjRxBvc2QQor5zja2yTQzXGhk2GtQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -762,7 +901,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helpers/7.18.2:
+ /@babel/helpers@7.18.2:
resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -772,7 +911,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helpers/7.18.9:
+ /@babel/helpers@7.18.9:
resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -783,7 +922,7 @@ packages:
- supports-color
dev: true
- /@babel/helpers/7.20.6:
+ /@babel/helpers@7.20.6:
resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -793,16 +932,15 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/highlight/7.16.10:
+ /@babel/highlight@7.16.10:
resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
- dev: true
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -810,7 +948,7 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/parser/7.18.10:
+ /@babel/parser@7.18.10:
resolution: {integrity: sha512-TYk3OA0HKL6qNryUayb5UUEhM/rkOQozIBEA5ITXh5DWrSp0TlUQXMyZmnWxG/DizSWBeeQ0Zbc5z8UGaaqoeg==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -818,14 +956,14 @@ packages:
'@babel/types': 7.20.5
dev: true
- /@babel/parser/7.20.5:
+ /@babel/parser@7.20.5:
resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.20.5
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -835,7 +973,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -844,7 +982,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -853,10 +991,10 @@ packages:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10
+ '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.18.10)
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -865,9 +1003,9 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5
+ '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.20.5)
- /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10:
+ /@babel/plugin-proposal-async-generator-functions@7.18.10(@babel/core@7.18.10):
resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -876,13 +1014,13 @@ packages:
'@babel/core': 7.18.10
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.20.5:
+ /@babel/plugin-proposal-async-generator-functions@7.18.10(@babel/core@7.20.5):
resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -891,64 +1029,64 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.5)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.5)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -956,10 +1094,10 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -967,9 +1105,9 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.5)
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -977,10 +1115,10 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -988,9 +1126,9 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.5)
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -998,10 +1136,10 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1009,9 +1147,9 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.5)
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1019,10 +1157,10 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1030,9 +1168,9 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.5)
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1040,10 +1178,10 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1051,9 +1189,9 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.5)
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1061,10 +1199,10 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1072,19 +1210,19 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.5)
- /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
+ /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9):
resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.16.7(@babel/core@7.12.9)
- /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-proposal-object-rest-spread@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1092,13 +1230,13 @@ packages:
dependencies:
'@babel/compat-data': 7.18.8
'@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-proposal-object-rest-spread@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1106,12 +1244,12 @@ packages:
dependencies:
'@babel/compat-data': 7.18.8
'@babel/core': 7.20.5
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.20.5
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.20.5)
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1119,10 +1257,10 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1130,9 +1268,9 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.5)
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1141,10 +1279,10 @@ packages:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.10)
dev: true
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1153,34 +1291,34 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.5)
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1188,14 +1326,14 @@ packages:
dependencies:
'@babel/core': 7.18.10
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1203,42 +1341,34 @@ packages:
dependencies:
'@babel/core': 7.20.5
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.5)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-async-generators/7.8.4:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10:
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.18.10):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1247,7 +1377,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.5):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1255,15 +1385,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-bigint/7.8.3:
- resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.18.9
- dev: true
-
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1272,15 +1394,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10:
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.18.10):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1289,7 +1403,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5:
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.5):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1297,7 +1411,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10:
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.18.10):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1307,7 +1421,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.5:
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.5):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1316,7 +1430,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.18.10):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1325,7 +1439,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1333,7 +1447,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.18.10):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1342,7 +1456,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1350,7 +1464,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-syntax-import-assertions@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1360,7 +1474,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-syntax-import-assertions@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1369,15 +1483,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-import-meta/7.10.4:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.18.9
- dev: true
-
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.5):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1386,15 +1492,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.10):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1403,7 +1501,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1411,7 +1509,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9:
+ /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9):
resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1419,7 +1517,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1429,7 +1527,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1438,15 +1536,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10:
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.10):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1455,7 +1545,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.5):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1463,15 +1553,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.10):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1480,7 +1562,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1488,15 +1570,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-numeric-separator/7.10.4:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10:
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.10):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1505,7 +1579,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.5:
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.5):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1513,15 +1587,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-object-rest-spread/7.8.3:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1529,7 +1595,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.10):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1538,7 +1604,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1546,15 +1612,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-optional-catch-binding/7.8.3:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.10):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1563,7 +1621,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1571,15 +1629,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-optional-chaining/7.8.3:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10:
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.10):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1588,7 +1638,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.5:
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.5):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1596,7 +1646,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10:
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.18.10):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1606,7 +1656,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.5:
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.5):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1615,16 +1665,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-syntax-top-level-await/7.14.5:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/helper-plugin-utils': 7.16.7
- dev: true
-
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10:
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.18.10):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1634,7 +1675,7 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5:
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.5):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1643,7 +1684,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.16.7
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1653,7 +1694,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1662,7 +1703,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1672,7 +1713,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1681,7 +1722,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1690,12 +1731,12 @@ packages:
'@babel/core': 7.18.10
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1704,11 +1745,11 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.20.5)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1718,7 +1759,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1727,7 +1768,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-block-scoping@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1737,7 +1778,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-block-scoping@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1746,7 +1787,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-classes@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1765,7 +1806,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-classes/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-classes@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1783,7 +1824,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1793,7 +1834,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1802,7 +1843,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-destructuring@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1812,7 +1853,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-destructuring@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1821,28 +1862,28 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1852,7 +1893,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1861,7 +1902,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1872,7 +1913,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1882,7 +1923,7 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10:
+ /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.18.10):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1892,7 +1933,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.5:
+ /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.20.5):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1901,30 +1942,30 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.18.10)
+ '@babel/helper-function-name': 7.18.9
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.20.5)
'@babel/helper-function-name': 7.18.9
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1934,7 +1975,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1943,7 +1984,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1953,7 +1994,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1962,7 +2003,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-modules-amd@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1976,7 +2017,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-modules-amd@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1989,7 +2030,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-modules-commonjs@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2004,7 +2045,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-modules-commonjs@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2018,7 +2059,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-modules-systemjs@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2028,13 +2069,13 @@ packages:
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.18.9
'@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.18.6
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-modules-systemjs@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2049,7 +2090,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2062,7 +2103,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2074,28 +2115,28 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2105,7 +2146,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2114,7 +2155,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2127,7 +2168,7 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2139,7 +2180,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-parameters@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2148,7 +2189,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.10:
+ /@babel/plugin-transform-parameters@7.18.8(@babel/core@7.18.10):
resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2158,7 +2199,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.20.5:
+ /@babel/plugin-transform-parameters@7.18.8(@babel/core@7.20.5):
resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2167,7 +2208,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2177,7 +2218,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2186,7 +2227,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-react-constant-elements/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-react-constant-elements@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-IrTYh1I3YCEL1trjknnlLKTp5JggjzhKl/d3ibzPc97JhpFcDTr38Jdek/oX4cFbS6By0bXJcOkpRvJ5ZHK2wQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2196,7 +2237,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-react-constant-elements/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-react-constant-elements@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-IrTYh1I3YCEL1trjknnlLKTp5JggjzhKl/d3ibzPc97JhpFcDTr38Jdek/oX4cFbS6By0bXJcOkpRvJ5ZHK2wQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2206,7 +2247,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2216,7 +2257,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2225,26 +2266,26 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10
+ '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.18.10)
dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.20.5
+ '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.20.5)
- /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.10:
+ /@babel/plugin-transform-react-jsx@7.18.10(@babel/core@7.18.10):
resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2254,11 +2295,11 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.10)
'@babel/types': 7.20.5
dev: true
- /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.20.5:
+ /@babel/plugin-transform-react-jsx@7.18.10(@babel/core@7.20.5):
resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2268,10 +2309,10 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.5)
'@babel/types': 7.20.5
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2282,7 +2323,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2292,7 +2333,7 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2303,7 +2344,7 @@ packages:
regenerator-transform: 0.15.0
dev: true
- /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2313,7 +2354,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
regenerator-transform: 0.15.0
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2323,7 +2364,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2332,7 +2373,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2342,7 +2383,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2351,7 +2392,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-spread@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2362,7 +2403,7 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
dev: true
- /@babel/plugin-transform-spread/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-spread@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2372,7 +2413,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2382,7 +2423,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2391,7 +2432,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2401,7 +2442,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2410,7 +2451,7 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.18.10):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2420,7 +2461,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.5:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.20.5):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2429,34 +2470,34 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-typescript/7.18.10_@babel+core@7.18.10:
+ /@babel/plugin-transform-typescript@7.18.10(@babel/core@7.18.10):
resolution: {integrity: sha512-j2HQCJuMbi88QftIb5zlRu3c7PU+sXNnscqsrjqegoGiCgXR569pEdben9vly5QHKL2ilYkfnSwu64zsZo/VYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.10
+ '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-typescript/7.18.10_@babel+core@7.20.5:
+ /@babel/plugin-transform-typescript@7.18.10(@babel/core@7.20.5):
resolution: {integrity: sha512-j2HQCJuMbi88QftIb5zlRu3c7PU+sXNnscqsrjqegoGiCgXR569pEdben9vly5QHKL2ilYkfnSwu64zsZo/VYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.20.5)
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10:
+ /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.18.10):
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2466,7 +2507,7 @@ packages:
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.5:
+ /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.20.5):
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2475,28 +2516,28 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.10:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.5:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.20.5
+ '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
- /@babel/preset-env/7.18.10_@babel+core@7.18.10:
+ /@babel/preset-env@7.18.10(@babel/core@7.18.10):
resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2504,85 +2545,85 @@ packages:
dependencies:
'@babel/compat-data': 7.18.8
'@babel/core': 7.18.10
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10
+ '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.18.10)
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.10
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.10
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.10
- '@babel/preset-modules': 0.1.5_@babel+core@7.18.10
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-proposal-async-generator-functions': 7.18.10(@babel/core@7.18.10)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-class-static-block': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.10)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.10)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-import-assertions': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.10)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.10)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.10)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.10)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-destructuring': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.18.10)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-amd': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-systemjs': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.18.10)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-regenerator': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.18.10)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.18.10)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.18.10)
'@babel/types': 7.20.5
- babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10
- babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10
+ babel-plugin-polyfill-corejs2: 0.3.2(@babel/core@7.18.10)
+ babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.18.10)
+ babel-plugin-polyfill-regenerator: 0.4.0(@babel/core@7.18.10)
core-js-compat: 3.24.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-env/7.18.10_@babel+core@7.20.5:
+ /@babel/preset-env@7.18.10(@babel/core@7.20.5):
resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2590,109 +2631,109 @@ packages:
dependencies:
'@babel/compat-data': 7.18.8
'@babel/core': 7.20.5
- '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.20.5
+ '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.20.5)
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.20.5
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.20.5
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.5
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5
- '@babel/preset-modules': 0.1.5_@babel+core@7.20.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-proposal-async-generator-functions': 7.18.10(@babel/core@7.20.5)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-class-static-block': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.5)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.20.5)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-import-assertions': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.20.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.5)
+ '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-destructuring': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.20.5)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-modules-amd': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-modules-systemjs': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.20.5)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-regenerator': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.20.5)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.20.5)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.20.5)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.20.5)
'@babel/types': 7.18.10
- babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.20.5
- babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.20.5
- babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.20.5
+ babel-plugin-polyfill-corejs2: 0.3.2(@babel/core@7.20.5)
+ babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.20.5)
+ babel-plugin-polyfill-regenerator: 0.4.0(@babel/core@7.20.5)
core-js-compat: 3.24.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /@babel/preset-modules/0.1.5_@babel+core@7.18.10:
+ /@babel/preset-modules@0.1.5(@babel/core@7.18.10):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.10)
'@babel/types': 7.20.5
esutils: 2.0.3
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.20.5:
+ /@babel/preset-modules@0.1.5(@babel/core@7.20.5):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.20.5)
'@babel/types': 7.20.5
esutils: 2.0.3
- /@babel/preset-react/7.18.6_@babel+core@7.18.10:
+ /@babel/preset-react@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2701,13 +2742,13 @@ packages:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.10
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.10
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.18.10)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.18.10)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.18.10)
dev: true
- /@babel/preset-react/7.18.6_@babel+core@7.20.5:
+ /@babel/preset-react@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2716,12 +2757,12 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.20.5
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-react-jsx': 7.18.10(@babel/core@7.20.5)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.20.5)
- /@babel/preset-typescript/7.18.6_@babel+core@7.18.10:
+ /@babel/preset-typescript@7.18.6(@babel/core@7.18.10):
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2730,12 +2771,12 @@ packages:
'@babel/core': 7.18.10
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.18.10_@babel+core@7.18.10
+ '@babel/plugin-transform-typescript': 7.18.10(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-typescript/7.18.6_@babel+core@7.20.5:
+ /@babel/preset-typescript@7.18.6(@babel/core@7.20.5):
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -2744,11 +2785,11 @@ packages:
'@babel/core': 7.20.5
'@babel/helper-plugin-utils': 7.18.9
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.18.10_@babel+core@7.20.5
+ '@babel/plugin-transform-typescript': 7.18.10(@babel/core@7.20.5)
transitivePeerDependencies:
- supports-color
- /@babel/runtime-corejs3/7.15.4:
+ /@babel/runtime-corejs3@7.15.4:
resolution: {integrity: sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2756,32 +2797,32 @@ packages:
regenerator-runtime: 0.13.11
dev: true
- /@babel/runtime/7.15.4:
+ /@babel/runtime@7.15.4:
resolution: {integrity: sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
dev: true
- /@babel/runtime/7.18.9:
+ /@babel/runtime@7.18.9:
resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.9
- /@babel/runtime/7.21.5:
+ /@babel/runtime@7.21.5:
resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
dev: true
- /@babel/standalone/7.18.10:
+ /@babel/standalone@7.18.10:
resolution: {integrity: sha512-0KWHiRX9TUHiWE+dKYYEOIiRJcPwGU6u8Bq/p+ldekj7Kew9PCwl4S4FTSEPpTrn3Vc+r3iRSaN1l9AcGgLx4Q==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/template/7.18.10:
+ /@babel/template@7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2789,7 +2830,7 @@ packages:
'@babel/parser': 7.20.5
'@babel/types': 7.20.5
- /@babel/traverse/7.20.5:
+ /@babel/traverse@7.20.5:
resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2806,7 +2847,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/traverse/7.20.5_supports-color@5.5.0:
+ /@babel/traverse@7.20.5(supports-color@5.5.0):
resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2818,12 +2859,12 @@ packages:
'@babel/helper-split-export-declaration': 7.18.6
'@babel/parser': 7.20.5
'@babel/types': 7.20.5
- debug: 4.3.4_supports-color@5.5.0
+ debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- /@babel/types/7.18.10:
+ /@babel/types@7.18.10:
resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2831,7 +2872,7 @@ packages:
'@babel/helper-validator-identifier': 7.18.6
to-fast-properties: 2.0.0
- /@babel/types/7.20.5:
+ /@babel/types@7.20.5:
resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -2839,61 +2880,61 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- /@base2/pretty-print-object/1.0.1:
+ /@base2/pretty-print-object@1.0.1:
resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
dev: false
- /@bcoe/v8-coverage/0.2.3:
+ /@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
dev: true
- /@cspotcode/source-map-support/0.8.1:
+ /@cspotcode/source-map-support@0.8.1:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
dependencies:
'@jridgewell/trace-mapping': 0.3.9
dev: true
- /@discoveryjs/json-ext/0.5.5:
+ /@discoveryjs/json-ext@0.5.5:
resolution: {integrity: sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==}
engines: {node: '>=10.0.0'}
dev: true
- /@emmetio/abbreviation/2.2.3:
+ /@emmetio/abbreviation@2.2.3:
resolution: {integrity: sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==}
dependencies:
'@emmetio/scanner': 1.0.0
dev: true
- /@emmetio/css-abbreviation/2.1.4:
+ /@emmetio/css-abbreviation@2.1.4:
resolution: {integrity: sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==}
dependencies:
'@emmetio/scanner': 1.0.0
dev: true
- /@emmetio/scanner/1.0.0:
+ /@emmetio/scanner@1.0.0:
resolution: {integrity: sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==}
dev: true
- /@emotion/hash/0.8.0:
+ /@emotion/hash@0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
dev: false
- /@emotion/is-prop-valid/1.2.2:
+ /@emotion/is-prop-valid@1.2.2:
resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
dependencies:
'@emotion/memoize': 0.8.1
- /@emotion/memoize/0.8.1:
+ /@emotion/memoize@0.8.1:
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
- /@emotion/stylis/0.8.5:
+ /@emotion/stylis@0.8.5:
resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
- /@emotion/unitless/0.7.5:
+ /@emotion/unitless@0.7.5:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
- /@esbuild/android-arm/0.15.18:
+ /@esbuild/android-arm@0.15.18:
resolution: {integrity: sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw==}
engines: {node: '>=12'}
cpu: [arm]
@@ -2902,7 +2943,7 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64/0.15.18:
+ /@esbuild/linux-loong64@0.15.18:
resolution: {integrity: sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ==}
engines: {node: '>=12'}
cpu: [loong64]
@@ -2911,7 +2952,7 @@ packages:
dev: true
optional: true
- /@eslint/eslintrc/0.4.3:
+ /@eslint/eslintrc@0.4.3:
resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
@@ -2926,20 +2967,19 @@ packages:
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- dev: true
- /@honkhonk/vite-plugin-svgr/1.1.0_vite@3.2.5:
+ /@honkhonk/vite-plugin-svgr@1.1.0(vite@3.2.5):
resolution: {integrity: sha512-Z/KR54UolyaNRlbRWnrXb3C+2Xtl6ilHvD3ceoqTVV69OswtjSGZDefHHNK+SQUSBbYQo0lJO2jLgip0QBxL1A==}
peerDependencies:
vite: ^2.5.0
dependencies:
'@svgr/core': 5.5.0
- vite: 3.2.5_@types+node@16.11.6
+ vite: 3.2.5(@types/node@16.11.6)
transitivePeerDependencies:
- supports-color
dev: true
- /@humanwhocodes/config-array/0.5.0:
+ /@humanwhocodes/config-array@0.5.0:
resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
engines: {node: '>=10.10.0'}
dependencies:
@@ -2948,13 +2988,11 @@ packages:
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- dev: true
- /@humanwhocodes/object-schema/1.2.0:
+ /@humanwhocodes/object-schema@1.2.0:
resolution: {integrity: sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==}
- dev: true
- /@istanbuljs/load-nyc-config/1.1.0:
+ /@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
dependencies:
@@ -2965,12 +3003,12 @@ packages:
resolve-from: 5.0.0
dev: true
- /@istanbuljs/schema/0.1.3:
+ /@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
dev: true
- /@jest/console/27.5.1:
+ /@jest/console@27.5.1:
resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -2982,7 +3020,7 @@ packages:
slash: 3.0.0
dev: true
- /@jest/console/28.1.3:
+ /@jest/console@28.1.3:
resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -2994,7 +3032,7 @@ packages:
slash: 3.0.0
dev: true
- /@jest/core/27.5.1_ts-node@10.9.1:
+ /@jest/core@27.5.1(ts-node@10.9.1):
resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -3015,7 +3053,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.9
jest-changed-files: 27.5.1
- jest-config: 27.5.1_ts-node@10.9.1
+ jest-config: 27.5.1(ts-node@10.9.1)
jest-haste-map: 27.5.1
jest-message-util: 27.5.1
jest-regex-util: 27.5.1
@@ -3039,7 +3077,7 @@ packages:
- utf-8-validate
dev: true
- /@jest/environment/27.5.1:
+ /@jest/environment@27.5.1:
resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3049,7 +3087,7 @@ packages:
jest-mock: 27.5.1
dev: true
- /@jest/fake-timers/27.5.1:
+ /@jest/fake-timers@27.5.1:
resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3061,7 +3099,7 @@ packages:
jest-util: 27.5.1
dev: true
- /@jest/globals/27.5.1:
+ /@jest/globals@27.5.1:
resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3070,7 +3108,7 @@ packages:
expect: 27.5.1
dev: true
- /@jest/reporters/27.5.1:
+ /@jest/reporters@27.5.1:
resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -3108,14 +3146,14 @@ packages:
- supports-color
dev: true
- /@jest/schemas/28.1.3:
+ /@jest/schemas@28.1.3:
resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
'@sinclair/typebox': 0.24.26
dev: true
- /@jest/source-map/27.5.1:
+ /@jest/source-map@27.5.1:
resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3124,7 +3162,7 @@ packages:
source-map: 0.6.1
dev: true
- /@jest/test-result/27.5.1:
+ /@jest/test-result@27.5.1:
resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3134,7 +3172,7 @@ packages:
collect-v8-coverage: 1.0.1
dev: true
- /@jest/test-result/28.1.3:
+ /@jest/test-result@28.1.3:
resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -3144,7 +3182,7 @@ packages:
collect-v8-coverage: 1.0.1
dev: true
- /@jest/test-sequencer/27.5.1:
+ /@jest/test-sequencer@27.5.1:
resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3156,7 +3194,7 @@ packages:
- supports-color
dev: true
- /@jest/transform/27.5.1:
+ /@jest/transform@27.5.1:
resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3179,7 +3217,7 @@ packages:
- supports-color
dev: true
- /@jest/types/27.5.1:
+ /@jest/types@27.5.1:
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -3190,7 +3228,7 @@ packages:
chalk: 4.1.2
dev: true
- /@jest/types/28.1.3:
+ /@jest/types@28.1.3:
resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -3202,7 +3240,7 @@ packages:
chalk: 4.1.2
dev: true
- /@jridgewell/gen-mapping/0.3.2:
+ /@jridgewell/gen-mapping@0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -3210,60 +3248,60 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.11
'@jridgewell/trace-mapping': 0.3.13
- /@jridgewell/resolve-uri/3.0.5:
+ /@jridgewell/resolve-uri@3.0.5:
resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.1.1:
+ /@jridgewell/set-array@1.1.1:
resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==}
engines: {node: '>=6.0.0'}
- /@jridgewell/source-map/0.3.2:
+ /@jridgewell/source-map@0.3.2:
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
dependencies:
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.13
dev: false
- /@jridgewell/sourcemap-codec/1.4.11:
+ /@jridgewell/sourcemap-codec@1.4.11:
resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==}
- /@jridgewell/trace-mapping/0.3.13:
+ /@jridgewell/trace-mapping@0.3.13:
resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
dependencies:
'@jridgewell/resolve-uri': 3.0.5
'@jridgewell/sourcemap-codec': 1.4.11
- /@jridgewell/trace-mapping/0.3.9:
+ /@jridgewell/trace-mapping@0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
'@jridgewell/resolve-uri': 3.0.5
'@jridgewell/sourcemap-codec': 1.4.11
dev: true
- /@leichtgewicht/ip-codec/2.0.4:
+ /@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
dev: false
- /@mdx-js/loader/1.6.22_react@18.3.1:
+ /@mdx-js/loader@1.6.22(react@18.3.1):
resolution: {integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==}
dependencies:
'@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22_react@18.3.1
+ '@mdx-js/react': 1.6.22(react@18.3.1)
loader-utils: 2.0.0
transitivePeerDependencies:
- react
- supports-color
dev: true
- /@mdx-js/mdx/1.6.22:
+ /@mdx-js/mdx@1.6.22:
resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
dependencies:
'@babel/core': 7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
+ '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
'@mdx-js/util': 1.6.22
- babel-plugin-apply-mdx-type-prop: 1.6.22_@babel+core@7.12.9
+ babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9)
babel-plugin-extract-import-names: 1.6.22
camelcase-css: 2.0.1
detab: 2.0.4
@@ -3281,17 +3319,17 @@ packages:
transitivePeerDependencies:
- supports-color
- /@mdx-js/react/1.6.22_react@18.3.1:
+ /@mdx-js/react@1.6.22(react@18.3.1):
resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
peerDependencies:
react: ^16.13.1 || ^17.0.0
dependencies:
react: 18.3.1
- /@mdx-js/util/1.6.22:
+ /@mdx-js/util@1.6.22:
resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
- /@microsoft/api-extractor-model/7.25.2:
+ /@microsoft/api-extractor-model@7.25.2:
resolution: {integrity: sha512-+h1uCrLQXFAKMUdghhdDcnniDB+6UA/lS9ArlB4QZQ34UbLuXNy2oQ6fafFK8cKXU4mUPTF/yGRjv7JKD5L7eg==}
dependencies:
'@microsoft/tsdoc': 0.14.2
@@ -3299,7 +3337,7 @@ packages:
'@rushstack/node-core-library': 3.53.2
dev: true
- /@microsoft/api-extractor/7.33.6:
+ /@microsoft/api-extractor@7.33.6:
resolution: {integrity: sha512-EYu1qWiMyvP/P+7na76PbE7+eOtvuYIvQa2DhZqkSQSLYP2sKLmZaSMK5Jvpgdr0fK/xLFujK5vLf3vpfcmC8g==}
hasBin: true
dependencies:
@@ -3317,7 +3355,7 @@ packages:
typescript: 4.8.4
dev: true
- /@microsoft/tsdoc-config/0.16.2:
+ /@microsoft/tsdoc-config@0.16.2:
resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
dependencies:
'@microsoft/tsdoc': 0.14.2
@@ -3326,172 +3364,158 @@ packages:
resolve: 1.19.0
dev: true
- /@microsoft/tsdoc/0.14.2:
+ /@microsoft/tsdoc@0.14.2:
resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
dev: true
- /@next/env/12.3.0:
+ /@next/env@12.3.0:
resolution: {integrity: sha512-PTJpjAFVbzBQ9xXpzMTroShvD5YDIIy46jQ7d4LrWpY+/5a8H90Tm8hE3Hvkc5RBRspVo7kvEOnqQms0A+2Q6w==}
- dev: false
- /@next/eslint-plugin-next/12.0.1:
+ /@next/eslint-plugin-next@12.0.1:
resolution: {integrity: sha512-E6xd3xvOp6Mfs2p1GcdCN5AYIbgCC6Z3LV31NaNEMACATu9GpQhMig3+Wp7b70gXbUeNUGizuGWTJNP+o9FT0g==}
dependencies:
glob: 7.1.7
dev: true
- /@next/mdx/12.2.3_6vwedlnwdegenaf6jioaeirvlu:
+ /@next/mdx@12.2.3(@mdx-js/loader@1.6.22)(@mdx-js/react@1.6.22):
resolution: {integrity: sha512-ALZ6F8A/YtIHxPV02R/y2nTdudyWrZjgftlNhP9o96V6llX45X7mnv7mHERd7b4ByrbXDmaWeD9Lbpljmzycvg==}
peerDependencies:
'@mdx-js/loader': '>=0.15.0'
'@mdx-js/react': '*'
dependencies:
- '@mdx-js/loader': 1.6.22_react@18.3.1
- '@mdx-js/react': 1.6.22_react@18.3.1
+ '@mdx-js/loader': 1.6.22(react@18.3.1)
+ '@mdx-js/react': 1.6.22(react@18.3.1)
dev: true
- /@next/swc-android-arm-eabi/12.3.0:
+ /@next/swc-android-arm-eabi@12.3.0:
resolution: {integrity: sha512-/PuirPnAKsYBw93w/7Q9hqy+KGOU9mjYprZ/faxMUJh/dc6v3rYLxkZKNG9nFPIW4QKNTCnhP40xF9hLnxO+xg==}
engines: {node: '>= 10'}
cpu: [arm]
os: [android]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-android-arm64/12.3.0:
+ /@next/swc-android-arm64@12.3.0:
resolution: {integrity: sha512-OaI+FhAM6P9B6Ybwbn0Zl8YwWido0lLwhDBi9WiYCh4RQmIXAyVIoIJPHo4fP05+mXaJ/k1trvDvuURvHOq2qw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-darwin-arm64/12.3.0:
+ /@next/swc-darwin-arm64@12.3.0:
resolution: {integrity: sha512-9s4d3Mhii+WFce8o8Jok7WC3Bawkr9wEUU++SJRptjU1L5tsfYJMrSYCACHLhZujziNDLyExe4Hwwsccps1sfg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-darwin-x64/12.3.0:
+ /@next/swc-darwin-x64@12.3.0:
resolution: {integrity: sha512-2scC4MqUTwGwok+wpVxP+zWp7WcCAVOtutki2E1n99rBOTnUOX6qXkgxSy083yBN6GqwuC/dzHeN7hIKjavfRA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-freebsd-x64/12.3.0:
+ /@next/swc-freebsd-x64@12.3.0:
resolution: {integrity: sha512-xAlruUREij/bFa+qsE1tmsP28t7vz02N4ZDHt2lh3uJUniE0Ne9idyIDLc1Ed0IF2RjfgOp4ZVunuS3OM0sngw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-arm-gnueabihf/12.3.0:
+ /@next/swc-linux-arm-gnueabihf@12.3.0:
resolution: {integrity: sha512-jin2S4VT/cugc2dSZEUIabhYDJNgrUh7fufbdsaAezgcQzqfdfJqfxl4E9GuafzB4cbRPTaqA0V5uqbp0IyGkQ==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-arm64-gnu/12.3.0:
+ /@next/swc-linux-arm64-gnu@12.3.0:
resolution: {integrity: sha512-RqJHDKe0WImeUrdR0kayTkRWgp4vD/MS7g0r6Xuf8+ellOFH7JAAJffDW3ayuVZeMYOa7RvgNFcOoWnrTUl9Nw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-arm64-musl/12.3.0:
+ /@next/swc-linux-arm64-musl@12.3.0:
resolution: {integrity: sha512-nvNWoUieMjvDjpYJ/4SQe9lQs2xMj6ZRs8N+bmTrVu9leY2Fg3WD6W9p/1uU9hGO8u+OdF13wc4iRShu/WYIHg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-x64-gnu/12.3.0:
+ /@next/swc-linux-x64-gnu@12.3.0:
resolution: {integrity: sha512-4ajhIuVU9PeQCMMhdDgZTLrHmjbOUFuIyg6J19hZqwEwDTSqQyrSLkbJs2Nd7IRiM6Ul/XyrtEFCpk4k+xD2+w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-linux-x64-musl/12.3.0:
+ /@next/swc-linux-x64-musl@12.3.0:
resolution: {integrity: sha512-U092RBYbaGxoMAwpauePJEu2PuZSEoUCGJBvsptQr2/2XIMwAJDYM4c/M5NfYEsBr+yjvsYNsOpYfeQ88D82Yg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-win32-arm64-msvc/12.3.0:
+ /@next/swc-win32-arm64-msvc@12.3.0:
resolution: {integrity: sha512-pzSzaxjDEJe67bUok9Nxf9rykbJfHXW0owICFsPBsqHyc+cr8vpF7g9e2APTCddtVhvjkga9ILoZJ9NxWS7Yiw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-win32-ia32-msvc/12.3.0:
+ /@next/swc-win32-ia32-msvc@12.3.0:
resolution: {integrity: sha512-MQGUpMbYhQmTZ06a9e0hPQJnxFMwETo2WtyAotY3GEzbNCQVbCGhsvqEKcl+ZEHgShlHXUWvSffq1ZscY6gK7A==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
- dev: false
optional: true
- /@next/swc-win32-x64-msvc/12.3.0:
+ /@next/swc-win32-x64-msvc@12.3.0:
resolution: {integrity: sha512-C/nw6OgQpEULWqs+wgMHXGvlJLguPRFFGqR2TAqWBerQ8J+Sg3z1ZTqwelkSi4FoqStGuZ2UdFHIDN1ySmR1xA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
requiresBuild: true
- dev: false
optional: true
- /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3:
+ /@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3:
resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==}
requiresBuild: true
dev: false
optional: true
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.stat': 2.0.5
run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.13.0
- /@pkgr/utils/2.3.1:
+ /@pkgr/utils@2.3.1:
resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
dependencies:
@@ -3501,33 +3525,32 @@ packages:
picocolors: 1.0.0
tiny-glob: 0.2.9
tslib: 2.4.0
- dev: true
- /@reach/skip-nav/0.16.0_nnrd3gsncyragczmpvfhocinkq:
+ /@reach/skip-nav@0.16.0(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-SY4PdNx+hQHbeOr/+qLc+QXdRt9NTVlt0r737bOqY1WURGBIEN9sGgsmIsHluP1/bQuAe0JKdOJ/tXiwQ3Z3ug==}
peerDependencies:
react: ^16.8.0 || 17.x
react-dom: ^16.8.0 || 17.x
dependencies:
- '@reach/utils': 0.16.0_nnrd3gsncyragczmpvfhocinkq
+ '@reach/utils': 0.16.0(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
tslib: 2.3.1
dev: false
- /@reach/utils/0.16.0_nnrd3gsncyragczmpvfhocinkq:
+ /@reach/utils@0.16.0(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-PCggBet3qaQmwFNcmQ/GqHSefadAFyNCUekq9RrWoaU9hh/S4iaFgf2MBMdM47eQj5i/Bk0Mm07cP/XPFlkN+Q==}
peerDependencies:
react: ^16.8.0 || 17.x
react-dom: ^16.8.0 || 17.x
dependencies:
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
tiny-warning: 1.0.3
tslib: 2.4.0
dev: false
- /@rollup/pluginutils/4.2.1:
+ /@rollup/pluginutils@4.2.1:
resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
engines: {node: '>= 8.0.0'}
dependencies:
@@ -3535,7 +3558,7 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/pluginutils/5.0.2:
+ /@rollup/pluginutils@5.0.2:
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
engines: {node: '>=14.0.0'}
peerDependencies:
@@ -3549,11 +3572,11 @@ packages:
picomatch: 2.3.1
dev: true
- /@rushstack/eslint-patch/1.2.0:
+ /@rushstack/eslint-patch@1.2.0:
resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==}
dev: true
- /@rushstack/node-core-library/3.53.2:
+ /@rushstack/node-core-library@3.53.2:
resolution: {integrity: sha512-FggLe5DQs0X9MNFeJN3/EXwb+8hyZUTEp2i+V1e8r4Va4JgkjBNY0BuEaQI+3DW6S4apV3UtXU3im17MSY00DA==}
dependencies:
'@types/node': 12.20.24
@@ -3566,14 +3589,14 @@ packages:
z-schema: 5.0.4
dev: true
- /@rushstack/rig-package/0.3.17:
+ /@rushstack/rig-package@0.3.17:
resolution: {integrity: sha512-nxvAGeIMnHl1LlZSQmacgcRV4y1EYtgcDIrw6KkeVjudOMonlxO482PhDj3LVZEp6L7emSf6YSO2s5JkHlwfZA==}
dependencies:
resolve: 1.17.0
strip-json-comments: 3.1.1
dev: true
- /@rushstack/ts-command-line/4.13.1:
+ /@rushstack/ts-command-line@4.13.1:
resolution: {integrity: sha512-UTQMRyy/jH1IS2U+6pyzyn9xQ2iMcoUKkTcZUzOP/aaMiKlWLwCTDiBVwhw/M1crDx6apF9CwyjuWO9r1SBdJQ==}
dependencies:
'@types/argparse': 1.0.38
@@ -3582,11 +3605,11 @@ packages:
string-argv: 0.3.1
dev: true
- /@sinclair/typebox/0.24.26:
+ /@sinclair/typebox@0.24.26:
resolution: {integrity: sha512-1ZVIyyS1NXDRVT8GjWD5jULjhDyM3IsIHef2VGUMdnWOlX2tkPjyEX/7K0TGSH2S8EaPhp1ylFdjSjUGQ+gecg==}
dev: true
- /@sindresorhus/slugify/2.1.0:
+ /@sindresorhus/slugify@2.1.0:
resolution: {integrity: sha512-gU3Gdm/V167BmUwIn8APHZ3SeeRVRUSOdXxnt7Q/JkUHLXaaTA/prYmoRumwsSitJZWUDYMzDWdWgrOdvE8IRQ==}
engines: {node: '>=12'}
dependencies:
@@ -3594,7 +3617,7 @@ packages:
escape-string-regexp: 5.0.0
dev: false
- /@sindresorhus/transliterate/1.5.0:
+ /@sindresorhus/transliterate@1.5.0:
resolution: {integrity: sha512-/sfSkoNelLq5riqNRp5uBjHIKBi1MWZk9ubRT1WiBQuTfmDf7BeQkph2DJzRB83QagMPHk2VDjuvpy0VuwyzdA==}
engines: {node: '>=12'}
dependencies:
@@ -3602,19 +3625,19 @@ packages:
lodash.deburr: 4.1.0
dev: false
- /@sinonjs/commons/1.8.3:
+ /@sinonjs/commons@1.8.3:
resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==}
dependencies:
type-detect: 4.0.8
dev: true
- /@sinonjs/fake-timers/8.1.0:
+ /@sinonjs/fake-timers@8.1.0:
resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==}
dependencies:
'@sinonjs/commons': 1.8.3
dev: true
- /@sitespeed.io/tracium/0.3.3:
+ /@sitespeed.io/tracium@0.3.3:
resolution: {integrity: sha512-dNZafjM93Y+F+sfwTO5gTpsGXlnc/0Q+c2+62ViqP3gkMWvHEMSKkaEHgVJLcLg3i/g19GSIPziiKpgyne07Bw==}
engines: {node: '>=8'}
dependencies:
@@ -3623,7 +3646,7 @@ packages:
- supports-color
dev: true
- /@size-limit/file/6.0.3_size-limit@6.0.3:
+ /@size-limit/file@6.0.3(size-limit@6.0.3):
resolution: {integrity: sha512-OfDrkJBB7OAWtnedz6jpmL1pjlha1MpgtvYwUSP2442qB96nwMN5Ig78XR3ldPj2cbxq1FVoNnc2vfWMi40vQA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
peerDependencies:
@@ -3633,14 +3656,14 @@ packages:
size-limit: 6.0.3
dev: true
- /@size-limit/preset-big-lib/6.0.3_size-limit@6.0.3:
+ /@size-limit/preset-big-lib@6.0.3(size-limit@6.0.3):
resolution: {integrity: sha512-xp3/NQT3as/k9xYa5EwKEj2CH/o6+a6ML3I0L3nADFwKOZuOjN6/NjuVEJiSzMFIL1PnYVdr1vSr/MW4BXRndw==}
peerDependencies:
size-limit: 6.0.3
dependencies:
- '@size-limit/file': 6.0.3_size-limit@6.0.3
- '@size-limit/time': 6.0.3_size-limit@6.0.3
- '@size-limit/webpack': 6.0.3_size-limit@6.0.3
+ '@size-limit/file': 6.0.3(size-limit@6.0.3)
+ '@size-limit/time': 6.0.3(size-limit@6.0.3)
+ '@size-limit/webpack': 6.0.3(size-limit@6.0.3)
size-limit: 6.0.3
transitivePeerDependencies:
- '@swc/core'
@@ -3654,7 +3677,7 @@ packages:
- webpack-cli
dev: true
- /@size-limit/time/6.0.3_size-limit@6.0.3:
+ /@size-limit/time@6.0.3(size-limit@6.0.3):
resolution: {integrity: sha512-p6JpZg1wUr7e4ja9NozXo7IqdodcPEHswr4TeiruvhcMILGkUbSu8+fQ0kDTZt1Gju8BrsFvIWAiC+TWd07pqw==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
peerDependencies:
@@ -3669,20 +3692,20 @@ packages:
- utf-8-validate
dev: true
- /@size-limit/webpack/6.0.3_size-limit@6.0.3:
+ /@size-limit/webpack@6.0.3(size-limit@6.0.3):
resolution: {integrity: sha512-4LI3SpkL0YbOIJsE7+t0LdPgqMeRDDwk1LELHHyk1b67tIjQ9wfnehI0BPT4LYiT23vN7Tg1TN0ofjwuRCLdbA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
peerDependencies:
size-limit: 6.0.3
dependencies:
- '@statoscope/webpack-plugin': 5.14.1_webpack@5.58.2
- css-loader: 6.4.0_webpack@5.58.2
- css-minimizer-webpack-plugin: 3.1.1_webpack@5.58.2
+ '@statoscope/webpack-plugin': 5.14.1(webpack@5.58.2)
+ css-loader: 6.4.0(webpack@5.58.2)
+ css-minimizer-webpack-plugin: 3.1.1(webpack@5.58.2)
escape-string-regexp: 4.0.0
mkdirp: 1.0.4
nanoid: 3.3.4
size-limit: 6.0.3
- style-loader: 3.3.0_webpack@5.58.2
+ style-loader: 3.3.0(webpack@5.58.2)
webpack: 5.58.2
transitivePeerDependencies:
- '@swc/core'
@@ -3693,7 +3716,7 @@ packages:
- webpack-cli
dev: true
- /@soda/friendly-errors-webpack-plugin/1.8.1_webpack@5.58.2:
+ /@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.58.2):
resolution: {integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==}
engines: {node: '>=8.0.0'}
peerDependencies:
@@ -3706,11 +3729,11 @@ packages:
webpack: 5.58.2
dev: false
- /@statoscope/extensions/5.14.1:
+ /@statoscope/extensions@5.14.1:
resolution: {integrity: sha512-5O31566+bOkkdYFH81mGGBTh0YcU0zoYurTrsK5uZfpNY87ZCPpptrszX8npTRHNsxbjBBNt7vAwImJyYdhzLw==}
dev: true
- /@statoscope/helpers/5.14.1:
+ /@statoscope/helpers@5.14.1:
resolution: {integrity: sha512-Gl7NB06cOxxh86tFk75yQmcOCQ3b8i4euYlyxvdz4tWkzeZw8g5VLPH9g3X4uQbPM4rqkae/KmgtRo5Ey1km8w==}
dependencies:
'@types/archy': 0.0.32
@@ -3720,20 +3743,20 @@ packages:
semver: 7.3.8
dev: true
- /@statoscope/report-writer/5.14.1:
+ /@statoscope/report-writer@5.14.1:
resolution: {integrity: sha512-N7pjpiKspDQ6K0B9HNBs8u3bhueiYmJEqAazSw/U3v8hThcP31i/FLCH90bu/8Sj436xAE1KATtGzJnsN5mbQA==}
dependencies:
'@discoveryjs/json-ext': 0.5.5
dev: true
- /@statoscope/stats-extension-compressed/5.14.1:
+ /@statoscope/stats-extension-compressed@5.14.1:
resolution: {integrity: sha512-FnfmL18OAHWg1l95tBKeMGHmeNbEOdnHlOE1c9KT3TWc5kt4q8ntpChL4AAZJSgn7uBy5WKMgjZSr5aUGebHGQ==}
dependencies:
'@statoscope/helpers': 5.14.1
gzip-size: 6.0.0
dev: true
- /@statoscope/stats-extension-custom-reports/5.14.1:
+ /@statoscope/stats-extension-custom-reports@5.14.1:
resolution: {integrity: sha512-+t7gq2zZu8frwJF651+fq1BOZPMdngEwtNhvdRCSWyBE2uYvotVnngQE+di1/Idaosshnf4GdwX82bSMIlF1mQ==}
dependencies:
'@statoscope/extensions': 5.14.1
@@ -3742,13 +3765,13 @@ packages:
'@statoscope/types': 5.14.1
dev: true
- /@statoscope/stats-extension-package-info/5.14.1:
+ /@statoscope/stats-extension-package-info@5.14.1:
resolution: {integrity: sha512-TPKq6qJ7hxyQdPPpcbPsagf9MjbmPRLLo0F2ceafJ11ubP0t8LQZ+m0Orqp5ay3wuzvBy406w/njPwHQuEBHZw==}
dependencies:
'@statoscope/helpers': 5.14.1
dev: true
- /@statoscope/stats-extension-stats-validation-result/5.14.1:
+ /@statoscope/stats-extension-stats-validation-result@5.14.1:
resolution: {integrity: sha512-/TiohT+iO5Idipdd3JmzZ/Utaq3nXeKfZKnvXahkls5x6rpRQgbXs2IrDRtf7rJg4B/g2GuZUMsu4m76rHdkwA==}
dependencies:
'@statoscope/extensions': 5.14.1
@@ -3757,17 +3780,17 @@ packages:
'@statoscope/types': 5.14.1
dev: true
- /@statoscope/stats/5.14.1:
+ /@statoscope/stats@5.14.1:
resolution: {integrity: sha512-Kz7kCKuT6DXaqAPfyTwp27xHMDUna9o6UlRSQXXBZ8Yyk7eYYvTNw+5ffRyqivL9IOzD7FQYDQ6VUBHh0UfyDw==}
dev: true
- /@statoscope/types/5.14.1:
+ /@statoscope/types@5.14.1:
resolution: {integrity: sha512-vIo7aq2E71AC3y3mdnZqA5aupYUaEIHuPD2gUG0bAA8zTXH7YICk7nRkuxx7xnCBhTZTXAgvtF8hgQ35K4N8oQ==}
dependencies:
'@statoscope/stats': 5.14.1
dev: true
- /@statoscope/webpack-model/5.14.1:
+ /@statoscope/webpack-model@5.14.1:
resolution: {integrity: sha512-qSZmtRAk2TSCDaG+ZiMBBfe850/McoNg0Ka2JKsAeSZQ7OOSNN24U/jhmcXtHaoUzxlEGsrEyx8Xz4BMdibjgw==}
dependencies:
'@statoscope/extensions': 5.14.1
@@ -3789,7 +3812,7 @@ packages:
- webpack-cli
dev: true
- /@statoscope/webpack-plugin/5.14.1_webpack@5.58.2:
+ /@statoscope/webpack-plugin@5.14.1(webpack@5.58.2):
resolution: {integrity: sha512-FVbBnNaEHS10UHflXKf2ES5LRkWRlDNpECwY3Q1Ir7LyQ1okyYAb6VD4ePyclsQ1+pU64mvU3EVUbkFJWGgXMQ==}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
@@ -3801,8 +3824,8 @@ packages:
'@statoscope/stats-extension-custom-reports': 5.14.1
'@statoscope/types': 5.14.1
'@statoscope/webpack-model': 5.14.1
- '@statoscope/webpack-stats-extension-compressed': 5.14.1_webpack@5.58.2
- '@statoscope/webpack-stats-extension-package-info': 5.14.1_webpack@5.58.2
+ '@statoscope/webpack-stats-extension-compressed': 5.14.1(webpack@5.58.2)
+ '@statoscope/webpack-stats-extension-package-info': 5.14.1(webpack@5.58.2)
'@statoscope/webpack-ui': 5.14.1
'@types/node': 12.20.33
'@types/webpack': 5.28.0
@@ -3815,7 +3838,7 @@ packages:
- webpack-cli
dev: true
- /@statoscope/webpack-stats-extension-compressed/5.14.1_webpack@5.58.2:
+ /@statoscope/webpack-stats-extension-compressed@5.14.1(webpack@5.58.2):
resolution: {integrity: sha512-fg0m30TqM1vQx0aEkyILasvmtYxTmcR0mEWsK3bR7sp+lmLP+GvbGhWoQ51GTmiVofpO83yjvAlc1YhvLAEVWA==}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
@@ -3832,7 +3855,7 @@ packages:
- webpack-cli
dev: true
- /@statoscope/webpack-stats-extension-package-info/5.14.1_webpack@5.58.2:
+ /@statoscope/webpack-stats-extension-package-info@5.14.1(webpack@5.58.2):
resolution: {integrity: sha512-J5turi/cQSxttPgusMt1ppefBdk4a7hocpVmdO7myv+v5S996RVFrmKnyZeOavp15PivA4LytJgO8Oq6/WORMA==}
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
@@ -3849,42 +3872,32 @@ packages:
- webpack-cli
dev: true
- /@statoscope/webpack-ui/5.14.1:
+ /@statoscope/webpack-ui@5.14.1:
resolution: {integrity: sha512-lKiA9g7UaBZDA1Yo8eENjby2PXHB21lExNQ/nBbg4jjIqXGZ2+lU7mMYXhxw1n4PiVOdL7GrhSWlT6ByAzB3vw==}
dependencies:
'@statoscope/types': 5.14.1
highcharts: 9.2.2
dev: true
- /@stylelint/postcss-css-in-js/0.38.0:
- resolution: {integrity: sha512-XOz5CAe49kS95p5yRd+DAIWDojTjfmyAQ4bbDlXMdbZTQ5t0ThjSLvWI6JI2uiS7MFurVBkZ6zUqcimzcLTBoQ==}
- peerDependencies:
- postcss: '>=7.0.0'
- postcss-syntax: '>=0.36.2'
- dependencies:
- '@babel/core': 7.20.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@stylelint/postcss-css-in-js/0.38.0_postcss-syntax@0.36.2:
+ /@stylelint/postcss-css-in-js@0.38.0(postcss-syntax@0.36.2)(postcss@8.4.19):
resolution: {integrity: sha512-XOz5CAe49kS95p5yRd+DAIWDojTjfmyAQ4bbDlXMdbZTQ5t0ThjSLvWI6JI2uiS7MFurVBkZ6zUqcimzcLTBoQ==}
peerDependencies:
postcss: '>=7.0.0'
postcss-syntax: '>=0.36.2'
dependencies:
'@babel/core': 7.20.5
- postcss-syntax: 0.36.2
+ postcss: 8.4.19
+ postcss-syntax: 0.36.2(postcss@8.4.19)
transitivePeerDependencies:
- supports-color
dev: true
- /@svgr/babel-plugin-add-jsx-attribute/5.4.0:
+ /@svgr/babel-plugin-add-jsx-attribute@5.4.0:
resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-add-jsx-attribute/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-add-jsx-attribute@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-jDBKArXYO1u0B1dmd2Nf8Oy6aTF5vLDfLoO9Oon/GLkqZ/NiggYWZA+a2HpUMH4ITwNqS3z43k8LWApB8S583w==}
engines: {node: '>=10'}
peerDependencies:
@@ -3893,19 +3906,12 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-remove-jsx-attribute/5.4.0:
+ /@svgr/babel-plugin-remove-jsx-attribute@5.4.0:
resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-remove-jsx-attribute/6.0.0:
- resolution: {integrity: sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==}
- engines: {node: '>=10'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dev: true
-
- /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.20.5:
+ /@svgr/babel-plugin-remove-jsx-attribute@6.0.0(@babel/core@7.20.5):
resolution: {integrity: sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==}
engines: {node: '>=10'}
peerDependencies:
@@ -3914,7 +3920,7 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-remove-jsx-attribute/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-remove-jsx-attribute@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-dQzyJ4prwjcFd929T43Z8vSYiTlTu8eafV40Z2gO7zy/SV5GT+ogxRJRBIKWomPBOiaVXFg3jY4S5hyEN3IBjQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -3923,12 +3929,12 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-remove-jsx-empty-expression/5.0.1:
+ /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1:
resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-remove-jsx-empty-expression/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-remove-jsx-empty-expression@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-HBOUc1XwSU67fU26V5Sfb8MQsT0HvUyxru7d0oBJ4rA2s4HW3PhyAPC7fV/mdsSGpAvOdd8Wpvkjsr0fWPUO7A==}
engines: {node: '>=10'}
peerDependencies:
@@ -3937,12 +3943,12 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-replace-jsx-attribute-value/5.0.1:
+ /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1:
resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-replace-jsx-attribute-value/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-C12e6aN4BXAolRrI601gPn5MDFCRHO7C4TM8Kks+rDtl8eEq+NN1sak0eAzJu363x3TmHXdZn7+Efd2nr9I5dA==}
engines: {node: '>=10'}
peerDependencies:
@@ -3951,12 +3957,12 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-svg-dynamic-title/5.4.0:
+ /@svgr/babel-plugin-svg-dynamic-title@5.4.0:
resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-svg-dynamic-title/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-svg-dynamic-title@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-6NU55Mmh3M5u2CfCCt6TX29/pPneutrkJnnDCHbKZnjukZmmgUAZLtZ2g6ZoSPdarowaQmAiBRgAHqHmG0vuqA==}
engines: {node: '>=10'}
peerDependencies:
@@ -3965,12 +3971,12 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-svg-em-dimensions/5.4.0:
+ /@svgr/babel-plugin-svg-em-dimensions@5.4.0:
resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-svg-em-dimensions/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-svg-em-dimensions@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-HV1NGHYTTe1vCNKlBgq/gKuCSfaRlKcHIADn7P8w8U3Zvujdw1rmusutghJ1pZJV7pDt3Gt8ws+SVrqHnBO/Qw==}
engines: {node: '>=10'}
peerDependencies:
@@ -3979,12 +3985,12 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-transform-react-native-svg/5.4.0:
+ /@svgr/babel-plugin-transform-react-native-svg@5.4.0:
resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-transform-react-native-svg/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-transform-react-native-svg@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-2wZhSHvTolFNeKDAN/ZmIeSz2O9JSw72XD+o2bNp2QAaWqa8KGpn5Yk5WHso6xqfSAiRzAE+GXlsrBO4UP9LLw==}
engines: {node: '>=10'}
peerDependencies:
@@ -3993,12 +3999,12 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-plugin-transform-svg-component/5.5.0:
+ /@svgr/babel-plugin-transform-svg-component@5.5.0:
resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==}
engines: {node: '>=10'}
dev: true
- /@svgr/babel-plugin-transform-svg-component/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-plugin-transform-svg-component@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-cZ8Tr6ZAWNUFfDeCKn/pGi976iWSkS8ijmEYKosP+6ktdZ7lW9HVLHojyusPw3w0j8PI4VBeWAXAmi/2G7owxw==}
engines: {node: '>=12'}
peerDependencies:
@@ -4007,7 +4013,7 @@ packages:
'@babel/core': 7.20.5
dev: true
- /@svgr/babel-preset/5.5.0:
+ /@svgr/babel-preset@5.5.0:
resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==}
engines: {node: '>=10'}
dependencies:
@@ -4021,24 +4027,24 @@ packages:
'@svgr/babel-plugin-transform-svg-component': 5.5.0
dev: true
- /@svgr/babel-preset/6.3.1_@babel+core@7.20.5:
+ /@svgr/babel-preset@6.3.1(@babel/core@7.20.5):
resolution: {integrity: sha512-tQtWtzuMMQ3opH7je+MpwfuRA1Hf3cKdSgTtAYwOBDfmhabP7rcTfBi3E7V3MuwJNy/Y02/7/RutvwS1W4Qv9g==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@svgr/babel-plugin-add-jsx-attribute': 6.3.1_@babel+core@7.20.5
- '@svgr/babel-plugin-remove-jsx-attribute': 6.3.1_@babel+core@7.20.5
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.3.1_@babel+core@7.20.5
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.3.1_@babel+core@7.20.5
- '@svgr/babel-plugin-svg-dynamic-title': 6.3.1_@babel+core@7.20.5
- '@svgr/babel-plugin-svg-em-dimensions': 6.3.1_@babel+core@7.20.5
- '@svgr/babel-plugin-transform-react-native-svg': 6.3.1_@babel+core@7.20.5
- '@svgr/babel-plugin-transform-svg-component': 6.3.1_@babel+core@7.20.5
+ '@svgr/babel-plugin-add-jsx-attribute': 6.3.1(@babel/core@7.20.5)
+ '@svgr/babel-plugin-remove-jsx-attribute': 6.3.1(@babel/core@7.20.5)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 6.3.1(@babel/core@7.20.5)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.3.1(@babel/core@7.20.5)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.3.1(@babel/core@7.20.5)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.3.1(@babel/core@7.20.5)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.3.1(@babel/core@7.20.5)
+ '@svgr/babel-plugin-transform-svg-component': 6.3.1(@babel/core@7.20.5)
dev: true
- /@svgr/cli/5.5.0:
+ /@svgr/cli@5.5.0:
resolution: {integrity: sha512-KwEWi8olD7MpHR9pD5CrgsH7W8kQpzhSM0Ar3gGQyXqXdIuRYX5RgkWGm8Zi5ALZV9UhbPE+ObLhuSwEJxOzgA==}
engines: {node: '>=10'}
hasBin: true
@@ -4056,7 +4062,7 @@ packages:
- supports-color
dev: true
- /@svgr/core/5.5.0:
+ /@svgr/core@5.5.0:
resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==}
engines: {node: '>=10'}
dependencies:
@@ -4067,25 +4073,25 @@ packages:
- supports-color
dev: true
- /@svgr/core/6.3.1:
+ /@svgr/core@6.3.1:
resolution: {integrity: sha512-Sm3/7OdXbQreemf9aO25keerZSbnKMpGEfmH90EyYpj1e8wMD4TuwJIb3THDSgRMWk1kYJfSRulELBy4gVgZUA==}
engines: {node: '>=10'}
dependencies:
- '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1
+ '@svgr/plugin-jsx': 6.3.1(@svgr/core@6.3.1)
camelcase: 6.2.0
cosmiconfig: 7.0.1
transitivePeerDependencies:
- supports-color
dev: true
- /@svgr/hast-util-to-babel-ast/5.5.0:
+ /@svgr/hast-util-to-babel-ast@5.5.0:
resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==}
engines: {node: '>=10'}
dependencies:
'@babel/types': 7.20.5
dev: true
- /@svgr/hast-util-to-babel-ast/6.3.1:
+ /@svgr/hast-util-to-babel-ast@6.3.1:
resolution: {integrity: sha512-NgyCbiTQIwe3wHe/VWOUjyxmpUmsrBjdoIxKpXt3Nqc3TN30BpJG22OxBvVzsAh9jqep0w0/h8Ywvdk3D9niNQ==}
engines: {node: '>=10'}
dependencies:
@@ -4093,7 +4099,7 @@ packages:
entities: 4.3.1
dev: true
- /@svgr/plugin-jsx/5.5.0:
+ /@svgr/plugin-jsx@5.5.0:
resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==}
engines: {node: '>=10'}
dependencies:
@@ -4105,14 +4111,14 @@ packages:
- supports-color
dev: true
- /@svgr/plugin-jsx/6.3.1_@svgr+core@6.3.1:
+ /@svgr/plugin-jsx@6.3.1(@svgr/core@6.3.1):
resolution: {integrity: sha512-r9+0mYG3hD4nNtUgsTXWGYJomv/bNd7kC16zvsM70I/bGeoCi/3lhTmYqeN6ChWX317OtQCSZZbH4wq9WwoXbw==}
engines: {node: '>=10'}
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
'@babel/core': 7.20.5
- '@svgr/babel-preset': 6.3.1_@babel+core@7.20.5
+ '@svgr/babel-preset': 6.3.1(@babel/core@7.20.5)
'@svgr/core': 6.3.1
'@svgr/hast-util-to-babel-ast': 6.3.1
svg-parser: 2.0.4
@@ -4120,7 +4126,7 @@ packages:
- supports-color
dev: true
- /@svgr/plugin-prettier/5.5.0:
+ /@svgr/plugin-prettier@5.5.0:
resolution: {integrity: sha512-mVc+u+eKUmy8sW5UnFpes9NqVtizJfnhasF8Srbi3XdxVTWyU5lmhWlQAgHLhcrsZKowQ0b7xBa4qWHI5Ew/VQ==}
engines: {node: '>=10'}
dependencies:
@@ -4128,7 +4134,7 @@ packages:
prettier: 2.8.0
dev: true
- /@svgr/plugin-svgo/5.5.0:
+ /@svgr/plugin-svgo@5.5.0:
resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==}
engines: {node: '>=10'}
dependencies:
@@ -4137,7 +4143,7 @@ packages:
svgo: 1.3.2
dev: true
- /@svgr/plugin-svgo/6.3.1_@svgr+core@6.3.1:
+ /@svgr/plugin-svgo@6.3.1(@svgr/core@6.3.1):
resolution: {integrity: sha512-yJIjTDKPYqzFVjmsbH5EdIwEsmKxjxdXSGJVLeUgwZOZPAkNQmD1v7LDbOdOKbR44FG8465Du+zWPdbYGnbMbw==}
engines: {node: '>=10'}
peerDependencies:
@@ -4149,46 +4155,45 @@ packages:
svgo: 2.8.0
dev: true
- /@svgr/rollup/6.3.1:
+ /@svgr/rollup@6.3.1:
resolution: {integrity: sha512-TXcRT7pwsNU30bXxgooGAZQIXmPy7fxUnN/v5cuCpLiondRtKiV321kh/S/qhcQ6gSs6DvJmNDpbiqPZF66usw==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.20.5
- '@babel/plugin-transform-react-constant-elements': 7.18.9_@babel+core@7.20.5
- '@babel/preset-env': 7.18.10_@babel+core@7.20.5
- '@babel/preset-react': 7.18.6_@babel+core@7.20.5
- '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-transform-react-constant-elements': 7.18.9(@babel/core@7.20.5)
+ '@babel/preset-env': 7.18.10(@babel/core@7.20.5)
+ '@babel/preset-react': 7.18.6(@babel/core@7.20.5)
+ '@babel/preset-typescript': 7.18.6(@babel/core@7.20.5)
'@rollup/pluginutils': 4.2.1
'@svgr/core': 6.3.1
- '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1
- '@svgr/plugin-svgo': 6.3.1_@svgr+core@6.3.1
+ '@svgr/plugin-jsx': 6.3.1(@svgr/core@6.3.1)
+ '@svgr/plugin-svgo': 6.3.1(@svgr/core@6.3.1)
transitivePeerDependencies:
- supports-color
dev: true
- /@svgr/webpack/6.3.1:
+ /@svgr/webpack@6.3.1:
resolution: {integrity: sha512-eODxwIUShLxSMaRjzJtrj9wg89D75JLczvWg9SaB5W+OtVTkiC1vdGd8+t+pf5fTlBOy4RRXAq7x1E3DUl3D0A==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.18.10
- '@babel/plugin-transform-react-constant-elements': 7.18.9_@babel+core@7.18.10
- '@babel/preset-env': 7.18.10_@babel+core@7.18.10
- '@babel/preset-react': 7.18.6_@babel+core@7.18.10
- '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10
+ '@babel/plugin-transform-react-constant-elements': 7.18.9(@babel/core@7.18.10)
+ '@babel/preset-env': 7.18.10(@babel/core@7.18.10)
+ '@babel/preset-react': 7.18.6(@babel/core@7.18.10)
+ '@babel/preset-typescript': 7.18.6(@babel/core@7.18.10)
'@svgr/core': 6.3.1
- '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1
- '@svgr/plugin-svgo': 6.3.1_@svgr+core@6.3.1
+ '@svgr/plugin-jsx': 6.3.1(@svgr/core@6.3.1)
+ '@svgr/plugin-svgo': 6.3.1(@svgr/core@6.3.1)
transitivePeerDependencies:
- supports-color
dev: true
- /@swc/helpers/0.4.11:
+ /@swc/helpers@0.4.11:
resolution: {integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==}
dependencies:
tslib: 2.4.0
- dev: false
- /@testing-library/dom/8.16.0:
+ /@testing-library/dom@8.16.0:
resolution: {integrity: sha512-uxF4zmnLHHDlmW4l+0WDjcgLVwCvH+OVLpD8Dfp+Bjfz85prwxWGbwXgJdLtkgjD0qfOzkJF9SmA6YZPsMYX4w==}
engines: {node: '>=12'}
dependencies:
@@ -4202,7 +4207,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /@testing-library/jest-dom/5.16.4:
+ /@testing-library/jest-dom@5.16.4:
resolution: {integrity: sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA==}
engines: {node: '>=8', npm: '>=6', yarn: '>=1'}
dependencies:
@@ -4217,7 +4222,7 @@ packages:
redent: 3.0.0
dev: true
- /@testing-library/react-hooks/7.0.2_nnrd3gsncyragczmpvfhocinkq:
+ /@testing-library/react-hooks@7.0.2(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==}
engines: {node: '>=12'}
peerDependencies:
@@ -4235,11 +4240,11 @@ packages:
'@types/react-dom': 18.3.0
'@types/react-test-renderer': 18.0.0
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
- react-error-boundary: 3.1.4_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-error-boundary: 3.1.4(react@18.3.1)
dev: true
- /@testing-library/react/12.1.5_nnrd3gsncyragczmpvfhocinkq:
+ /@testing-library/react@12.1.5(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==}
engines: {node: '>=12'}
peerDependencies:
@@ -4250,10 +4255,10 @@ packages:
'@testing-library/dom': 8.16.0
'@types/react-dom': 17.0.17
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: true
- /@testing-library/user-event/13.5.0_gwcpuyfvwbszhlmedmugzivgzu:
+ /@testing-library/user-event@13.5.0(@testing-library/dom@8.16.0):
resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==}
engines: {node: '>=10', npm: '>=6'}
peerDependencies:
@@ -4263,17 +4268,17 @@ packages:
'@testing-library/dom': 8.16.0
dev: true
- /@tootallnate/once/1.1.2:
+ /@tootallnate/once@1.1.2:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
engines: {node: '>= 6'}
dev: true
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
dev: true
- /@ts-morph/common/0.18.1:
+ /@ts-morph/common@0.18.1:
resolution: {integrity: sha512-RVE+zSRICWRsfrkAw5qCAK+4ZH9kwEFv5h0+/YeHTLieWP7F4wWq4JsKFuNWG+fYh/KF+8rAtgdj5zb2mm+DVA==}
dependencies:
fast-glob: 3.2.12
@@ -4282,35 +4287,35 @@ packages:
path-browserify: 1.0.1
dev: true
- /@tsconfig/node10/1.0.9:
+ /@tsconfig/node10@1.0.9:
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
dev: true
- /@tsconfig/node12/1.0.11:
+ /@tsconfig/node12@1.0.11:
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
dev: true
- /@tsconfig/node14/1.0.3:
+ /@tsconfig/node14@1.0.3:
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
dev: true
- /@tsconfig/node16/1.0.3:
+ /@tsconfig/node16@1.0.3:
resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==}
dev: true
- /@types/archy/0.0.32:
+ /@types/archy@0.0.32:
resolution: {integrity: sha512-5ZZ5+YGmUE01yejiXsKnTcvhakMZ2UllZlMsQni53Doc1JWhe21ia8VntRoRD6fAEWw08JBh/z9qQHJ+//MrIg==}
dev: true
- /@types/argparse/1.0.38:
+ /@types/argparse@1.0.38:
resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
dev: true
- /@types/aria-query/4.2.2:
+ /@types/aria-query@4.2.2:
resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==}
dev: true
- /@types/babel__core/7.1.18:
+ /@types/babel__core@7.1.18:
resolution: {integrity: sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==}
dependencies:
'@babel/parser': 7.18.10
@@ -4320,83 +4325,83 @@ packages:
'@types/babel__traverse': 7.14.2
dev: true
- /@types/babel__generator/7.6.3:
+ /@types/babel__generator@7.6.3:
resolution: {integrity: sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==}
dependencies:
'@babel/types': 7.20.5
dev: true
- /@types/babel__template/7.4.1:
+ /@types/babel__template@7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
'@babel/parser': 7.20.5
'@babel/types': 7.20.5
dev: true
- /@types/babel__traverse/7.14.2:
+ /@types/babel__traverse@7.14.2:
resolution: {integrity: sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==}
dependencies:
'@babel/types': 7.20.5
dev: true
- /@types/base64-url/2.2.0:
+ /@types/base64-url@2.2.0:
resolution: {integrity: sha512-adGV3KUTc9uO7kZNQOF3u9WVuKZsgKPsaShZePe+hQXNYd+3dnIK+Y2Wyw7A6M4iIH01xKCRZCZWLQnG9bulIQ==}
dev: false
- /@types/body-parser/1.19.2:
+ /@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.35
'@types/node': 16.11.6
dev: false
- /@types/bonjour/3.5.10:
+ /@types/bonjour@3.5.10:
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
dependencies:
'@types/node': 16.11.6
dev: false
- /@types/codemirror/0.0.108:
+ /@types/codemirror@0.0.108:
resolution: {integrity: sha512-3FGFcus0P7C2UOGCNUVENqObEb4SFk+S8Dnxq7K6aIsLVs/vDtlangl3PEO0ykaKXyK56swVF6Nho7VsA44uhw==}
dependencies:
'@types/tern': 0.23.4
dev: false
- /@types/connect-history-api-fallback/1.3.5:
+ /@types/connect-history-api-fallback@1.3.5:
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
dependencies:
'@types/express-serve-static-core': 4.17.30
'@types/node': 16.11.6
dev: false
- /@types/connect/3.4.35:
+ /@types/connect@3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
'@types/node': 16.11.6
dev: false
- /@types/dedent/0.7.0:
+ /@types/dedent@0.7.0:
resolution: {integrity: sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A==}
- /@types/eslint-scope/3.7.1:
+ /@types/eslint-scope@3.7.1:
resolution: {integrity: sha512-SCFeogqiptms4Fg29WpOTk5nHIzfpKCemSN63ksBQYKTcXoJEmJagV+DhVmbapZzY4/5YaOV1nZwrsU79fFm1g==}
dependencies:
'@types/eslint': 7.28.0
'@types/estree': 1.0.0
- /@types/eslint/7.28.0:
+ /@types/eslint@7.28.0:
resolution: {integrity: sha512-07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A==}
dependencies:
'@types/estree': 1.0.0
'@types/json-schema': 7.0.11
- /@types/estree/0.0.50:
+ /@types/estree@0.0.50:
resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==}
- /@types/estree/1.0.0:
+ /@types/estree@1.0.0:
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
- /@types/express-serve-static-core/4.17.30:
+ /@types/express-serve-static-core@4.17.30:
resolution: {integrity: sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==}
dependencies:
'@types/node': 16.11.6
@@ -4404,7 +4409,7 @@ packages:
'@types/range-parser': 1.2.4
dev: false
- /@types/express/4.17.13:
+ /@types/express@4.17.13:
resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==}
dependencies:
'@types/body-parser': 1.19.2
@@ -4413,178 +4418,177 @@ packages:
'@types/serve-static': 1.15.0
dev: false
- /@types/fs-extra/9.0.13:
+ /@types/fs-extra@9.0.13:
resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
dependencies:
'@types/node': 16.11.6
dev: true
- /@types/glob/7.2.0:
+ /@types/glob@7.2.0:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 3.0.5
'@types/node': 16.11.6
dev: true
- /@types/graceful-fs/4.1.5:
+ /@types/graceful-fs@4.1.5:
resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
dependencies:
'@types/node': 16.11.6
dev: true
- /@types/hast/2.3.4:
+ /@types/hast@2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
dependencies:
'@types/unist': 2.0.6
- /@types/history/4.7.11:
+ /@types/history@4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
dev: false
- /@types/hoist-non-react-statics/3.3.1:
+ /@types/hoist-non-react-statics@3.3.1:
resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==}
dependencies:
'@types/react': 18.3.2
hoist-non-react-statics: 3.3.2
dev: true
- /@types/html-minifier-terser/6.1.0:
+ /@types/html-minifier-terser@6.1.0:
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
dev: false
- /@types/http-proxy/1.17.9:
+ /@types/http-proxy@1.17.9:
resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==}
dependencies:
'@types/node': 16.11.6
dev: false
- /@types/istanbul-lib-coverage/2.0.3:
+ /@types/istanbul-lib-coverage@2.0.3:
resolution: {integrity: sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==}
dev: true
- /@types/istanbul-lib-report/3.0.0:
+ /@types/istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.3
dev: true
- /@types/istanbul-reports/3.0.1:
+ /@types/istanbul-reports@3.0.1:
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
dependencies:
'@types/istanbul-lib-report': 3.0.0
dev: true
- /@types/jest/28.1.6:
+ /@types/jest@28.1.6:
resolution: {integrity: sha512-0RbGAFMfcBJKOmqRazM8L98uokwuwD5F8rHrv/ZMbrZBwVOWZUyPG6VFNscjYr/vjM3Vu4fRrCPbOs42AfemaQ==}
dependencies:
jest-matcher-utils: 28.1.3
pretty-format: 28.1.3
dev: true
- /@types/js-cookie/2.2.7:
+ /@types/js-cookie@2.2.7:
resolution: {integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==}
dev: false
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
- /@types/json5/0.0.29:
+ /@types/json5@0.0.29:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- dev: true
- /@types/lodash/4.14.182:
+ /@types/lodash@4.14.182:
resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==}
- /@types/lz-string/1.3.34:
+ /@types/lz-string@1.3.34:
resolution: {integrity: sha512-j6G1e8DULJx3ONf6NdR5JiR2ZY3K3PaaqiEuKYkLQO0Czfi1AzrtjfnfCROyWGeDd5IVMKCwsgSmMip9OWijow==}
dev: false
- /@types/md5/2.3.1:
+ /@types/md5@2.3.1:
resolution: {integrity: sha512-OK3oe+ALIoPSo262lnhAYwpqFNXbiwH2a+0+Z5YBnkQEwWD8fk5+PIeRhYA48PzvX9I4SGNpWy+9bLj8qz92RQ==}
dependencies:
'@types/node': 16.11.6
dev: true
- /@types/mdast/3.0.10:
+ /@types/mdast@3.0.10:
resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==}
dependencies:
'@types/unist': 2.0.6
- /@types/mdx-js__react/1.5.5:
+ /@types/mdx-js__react@1.5.5:
resolution: {integrity: sha512-k8pnaP6JXVlQh18HgL5X6sYFNC/qZnzO7R2+HsmwrwUd+JnnsU0d9lyyT0RQrHg1anxDU36S98TI/fsGtmYqqg==}
dependencies:
'@types/react': 18.3.2
dev: true
- /@types/mime/3.0.0:
+ /@types/mime@3.0.0:
resolution: {integrity: sha512-fccbsHKqFDXClBZTDLA43zl0+TbxyIwyzIzwwhvoJvhNjOErCdeX2xJbURimv2EbSVUGav001PaCJg4mZxMl4w==}
dev: false
- /@types/minimatch/3.0.5:
+ /@types/minimatch@3.0.5:
resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==}
dev: true
- /@types/minimist/1.2.2:
+ /@types/minimist@1.2.2:
resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==}
dev: true
- /@types/node/12.20.24:
+ /@types/node@12.20.24:
resolution: {integrity: sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==}
dev: true
- /@types/node/12.20.33:
+ /@types/node@12.20.33:
resolution: {integrity: sha512-5XmYX2GECSa+CxMYaFsr2mrql71Q4EvHjKS+ox/SiwSdaASMoBIWE6UmZqFO+VX1jIcsYLStI4FFoB6V7FeIYw==}
dev: true
- /@types/node/16.11.6:
+ /@types/node@16.11.6:
resolution: {integrity: sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w==}
- /@types/normalize-package-data/2.4.1:
+ /@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
- /@types/parse-json/4.0.0:
+ /@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: true
- /@types/parse5/5.0.3:
+ /@types/parse5@5.0.3:
resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
- /@types/prettier/2.6.4:
+ /@types/prettier@2.6.4:
resolution: {integrity: sha512-fOwvpvQYStpb/zHMx0Cauwywu9yLDmzWiiQBC7gJyq5tYLUXFZvDG7VK1B7WBxxjBJNKFOZ0zLoOQn8vmATbhw==}
- /@types/prop-types/15.7.4:
+ /@types/prop-types@15.7.4:
resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==}
- /@types/q/1.5.5:
+ /@types/q@1.5.5:
resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==}
dev: true
- /@types/qs/6.9.7:
+ /@types/qs@6.9.7:
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
dev: false
- /@types/range-parser/1.2.4:
+ /@types/range-parser@1.2.4:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
dev: false
- /@types/react-dom/17.0.17:
+ /@types/react-dom@17.0.17:
resolution: {integrity: sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==}
dependencies:
'@types/react': 17.0.33
dev: true
- /@types/react-dom/18.3.0:
+ /@types/react-dom@18.3.0:
resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
dependencies:
'@types/react': 18.3.2
- /@types/react-test-renderer/18.0.0:
+ /@types/react-test-renderer@18.0.0:
resolution: {integrity: sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==}
dependencies:
'@types/react': 18.3.2
dev: true
- /@types/react/17.0.33:
+ /@types/react@17.0.33:
resolution: {integrity: sha512-pLWntxXpDPaU+RTAuSGWGSEL2FRTNyRQOjSWDke/rxRg14ncsZvx8AKWMWZqvc1UOaJIAoObdZhAWvRaHFi5rw==}
dependencies:
'@types/prop-types': 15.7.4
@@ -4592,59 +4596,59 @@ packages:
csstype: 3.0.9
dev: true
- /@types/react/18.3.2:
+ /@types/react@18.3.2:
resolution: {integrity: sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==}
dependencies:
'@types/prop-types': 15.7.4
csstype: 3.0.9
- /@types/retry/0.12.0:
+ /@types/retry@0.12.0:
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
dev: false
- /@types/rimraf/3.0.2:
+ /@types/rimraf@3.0.2:
resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==}
dependencies:
'@types/glob': 7.2.0
'@types/node': 16.11.6
dev: true
- /@types/scheduler/0.16.2:
+ /@types/scheduler@0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
dev: true
- /@types/semver/7.3.13:
+ /@types/semver@7.3.13:
resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
dev: true
- /@types/semver/7.3.8:
+ /@types/semver@7.3.8:
resolution: {integrity: sha512-D/2EJvAlCEtYFEYmmlGwbGXuK886HzyCc3nZX/tkFTQdEU8jZDAgiv08P162yB17y4ZXZoq7yFAnW4GDBb9Now==}
dev: true
- /@types/serve-index/1.9.1:
+ /@types/serve-index@1.9.1:
resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
dependencies:
'@types/express': 4.17.13
dev: false
- /@types/serve-static/1.15.0:
+ /@types/serve-static@1.15.0:
resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==}
dependencies:
'@types/mime': 3.0.0
'@types/node': 16.11.6
dev: false
- /@types/sockjs/0.3.33:
+ /@types/sockjs@0.3.33:
resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
dependencies:
'@types/node': 16.11.6
dev: false
- /@types/stack-utils/2.0.1:
+ /@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
dev: true
- /@types/styled-components/5.1.23:
+ /@types/styled-components@5.1.23:
resolution: {integrity: sha512-zt8oQGU6XB4LH1Xpq169YnAVmt22+swzHJvyKMyTZu/z8+afvgKjjg0s79aAodgNSf36ZOEG6DyVAW/JhLH2Nw==}
dependencies:
'@types/hoist-non-react-statics': 3.3.1
@@ -4652,26 +4656,26 @@ packages:
csstype: 3.0.9
dev: true
- /@types/tern/0.23.4:
+ /@types/tern@0.23.4:
resolution: {integrity: sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==}
dependencies:
'@types/estree': 1.0.0
dev: false
- /@types/testing-library__jest-dom/5.14.5:
+ /@types/testing-library__jest-dom@5.14.5:
resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==}
dependencies:
'@types/jest': 28.1.6
dev: true
- /@types/unist/2.0.6:
+ /@types/unist@2.0.6:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
- /@types/webpack-env/1.16.3:
+ /@types/webpack-env@1.16.3:
resolution: {integrity: sha512-9gtOPPkfyNoEqCQgx4qJKkuNm/x0R2hKR7fdl7zvTJyHnIisuE/LfvXOsYWL0o3qq6uiBnKZNNNzi3l0y/X+xw==}
dev: true
- /@types/webpack/5.28.0:
+ /@types/webpack@5.28.0:
resolution: {integrity: sha512-8cP0CzcxUiFuA9xGJkfeVpqmWTk9nx6CWwamRGCj95ph1SmlRRk9KlCZ6avhCbZd4L68LvYT6l1kpdEnQXrF8w==}
dependencies:
'@types/node': 16.11.6
@@ -4684,29 +4688,29 @@ packages:
- webpack-cli
dev: true
- /@types/ws/8.5.3:
+ /@types/ws@8.5.3:
resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==}
dependencies:
'@types/node': 16.11.6
dev: false
- /@types/yargs-parser/20.2.1:
+ /@types/yargs-parser@20.2.1:
resolution: {integrity: sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==}
dev: true
- /@types/yargs/16.0.4:
+ /@types/yargs@16.0.4:
resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==}
dependencies:
'@types/yargs-parser': 20.2.1
dev: true
- /@types/yargs/17.0.10:
+ /@types/yargs@17.0.10:
resolution: {integrity: sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==}
dependencies:
'@types/yargs-parser': 20.2.1
dev: true
- /@types/yauzl/2.10.0:
+ /@types/yauzl@2.10.0:
resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==}
requiresBuild: true
dependencies:
@@ -4714,7 +4718,7 @@ packages:
dev: true
optional: true
- /@typescript-eslint/eslint-plugin/5.45.1_gzownqpuqpv4wlegrjxgkhyhy4:
+ /@typescript-eslint/eslint-plugin@5.45.1(@typescript-eslint/parser@5.45.1)(eslint@7.32.0)(typescript@4.9.4):
resolution: {integrity: sha512-cOizjPlKEh0bXdFrBLTrI/J6B/QMlhwE9auOov53tgB+qMukH6/h8YAK/qw+QJGct/PTbdh2lytGyipxCcEtAw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4725,23 +4729,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.45.1_yfqovispp7u7jaktymfaqwl2py
+ '@typescript-eslint/parser': 5.45.1(eslint@7.32.0)(typescript@4.9.4)
'@typescript-eslint/scope-manager': 5.45.1
- '@typescript-eslint/type-utils': 5.45.1_yfqovispp7u7jaktymfaqwl2py
- '@typescript-eslint/utils': 5.45.1_yfqovispp7u7jaktymfaqwl2py
+ '@typescript-eslint/type-utils': 5.45.1(eslint@7.32.0)(typescript@4.9.4)
+ '@typescript-eslint/utils': 5.45.1(eslint@7.32.0)(typescript@4.9.4)
debug: 4.3.4
eslint: 7.32.0
ignore: 5.2.1
natural-compare-lite: 1.4.0
regexpp: 3.2.0
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.4
+ tsutils: 3.21.0(typescript@4.9.4)
typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/experimental-utils/4.33.0_yfqovispp7u7jaktymfaqwl2py:
+ /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.4):
resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -4750,16 +4754,16 @@ packages:
'@types/json-schema': 7.0.11
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
- '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.4
+ '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.4)
eslint: 7.32.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@7.32.0
+ eslint-utils: 3.0.0(eslint@7.32.0)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/parser/4.33.0_yfqovispp7u7jaktymfaqwl2py:
+ /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.4):
resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -4771,7 +4775,7 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 4.33.0
'@typescript-eslint/types': 4.33.0
- '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.9.4
+ '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.4)
debug: 4.3.4
eslint: 7.32.0
typescript: 4.9.4
@@ -4779,7 +4783,7 @@ packages:
- supports-color
dev: true
- /@typescript-eslint/parser/5.45.1_yfqovispp7u7jaktymfaqwl2py:
+ /@typescript-eslint/parser@5.45.1(eslint@7.32.0)(typescript@4.9.4):
resolution: {integrity: sha512-JQ3Ep8bEOXu16q0ztsatp/iQfDCtvap7sp/DKo7DWltUquj5AfCOpX2zSzJ8YkAVnrQNqQ5R62PBz2UtrfmCkA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4791,15 +4795,14 @@ packages:
dependencies:
'@typescript-eslint/scope-manager': 5.45.1
'@typescript-eslint/types': 5.45.1
- '@typescript-eslint/typescript-estree': 5.45.1_typescript@4.9.4
+ '@typescript-eslint/typescript-estree': 5.45.1(typescript@4.9.4)
debug: 4.3.4
eslint: 7.32.0
typescript: 4.9.4
transitivePeerDependencies:
- supports-color
- dev: true
- /@typescript-eslint/scope-manager/4.33.0:
+ /@typescript-eslint/scope-manager@4.33.0:
resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==}
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
dependencies:
@@ -4807,15 +4810,14 @@ packages:
'@typescript-eslint/visitor-keys': 4.33.0
dev: true
- /@typescript-eslint/scope-manager/5.45.1:
+ /@typescript-eslint/scope-manager@5.45.1:
resolution: {integrity: sha512-D6fCileR6Iai7E35Eb4Kp+k0iW7F1wxXYrOhX/3dywsOJpJAQ20Fwgcf+P/TDtvQ7zcsWsrJaglaQWDhOMsspQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': 5.45.1
'@typescript-eslint/visitor-keys': 5.45.1
- dev: true
- /@typescript-eslint/type-utils/5.45.1_yfqovispp7u7jaktymfaqwl2py:
+ /@typescript-eslint/type-utils@5.45.1(eslint@7.32.0)(typescript@4.9.4):
resolution: {integrity: sha512-aosxFa+0CoYgYEl3aptLe1svP910DJq68nwEJzyQcrtRhC4BN0tJAvZGAe+D0tzjJmFXe+h4leSsiZhwBa2vrA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4825,27 +4827,26 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.45.1_typescript@4.9.4
- '@typescript-eslint/utils': 5.45.1_yfqovispp7u7jaktymfaqwl2py
+ '@typescript-eslint/typescript-estree': 5.45.1(typescript@4.9.4)
+ '@typescript-eslint/utils': 5.45.1(eslint@7.32.0)(typescript@4.9.4)
debug: 4.3.4
eslint: 7.32.0
- tsutils: 3.21.0_typescript@4.9.4
+ tsutils: 3.21.0(typescript@4.9.4)
typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/4.33.0:
+ /@typescript-eslint/types@4.33.0:
resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==}
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
dev: true
- /@typescript-eslint/types/5.45.1:
+ /@typescript-eslint/types@5.45.1:
resolution: {integrity: sha512-HEW3U0E5dLjUT+nk7b4lLbOherS1U4ap+b9pfu2oGsW3oPu7genRaY9dDv3nMczC1rbnRY2W/D7SN05wYoGImg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
- /@typescript-eslint/typescript-estree/4.33.0_typescript@4.9.4:
+ /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.4):
resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==}
engines: {node: ^10.12.0 || >=12.0.0}
peerDependencies:
@@ -4860,13 +4861,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.4
+ tsutils: 3.21.0(typescript@4.9.4)
typescript: 4.9.4
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/typescript-estree/5.45.1_typescript@4.9.4:
+ /@typescript-eslint/typescript-estree@5.45.1(typescript@4.9.4):
resolution: {integrity: sha512-76NZpmpCzWVrrb0XmYEpbwOz/FENBi+5W7ipVXAsG3OoFrQKJMiaqsBMbvGRyLtPotGqUfcY7Ur8j0dksDJDng==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4881,13 +4882,12 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.3.8
- tsutils: 3.21.0_typescript@4.9.4
+ tsutils: 3.21.0(typescript@4.9.4)
typescript: 4.9.4
transitivePeerDependencies:
- supports-color
- dev: true
- /@typescript-eslint/utils/5.45.1_yfqovispp7u7jaktymfaqwl2py:
+ /@typescript-eslint/utils@5.45.1(eslint@7.32.0)(typescript@4.9.4):
resolution: {integrity: sha512-rlbC5VZz68+yjAzQBc4I7KDYVzWG2X/OrqoZrMahYq3u8FFtmQYc+9rovo/7wlJH5kugJ+jQXV5pJMnofGmPRw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -4897,17 +4897,17 @@ packages:
'@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.45.1
'@typescript-eslint/types': 5.45.1
- '@typescript-eslint/typescript-estree': 5.45.1_typescript@4.9.4
+ '@typescript-eslint/typescript-estree': 5.45.1(typescript@4.9.4)
eslint: 7.32.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@7.32.0
+ eslint-utils: 3.0.0(eslint@7.32.0)
semver: 7.3.8
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys/4.33.0:
+ /@typescript-eslint/visitor-keys@4.33.0:
resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==}
engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
dependencies:
@@ -4915,15 +4915,14 @@ packages:
eslint-visitor-keys: 2.1.0
dev: true
- /@typescript-eslint/visitor-keys/5.45.1:
+ /@typescript-eslint/visitor-keys@5.45.1:
resolution: {integrity: sha512-cy9ln+6rmthYWjH9fmx+5FU/JDpjQb586++x2FZlveq7GdGuLLW9a2Jcst2TGekH82bXpfmRNSwP9tyEs6RjvQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
'@typescript-eslint/types': 5.45.1
eslint-visitor-keys: 3.3.0
- dev: true
- /@vanilla-extract/babel-plugin/1.1.7:
+ /@vanilla-extract/babel-plugin@1.1.7:
resolution: {integrity: sha512-nTCOb1N/u1FUxACxV/jvpLm4xchiCdEHTUZrxCWjYOrIxqkfgpJXE4T7q/1VyEje/M929DFBUaD+YkPzaqGMzA==}
deprecated: The features of this plugin are now built-in to all vanilla-extract bundler integrations — making this plugin no longer required. For more information about test environment integrations, see https://vanilla-extract.style/documentation/test-environments/
dependencies:
@@ -4934,11 +4933,11 @@ packages:
- supports-color
dev: false
- /@vanilla-extract/css-utils/0.1.2:
+ /@vanilla-extract/css-utils@0.1.2:
resolution: {integrity: sha512-qoxIu5E/UhJtoKsPL1JaU9nhTN0Xl5zYV0pScOgsvc3JN46TvTTt0L3GV8x3PQpZP7x3elw8BsC9czYbhJy9Gg==}
dev: false
- /@vanilla-extract/css/1.7.3:
+ /@vanilla-extract/css@1.7.3:
resolution: {integrity: sha512-ZwfNvk9LjVdsHON4bNAGXBu0dPo4e1RlgghnW1A4lcQruvFU7zdq+wEqodrX3O0D2qRkupOGgjAbTSddwqKoQA==}
dependencies:
'@emotion/hash': 0.8.0
@@ -4954,7 +4953,7 @@ packages:
outdent: 0.8.0
dev: false
- /@vanilla-extract/integration/5.0.0:
+ /@vanilla-extract/integration@5.0.0:
resolution: {integrity: sha512-HwglsIxGYtV4IXFfyQ6GzZLFoaWaW+QkNx8UhXbgsCWUoPqpSbioukCOA+SuSuzsIcEZ3hkD0Y5ixITQNtnzjQ==}
dependencies:
'@vanilla-extract/css': 1.7.3
@@ -4966,11 +4965,11 @@ packages:
outdent: 0.8.0
dev: false
- /@vanilla-extract/private/1.0.3:
+ /@vanilla-extract/private@1.0.3:
resolution: {integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==}
dev: false
- /@vanilla-extract/sprinkles/1.4.1_@vanilla-extract+css@1.7.3:
+ /@vanilla-extract/sprinkles@1.4.1(@vanilla-extract/css@1.7.3):
resolution: {integrity: sha512-aW6CfMMToX4a+baLuVxwcT0FSACjX3xrNt8wdi/3LLRlLAfhyue8OK7kJxhcYNZfydBeWTP59aRy8p5FUTIeew==}
peerDependencies:
'@vanilla-extract/css': ^1.0.0
@@ -4978,7 +4977,7 @@ packages:
'@vanilla-extract/css': 1.7.3
dev: false
- /@vanilla-extract/webpack-plugin/2.1.12_webpack@5.58.2:
+ /@vanilla-extract/webpack-plugin@2.1.12(webpack@5.58.2):
resolution: {integrity: sha512-8mAbIDEh9r7a5cgb3wcILzuhEbGNddV4/qvwogOlxhoGrP4deUKJHEtPURDviWZ+x/FzFZtZ3glWU7WD8+WN8A==}
peerDependencies:
webpack: ^4.30.0 || ^5.20.2
@@ -4992,32 +4991,32 @@ packages:
- supports-color
dev: false
- /@webassemblyjs/ast/1.11.1:
+ /@webassemblyjs/ast@1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
dependencies:
'@webassemblyjs/helper-numbers': 1.11.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
+ /@webassemblyjs/floating-point-hex-parser@1.11.1:
resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
- /@webassemblyjs/helper-api-error/1.11.1:
+ /@webassemblyjs/helper-api-error@1.11.1:
resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
- /@webassemblyjs/helper-buffer/1.11.1:
+ /@webassemblyjs/helper-buffer@1.11.1:
resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- /@webassemblyjs/helper-numbers/1.11.1:
+ /@webassemblyjs/helper-numbers@1.11.1:
resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.11.1
'@webassemblyjs/helper-api-error': 1.11.1
'@xtuc/long': 4.2.2
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
+ /@webassemblyjs/helper-wasm-bytecode@1.11.1:
resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
- /@webassemblyjs/helper-wasm-section/1.11.1:
+ /@webassemblyjs/helper-wasm-section@1.11.1:
resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -5025,20 +5024,20 @@ packages:
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
'@webassemblyjs/wasm-gen': 1.11.1
- /@webassemblyjs/ieee754/1.11.1:
+ /@webassemblyjs/ieee754@1.11.1:
resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
dependencies:
'@xtuc/ieee754': 1.2.0
- /@webassemblyjs/leb128/1.11.1:
+ /@webassemblyjs/leb128@1.11.1:
resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
dependencies:
'@xtuc/long': 4.2.2
- /@webassemblyjs/utf8/1.11.1:
+ /@webassemblyjs/utf8@1.11.1:
resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- /@webassemblyjs/wasm-edit/1.11.1:
+ /@webassemblyjs/wasm-edit@1.11.1:
resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -5050,7 +5049,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
'@webassemblyjs/wast-printer': 1.11.1
- /@webassemblyjs/wasm-gen/1.11.1:
+ /@webassemblyjs/wasm-gen@1.11.1:
resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -5059,7 +5058,7 @@ packages:
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- /@webassemblyjs/wasm-opt/1.11.1:
+ /@webassemblyjs/wasm-opt@1.11.1:
resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -5067,7 +5066,7 @@ packages:
'@webassemblyjs/wasm-gen': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
- /@webassemblyjs/wasm-parser/1.11.1:
+ /@webassemblyjs/wasm-parser@1.11.1:
resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -5077,27 +5076,27 @@ packages:
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- /@webassemblyjs/wast-printer/1.11.1:
+ /@webassemblyjs/wast-printer@1.11.1:
resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
'@xtuc/long': 4.2.2
- /@xobotyi/scrollbar-width/1.9.5:
+ /@xobotyi/scrollbar-width@1.9.5:
resolution: {integrity: sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==}
dev: false
- /@xtuc/ieee754/1.2.0:
+ /@xtuc/ieee754@1.2.0:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- /@xtuc/long/4.2.2:
+ /@xtuc/long@4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- /abab/2.0.6:
+ /abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
dev: true
- /accepts/1.3.8:
+ /accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
dependencies:
@@ -5105,50 +5104,48 @@ packages:
negotiator: 0.6.3
dev: false
- /acorn-globals/6.0.0:
+ /acorn-globals@6.0.0:
resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
dependencies:
acorn: 7.4.1
acorn-walk: 7.2.0
dev: true
- /acorn-import-assertions/1.7.6_acorn@8.5.0:
+ /acorn-import-assertions@1.7.6(acorn@8.5.0):
resolution: {integrity: sha512-FlVvVFA1TX6l3lp8VjDnYYq7R1nyW6x3svAt4nDgrWQ9SBaSh9CnbwgSUTasgfNfOG5HlM1ehugCvM+hjo56LA==}
peerDependencies:
acorn: ^8
dependencies:
acorn: 8.5.0
- /acorn-jsx/5.3.2_acorn@7.4.1:
+ /acorn-jsx@5.3.2(acorn@7.4.1):
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
acorn: 7.4.1
- dev: true
- /acorn-walk/7.2.0:
+ /acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn-walk/8.2.0:
+ /acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
dev: true
- /acorn/7.4.1:
+ /acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
engines: {node: '>=0.4.0'}
hasBin: true
- dev: true
- /acorn/8.5.0:
+ /acorn@8.5.0:
resolution: {integrity: sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==}
engines: {node: '>=0.4.0'}
hasBin: true
- /agent-base/6.0.2:
+ /agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
dependencies:
@@ -5157,7 +5154,7 @@ packages:
- supports-color
dev: true
- /aggregate-error/3.1.0:
+ /aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
dependencies:
@@ -5165,22 +5162,24 @@ packages:
indent-string: 4.0.0
dev: true
- /ajv-formats/2.1.1:
+ /ajv-formats@2.1.1(ajv@8.11.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ peerDependencies:
+ ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
dependencies:
ajv: 8.11.0
- /ajv-keywords/3.5.2_ajv@6.12.6:
+ /ajv-keywords@3.5.2(ajv@6.12.6):
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
ajv: ^6.9.1
dependencies:
ajv: 6.12.6
- /ajv-keywords/5.1.0_ajv@8.11.0:
+ /ajv-keywords@5.1.0(ajv@8.11.0):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
@@ -5188,7 +5187,7 @@ packages:
ajv: 8.11.0
fast-deep-equal: 3.1.3
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
@@ -5196,7 +5195,7 @@ packages:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv/8.11.0:
+ /ajv@8.11.0:
resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==}
dependencies:
fast-deep-equal: 3.1.3
@@ -5204,79 +5203,78 @@ packages:
require-from-string: 2.0.2
uri-js: 4.4.1
- /alphanum-sort/1.0.2:
+ /alphanum-sort@1.0.2:
resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==}
dev: true
- /ansi-colors/4.1.1:
+ /ansi-colors@4.1.1:
resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==}
engines: {node: '>=6'}
- dev: true
- /ansi-escapes/4.3.2:
+ /ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.21.3
dev: true
- /ansi-html-community/0.0.8:
+ /ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
hasBin: true
dev: false
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- /ansi-regex/6.0.1:
+ /ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
dev: true
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
- /ansi-styles/5.2.0:
+ /ansi-styles@5.2.0:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
dev: true
- /any-promise/1.3.0:
+ /any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
dev: false
- /anymatch/3.1.2:
+ /anymatch@3.1.2:
resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==}
engines: {node: '>= 8'}
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- /archy/1.0.0:
+ /archy@1.0.0:
resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==}
dev: true
- /arg/4.1.3:
+ /arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
dev: true
- /argparse/1.0.10:
+ /argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
- /aria-query/4.2.2:
+ /aria-query@4.2.2:
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
engines: {node: '>=6.0'}
dependencies:
@@ -5284,30 +5282,30 @@ packages:
'@babel/runtime-corejs3': 7.15.4
dev: true
- /aria-query/5.0.0:
+ /aria-query@5.0.0:
resolution: {integrity: sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==}
engines: {node: '>=6.0'}
dev: true
- /array-back/3.1.0:
+ /array-back@3.1.0:
resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==}
engines: {node: '>=6'}
dev: false
- /array-back/4.0.2:
+ /array-back@4.0.2:
resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==}
engines: {node: '>=8'}
dev: false
- /array-flatten/1.1.1:
+ /array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
dev: false
- /array-flatten/2.1.2:
+ /array-flatten@2.1.2:
resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
dev: false
- /array-includes/3.1.6:
+ /array-includes@3.1.6:
resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==}
engines: {node: '>= 0.4'}
dependencies:
@@ -5316,14 +5314,12 @@ packages:
es-abstract: 1.20.5
get-intrinsic: 1.1.3
is-string: 1.0.7
- dev: true
- /array-union/2.1.0:
+ /array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- dev: true
- /array.prototype.flat/1.3.1:
+ /array.prototype.flat@1.3.1:
resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -5331,9 +5327,8 @@ packages:
define-properties: 1.1.4
es-abstract: 1.20.5
es-shim-unscopables: 1.0.0
- dev: true
- /array.prototype.flatmap/1.3.1:
+ /array.prototype.flatmap@1.3.1:
resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -5341,9 +5336,8 @@ packages:
define-properties: 1.1.4
es-abstract: 1.20.5
es-shim-unscopables: 1.0.0
- dev: true
- /array.prototype.tosorted/1.1.1:
+ /array.prototype.tosorted@1.1.1:
resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
dependencies:
call-bind: 1.0.2
@@ -5351,74 +5345,54 @@ packages:
es-abstract: 1.20.5
es-shim-unscopables: 1.0.0
get-intrinsic: 1.1.3
- dev: true
- /arrify/1.0.1:
+ /arrify@1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
dev: true
- /ast-types-flow/0.0.7:
+ /ast-types-flow@0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
- /astral-regex/2.0.0:
+ /astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
- dev: true
- /async/0.9.2:
+ /async@0.9.2:
resolution: {integrity: sha512-l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw==}
dev: true
- /async/1.0.0:
+ /async@1.0.0:
resolution: {integrity: sha512-5mO7DX4CbJzp9zjaFXusQQ4tzKJARjNB1Ih1pVBi8wkbmXy/xzIDgEMXxWePLzt2OdFwaxfneIlT1nCiXubrPQ==}
dev: true
- /async/2.6.4:
+ /async@2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
dev: false
- /asynckit/0.4.0:
+ /asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
dev: true
- /atob/2.1.2:
+ /atob@2.1.2:
resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==}
engines: {node: '>= 4.5.0'}
hasBin: true
dev: true
- /axe-core/4.5.2:
+ /axe-core@4.5.2:
resolution: {integrity: sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA==}
engines: {node: '>=4'}
dev: true
- /axobject-query/2.2.0:
+ /axobject-query@2.2.0:
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
dev: true
- /babel-jest/27.5.1:
- resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- peerDependencies:
- '@babel/core': ^7.8.0
- dependencies:
- '@jest/transform': 27.5.1
- '@jest/types': 27.5.1
- '@types/babel__core': 7.1.18
- babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1
- chalk: 4.1.2
- graceful-fs: 4.2.9
- slash: 3.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /babel-jest/27.5.1_@babel+core@7.20.5:
+ /babel-jest@27.5.1(@babel/core@7.20.5):
resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -5429,7 +5403,7 @@ packages:
'@jest/types': 27.5.1
'@types/babel__core': 7.1.18
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 27.5.1_@babel+core@7.20.5
+ babel-preset-jest: 27.5.1(@babel/core@7.20.5)
chalk: 4.1.2
graceful-fs: 4.2.9
slash: 3.0.0
@@ -5437,20 +5411,7 @@ packages:
- supports-color
dev: true
- /babel-loader/8.2.5:
- resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
- engines: {node: '>= 8.9'}
- peerDependencies:
- '@babel/core': ^7.0.0
- webpack: '>=2'
- dependencies:
- find-cache-dir: 3.3.2
- loader-utils: 2.0.2
- make-dir: 3.1.0
- schema-utils: 2.7.1
- dev: true
-
- /babel-loader/8.2.5_ymqmvaizlfnglvl3k4adagbfaa:
+ /babel-loader@8.2.5(@babel/core@7.20.5)(webpack@5.58.2):
resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
engines: {node: '>= 8.9'}
peerDependencies:
@@ -5463,13 +5424,12 @@ packages:
make-dir: 3.1.0
schema-utils: 2.7.1
webpack: 5.58.2
- dev: false
- /babel-plugin-add-module-exports/0.2.1:
+ /babel-plugin-add-module-exports@0.2.1:
resolution: {integrity: sha512-3AN/9V/rKuv90NG65m4tTHsI04XrCKsWbztIcW7a8H5iIN7WlvWucRtVV0V/rT4QvtA11n5Vmp20fLwfMWqp6g==}
dev: false
- /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9:
+ /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9):
resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==}
peerDependencies:
'@babel/core': ^7.11.6
@@ -5478,17 +5438,17 @@ packages:
'@babel/helper-plugin-utils': 7.10.4
'@mdx-js/util': 1.6.22
- /babel-plugin-dynamic-import-node/2.3.3:
+ /babel-plugin-dynamic-import-node@2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
object.assign: 4.1.4
- /babel-plugin-extract-import-names/1.6.22:
+ /babel-plugin-extract-import-names@1.6.22:
resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==}
dependencies:
'@babel/helper-plugin-utils': 7.10.4
- /babel-plugin-istanbul/6.1.1:
+ /babel-plugin-istanbul@6.1.1:
resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
engines: {node: '>=8'}
dependencies:
@@ -5501,7 +5461,7 @@ packages:
- supports-color
dev: true
- /babel-plugin-jest-hoist/27.5.1:
+ /babel-plugin-jest-hoist@27.5.1:
resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -5511,7 +5471,7 @@ packages:
'@types/babel__traverse': 7.14.2
dev: true
- /babel-plugin-macros/3.1.0:
+ /babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
@@ -5520,88 +5480,76 @@ packages:
resolve: 1.22.1
dev: true
- /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10:
+ /babel-plugin-polyfill-corejs2@0.3.2(@babel/core@7.18.10):
resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.18.8
'@babel/core': 7.18.10
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10
+ '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.18.10)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.20.5:
+ /babel-plugin-polyfill-corejs2@0.3.2(@babel/core@7.20.5):
resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.18.8
'@babel/core': 7.20.5
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.20.5
+ '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.20.5)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10:
+ /babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.18.10):
resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10
+ '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.18.10)
core-js-compat: 3.24.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.20.5:
+ /babel-plugin-polyfill-corejs3@0.5.3(@babel/core@7.20.5):
resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.20.5
+ '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.20.5)
core-js-compat: 3.24.1
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10:
+ /babel-plugin-polyfill-regenerator@0.4.0(@babel/core@7.18.10):
resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.18.10
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10
+ '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.18.10)
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.20.5:
+ /babel-plugin-polyfill-regenerator@0.4.0(@babel/core@7.20.5):
resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.20.5
- '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.20.5
+ '@babel/helper-define-polyfill-provider': 0.3.2(@babel/core@7.20.5)
transitivePeerDependencies:
- supports-color
- /babel-plugin-styled-components/2.0.6:
- resolution: {integrity: sha512-Sk+7o/oa2HfHv3Eh8sxoz75/fFvEdHsXV4grdeHufX0nauCmymlnN0rGhIvfpMQSJMvGutJ85gvCGea4iqmDpg==}
- peerDependencies:
- styled-components: '>= 2'
- dependencies:
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.18.6
- babel-plugin-syntax-jsx: 6.18.0
- lodash: 4.17.21
- picomatch: 2.3.1
- dev: true
-
- /babel-plugin-styled-components/2.0.6_styled-components@5.3.6:
+ /babel-plugin-styled-components@2.0.6(styled-components@5.3.6):
resolution: {integrity: sha512-Sk+7o/oa2HfHv3Eh8sxoz75/fFvEdHsXV4grdeHufX0nauCmymlnN0rGhIvfpMQSJMvGutJ85gvCGea4iqmDpg==}
peerDependencies:
styled-components: '>= 2'
@@ -5611,61 +5559,32 @@ packages:
babel-plugin-syntax-jsx: 6.18.0
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.6_nnrd3gsncyragczmpvfhocinkq
+ styled-components: 5.3.6(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
- /babel-plugin-syntax-jsx/6.18.0:
+ /babel-plugin-syntax-jsx@6.18.0:
resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
- /babel-preset-current-node-syntax/1.0.1:
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/plugin-syntax-async-generators': 7.8.4
- '@babel/plugin-syntax-bigint': 7.8.3
- '@babel/plugin-syntax-class-properties': 7.12.13
- '@babel/plugin-syntax-import-meta': 7.10.4
- '@babel/plugin-syntax-json-strings': 7.8.3
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3
- '@babel/plugin-syntax-numeric-separator': 7.10.4
- '@babel/plugin-syntax-object-rest-spread': 7.8.3
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3
- '@babel/plugin-syntax-optional-chaining': 7.8.3
- '@babel/plugin-syntax-top-level-await': 7.14.5
- dev: true
-
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.20.5:
+ /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.5):
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.20.5
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5
- dev: true
-
- /babel-preset-jest/27.5.1:
- resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- babel-plugin-jest-hoist: 27.5.1
- babel-preset-current-node-syntax: 1.0.1
- dev: true
-
- /babel-preset-jest/27.5.1_@babel+core@7.20.5:
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.20.5)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.20.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.5)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.20.5)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.20.5)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.20.5)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.5)
+ dev: true
+
+ /babel-preset-jest@27.5.1(@babel/core@7.20.5):
resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -5673,35 +5592,35 @@ packages:
dependencies:
'@babel/core': 7.20.5
babel-plugin-jest-hoist: 27.5.1
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.5
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.5)
dev: true
- /bail/1.0.5:
+ /bail@1.0.5:
resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- /balanced-match/2.0.0:
+ /balanced-match@2.0.0:
resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
dev: true
- /base64-js/1.5.1:
+ /base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
dev: true
- /batch/0.6.1:
+ /batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
dev: false
- /big.js/5.2.2:
+ /big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- /binary-extensions/2.2.0:
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
- /bl/4.1.0:
+ /bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
dependencies:
buffer: 5.7.1
@@ -5709,7 +5628,7 @@ packages:
readable-stream: 3.6.0
dev: true
- /body-parser/1.20.0:
+ /body-parser@1.20.0:
resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
@@ -5729,7 +5648,7 @@ packages:
- supports-color
dev: false
- /bonjour-service/1.0.13:
+ /bonjour-service@1.0.13:
resolution: {integrity: sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==}
dependencies:
array-flatten: 2.1.2
@@ -5738,32 +5657,32 @@ packages:
multicast-dns: 7.2.5
dev: false
- /boolbase/1.0.0:
+ /boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- /brace-expansion/1.1.11:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- /brace-expansion/2.0.1:
+ /brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
dependencies:
balanced-match: 1.0.2
dev: true
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
- /browser-process-hrtime/1.0.0:
+ /browser-process-hrtime@1.0.0:
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
dev: true
- /browserslist/4.20.3:
+ /browserslist@4.20.3:
resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -5774,7 +5693,7 @@ packages:
node-releases: 2.0.5
picocolors: 1.0.0
- /browserslist/4.21.3:
+ /browserslist@4.21.3:
resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -5782,72 +5701,71 @@ packages:
caniuse-lite: 1.0.30001436
electron-to-chromium: 1.4.210
node-releases: 2.0.6
- update-browserslist-db: 1.0.5_browserslist@4.21.3
+ update-browserslist-db: 1.0.5(browserslist@4.21.3)
- /bs-logger/0.2.6:
+ /bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
dependencies:
fast-json-stable-stringify: 2.1.0
dev: true
- /bser/2.1.1:
+ /bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
dependencies:
node-int64: 0.4.0
dev: true
- /buffer-crc32/0.2.13:
+ /buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
dev: true
- /buffer-from/1.1.2:
+ /buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- /buffer/5.7.1:
+ /buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
dev: true
- /bytes-iec/3.1.1:
+ /bytes-iec@3.1.1:
resolution: {integrity: sha512-fey6+4jDK7TFtFg/klGSvNKJctyU7n2aQdnM+CO0ruLPbqqMOM8Tio0Pc+deqUeVKX1tL5DQep1zQ7+37aTAsA==}
engines: {node: '>= 0.8'}
dev: true
- /bytes/3.0.0:
+ /bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
dev: false
- /bytes/3.1.2:
+ /bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
dev: false
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.1.3
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- dev: true
- /camel-case/4.1.2:
+ /camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
tslib: 2.4.0
- /camelcase-css/2.0.1:
+ /camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- /camelcase-keys/6.2.2:
+ /camelcase-keys@6.2.2:
resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==}
engines: {node: '>=8'}
dependencies:
@@ -5856,20 +5774,20 @@ packages:
quick-lru: 4.0.1
dev: true
- /camelcase/5.3.1:
+ /camelcase@5.3.1:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
dev: true
- /camelcase/6.2.0:
+ /camelcase@6.2.0:
resolution: {integrity: sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==}
engines: {node: '>=10'}
dev: true
- /camelize/1.0.0:
+ /camelize@1.0.0:
resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==}
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.20.3
@@ -5878,14 +5796,13 @@ packages:
lodash.uniq: 4.5.0
dev: true
- /caniuse-lite/1.0.30001436:
+ /caniuse-lite@1.0.30001436:
resolution: {integrity: sha512-ZmWkKsnC2ifEPoWUvSAIGyOYwT+keAaaWPHiQ9DfMqS1t6tfuyFYoWR78TeZtznkEQ64+vGXH9cZrElwR2Mrxg==}
- /caniuse-lite/1.0.30001439:
+ /caniuse-lite@1.0.30001439:
resolution: {integrity: sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==}
- dev: false
- /capital-case/1.0.4:
+ /capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
dependencies:
no-case: 3.0.4
@@ -5893,10 +5810,10 @@ packages:
upper-case-first: 2.0.2
dev: true
- /ccount/1.1.0:
+ /ccount@1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -5904,21 +5821,21 @@ packages:
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/3.0.0:
+ /chalk@3.0.0:
resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
engines: {node: '>=8'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /change-case/4.1.2:
+ /change-case@4.1.2:
resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==}
dependencies:
camel-case: 4.1.2
@@ -5935,34 +5852,34 @@ packages:
tslib: 2.3.1
dev: true
- /char-regex/1.0.2:
+ /char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
dev: true
- /char-regex/2.0.1:
+ /char-regex@2.0.1:
resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==}
engines: {node: '>=12.20'}
dev: true
- /character-entities-html4/1.1.4:
+ /character-entities-html4@1.1.4:
resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==}
dev: true
- /character-entities-legacy/1.1.4:
+ /character-entities-legacy@1.1.4:
resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
- /character-entities/1.2.4:
+ /character-entities@1.2.4:
resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
- /character-reference-invalid/1.1.4:
+ /character-reference-invalid@1.1.4:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
- /charenc/0.0.2:
+ /charenc@0.0.2:
resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
dev: true
- /chokidar/3.5.2:
+ /chokidar@3.5.2:
resolution: {integrity: sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -5977,7 +5894,7 @@ packages:
fsevents: 2.3.2
dev: true
- /chokidar/3.5.3:
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -5992,50 +5909,50 @@ packages:
fsevents: 2.3.2
dev: false
- /chownr/1.1.4:
+ /chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
dev: true
- /chrome-trace-event/1.0.3:
+ /chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- /ci-info/3.2.0:
+ /ci-info@3.2.0:
resolution: {integrity: sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A==}
dev: true
- /ci-job-number/1.2.2:
+ /ci-job-number@1.2.2:
resolution: {integrity: sha512-CLOGsVDrVamzv8sXJGaILUVI6dsuAkouJP/n6t+OxLPeeA4DDby7zn9SB6EUpa1H7oIKoE+rMmkW80zYsFfUjA==}
dev: true
- /cjs-module-lexer/1.2.2:
+ /cjs-module-lexer@1.2.2:
resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==}
dev: true
- /classnames/2.3.1:
+ /classnames@2.3.1:
resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
dev: false
- /clean-css/5.3.1:
+ /clean-css@5.3.1:
resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
dev: false
- /clean-stack/2.2.0:
+ /clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
dev: true
- /cli-cursor/3.1.0:
+ /cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
dependencies:
restore-cursor: 3.1.0
dev: true
- /cli-truncate/2.1.0:
+ /cli-truncate@2.1.0:
resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
engines: {node: '>=8'}
dependencies:
@@ -6043,7 +5960,7 @@ packages:
string-width: 4.2.3
dev: true
- /cliui/7.0.4:
+ /cliui@7.0.4:
resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
dependencies:
string-width: 4.2.3
@@ -6051,7 +5968,7 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /cliui/8.0.1:
+ /cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
dependencies:
@@ -6060,7 +5977,7 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /clone-deep/4.0.1:
+ /clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
dependencies:
@@ -6069,24 +5986,24 @@ packages:
shallow-clone: 3.0.1
dev: false
- /clone-regexp/2.2.0:
+ /clone-regexp@2.2.0:
resolution: {integrity: sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==}
engines: {node: '>=6'}
dependencies:
is-regexp: 2.1.0
dev: true
- /clsx/1.2.1:
+ /clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
- /co/4.6.0:
+ /co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
dev: true
- /coa/2.0.2:
+ /coa@2.0.2:
resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==}
engines: {node: '>= 4.0'}
dependencies:
@@ -6095,76 +6012,76 @@ packages:
q: 1.5.1
dev: true
- /code-block-writer/11.0.3:
+ /code-block-writer@11.0.3:
resolution: {integrity: sha512-NiujjUFB4SwScJq2bwbYUtXbZhBSlY6vYzm++3Q6oC+U+injTqfPYFK8wS9COOmb2lueqp0ZRB4nK1VYeHgNyw==}
dev: true
- /codemirror/5.65.7:
+ /codemirror@5.65.7:
resolution: {integrity: sha512-zb67cXzgugIQmb6tfD4G11ILjYoMfTjwcjn+cWsa4GewlI2adhR/h3kolkoCQTm1msD/1BuqVTKuO09ELsS++A==}
dev: false
- /collapse-white-space/1.0.6:
+ /collapse-white-space@1.0.6:
resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
- /collect-v8-coverage/1.0.1:
+ /collect-v8-coverage@1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
dev: true
- /color-convert/1.9.3:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- /colord/2.9.2:
+ /colord@2.9.2:
resolution: {integrity: sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==}
dev: true
- /colorette/1.4.0:
+ /colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
dev: true
- /colorette/2.0.19:
+ /colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
dev: false
- /colors/1.0.3:
+ /colors@1.0.3:
resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==}
engines: {node: '>=0.1.90'}
dev: true
- /colors/1.2.5:
+ /colors@1.2.5:
resolution: {integrity: sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==}
engines: {node: '>=0.1.90'}
dev: true
- /colors/1.4.0:
+ /colors@1.4.0:
resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
engines: {node: '>=0.1.90'}
dev: true
- /combined-stream/1.0.8:
+ /combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
dependencies:
delayed-stream: 1.0.0
dev: true
- /comma-separated-tokens/1.0.8:
+ /comma-separated-tokens@1.0.8:
resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
- /command-line-args/5.2.1:
+ /command-line-args@5.2.1:
resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==}
engines: {node: '>=4.0.0'}
dependencies:
@@ -6174,7 +6091,7 @@ packages:
typical: 4.0.0
dev: false
- /command-line-usage/6.1.3:
+ /command-line-usage@6.1.3:
resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -6184,45 +6101,45 @@ packages:
typical: 5.2.0
dev: false
- /commander/2.20.3:
+ /commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- /commander/4.1.1:
+ /commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
dev: false
- /commander/6.2.1:
+ /commander@6.2.1:
resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
engines: {node: '>= 6'}
dev: true
- /commander/7.2.0:
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
dev: true
- /commander/8.2.0:
+ /commander@8.2.0:
resolution: {integrity: sha512-LLKxDvHeL91/8MIyTAD5BFMNtoIwztGPMiM/7Bl8rIPmHCZXRxmSWr91h57dpOpnQ6jIUqEWdXE/uBYMfiVZDA==}
engines: {node: '>= 12'}
dev: true
- /commander/8.3.0:
+ /commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
dev: false
- /commondir/1.0.1:
+ /commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- /compressible/2.0.18:
+ /compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
dev: false
- /compression/1.7.4:
+ /compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -6237,15 +6154,15 @@ packages:
- supports-color
dev: false
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- /connect-history-api-fallback/2.0.0:
+ /connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
dev: false
- /constant-case/3.0.4:
+ /constant-case@3.0.4:
resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
dependencies:
no-case: 3.0.4
@@ -6253,60 +6170,60 @@ packages:
upper-case: 2.0.2
dev: true
- /content-disposition/0.5.4:
+ /content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
dependencies:
safe-buffer: 5.2.1
dev: false
- /content-type/1.0.4:
+ /content-type@1.0.4:
resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==}
engines: {node: '>= 0.6'}
dev: false
- /convert-source-map/1.8.0:
+ /convert-source-map@1.8.0:
resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==}
dependencies:
safe-buffer: 5.1.2
- /cookie-signature/1.0.6:
+ /cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
dev: false
- /cookie/0.4.2:
+ /cookie@0.4.2:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
dev: false
- /cookie/0.5.0:
+ /cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
dev: false
- /copy-to-clipboard/3.3.2:
+ /copy-to-clipboard@3.3.2:
resolution: {integrity: sha512-Vme1Z6RUDzrb6xAI7EZlVZ5uvOk2F//GaxKUxajDqm9LhOVM1inxNAD2vy+UZDYsd0uyA9s7b3/FVZPSxqrCfg==}
dependencies:
toggle-selection: 1.0.6
dev: false
- /core-js-compat/3.24.1:
+ /core-js-compat@3.24.1:
resolution: {integrity: sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==}
dependencies:
browserslist: 4.21.3
semver: 7.0.0
- /core-js-pure/3.18.1:
+ /core-js-pure@3.18.1:
resolution: {integrity: sha512-kmW/k8MaSuqpvA1xm2l3TVlBuvW+XBkcaOroFUpO3D4lsTGQWBTb/tBDCf/PNkkPLrwgrkQRIYNPB0CeqGJWGQ==}
deprecated: core-js-pure@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js-pure.
requiresBuild: true
dev: true
- /core-util-is/1.0.3:
+ /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: false
- /cosmiconfig/7.0.1:
+ /cosmiconfig@7.0.1:
resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
engines: {node: '>=10'}
dependencies:
@@ -6317,11 +6234,11 @@ packages:
yaml: 1.10.2
dev: true
- /create-require/1.1.1:
+ /create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
dev: true
- /cross-spawn/5.1.0:
+ /cross-spawn@5.1.0:
resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
dependencies:
lru-cache: 4.1.5
@@ -6329,7 +6246,7 @@ packages:
which: 1.3.1
dev: false
- /cross-spawn/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
@@ -6337,19 +6254,19 @@ packages:
shebang-command: 2.0.0
which: 2.0.2
- /crypt/0.0.2:
+ /crypt@0.0.2:
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
dev: true
- /css-color-keywords/1.0.0:
+ /css-color-keywords@1.0.0:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- /css-color-names/1.0.1:
+ /css-color-names@1.0.1:
resolution: {integrity: sha512-/loXYOch1qU1biStIFsHH8SxTmOseh1IJqFvy8IujXOm1h+QjUdDhkzOrR5HG8K8mlxREj0yfi8ewCHx0eMxzA==}
dev: true
- /css-declaration-sorter/6.1.3_postcss@8.4.19:
+ /css-declaration-sorter@6.1.3(postcss@8.4.19):
resolution: {integrity: sha512-SvjQjNRZgh4ULK1LDJ2AduPKUKxIqmtU7ZAyi47BTV+M90Qvxr9AB6lKlLbDUfXqI9IQeYA8LbAsCZPpJEV3aA==}
engines: {node: '>= 10'}
peerDependencies:
@@ -6359,55 +6276,55 @@ packages:
timsort: 0.3.0
dev: true
- /css-functions-list/3.0.1:
+ /css-functions-list@3.0.1:
resolution: {integrity: sha512-PriDuifDt4u4rkDgnqRCLnjfMatufLmWNfQnGCq34xZwpY3oabwhB9SqRBmuvWUgndbemCFlKqg+nO7C2q0SBw==}
engines: {node: '>=12.22'}
dev: true
- /css-in-js-utils/2.0.1:
+ /css-in-js-utils@2.0.1:
resolution: {integrity: sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==}
dependencies:
hyphenate-style-name: 1.0.4
isobject: 3.0.1
dev: false
- /css-loader/5.2.7_webpack@5.58.2:
+ /css-loader@5.2.7(webpack@5.58.2):
resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
engines: {node: '>= 10.13.0'}
peerDependencies:
webpack: ^4.27.0 || ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.19
+ icss-utils: 5.1.0(postcss@8.4.19)
loader-utils: 2.0.2
postcss: 8.4.19
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.19
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.19
- postcss-modules-scope: 3.0.0_postcss@8.4.19
- postcss-modules-values: 4.0.0_postcss@8.4.19
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.19)
+ postcss-modules-local-by-default: 4.0.0(postcss@8.4.19)
+ postcss-modules-scope: 3.0.0(postcss@8.4.19)
+ postcss-modules-values: 4.0.0(postcss@8.4.19)
postcss-value-parser: 4.2.0
schema-utils: 3.1.1
semver: 7.3.8
webpack: 5.58.2
dev: false
- /css-loader/6.4.0_webpack@5.58.2:
+ /css-loader@6.4.0(webpack@5.58.2):
resolution: {integrity: sha512-Dlt6qfsxI/w1vU0r8qDd4BtMPxWqJeY5qQU7SmmZfvbpe6Xl18McO4GhyaMLns24Y2VNPiZwJPQ8JSbg4qvQLw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.19
+ icss-utils: 5.1.0(postcss@8.4.19)
postcss: 8.4.19
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.19
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.19
- postcss-modules-scope: 3.0.0_postcss@8.4.19
- postcss-modules-values: 4.0.0_postcss@8.4.19
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.19)
+ postcss-modules-local-by-default: 4.0.0(postcss@8.4.19)
+ postcss-modules-scope: 3.0.0(postcss@8.4.19)
+ postcss-modules-values: 4.0.0(postcss@8.4.19)
postcss-value-parser: 4.2.0
semver: 7.3.8
webpack: 5.58.2
dev: true
- /css-minimizer-webpack-plugin/3.1.1_webpack@5.58.2:
+ /css-minimizer-webpack-plugin@3.1.1(webpack@5.58.2):
resolution: {integrity: sha512-KlB8l5uoNcf9F7i5kXnkxoqJGd2BXH4f0+Lj2vSWSmuvMLYO1kNsJ1KHSzeDW8e45/whgSOPcKVT/3JopkT8dg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -6423,7 +6340,7 @@ packages:
esbuild:
optional: true
dependencies:
- cssnano: 5.0.8_postcss@8.4.19
+ cssnano: 5.0.8(postcss@8.4.19)
jest-worker: 27.5.1
p-limit: 3.1.0
postcss: 8.4.19
@@ -6433,11 +6350,11 @@ packages:
webpack: 5.58.2
dev: true
- /css-select-base-adapter/0.1.1:
+ /css-select-base-adapter@0.1.1:
resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==}
dev: true
- /css-select/2.1.0:
+ /css-select@2.1.0:
resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==}
dependencies:
boolbase: 1.0.0
@@ -6446,7 +6363,7 @@ packages:
nth-check: 1.0.2
dev: true
- /css-select/4.1.3:
+ /css-select@4.1.3:
resolution: {integrity: sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==}
dependencies:
boolbase: 1.0.0
@@ -6455,14 +6372,14 @@ packages:
domutils: 2.8.0
nth-check: 2.0.1
- /css-to-react-native/3.0.0:
+ /css-to-react-native@3.0.0:
resolution: {integrity: sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==}
dependencies:
camelize: 1.0.0
css-color-keywords: 1.0.0
postcss-value-parser: 4.2.0
- /css-tree/1.0.0-alpha.37:
+ /css-tree@1.0.0-alpha.37:
resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -6470,27 +6387,27 @@ packages:
source-map: 0.6.1
dev: true
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
mdn-data: 2.0.14
source-map: 0.6.1
- /css-what/3.4.2:
+ /css-what@3.4.2:
resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==}
engines: {node: '>= 6'}
dev: true
- /css-what/5.0.1:
+ /css-what@5.0.1:
resolution: {integrity: sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg==}
engines: {node: '>= 6'}
- /css.escape/1.5.1:
+ /css.escape@1.5.1:
resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
dev: true
- /css/3.0.0:
+ /css@3.0.0:
resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==}
dependencies:
inherits: 2.0.4
@@ -6498,50 +6415,50 @@ packages:
source-map-resolve: 0.6.0
dev: true
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
- /cssnano-preset-default/5.1.4_postcss@8.4.19:
+ /cssnano-preset-default@5.1.4(postcss@8.4.19):
resolution: {integrity: sha512-sPpQNDQBI3R/QsYxQvfB4mXeEcWuw0wGtKtmS5eg8wudyStYMgKOQT39G07EbW1LB56AOYrinRS9f0ig4Y3MhQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.1.3_postcss@8.4.19
- cssnano-utils: 2.0.1_postcss@8.4.19
+ css-declaration-sorter: 6.1.3(postcss@8.4.19)
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
- postcss-calc: 8.0.0_postcss@8.4.19
- postcss-colormin: 5.2.0_postcss@8.4.19
- postcss-convert-values: 5.0.1_postcss@8.4.19
- postcss-discard-comments: 5.0.1_postcss@8.4.19
- postcss-discard-duplicates: 5.0.1_postcss@8.4.19
- postcss-discard-empty: 5.0.1_postcss@8.4.19
- postcss-discard-overridden: 5.0.1_postcss@8.4.19
- postcss-merge-longhand: 5.0.2_postcss@8.4.19
- postcss-merge-rules: 5.0.2_postcss@8.4.19
- postcss-minify-font-values: 5.0.1_postcss@8.4.19
- postcss-minify-gradients: 5.0.2_postcss@8.4.19
- postcss-minify-params: 5.0.1_postcss@8.4.19
- postcss-minify-selectors: 5.1.0_postcss@8.4.19
- postcss-normalize-charset: 5.0.1_postcss@8.4.19
- postcss-normalize-display-values: 5.0.1_postcss@8.4.19
- postcss-normalize-positions: 5.0.1_postcss@8.4.19
- postcss-normalize-repeat-style: 5.0.1_postcss@8.4.19
- postcss-normalize-string: 5.0.1_postcss@8.4.19
- postcss-normalize-timing-functions: 5.0.1_postcss@8.4.19
- postcss-normalize-unicode: 5.0.1_postcss@8.4.19
- postcss-normalize-url: 5.0.2_postcss@8.4.19
- postcss-normalize-whitespace: 5.0.1_postcss@8.4.19
- postcss-ordered-values: 5.0.2_postcss@8.4.19
- postcss-reduce-initial: 5.0.1_postcss@8.4.19
- postcss-reduce-transforms: 5.0.1_postcss@8.4.19
- postcss-svgo: 5.0.2_postcss@8.4.19
- postcss-unique-selectors: 5.0.1_postcss@8.4.19
- dev: true
-
- /cssnano-utils/2.0.1_postcss@8.4.19:
+ postcss-calc: 8.0.0(postcss@8.4.19)
+ postcss-colormin: 5.2.0(postcss@8.4.19)
+ postcss-convert-values: 5.0.1(postcss@8.4.19)
+ postcss-discard-comments: 5.0.1(postcss@8.4.19)
+ postcss-discard-duplicates: 5.0.1(postcss@8.4.19)
+ postcss-discard-empty: 5.0.1(postcss@8.4.19)
+ postcss-discard-overridden: 5.0.1(postcss@8.4.19)
+ postcss-merge-longhand: 5.0.2(postcss@8.4.19)
+ postcss-merge-rules: 5.0.2(postcss@8.4.19)
+ postcss-minify-font-values: 5.0.1(postcss@8.4.19)
+ postcss-minify-gradients: 5.0.2(postcss@8.4.19)
+ postcss-minify-params: 5.0.1(postcss@8.4.19)
+ postcss-minify-selectors: 5.1.0(postcss@8.4.19)
+ postcss-normalize-charset: 5.0.1(postcss@8.4.19)
+ postcss-normalize-display-values: 5.0.1(postcss@8.4.19)
+ postcss-normalize-positions: 5.0.1(postcss@8.4.19)
+ postcss-normalize-repeat-style: 5.0.1(postcss@8.4.19)
+ postcss-normalize-string: 5.0.1(postcss@8.4.19)
+ postcss-normalize-timing-functions: 5.0.1(postcss@8.4.19)
+ postcss-normalize-unicode: 5.0.1(postcss@8.4.19)
+ postcss-normalize-url: 5.0.2(postcss@8.4.19)
+ postcss-normalize-whitespace: 5.0.1(postcss@8.4.19)
+ postcss-ordered-values: 5.0.2(postcss@8.4.19)
+ postcss-reduce-initial: 5.0.1(postcss@8.4.19)
+ postcss-reduce-transforms: 5.0.1(postcss@8.4.19)
+ postcss-svgo: 5.0.2(postcss@8.4.19)
+ postcss-unique-selectors: 5.0.1(postcss@8.4.19)
+ dev: true
+
+ /cssnano-utils@2.0.1(postcss@8.4.19):
resolution: {integrity: sha512-i8vLRZTnEH9ubIyfdZCAdIdgnHAUeQeByEeQ2I7oTilvP9oHO6RScpeq3GsFUVqeB8uZgOQ9pw8utofNn32hhQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6550,45 +6467,45 @@ packages:
postcss: 8.4.19
dev: true
- /cssnano/5.0.8_postcss@8.4.19:
+ /cssnano@5.0.8(postcss@8.4.19):
resolution: {integrity: sha512-Lda7geZU0Yu+RZi2SGpjYuQz4HI4/1Y+BhdD0jL7NXAQ5larCzVn+PUGuZbDMYz904AXXCOgO5L1teSvgu7aFg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.1.4_postcss@8.4.19
+ cssnano-preset-default: 5.1.4(postcss@8.4.19)
is-resolvable: 1.1.0
lilconfig: 2.0.3
postcss: 8.4.19
yaml: 1.10.2
dev: true
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
dev: true
- /cssom/0.3.8:
+ /cssom@0.3.8:
resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
dev: true
- /cssom/0.4.4:
+ /cssom@0.4.4:
resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==}
dev: true
- /cssstyle/2.3.0:
+ /cssstyle@2.3.0:
resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
engines: {node: '>=8'}
dependencies:
cssom: 0.3.8
dev: true
- /csstype/3.0.9:
+ /csstype@3.0.9:
resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==}
- /current-git-branch/1.1.0:
+ /current-git-branch@1.1.0:
resolution: {integrity: sha512-n5mwGZllLsFzxDPtTmadqGe4IIBPfqPbiIRX4xgFR9VK/Bx47U+94KiVkxSKAKN6/s43TlkztS2GZpgMKzwQ8A==}
dependencies:
babel-plugin-add-module-exports: 0.2.1
@@ -6596,21 +6513,21 @@ packages:
is-git-repository: 1.1.1
dev: false
- /cycle/1.0.3:
+ /cycle@1.0.3:
resolution: {integrity: sha512-TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA==}
engines: {node: '>=0.4.0'}
dev: true
- /damerau-levenshtein/1.0.8:
+ /damerau-levenshtein@1.0.8:
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
dev: true
- /dashify/2.0.0:
+ /dashify@2.0.0:
resolution: {integrity: sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A==}
engines: {node: '>=4'}
dev: true
- /data-urls/2.0.0:
+ /data-urls@2.0.0:
resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==}
engines: {node: '>=10'}
dependencies:
@@ -6619,7 +6536,7 @@ packages:
whatwg-url: 8.7.0
dev: true
- /debug/2.6.9:
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
@@ -6629,7 +6546,7 @@ packages:
dependencies:
ms: 2.0.0
- /debug/3.2.7:
+ /debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
peerDependencies:
supports-color: '*'
@@ -6639,7 +6556,7 @@ packages:
dependencies:
ms: 2.1.3
- /debug/4.3.1:
+ /debug@4.3.1:
resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -6651,7 +6568,7 @@ packages:
ms: 2.1.2
dev: true
- /debug/4.3.4:
+ /debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -6662,7 +6579,7 @@ packages:
dependencies:
ms: 2.1.2
- /debug/4.3.4_supports-color@5.5.0:
+ /debug@4.3.4(supports-color@5.5.0):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -6674,7 +6591,7 @@ packages:
ms: 2.1.2
supports-color: 5.5.0
- /debug/4.3.4_supports-color@8.1.1:
+ /debug@4.3.4(supports-color@8.1.1):
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -6687,7 +6604,7 @@ packages:
supports-color: 8.1.1
dev: true
- /decamelize-keys/1.1.0:
+ /decamelize-keys@1.1.0:
resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -6695,301 +6612,295 @@ packages:
map-obj: 1.0.1
dev: true
- /decamelize/1.2.0:
+ /decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
dev: true
- /decimal.js/10.3.1:
+ /decimal.js@10.3.1:
resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==}
dev: true
- /decode-uri-component/0.2.0:
+ /decode-uri-component@0.2.0:
resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
engines: {node: '>=0.10'}
- /dedent/0.7.0:
+ /dedent@0.7.0:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
- /deep-extend/0.6.0:
+ /deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
dev: false
- /deep-is/0.1.4:
+ /deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- dev: true
- /deep-object-diff/1.1.7:
+ /deep-object-diff@1.1.7:
resolution: {integrity: sha512-QkgBca0mL08P6HiOjoqvmm6xOAl2W6CT2+34Ljhg0OeFan8cwlcdq8jrLKsBBuUFAZLsN5b6y491KdKEoSo9lg==}
dev: false
- /deepmerge/4.2.2:
+ /deepmerge@4.2.2:
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
engines: {node: '>=0.10.0'}
- /default-gateway/6.0.3:
+ /default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
dependencies:
execa: 5.1.1
dev: false
- /define-lazy-prop/2.0.0:
+ /define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
- /define-properties/1.1.4:
+ /define-properties@1.1.4:
resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==}
engines: {node: '>= 0.4'}
dependencies:
has-property-descriptors: 1.0.0
object-keys: 1.1.1
- /delayed-stream/1.0.0:
+ /delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
dev: true
- /depd/1.1.2:
+ /depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
dev: false
- /depd/2.0.0:
+ /depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
dev: false
- /destroy/1.2.0:
+ /destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dev: false
- /detab/2.0.4:
+ /detab@2.0.4:
resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==}
dependencies:
repeat-string: 1.6.1
- /detect-newline/3.1.0:
+ /detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
dev: true
- /detect-node/2.1.0:
+ /detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
dev: false
- /devtools-protocol/0.0.901419:
+ /devtools-protocol@0.0.901419:
resolution: {integrity: sha512-4INMPwNm9XRpBukhNbF7OB6fNTTCaI8pzy/fXg0xQzAy5h3zL1P8xT3QazgKqBrb/hAYwIBizqDBZ7GtJE74QQ==}
dev: true
- /diff-sequences/27.5.1:
+ /diff-sequences@27.5.1:
resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: true
- /diff-sequences/28.1.1:
+ /diff-sequences@28.1.1:
resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dev: true
- /diff/4.0.2:
+ /diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
dev: true
- /dir-glob/3.0.1:
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
- dev: true
- /dns-equal/1.0.0:
+ /dns-equal@1.0.0:
resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
dev: false
- /dns-packet/5.4.0:
+ /dns-packet@5.4.0:
resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==}
engines: {node: '>=6'}
dependencies:
'@leichtgewicht/ip-codec': 2.0.4
dev: false
- /doctrine/2.1.0:
+ /doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
dependencies:
esutils: 2.0.3
- dev: true
- /doctrine/3.0.0:
+ /doctrine@3.0.0:
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
engines: {node: '>=6.0.0'}
dependencies:
esutils: 2.0.3
- dev: true
- /dom-accessibility-api/0.5.14:
+ /dom-accessibility-api@0.5.14:
resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==}
dev: true
- /dom-converter/0.2.0:
+ /dom-converter@0.2.0:
resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
dependencies:
utila: 0.4.0
dev: false
- /dom-serializer/0.2.2:
+ /dom-serializer@0.2.2:
resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
dependencies:
domelementtype: 2.2.0
entities: 2.2.0
dev: true
- /dom-serializer/1.3.2:
+ /dom-serializer@1.3.2:
resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
dependencies:
domelementtype: 2.2.0
domhandler: 4.2.2
entities: 2.2.0
- /domelementtype/1.3.1:
+ /domelementtype@1.3.1:
resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
dev: true
- /domelementtype/2.2.0:
+ /domelementtype@2.2.0:
resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
- /domexception/2.0.1:
+ /domexception@2.0.1:
resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==}
engines: {node: '>=8'}
dependencies:
webidl-conversions: 5.0.0
dev: true
- /domhandler/4.2.2:
+ /domhandler@4.2.2:
resolution: {integrity: sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==}
engines: {node: '>= 4'}
dependencies:
domelementtype: 2.2.0
- /domutils/1.7.0:
+ /domutils@1.7.0:
resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==}
dependencies:
dom-serializer: 0.2.2
domelementtype: 1.3.1
dev: true
- /domutils/2.8.0:
+ /domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
dom-serializer: 1.3.2
domelementtype: 2.2.0
domhandler: 4.2.2
- /dot-case/3.0.4:
+ /dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
tslib: 2.4.0
- /duplexer/0.1.2:
+ /duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
dev: true
- /ee-first/1.1.1:
+ /ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: false
- /electron-to-chromium/1.4.144:
+ /electron-to-chromium@1.4.144:
resolution: {integrity: sha512-R3RV3rU1xWwFJlSClVWDvARaOk6VUO/FubHLodIASDB3Mc2dzuWvNdfOgH9bwHUTqT79u92qw60NWfwUdzAqdg==}
- /electron-to-chromium/1.4.210:
+ /electron-to-chromium@1.4.210:
resolution: {integrity: sha512-kSiX4tuyZijV7Cz0MWVmGT8K2siqaOA4Z66K5dCttPPRh0HicOcOAEj1KlC8O8J1aOS/1M8rGofOzksLKaHWcQ==}
- /emittery/0.10.2:
+ /emittery@0.10.2:
resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==}
engines: {node: '>=12'}
dev: true
- /emittery/0.8.1:
+ /emittery@0.8.1:
resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==}
engines: {node: '>=10'}
dev: true
- /emmet/2.3.6:
+ /emmet@2.3.6:
resolution: {integrity: sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==}
dependencies:
'@emmetio/abbreviation': 2.2.3
'@emmetio/css-abbreviation': 2.1.4
dev: true
- /emoji-regex/8.0.0:
+ /emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- /emoji-regex/9.2.2:
+ /emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: true
- /emojis-list/3.0.0:
+ /emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
- /encodeurl/1.0.2:
+ /encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
dev: false
- /end-of-stream/1.4.4:
+ /end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
dev: true
- /enhanced-resolve/5.12.0:
+ /enhanced-resolve@5.12.0:
resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.9
tapable: 2.2.1
- dev: true
- /enhanced-resolve/5.8.3:
+ /enhanced-resolve@5.8.3:
resolution: {integrity: sha512-EGAbGvH7j7Xt2nc0E7D99La1OiEs8LnyimkRgwExpUMScN6O+3x9tIWs7PLQZVNx4YD+00skHXPXi1yQHpAmZA==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.9
tapable: 2.2.1
- /enquirer/2.3.6:
+ /enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
dependencies:
ansi-colors: 4.1.1
- dev: true
- /entities/2.2.0:
+ /entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- /entities/4.3.1:
+ /entities@4.3.1:
resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==}
engines: {node: '>=0.12'}
dev: true
- /error-ex/1.3.2:
+ /error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
is-arrayish: 0.2.1
- /error-stack-parser/2.1.4:
+ /error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
dependencies:
stackframe: 1.3.4
dev: false
- /es-abstract/1.20.5:
+ /es-abstract@1.20.5:
resolution: {integrity: sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -7018,27 +6929,24 @@ packages:
string.prototype.trimend: 1.0.6
string.prototype.trimstart: 1.0.6
unbox-primitive: 1.0.2
- dev: true
- /es-module-lexer/0.9.1:
+ /es-module-lexer@0.9.1:
resolution: {integrity: sha512-17Ed9misDnpyNBJh63g1OhW3qUFecDgGOivI85JeZY/LGhDum8e+cltukbkSK8pcJnXXEkya56sp4vSS1nzoUw==}
- /es-shim-unscopables/1.0.0:
+ /es-shim-unscopables@1.0.0:
resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
dependencies:
has: 1.0.3
- dev: true
- /es-to-primitive/1.2.1:
+ /es-to-primitive@1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
dependencies:
is-callable: 1.2.7
is-date-object: 1.0.5
is-symbol: 1.0.4
- dev: true
- /esbuild-android-64/0.15.18:
+ /esbuild-android-64@0.15.18:
resolution: {integrity: sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7047,7 +6955,7 @@ packages:
dev: true
optional: true
- /esbuild-android-arm64/0.15.18:
+ /esbuild-android-arm64@0.15.18:
resolution: {integrity: sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -7056,7 +6964,7 @@ packages:
dev: true
optional: true
- /esbuild-darwin-64/0.15.18:
+ /esbuild-darwin-64@0.15.18:
resolution: {integrity: sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7065,14 +6973,14 @@ packages:
dev: true
optional: true
- /esbuild-darwin-arm64/0.14.53:
+ /esbuild-darwin-arm64@0.14.53:
resolution: {integrity: sha512-otJwDU3hnI15Q98PX4MJbknSZ/WSR1I45il7gcxcECXzfN4Mrpft5hBDHXNRnCh+5858uPXBXA1Vaz2jVWLaIA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
dev: true
- /esbuild-darwin-arm64/0.15.18:
+ /esbuild-darwin-arm64@0.15.18:
resolution: {integrity: sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -7081,7 +6989,7 @@ packages:
dev: true
optional: true
- /esbuild-freebsd-64/0.15.18:
+ /esbuild-freebsd-64@0.15.18:
resolution: {integrity: sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7090,7 +6998,7 @@ packages:
dev: true
optional: true
- /esbuild-freebsd-arm64/0.15.18:
+ /esbuild-freebsd-arm64@0.15.18:
resolution: {integrity: sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -7099,7 +7007,7 @@ packages:
dev: true
optional: true
- /esbuild-linux-32/0.15.18:
+ /esbuild-linux-32@0.15.18:
resolution: {integrity: sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg==}
engines: {node: '>=12'}
cpu: [ia32]
@@ -7108,7 +7016,7 @@ packages:
dev: true
optional: true
- /esbuild-linux-64/0.15.18:
+ /esbuild-linux-64@0.15.18:
resolution: {integrity: sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7117,25 +7025,25 @@ packages:
dev: true
optional: true
- /esbuild-linux-arm/0.15.18:
- resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==}
+ /esbuild-linux-arm64@0.15.18:
+ resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==}
engines: {node: '>=12'}
- cpu: [arm]
+ cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /esbuild-linux-arm64/0.15.18:
- resolution: {integrity: sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug==}
+ /esbuild-linux-arm@0.15.18:
+ resolution: {integrity: sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA==}
engines: {node: '>=12'}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
requiresBuild: true
dev: true
optional: true
- /esbuild-linux-mips64le/0.15.18:
+ /esbuild-linux-mips64le@0.15.18:
resolution: {integrity: sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ==}
engines: {node: '>=12'}
cpu: [mips64el]
@@ -7144,7 +7052,7 @@ packages:
dev: true
optional: true
- /esbuild-linux-ppc64le/0.15.18:
+ /esbuild-linux-ppc64le@0.15.18:
resolution: {integrity: sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w==}
engines: {node: '>=12'}
cpu: [ppc64]
@@ -7153,7 +7061,7 @@ packages:
dev: true
optional: true
- /esbuild-linux-riscv64/0.15.18:
+ /esbuild-linux-riscv64@0.15.18:
resolution: {integrity: sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg==}
engines: {node: '>=12'}
cpu: [riscv64]
@@ -7162,7 +7070,7 @@ packages:
dev: true
optional: true
- /esbuild-linux-s390x/0.15.18:
+ /esbuild-linux-s390x@0.15.18:
resolution: {integrity: sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ==}
engines: {node: '>=12'}
cpu: [s390x]
@@ -7171,7 +7079,7 @@ packages:
dev: true
optional: true
- /esbuild-netbsd-64/0.15.18:
+ /esbuild-netbsd-64@0.15.18:
resolution: {integrity: sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7180,7 +7088,7 @@ packages:
dev: true
optional: true
- /esbuild-openbsd-64/0.15.18:
+ /esbuild-openbsd-64@0.15.18:
resolution: {integrity: sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7189,7 +7097,7 @@ packages:
dev: true
optional: true
- /esbuild-sunos-64/0.15.18:
+ /esbuild-sunos-64@0.15.18:
resolution: {integrity: sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7198,7 +7106,7 @@ packages:
dev: true
optional: true
- /esbuild-windows-32/0.15.18:
+ /esbuild-windows-32@0.15.18:
resolution: {integrity: sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ==}
engines: {node: '>=12'}
cpu: [ia32]
@@ -7207,7 +7115,7 @@ packages:
dev: true
optional: true
- /esbuild-windows-64/0.15.18:
+ /esbuild-windows-64@0.15.18:
resolution: {integrity: sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw==}
engines: {node: '>=12'}
cpu: [x64]
@@ -7216,7 +7124,7 @@ packages:
dev: true
optional: true
- /esbuild-windows-arm64/0.15.18:
+ /esbuild-windows-arm64@0.15.18:
resolution: {integrity: sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ==}
engines: {node: '>=12'}
cpu: [arm64]
@@ -7225,19 +7133,19 @@ packages:
dev: true
optional: true
- /esbuild/0.11.23:
+ /esbuild@0.11.23:
resolution: {integrity: sha512-iaiZZ9vUF5wJV8ob1tl+5aJTrwDczlvGP0JoMmnpC2B0ppiMCu8n8gmy5ZTGl5bcG081XBVn+U+jP+mPFm5T5Q==}
hasBin: true
requiresBuild: true
dev: false
- /esbuild/0.12.29:
+ /esbuild@0.12.29:
resolution: {integrity: sha512-w/XuoBCSwepyiZtIRsKsetiLDUVGPVw1E/R3VTFSecIy8UR7Cq3SOtwKHJMFoVqqVG36aGkzh4e8BvpO1Fdc7g==}
hasBin: true
requiresBuild: true
dev: false
- /esbuild/0.15.18:
+ /esbuild@0.15.18:
resolution: {integrity: sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q==}
engines: {node: '>=12'}
hasBin: true
@@ -7267,33 +7175,33 @@ packages:
esbuild-windows-arm64: 0.15.18
dev: true
- /escalade/3.1.1:
+ /escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
- /escape-html/1.0.3:
+ /escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
dev: false
- /escape-string-regexp/1.0.5:
+ /escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
- /escape-string-regexp/2.0.0:
+ /escape-string-regexp@2.0.0:
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
engines: {node: '>=8'}
dev: true
- /escape-string-regexp/4.0.0:
+ /escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- /escape-string-regexp/5.0.0:
+ /escape-string-regexp@5.0.0:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
dev: false
- /escodegen/2.0.0:
+ /escodegen@2.0.0:
resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==}
engines: {node: '>=6.0'}
hasBin: true
@@ -7306,7 +7214,7 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-next/12.0.1_yfqovispp7u7jaktymfaqwl2py:
+ /eslint-config-next@12.0.1(eslint@7.32.0)(next@12.3.0)(typescript@4.9.4):
resolution: {integrity: sha512-8r06kXDKN7TWdsPf9XD9+p40g1gNSoCeSHEafcgpRMmsSxQo3C2PwcUwvQynaCvE6ns7MDwOvgLEomamcPr7Ig==}
peerDependencies:
eslint: ^7.23.0
@@ -7318,21 +7226,22 @@ packages:
dependencies:
'@next/eslint-plugin-next': 12.0.1
'@rushstack/eslint-patch': 1.2.0
- '@typescript-eslint/parser': 4.33.0_yfqovispp7u7jaktymfaqwl2py
+ '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.4)
eslint: 7.32.0
eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 2.5.0_hpmu7kn6tcn2vnxpfzvv33bxmy
- eslint-plugin-import: 2.26.0_nznavyij7jqnilhneopnpd2prq
- eslint-plugin-jsx-a11y: 6.6.1_eslint@7.32.0
- eslint-plugin-react: 7.31.11_eslint@7.32.0
- eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0
+ eslint-import-resolver-typescript: 2.5.0(eslint-plugin-import@2.26.0)(eslint@7.32.0)
+ eslint-plugin-import: 2.26.0(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-typescript@2.5.0)(eslint@7.32.0)
+ eslint-plugin-jsx-a11y: 6.6.1(eslint@7.32.0)
+ eslint-plugin-react: 7.31.11(eslint@7.32.0)
+ eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0)
+ next: 12.3.0(@babel/core@7.20.5)(react-dom@18.3.1)(react@18.3.1)
typescript: 4.9.4
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-config-prettier/8.5.0_eslint@7.32.0:
+ /eslint-config-prettier@8.5.0(eslint@7.32.0):
resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==}
hasBin: true
peerDependencies:
@@ -7341,16 +7250,15 @@ packages:
eslint: 7.32.0
dev: true
- /eslint-import-resolver-node/0.3.6:
+ /eslint-import-resolver-node@0.3.6:
resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==}
dependencies:
debug: 3.2.7
resolve: 1.22.1
transitivePeerDependencies:
- supports-color
- dev: true
- /eslint-import-resolver-typescript/2.5.0_hpmu7kn6tcn2vnxpfzvv33bxmy:
+ /eslint-import-resolver-typescript@2.5.0(eslint-plugin-import@2.26.0)(eslint@7.32.0):
resolution: {integrity: sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==}
engines: {node: '>=4'}
peerDependencies:
@@ -7359,7 +7267,7 @@ packages:
dependencies:
debug: 4.3.4
eslint: 7.32.0
- eslint-plugin-import: 2.26.0_nznavyij7jqnilhneopnpd2prq
+ eslint-plugin-import: 2.26.0(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-typescript@2.5.0)(eslint@7.32.0)
glob: 7.2.0
is-glob: 4.0.3
resolve: 1.22.1
@@ -7368,7 +7276,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript/3.5.2_eslint@7.32.0:
+ /eslint-import-resolver-typescript@3.5.2(eslint-plugin-import@2.26.0)(eslint@7.32.0):
resolution: {integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -7378,6 +7286,7 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.12.0
eslint: 7.32.0
+ eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.45.1)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0)
get-tsconfig: 4.2.0
globby: 13.1.2
is-core-module: 2.11.0
@@ -7385,9 +7294,8 @@ packages:
synckit: 0.8.4
transitivePeerDependencies:
- supports-color
- dev: true
- /eslint-mdx/1.15.1_eslint@7.32.0:
+ /eslint-mdx@1.15.1(eslint@7.32.0):
resolution: {integrity: sha512-qrHpYPkdSVO3BIarGH+NVudmQ5ebrnEyzByWzTzN8S4tJA9OYQ58qbH0wEIpf+Pc9hXYsBdOUzO4Zg08CcREwg==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -7404,7 +7312,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.7.4_lhhchtxvtpbvmetizvwijze5aa:
+ /eslint-module-utils@2.7.4(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.5.0)(eslint@7.32.0):
resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
engines: {node: '>=4'}
peerDependencies:
@@ -7425,16 +7333,45 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 4.33.0_yfqovispp7u7jaktymfaqwl2py
+ '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.4)
debug: 3.2.7
eslint: 7.32.0
eslint-import-resolver-node: 0.3.6
- eslint-import-resolver-typescript: 2.5.0_hpmu7kn6tcn2vnxpfzvv33bxmy
+ eslint-import-resolver-typescript: 2.5.0(eslint-plugin-import@2.26.0)(eslint@7.32.0)
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-eslint-comments/3.2.0_eslint@7.32.0:
+ /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.45.1)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0):
+ resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.45.1(eslint@7.32.0)(typescript@4.9.4)
+ debug: 3.2.7
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.6
+ eslint-import-resolver-typescript: 3.5.2(eslint-plugin-import@2.26.0)(eslint@7.32.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ /eslint-plugin-eslint-comments@3.2.0(eslint@7.32.0):
resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
engines: {node: '>=6.5.0'}
peerDependencies:
@@ -7445,7 +7382,7 @@ packages:
ignore: 5.2.0
dev: true
- /eslint-plugin-import/2.26.0_nznavyij7jqnilhneopnpd2prq:
+ /eslint-plugin-import@2.26.0(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-typescript@2.5.0)(eslint@7.32.0):
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'}
peerDependencies:
@@ -7455,14 +7392,14 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 4.33.0_yfqovispp7u7jaktymfaqwl2py
+ '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.4)
array-includes: 3.1.6
array.prototype.flat: 1.3.1
debug: 2.6.9
doctrine: 2.1.0
eslint: 7.32.0
eslint-import-resolver-node: 0.3.6
- eslint-module-utils: 2.7.4_lhhchtxvtpbvmetizvwijze5aa
+ eslint-module-utils: 2.7.4(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@2.5.0)(eslint@7.32.0)
has: 1.0.3
is-core-module: 2.11.0
is-glob: 4.0.3
@@ -7476,7 +7413,37 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jest/24.5.2_lu625izcmv7ncn4wtsowv2m5du:
+ /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.45.1)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0):
+ resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ dependencies:
+ '@typescript-eslint/parser': 5.45.1(eslint@7.32.0)(typescript@4.9.4)
+ array-includes: 3.1.6
+ array.prototype.flat: 1.3.1
+ debug: 2.6.9
+ doctrine: 2.1.0
+ eslint: 7.32.0
+ eslint-import-resolver-node: 0.3.6
+ eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.45.1)(eslint-import-resolver-node@0.3.6)(eslint-import-resolver-typescript@3.5.2)(eslint@7.32.0)
+ has: 1.0.3
+ is-core-module: 2.11.0
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.values: 1.1.6
+ resolve: 1.22.1
+ tsconfig-paths: 3.14.1
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+
+ /eslint-plugin-jest@24.5.2(@typescript-eslint/eslint-plugin@5.45.1)(eslint@7.32.0)(typescript@4.9.4):
resolution: {integrity: sha512-lrI3sGAyZi513RRmP08sIW241Ti/zMnn/6wbE4ZBhb3M2pJ9ztaZMnSKSKKBUfotVdwqU8W1KtD8ao2/FR8DIg==}
engines: {node: '>=10'}
peerDependencies:
@@ -7486,15 +7453,15 @@ packages:
'@typescript-eslint/eslint-plugin':
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 5.45.1_gzownqpuqpv4wlegrjxgkhyhy4
- '@typescript-eslint/experimental-utils': 4.33.0_yfqovispp7u7jaktymfaqwl2py
+ '@typescript-eslint/eslint-plugin': 5.45.1(@typescript-eslint/parser@5.45.1)(eslint@7.32.0)(typescript@4.9.4)
+ '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.4)
eslint: 7.32.0
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /eslint-plugin-jsx-a11y/6.6.1_eslint@7.32.0:
+ /eslint-plugin-jsx-a11y@6.6.1(eslint@7.32.0):
resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -7516,7 +7483,7 @@ packages:
semver: 6.3.0
dev: true
- /eslint-plugin-markdown/2.2.1_eslint@7.32.0:
+ /eslint-plugin-markdown@2.2.1(eslint@7.32.0):
resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==}
engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0}
peerDependencies:
@@ -7528,15 +7495,15 @@ packages:
- supports-color
dev: true
- /eslint-plugin-mdx/1.15.1_eslint@7.32.0:
+ /eslint-plugin-mdx@1.15.1(eslint@7.32.0):
resolution: {integrity: sha512-kaA4NcI9L4Zz9traOFXwVe13yihazNFMLHWs6KAkaUjailO+LM5glAJROdCQGpQsTGpjaWY0Sp/XyARRrqsb8Q==}
engines: {node: '>=10.0.0'}
peerDependencies:
eslint: '>=5.0.0'
dependencies:
eslint: 7.32.0
- eslint-mdx: 1.15.1_eslint@7.32.0
- eslint-plugin-markdown: 2.2.1_eslint@7.32.0
+ eslint-mdx: 1.15.1(eslint@7.32.0)
+ eslint-plugin-markdown: 2.2.1(eslint@7.32.0)
synckit: 0.3.4
tslib: 2.3.1
vfile: 4.2.1
@@ -7544,7 +7511,7 @@ packages:
- supports-color
dev: true
- /eslint-plugin-prettier/4.0.0_uxd3uwca74b5prxme7kige3a7y:
+ /eslint-plugin-prettier@4.0.0(eslint-config-prettier@8.5.0)(eslint@7.32.0)(prettier@2.8.0):
resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==}
engines: {node: '>=6.0.0'}
peerDependencies:
@@ -7556,21 +7523,20 @@ packages:
optional: true
dependencies:
eslint: 7.32.0
- eslint-config-prettier: 8.5.0_eslint@7.32.0
+ eslint-config-prettier: 8.5.0(eslint@7.32.0)
prettier: 2.8.0
prettier-linter-helpers: 1.0.0
dev: true
- /eslint-plugin-react-hooks/4.6.0_eslint@7.32.0:
+ /eslint-plugin-react-hooks@4.6.0(eslint@7.32.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
eslint: 7.32.0
- dev: true
- /eslint-plugin-react/7.31.11_eslint@7.32.0:
+ /eslint-plugin-react@7.31.11(eslint@7.32.0):
resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==}
engines: {node: '>=4'}
peerDependencies:
@@ -7592,23 +7558,21 @@ packages:
resolve: 2.0.0-next.3
semver: 6.3.0
string.prototype.matchall: 4.0.8
- dev: true
- /eslint-scope/5.1.1:
+ /eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- /eslint-utils/2.1.0:
+ /eslint-utils@2.1.0:
resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
engines: {node: '>=6'}
dependencies:
eslint-visitor-keys: 1.3.0
- dev: true
- /eslint-utils/3.0.0_eslint@7.32.0:
+ /eslint-utils@3.0.0(eslint@7.32.0):
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
@@ -7618,22 +7582,19 @@ packages:
eslint-visitor-keys: 2.1.0
dev: true
- /eslint-visitor-keys/1.3.0:
+ /eslint-visitor-keys@1.3.0:
resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
engines: {node: '>=4'}
- dev: true
- /eslint-visitor-keys/2.1.0:
+ /eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
- dev: true
- /eslint-visitor-keys/3.3.0:
+ /eslint-visitor-keys@3.3.0:
resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
- /eslint/7.32.0:
+ /eslint@7.32.0:
resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==}
engines: {node: ^10.12.0 || >=12.0.0}
hasBin: true
@@ -7680,36 +7641,33 @@ packages:
v8-compile-cache: 2.3.0
transitivePeerDependencies:
- supports-color
- dev: true
- /espree/7.3.1:
+ /espree@7.3.1:
resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
acorn: 7.4.1
- acorn-jsx: 5.3.2_acorn@7.4.1
+ acorn-jsx: 5.3.2(acorn@7.4.1)
eslint-visitor-keys: 1.3.0
- dev: true
- /esprima/4.0.1:
+ /esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- /esquery/1.4.0:
+ /esquery@1.4.0:
resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==}
engines: {node: '>=0.10'}
dependencies:
estraverse: 5.3.0
- dev: true
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- /estimo/2.2.8:
+ /estimo@2.2.8:
resolution: {integrity: sha512-7sQte1r5KtILz1BNl8b2Npf9K9HYE4vWfnj+9DDyUYsdKj9z+6bYXIahrqdTPBfhaUZ4Akd7EUqQxFnu5SCPkQ==}
engines: {node: '>=12'}
hasBin: true
@@ -7725,43 +7683,43 @@ packages:
- utf-8-validate
dev: true
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- /estree-walker/2.0.2:
+ /estree-walker@2.0.2:
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
dev: true
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- /etag/1.8.1:
+ /etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
dev: false
- /eval/0.1.6:
+ /eval@0.1.6:
resolution: {integrity: sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==}
engines: {node: '>= 0.8'}
dependencies:
require-like: 0.1.2
dev: false
- /eventemitter3/4.0.7:
+ /eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
dev: false
- /events/3.3.0:
+ /events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- /execa/0.6.3:
+ /execa@0.6.3:
resolution: {integrity: sha512-/teX3MDLFBdYUhRk8WCBYboIMUmqeizu0m9Z3YF3JWrbEh/SlZg00vLJSaAGWw3wrZ9tE0buNw79eaAPYhUuvg==}
engines: {node: '>=4'}
dependencies:
@@ -7774,7 +7732,7 @@ packages:
strip-eof: 1.0.0
dev: false
- /execa/5.1.1:
+ /execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
dependencies:
@@ -7788,19 +7746,19 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- /execall/2.0.0:
+ /execall@2.0.0:
resolution: {integrity: sha512-0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow==}
engines: {node: '>=8'}
dependencies:
clone-regexp: 2.2.0
dev: true
- /exit/0.1.2:
+ /exit@0.1.2:
resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
engines: {node: '>= 0.8.0'}
dev: true
- /expect/27.5.1:
+ /expect@27.5.1:
resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -7810,7 +7768,7 @@ packages:
jest-message-util: 27.5.1
dev: true
- /express/4.18.1:
+ /express@4.18.1:
resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==}
engines: {node: '>= 0.10.0'}
dependencies:
@@ -7849,17 +7807,17 @@ packages:
- supports-color
dev: false
- /extend-shallow/2.0.1:
+ /extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
dev: false
- /extend/3.0.2:
+ /extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- /extract-zip/2.0.1:
+ /extract-zip@2.0.1:
resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
engines: {node: '>= 10.17.0'}
hasBin: true
@@ -7873,19 +7831,19 @@ packages:
- supports-color
dev: true
- /eyes/0.1.8:
+ /eyes@0.1.8:
resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==}
engines: {node: '> 0.1.90'}
dev: true
- /fast-deep-equal/3.1.3:
+ /fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- /fast-diff/1.2.0:
+ /fast-diff@1.2.0:
resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
dev: true
- /fast-glob/3.2.11:
+ /fast-glob@3.2.11:
resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -7896,7 +7854,7 @@ packages:
micromatch: 4.0.5
dev: true
- /fast-glob/3.2.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -7906,68 +7864,66 @@ packages:
merge2: 1.4.1
micromatch: 4.0.5
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- /fast-levenshtein/2.0.6:
+ /fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- dev: true
- /fast-shallow-equal/1.0.0:
+ /fast-shallow-equal@1.0.0:
resolution: {integrity: sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==}
dev: false
- /fastest-levenshtein/1.0.12:
+ /fastest-levenshtein@1.0.12:
resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==}
dev: true
- /fastest-stable-stringify/2.0.2:
+ /fastest-stable-stringify@2.0.2:
resolution: {integrity: sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==}
dev: false
- /fastq/1.13.0:
+ /fastq@1.13.0:
resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==}
dependencies:
reusify: 1.0.4
- /faye-websocket/0.11.4:
+ /faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
dependencies:
websocket-driver: 0.7.4
dev: false
- /fb-watchman/2.0.1:
+ /fb-watchman@2.0.1:
resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==}
dependencies:
bser: 2.1.1
dev: true
- /fd-slicer/1.1.0:
+ /fd-slicer@1.1.0:
resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
dependencies:
pend: 1.2.0
dev: true
- /file-entry-cache/6.0.1:
+ /file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flat-cache: 3.0.4
- dev: true
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
- /filter-obj/1.1.0:
+ /filter-obj@1.1.0:
resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
engines: {node: '>=0.10.0'}
dev: false
- /finalhandler/1.2.0:
+ /finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
dependencies:
@@ -7982,7 +7938,7 @@ packages:
- supports-color
dev: false
- /find-cache-dir/3.3.2:
+ /find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
dependencies:
@@ -7990,21 +7946,21 @@ packages:
make-dir: 3.1.0
pkg-dir: 4.2.0
- /find-replace/3.0.0:
+ /find-replace@3.0.0:
resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==}
engines: {node: '>=4.0.0'}
dependencies:
array-back: 3.1.0
dev: false
- /find-up/4.1.0:
+ /find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
dependencies:
locate-path: 5.0.0
path-exists: 4.0.0
- /find-up/5.0.0:
+ /find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
dependencies:
@@ -8012,23 +7968,21 @@ packages:
path-exists: 4.0.0
dev: false
- /flat-cache/3.0.4:
+ /flat-cache@3.0.4:
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
flatted: 3.2.2
rimraf: 3.0.2
- dev: true
- /flatted/3.2.2:
+ /flatted@3.2.2:
resolution: {integrity: sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA==}
- dev: true
- /focus-visible/5.2.0:
+ /focus-visible@5.2.0:
resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==}
dev: false
- /follow-redirects/1.15.1:
+ /follow-redirects@1.15.1:
resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -8038,7 +7992,7 @@ packages:
optional: true
dev: false
- /form-data/3.0.1:
+ /form-data@3.0.1:
resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
engines: {node: '>= 6'}
dependencies:
@@ -8047,21 +8001,21 @@ packages:
mime-types: 2.1.35
dev: true
- /forwarded/0.2.0:
+ /forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
dev: false
- /fresh/0.5.2:
+ /fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
dev: false
- /fs-constants/1.0.0:
+ /fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
dev: true
- /fs-extra/10.0.0:
+ /fs-extra@10.0.0:
resolution: {integrity: sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==}
engines: {node: '>=12'}
dependencies:
@@ -8070,7 +8024,7 @@ packages:
universalify: 2.0.0
dev: true
- /fs-extra/10.1.0:
+ /fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
@@ -8079,7 +8033,7 @@ packages:
universalify: 2.0.0
dev: true
- /fs-extra/7.0.1:
+ /fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
dependencies:
@@ -8088,28 +8042,28 @@ packages:
universalify: 0.1.2
dev: true
- /fs-monkey/1.0.3:
+ /fs-monkey@1.0.3:
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
dev: false
- /fs-readdir-recursive/1.1.0:
+ /fs-readdir-recursive@1.1.0:
resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==}
dev: false
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
- /function.prototype.name/1.1.5:
+ /function.prototype.name@1.1.5:
resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -8117,89 +8071,84 @@ packages:
define-properties: 1.1.4
es-abstract: 1.20.5
functions-have-names: 1.2.3
- dev: true
- /functional-red-black-tree/1.0.1:
+ /functional-red-black-tree@1.0.1:
resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
- dev: true
- /functions-have-names/1.2.3:
+ /functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- dev: true
- /fuzzy/0.1.3:
+ /fuzzy@0.1.3:
resolution: {integrity: sha512-/gZffu4ykarLrCiP3Ygsa86UAo1E5vEVlvTrpkKywXSbP9Xhln3oSp9QSV57gEq3JFFpGJ4GZ+5zdEp3FcUh4w==}
engines: {node: '>= 0.6.0'}
dev: false
- /gensync/1.0.0-beta.2:
+ /gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- /get-caller-file/2.0.5:
+ /get-caller-file@2.0.5:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
dev: true
- /get-intrinsic/1.1.3:
+ /get-intrinsic@1.1.3:
resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==}
dependencies:
function-bind: 1.1.1
has: 1.0.3
has-symbols: 1.0.3
- /get-own-enumerable-property-symbols/3.0.2:
+ /get-own-enumerable-property-symbols@3.0.2:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
dev: true
- /get-package-type/0.1.0:
+ /get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
dev: true
- /get-stdin/8.0.0:
+ /get-stdin@8.0.0:
resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==}
engines: {node: '>=10'}
dev: true
- /get-stream/3.0.0:
+ /get-stream@3.0.0:
resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
engines: {node: '>=4'}
dev: false
- /get-stream/5.2.0:
+ /get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
dependencies:
pump: 3.0.0
dev: true
- /get-stream/6.0.1:
+ /get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- /get-symbol-description/1.0.0:
+ /get-symbol-description@1.0.0:
resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.3
- dev: true
- /get-tsconfig/4.2.0:
+ /get-tsconfig@4.2.0:
resolution: {integrity: sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==}
- dev: true
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
- /glob-to-regexp/0.4.1:
+ /glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- /glob/7.1.6:
+ /glob@7.1.6:
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
dependencies:
fs.realpath: 1.0.0
@@ -8210,7 +8159,7 @@ packages:
path-is-absolute: 1.0.1
dev: false
- /glob/7.1.7:
+ /glob@7.1.7:
resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
dependencies:
fs.realpath: 1.0.0
@@ -8221,7 +8170,7 @@ packages:
path-is-absolute: 1.0.1
dev: true
- /glob/7.2.0:
+ /glob@7.2.0:
resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
dependencies:
fs.realpath: 1.0.0
@@ -8231,14 +8180,14 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /global-modules/2.0.0:
+ /global-modules@2.0.0:
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
engines: {node: '>=6'}
dependencies:
global-prefix: 3.0.0
dev: true
- /global-prefix/3.0.0:
+ /global-prefix@3.0.0:
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
engines: {node: '>=6'}
dependencies:
@@ -8247,22 +8196,20 @@ packages:
which: 1.3.1
dev: true
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- /globals/13.11.0:
+ /globals@13.11.0:
resolution: {integrity: sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g==}
engines: {node: '>=8'}
dependencies:
type-fest: 0.20.2
- dev: true
- /globalyzer/0.1.0:
+ /globalyzer@0.1.0:
resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
- dev: true
- /globby/11.1.0:
+ /globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
dependencies:
@@ -8272,9 +8219,8 @@ packages:
ignore: 5.2.0
merge2: 1.4.1
slash: 3.0.0
- dev: true
- /globby/13.1.2:
+ /globby@13.1.2:
resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -8283,26 +8229,23 @@ packages:
ignore: 5.2.1
merge2: 1.4.1
slash: 4.0.0
- dev: true
- /globjoin/0.1.4:
+ /globjoin@0.1.4:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
dev: true
- /globrex/0.1.2:
+ /globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
- dev: true
- /gopd/1.0.1:
+ /gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
get-intrinsic: 1.1.3
- dev: true
- /graceful-fs/4.2.9:
+ /graceful-fs@4.2.9:
resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
- /gray-matter/4.0.3:
+ /gray-matter@4.0.3:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
dependencies:
@@ -8312,57 +8255,55 @@ packages:
strip-bom-string: 1.0.0
dev: false
- /gzip-size/6.0.0:
+ /gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
dependencies:
duplexer: 0.1.2
dev: true
- /handle-thing/2.0.1:
+ /handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: false
- /hard-rejection/2.1.0:
+ /hard-rejection@2.1.0:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
dev: true
- /has-bigints/1.0.2:
+ /has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
- dev: true
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- /has-property-descriptors/1.0.0:
+ /has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
get-intrinsic: 1.1.3
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
- /has-tostringtag/1.0.0:
+ /has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
- dev: true
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
- /hast-to-hyperscript/9.0.1:
+ /hast-to-hyperscript@9.0.1:
resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==}
dependencies:
'@types/unist': 2.0.6
@@ -8373,7 +8314,7 @@ packages:
unist-util-is: 4.1.0
web-namespaces: 1.1.4
- /hast-util-from-parse5/6.0.1:
+ /hast-util-from-parse5@6.0.1:
resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==}
dependencies:
'@types/parse5': 5.0.3
@@ -8383,10 +8324,10 @@ packages:
vfile-location: 3.2.0
web-namespaces: 1.1.4
- /hast-util-parse-selector/2.2.5:
+ /hast-util-parse-selector@2.2.5:
resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
- /hast-util-raw/6.0.1:
+ /hast-util-raw@6.0.1:
resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==}
dependencies:
'@types/hast': 2.3.4
@@ -8400,7 +8341,7 @@ packages:
xtend: 4.0.2
zwitch: 1.0.5
- /hast-util-to-parse5/6.0.0:
+ /hast-util-to-parse5@6.0.0:
resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==}
dependencies:
hast-to-hyperscript: 9.0.1
@@ -8409,7 +8350,7 @@ packages:
xtend: 4.0.2
zwitch: 1.0.5
- /hastscript/6.0.0:
+ /hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
dependencies:
'@types/hast': 2.3.4
@@ -8418,44 +8359,44 @@ packages:
property-information: 5.6.0
space-separated-tokens: 1.1.5
- /he/1.2.0:
+ /he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
dev: false
- /header-case/2.0.4:
+ /header-case@2.0.4:
resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
dependencies:
capital-case: 1.0.4
tslib: 2.4.0
dev: true
- /highcharts/9.2.2:
+ /highcharts@9.2.2:
resolution: {integrity: sha512-OMEdFCaG626ES1JEcKAvJTpxAOMuchy0XuAplmnOs0Yu7NMd2RMfTLFQ2fCJOxo3ubSdm/RVQwKAWC+5HYThnw==}
dev: true
- /history/5.3.0:
+ /history@5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
dependencies:
'@babel/runtime': 7.18.9
dev: false
- /hoist-non-react-statics/3.3.2:
+ /hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
react-is: 16.13.1
- /hosted-git-info/2.8.9:
+ /hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
- /hosted-git-info/4.1.0:
+ /hosted-git-info@4.1.0:
resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
engines: {node: '>=10'}
dependencies:
lru-cache: 6.0.0
dev: true
- /hpack.js/2.1.6:
+ /hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
dependencies:
inherits: 2.0.4
@@ -8464,22 +8405,22 @@ packages:
wbuf: 1.7.3
dev: false
- /html-encoding-sniffer/2.0.1:
+ /html-encoding-sniffer@2.0.1:
resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
engines: {node: '>=10'}
dependencies:
whatwg-encoding: 1.0.5
dev: true
- /html-entities/2.3.3:
+ /html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
dev: false
- /html-escaper/2.0.2:
+ /html-escaper@2.0.2:
resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
dev: true
- /html-minifier-terser/6.1.0:
+ /html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
engines: {node: '>=12'}
hasBin: true
@@ -8493,15 +8434,15 @@ packages:
terser: 5.14.2
dev: false
- /html-tags/3.2.0:
+ /html-tags@3.2.0:
resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==}
engines: {node: '>=8'}
dev: true
- /html-void-elements/1.0.5:
+ /html-void-elements@1.0.5:
resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
- /html-webpack-plugin/5.5.0_webpack@5.58.2:
+ /html-webpack-plugin@5.5.0(webpack@5.58.2):
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -8515,7 +8456,7 @@ packages:
webpack: 5.58.2
dev: false
- /htmlparser2/6.1.0:
+ /htmlparser2@6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
domelementtype: 2.2.0
@@ -8524,11 +8465,11 @@ packages:
entities: 2.2.0
dev: false
- /http-deceiver/1.2.7:
+ /http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
dev: false
- /http-errors/1.6.3:
+ /http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
dependencies:
@@ -8538,7 +8479,7 @@ packages:
statuses: 1.5.0
dev: false
- /http-errors/2.0.0:
+ /http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
@@ -8549,11 +8490,11 @@ packages:
toidentifier: 1.0.1
dev: false
- /http-parser-js/0.5.8:
+ /http-parser-js@0.5.8:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
dev: false
- /http-proxy-agent/4.0.1:
+ /http-proxy-agent@4.0.1:
resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
engines: {node: '>= 6'}
dependencies:
@@ -8564,7 +8505,7 @@ packages:
- supports-color
dev: true
- /http-proxy-middleware/2.0.6_@types+express@4.17.13:
+ /http-proxy-middleware@2.0.6(@types/express@4.17.13):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -8583,7 +8524,7 @@ packages:
- debug
dev: false
- /http-proxy/1.18.1:
+ /http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -8594,7 +8535,7 @@ packages:
- debug
dev: false
- /https-proxy-agent/5.0.0:
+ /https-proxy-agent@5.0.0:
resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==}
engines: {node: '>= 6'}
dependencies:
@@ -8604,27 +8545,27 @@ packages:
- supports-color
dev: true
- /human-signals/2.1.0:
+ /human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- /husky/7.0.4:
+ /husky@7.0.4:
resolution: {integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==}
engines: {node: '>=12'}
hasBin: true
dev: true
- /hyphenate-style-name/1.0.4:
+ /hyphenate-style-name@1.0.4:
resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==}
dev: false
- /iconv-lite/0.4.24:
+ /iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
- /icss-utils/5.1.0_postcss@8.4.19:
+ /icss-utils@5.1.0(postcss@8.4.19):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -8632,43 +8573,39 @@ packages:
dependencies:
postcss: 8.4.19
- /ieee754/1.2.1:
+ /ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
dev: true
- /ignore/4.0.6:
+ /ignore@4.0.6:
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
engines: {node: '>= 4'}
- dev: true
- /ignore/5.2.0:
+ /ignore@5.2.0:
resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==}
engines: {node: '>= 4'}
- dev: true
- /ignore/5.2.1:
+ /ignore@5.2.1:
resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==}
engines: {node: '>= 4'}
- dev: true
- /immediate/3.0.6:
+ /immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
dev: false
- /import-fresh/3.3.0:
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- dev: true
- /import-lazy/4.0.0:
+ /import-lazy@4.0.0:
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
engines: {node: '>=8'}
dev: true
- /import-local/3.1.0:
+ /import-local@3.1.0:
resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
engines: {node: '>=8'}
hasBin: true
@@ -8677,326 +8614,312 @@ packages:
resolve-cwd: 3.0.0
dev: true
- /imurmurhash/0.1.4:
+ /imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- dev: true
- /indent-string/4.0.0:
+ /indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
dev: true
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
- /inherits/2.0.3:
+ /inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
dev: false
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
- /ini/1.3.8:
+ /ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
dev: true
- /inline-style-parser/0.1.1:
+ /inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
- /inline-style-prefixer/6.0.1:
+ /inline-style-prefixer@6.0.1:
resolution: {integrity: sha512-AsqazZ8KcRzJ9YPN1wMH2aNM7lkWQ8tSPrW5uDk1ziYwiAPWSZnUsC7lfZq+BDqLqz0B4Pho5wscWcJzVvRzDQ==}
dependencies:
css-in-js-utils: 2.0.1
dev: false
- /internal-slot/1.0.3:
+ /internal-slot@1.0.3:
resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==}
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.1.3
has: 1.0.3
side-channel: 1.0.4
- dev: true
- /intersection-observer/0.12.2:
+ /intersection-observer@0.12.2:
resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==}
dev: false
- /ipaddr.js/1.9.1:
+ /ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
dev: false
- /ipaddr.js/2.0.1:
+ /ipaddr.js@2.0.1:
resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
engines: {node: '>= 10'}
dev: false
- /is-absolute-url/3.0.3:
+ /is-absolute-url@3.0.3:
resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==}
engines: {node: '>=8'}
dev: true
- /is-alphabetical/1.0.4:
+ /is-alphabetical@1.0.4:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
- /is-alphanumeric/1.0.0:
+ /is-alphanumeric@1.0.0:
resolution: {integrity: sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA==}
engines: {node: '>=0.10.0'}
dev: true
- /is-alphanumerical/1.0.4:
+ /is-alphanumerical@1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
dependencies:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
- /is-arrayish/0.2.1:
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- /is-bigint/1.0.4:
+ /is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
dependencies:
has-bigints: 1.0.2
- dev: true
- /is-binary-path/2.1.0:
+ /is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
- /is-boolean-object/1.1.2:
+ /is-boolean-object@1.1.2:
resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- dev: true
- /is-buffer/1.1.6:
+ /is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
dev: true
- /is-buffer/2.0.5:
+ /is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
- /is-callable/1.2.7:
+ /is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- dev: true
- /is-core-module/2.11.0:
+ /is-core-module@2.11.0:
resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
dependencies:
has: 1.0.3
- /is-date-object/1.0.5:
+ /is-date-object@1.0.5:
resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- dev: true
- /is-decimal/1.0.4:
+ /is-decimal@1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
- /is-docker/2.2.1:
+ /is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
hasBin: true
- /is-extendable/0.1.1:
+ /is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
dev: false
- /is-extglob/2.1.1:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- /is-fullwidth-code-point/3.0.0:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- /is-generator-fn/2.1.0:
+ /is-generator-fn@2.1.0:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
dev: true
- /is-git-repository/1.1.1:
+ /is-git-repository@1.1.1:
resolution: {integrity: sha512-hxLpJytJnIZ5Og5QsxSkzmb8Qx8rGau9bio1JN/QtXcGEFuSsQYau0IiqlsCwftsfVYjF1mOq6uLdmwNSspgpA==}
dependencies:
execa: 0.6.3
path-is-absolute: 1.0.1
dev: false
- /is-glob/4.0.2:
+ /is-glob@4.0.2:
resolution: {integrity: sha512-ZZTOjRcDjuAAAv2cTBQP/lL59ZTArx77+7UzHdWW/XB1mrfp7DEaVpKmZ0XIzx+M7AxfhKcqV+nMetUQmFifwg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- dev: true
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
- /is-hexadecimal/1.0.4:
+ /is-hexadecimal@1.0.4:
resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
- /is-negative-zero/2.0.2:
+ /is-negative-zero@2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
- dev: true
- /is-number-object/1.0.6:
+ /is-number-object@1.0.6:
resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- dev: true
- /is-number/7.0.0:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- /is-obj/1.0.1:
+ /is-obj@1.0.1:
resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
dev: true
- /is-plain-obj/1.1.0:
+ /is-plain-obj@1.1.0:
resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
engines: {node: '>=0.10.0'}
dev: true
- /is-plain-obj/2.1.0:
+ /is-plain-obj@2.1.0:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
- /is-plain-obj/3.0.0:
+ /is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
dev: false
- /is-plain-object/2.0.4:
+ /is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
dev: false
- /is-plain-object/5.0.0:
+ /is-plain-object@5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
- /is-potential-custom-element-name/1.0.1:
+ /is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
dev: true
- /is-regex/1.1.4:
+ /is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
has-tostringtag: 1.0.0
- dev: true
- /is-regexp/1.0.0:
+ /is-regexp@1.0.0:
resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
dev: true
- /is-regexp/2.1.0:
+ /is-regexp@2.1.0:
resolution: {integrity: sha512-OZ4IlER3zmRIoB9AqNhEggVxqIH4ofDns5nRrPS6yQxXE1TPCUpFznBfRQmQa8uC+pXqjMnukiJBxCisIxiLGA==}
engines: {node: '>=6'}
dev: true
- /is-resolvable/1.1.0:
+ /is-resolvable@1.1.0:
resolution: {integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==}
dev: true
- /is-shared-array-buffer/1.0.2:
+ /is-shared-array-buffer@1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
call-bind: 1.0.2
- dev: true
- /is-stream/1.1.0:
+ /is-stream@1.1.0:
resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
engines: {node: '>=0.10.0'}
dev: false
- /is-stream/2.0.1:
+ /is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- /is-string/1.0.7:
+ /is-string@1.0.7:
resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
dependencies:
has-tostringtag: 1.0.0
- dev: true
- /is-symbol/1.0.4:
+ /is-symbol@1.0.4:
resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
- dev: true
- /is-typedarray/1.0.0:
+ /is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
dev: true
- /is-weakref/1.0.2:
+ /is-weakref@1.0.2:
resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
dependencies:
call-bind: 1.0.2
- dev: true
- /is-whitespace-character/1.0.4:
+ /is-whitespace-character@1.0.4:
resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
- /is-word-character/1.0.4:
+ /is-word-character@1.0.4:
resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==}
- /is-wsl/2.2.0:
+ /is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
- /isarray/1.0.0:
+ /isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
dev: false
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- /isobject/3.0.1:
+ /isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
dev: false
- /isstream/0.1.2:
+ /isstream@0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
dev: true
- /istanbul-lib-coverage/3.2.0:
+ /istanbul-lib-coverage@3.2.0:
resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==}
engines: {node: '>=8'}
dev: true
- /istanbul-lib-instrument/5.1.0:
+ /istanbul-lib-instrument@5.1.0:
resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==}
engines: {node: '>=8'}
dependencies:
@@ -9009,7 +8932,7 @@ packages:
- supports-color
dev: true
- /istanbul-lib-report/3.0.0:
+ /istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
engines: {node: '>=8'}
dependencies:
@@ -9018,7 +8941,7 @@ packages:
supports-color: 7.2.0
dev: true
- /istanbul-lib-source-maps/4.0.1:
+ /istanbul-lib-source-maps@4.0.1:
resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
engines: {node: '>=10'}
dependencies:
@@ -9029,7 +8952,7 @@ packages:
- supports-color
dev: true
- /istanbul-reports/3.1.5:
+ /istanbul-reports@3.1.5:
resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==}
engines: {node: '>=8'}
dependencies:
@@ -9037,11 +8960,11 @@ packages:
istanbul-lib-report: 3.0.0
dev: true
- /javascript-stringify/2.1.0:
+ /javascript-stringify@2.1.0:
resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==}
dev: false
- /jest-changed-files/27.5.1:
+ /jest-changed-files@27.5.1:
resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9050,7 +8973,7 @@ packages:
throat: 6.0.1
dev: true
- /jest-circus/27.5.1:
+ /jest-circus@27.5.1:
resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9077,7 +9000,7 @@ packages:
- supports-color
dev: true
- /jest-cli/27.5.1_ts-node@10.9.1:
+ /jest-cli@27.5.1(ts-node@10.9.1):
resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
@@ -9087,14 +9010,14 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 27.5.1_ts-node@10.9.1
+ '@jest/core': 27.5.1(ts-node@10.9.1)
'@jest/test-result': 27.5.1
'@jest/types': 27.5.1
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.9
import-local: 3.1.0
- jest-config: 27.5.1_ts-node@10.9.1
+ jest-config: 27.5.1(ts-node@10.9.1)
jest-util: 27.5.1
jest-validate: 27.5.1
prompts: 2.4.2
@@ -9107,7 +9030,7 @@ packages:
- utf-8-validate
dev: true
- /jest-config/27.5.1_ts-node@10.9.1:
+ /jest-config@27.5.1(ts-node@10.9.1):
resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
peerDependencies:
@@ -9119,7 +9042,7 @@ packages:
'@babel/core': 7.20.5
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1_@babel+core@7.20.5
+ babel-jest: 27.5.1(@babel/core@7.20.5)
chalk: 4.1.2
ci-info: 3.2.0
deepmerge: 4.2.2
@@ -9140,7 +9063,7 @@ packages:
pretty-format: 27.5.1
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1_bt5sflnlgjdtoyp24iylol6xsy
+ ts-node: 10.9.1(@types/node@16.11.6)(typescript@4.9.4)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -9148,7 +9071,7 @@ packages:
- utf-8-validate
dev: true
- /jest-diff/27.5.1:
+ /jest-diff@27.5.1:
resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9158,7 +9081,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /jest-diff/28.1.3:
+ /jest-diff@28.1.3:
resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -9168,14 +9091,14 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-docblock/27.5.1:
+ /jest-docblock@27.5.1:
resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
detect-newline: 3.1.0
dev: true
- /jest-each/27.5.1:
+ /jest-each@27.5.1:
resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9186,7 +9109,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /jest-environment-jsdom/27.5.1:
+ /jest-environment-jsdom@27.5.1:
resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9204,7 +9127,7 @@ packages:
- utf-8-validate
dev: true
- /jest-environment-node/27.5.1:
+ /jest-environment-node@27.5.1:
resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9216,17 +9139,17 @@ packages:
jest-util: 27.5.1
dev: true
- /jest-get-type/27.5.1:
+ /jest-get-type@27.5.1:
resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: true
- /jest-get-type/28.0.2:
+ /jest-get-type@28.0.2:
resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dev: true
- /jest-haste-map/27.5.1:
+ /jest-haste-map@27.5.1:
resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9246,7 +9169,7 @@ packages:
fsevents: 2.3.2
dev: true
- /jest-jasmine2/27.5.1:
+ /jest-jasmine2@27.5.1:
resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9271,7 +9194,7 @@ packages:
- supports-color
dev: true
- /jest-leak-detector/27.5.1:
+ /jest-leak-detector@27.5.1:
resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9279,7 +9202,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /jest-matcher-utils/27.5.1:
+ /jest-matcher-utils@27.5.1:
resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9289,7 +9212,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /jest-matcher-utils/28.1.3:
+ /jest-matcher-utils@28.1.3:
resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -9299,7 +9222,7 @@ packages:
pretty-format: 28.1.3
dev: true
- /jest-message-util/27.5.1:
+ /jest-message-util@27.5.1:
resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9314,7 +9237,7 @@ packages:
stack-utils: 2.0.5
dev: true
- /jest-message-util/28.1.3:
+ /jest-message-util@28.1.3:
resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -9329,7 +9252,7 @@ packages:
stack-utils: 2.0.5
dev: true
- /jest-mock/27.5.1:
+ /jest-mock@27.5.1:
resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9337,7 +9260,7 @@ packages:
'@types/node': 16.11.6
dev: true
- /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1:
+ /jest-pnp-resolver@1.2.2(jest-resolve@27.5.1):
resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==}
engines: {node: '>=6'}
peerDependencies:
@@ -9349,17 +9272,17 @@ packages:
jest-resolve: 27.5.1
dev: true
- /jest-regex-util/27.5.1:
+ /jest-regex-util@27.5.1:
resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dev: true
- /jest-regex-util/28.0.2:
+ /jest-regex-util@28.0.2:
resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dev: true
- /jest-resolve-dependencies/27.5.1:
+ /jest-resolve-dependencies@27.5.1:
resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9370,7 +9293,7 @@ packages:
- supports-color
dev: true
- /jest-resolve/27.5.1:
+ /jest-resolve@27.5.1:
resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9378,7 +9301,7 @@ packages:
chalk: 4.1.2
graceful-fs: 4.2.9
jest-haste-map: 27.5.1
- jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1
+ jest-pnp-resolver: 1.2.2(jest-resolve@27.5.1)
jest-util: 27.5.1
jest-validate: 27.5.1
resolve: 1.22.1
@@ -9386,7 +9309,7 @@ packages:
slash: 3.0.0
dev: true
- /jest-runner/27.5.1:
+ /jest-runner@27.5.1:
resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9418,7 +9341,7 @@ packages:
- utf-8-validate
dev: true
- /jest-runtime/27.5.1:
+ /jest-runtime@27.5.1:
resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9448,7 +9371,7 @@ packages:
- supports-color
dev: true
- /jest-serializer/27.5.1:
+ /jest-serializer@27.5.1:
resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9456,20 +9379,20 @@ packages:
graceful-fs: 4.2.9
dev: true
- /jest-snapshot/27.5.1:
+ /jest-snapshot@27.5.1:
resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@babel/core': 7.20.5
'@babel/generator': 7.20.5
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.20.5)
'@babel/traverse': 7.20.5
'@babel/types': 7.20.5
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
'@types/babel__traverse': 7.14.2
'@types/prettier': 2.6.4
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.20.5
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.20.5)
chalk: 4.1.2
expect: 27.5.1
graceful-fs: 4.2.9
@@ -9486,26 +9409,17 @@ packages:
- supports-color
dev: true
- /jest-styled-components/7.0.8:
- resolution: {integrity: sha512-0KE54d0yIzKcvtOv8eikyjG3rFRtKYUyQovaoha3nondtZzXYGB3bhsvYgEegU08Iry0ndWx2+g9f5ZzD4I+0Q==}
- engines: {node: '>= 12'}
- peerDependencies:
- styled-components: '>= 5'
- dependencies:
- css: 3.0.0
- dev: true
-
- /jest-styled-components/7.0.8_styled-components@5.3.6:
+ /jest-styled-components@7.0.8(styled-components@5.3.6):
resolution: {integrity: sha512-0KE54d0yIzKcvtOv8eikyjG3rFRtKYUyQovaoha3nondtZzXYGB3bhsvYgEegU08Iry0ndWx2+g9f5ZzD4I+0Q==}
engines: {node: '>= 12'}
peerDependencies:
styled-components: '>= 5'
dependencies:
css: 3.0.0
- styled-components: 5.3.6_nnrd3gsncyragczmpvfhocinkq
+ styled-components: 5.3.6(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1)
dev: true
- /jest-util/27.5.1:
+ /jest-util@27.5.1:
resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9517,7 +9431,7 @@ packages:
picomatch: 2.3.1
dev: true
- /jest-util/28.1.3:
+ /jest-util@28.1.3:
resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -9529,7 +9443,7 @@ packages:
picomatch: 2.3.1
dev: true
- /jest-validate/27.5.1:
+ /jest-validate@27.5.1:
resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9541,7 +9455,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /jest-watch-typeahead/1.1.0_jest@27.5.1:
+ /jest-watch-typeahead@1.1.0(jest@27.5.1):
resolution: {integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -9549,7 +9463,7 @@ packages:
dependencies:
ansi-escapes: 4.3.2
chalk: 4.1.2
- jest: 27.5.1_ts-node@10.9.1
+ jest: 27.5.1(ts-node@10.9.1)
jest-regex-util: 28.0.2
jest-watcher: 28.1.3
slash: 4.0.0
@@ -9557,7 +9471,7 @@ packages:
strip-ansi: 7.0.1
dev: true
- /jest-watcher/27.5.1:
+ /jest-watcher@27.5.1:
resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -9570,7 +9484,7 @@ packages:
string-length: 4.0.2
dev: true
- /jest-watcher/28.1.3:
+ /jest-watcher@28.1.3:
resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -9584,7 +9498,7 @@ packages:
string-length: 4.0.2
dev: true
- /jest-worker/27.5.1:
+ /jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
@@ -9592,7 +9506,7 @@ packages:
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest-worker/28.1.3:
+ /jest-worker@28.1.3:
resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -9601,7 +9515,7 @@ packages:
supports-color: 8.1.1
dev: true
- /jest/27.5.1_ts-node@10.9.1:
+ /jest@27.5.1(ts-node@10.9.1):
resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
@@ -9611,9 +9525,9 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 27.5.1_ts-node@10.9.1
+ '@jest/core': 27.5.1(ts-node@10.9.1)
import-local: 3.1.0
- jest-cli: 27.5.1_ts-node@10.9.1
+ jest-cli: 27.5.1(ts-node@10.9.1)
transitivePeerDependencies:
- bufferutil
- canvas
@@ -9622,30 +9536,30 @@ packages:
- utf-8-validate
dev: true
- /jju/1.4.0:
+ /jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
dev: true
- /jora/1.0.0-beta.5:
+ /jora@1.0.0-beta.5:
resolution: {integrity: sha512-hPJKQyF0eiCqQOwfgIuQa+8wIn+WcEcjjyeOchuiXEUnt6zbV0tHKsUqRRwJY47ZtBiGcJQNr/BGuYW1Sfwbvg==}
engines: {node: '>=8.10.0'}
dev: true
- /js-cookie/2.2.1:
+ /js-cookie@2.2.1:
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
dev: false
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- /js-yaml/3.14.1:
+ /js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- /jsdom/16.7.0:
+ /jsdom@16.7.0:
resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==}
engines: {node: '>=10'}
peerDependencies:
@@ -9687,54 +9601,52 @@ packages:
- utf-8-validate
dev: true
- /jsesc/0.5.0:
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
hasBin: true
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
hasBin: true
- /json-parse-better-errors/1.0.2:
+ /json-parse-better-errors@1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- /json-parse-even-better-errors/2.3.1:
+ /json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- /json-schema-traverse/0.4.1:
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- /json-schema-traverse/1.0.0:
+ /json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
- /json-stable-stringify-without-jsonify/1.0.1:
+ /json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- dev: true
- /json5/1.0.1:
+ /json5@1.0.1:
resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
hasBin: true
dependencies:
minimist: 1.2.6
- dev: true
- /json5/2.2.1:
+ /json5@2.2.1:
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
engines: {node: '>=6'}
hasBin: true
- /jsonc-parser/2.3.1:
+ /jsonc-parser@2.3.1:
resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==}
dev: true
- /jsonfile/4.0.0:
+ /jsonfile@4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
graceful-fs: 4.2.9
dev: true
- /jsonfile/6.1.0:
+ /jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
universalify: 2.0.0
@@ -9742,47 +9654,46 @@ packages:
graceful-fs: 4.2.9
dev: true
- /jsx-ast-utils/3.3.3:
+ /jsx-ast-utils@3.3.3:
resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
engines: {node: '>=4.0'}
dependencies:
array-includes: 3.1.6
object.assign: 4.1.4
- dev: true
- /kind-of/6.0.3:
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
dev: true
- /known-css-properties/0.25.0:
+ /known-css-properties@0.25.0:
resolution: {integrity: sha512-b0/9J1O9Jcyik1GC6KC42hJ41jKwdO/Mq8Mdo5sYN+IuRTXs2YFHZC3kZSx6ueusqa95x3wLYe/ytKjbAfGixA==}
dev: true
- /kolorist/1.6.0:
+ /kolorist@1.6.0:
resolution: {integrity: sha512-dLkz37Ab97HWMx9KTes3Tbi3D1ln9fCAy2zr2YVExJasDRPGRaKcoE4fycWNtnCAJfjFqe0cnY+f8KT2JePEXQ==}
dev: true
- /language-subtag-registry/0.3.21:
+ /language-subtag-registry@0.3.21:
resolution: {integrity: sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==}
dev: true
- /language-tags/1.0.5:
+ /language-tags@1.0.5:
resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==}
dependencies:
language-subtag-registry: 0.3.21
dev: true
- /leven/3.1.0:
+ /leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
dev: true
- /levn/0.3.0:
+ /levn@0.3.0:
resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -9790,29 +9701,28 @@ packages:
type-check: 0.3.2
dev: true
- /levn/0.4.1:
+ /levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- dev: true
- /lie/3.1.1:
+ /lie@3.1.1:
resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
dependencies:
immediate: 3.0.6
dev: false
- /lilconfig/2.0.3:
+ /lilconfig@2.0.3:
resolution: {integrity: sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==}
engines: {node: '>=10'}
dev: true
- /lines-and-columns/1.1.6:
+ /lines-and-columns@1.1.6:
resolution: {integrity: sha512-8ZmlJFVK9iCmtLz19HpSsR8HaAMWBT284VMNednLwlIMDP2hJDCIhUp0IZ2xUcZ+Ob6BM0VvCSJwzASDM45NLQ==}
- /lint-staged/11.2.6:
+ /lint-staged@11.2.6:
resolution: {integrity: sha512-Vti55pUnpvPE0J9936lKl0ngVeTdSZpEdTNhASbkaWX7J5R9OEifo1INBGQuGW4zmy6OG+TcWPJ3m5yuy5Q8Tg==}
hasBin: true
dependencies:
@@ -9820,10 +9730,10 @@ packages:
colorette: 1.4.0
commander: 8.2.0
cosmiconfig: 7.0.1
- debug: 4.3.4_supports-color@8.1.1
+ debug: 4.3.4(supports-color@8.1.1)
enquirer: 2.3.6
execa: 5.1.1
- listr2: 3.12.2_enquirer@2.3.6
+ listr2: 3.12.2(enquirer@2.3.6)
micromatch: 4.0.5
normalize-path: 3.0.0
please-upgrade-node: 3.2.0
@@ -9832,7 +9742,7 @@ packages:
supports-color: 8.1.1
dev: true
- /listr2/3.12.2_enquirer@2.3.6:
+ /listr2@3.12.2(enquirer@2.3.6):
resolution: {integrity: sha512-64xC2CJ/As/xgVI3wbhlPWVPx0wfTqbUAkpb7bjDi0thSWMqrf07UFhrfsGoo8YSXmF049Rp9C0cjLC8rZxK9A==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -9848,11 +9758,11 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /loader-runner/4.2.0:
+ /loader-runner@4.2.0:
resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
engines: {node: '>=6.11.5'}
- /loader-utils/2.0.0:
+ /loader-utils@2.0.0:
resolution: {integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==}
engines: {node: '>=8.9.0'}
dependencies:
@@ -9861,7 +9771,7 @@ packages:
json5: 2.2.1
dev: true
- /loader-utils/2.0.2:
+ /loader-utils@2.0.2:
resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
engines: {node: '>=8.9.0'}
dependencies:
@@ -9869,63 +9779,61 @@ packages:
emojis-list: 3.0.0
json5: 2.2.1
- /localforage/1.10.0:
+ /localforage@1.10.0:
resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
dependencies:
lie: 3.1.1
dev: false
- /locate-path/5.0.0:
+ /locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
dependencies:
p-locate: 4.1.0
- /locate-path/6.0.0:
+ /locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
dependencies:
p-locate: 5.0.0
dev: false
- /lodash.camelcase/4.3.0:
+ /lodash.camelcase@4.3.0:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
dev: false
- /lodash.debounce/4.0.8:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- /lodash.deburr/4.1.0:
+ /lodash.deburr@4.1.0:
resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==}
dev: false
- /lodash.get/4.4.2:
+ /lodash.get@4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
dev: true
- /lodash.isequal/4.5.0:
+ /lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
dev: true
- /lodash.memoize/4.1.2:
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: true
- /lodash.merge/4.6.2:
+ /lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
- /lodash.truncate/4.4.2:
+ /lodash.truncate@4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
- dev: true
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- /log-update/4.0.0:
+ /log-update@4.0.0:
resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
engines: {node: '>=10'}
dependencies:
@@ -9935,39 +9843,39 @@ packages:
wrap-ansi: 6.2.0
dev: true
- /longest-streak/2.0.4:
+ /longest-streak@2.0.4:
resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==}
dev: true
- /loose-envify/1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
dependencies:
js-tokens: 4.0.0
- /lower-case/2.0.2:
+ /lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.4.0
- /lru-cache/4.1.5:
+ /lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
dependencies:
pseudomap: 1.0.2
yallist: 2.1.2
dev: false
- /lru-cache/6.0.0:
+ /lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
- /lz-string/1.4.4:
+ /lz-string@1.4.4:
resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==}
hasBin: true
- /make-dir/2.1.0:
+ /make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
dependencies:
@@ -9975,46 +9883,46 @@ packages:
semver: 5.7.1
dev: false
- /make-dir/3.1.0:
+ /make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
- /make-error/1.3.6:
+ /make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
dev: true
- /makeerror/1.0.11:
+ /makeerror@1.0.11:
resolution: {integrity: sha512-M/XvMZ6oK4edXjvg/ZYyzByg8kjpVrF/m0x3wbhOlzJfsQgFkqP1rJnLnJExOcslmLSSeLiN6NmF+cBoKJHGTg==}
dependencies:
tmpl: 1.0.5
dev: true
- /map-obj/1.0.1:
+ /map-obj@1.0.1:
resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
engines: {node: '>=0.10.0'}
dev: true
- /map-obj/4.3.0:
+ /map-obj@4.3.0:
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
engines: {node: '>=8'}
dev: true
- /markdown-escapes/1.0.4:
+ /markdown-escapes@1.0.4:
resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
- /markdown-table/2.0.0:
+ /markdown-table@2.0.0:
resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==}
dependencies:
repeat-string: 1.6.1
dev: true
- /mathml-tag-names/2.1.3:
+ /mathml-tag-names@2.1.3:
resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
dev: true
- /md5/2.3.0:
+ /md5@2.3.0:
resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
dependencies:
charenc: 0.0.2
@@ -10022,23 +9930,23 @@ packages:
is-buffer: 1.1.6
dev: true
- /mdast-squeeze-paragraphs/4.0.0:
+ /mdast-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==}
dependencies:
unist-util-remove: 2.1.0
- /mdast-util-compact/2.0.1:
+ /mdast-util-compact@2.0.1:
resolution: {integrity: sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA==}
dependencies:
unist-util-visit: 2.0.3
dev: true
- /mdast-util-definitions/4.0.0:
+ /mdast-util-definitions@4.0.0:
resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==}
dependencies:
unist-util-visit: 2.0.3
- /mdast-util-from-markdown/0.8.5:
+ /mdast-util-from-markdown@0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
dependencies:
'@types/mdast': 3.0.10
@@ -10050,7 +9958,7 @@ packages:
- supports-color
dev: true
- /mdast-util-to-hast/10.0.1:
+ /mdast-util-to-hast@10.0.1:
resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==}
dependencies:
'@types/mdast': 3.0.10
@@ -10062,39 +9970,39 @@ packages:
unist-util-position: 3.1.0
unist-util-visit: 2.0.3
- /mdast-util-to-string/2.0.0:
+ /mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
dev: true
- /mdn-data/2.0.14:
+ /mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
- /mdn-data/2.0.4:
+ /mdn-data@2.0.4:
resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==}
dev: true
- /mdurl/1.0.1:
+ /mdurl@1.0.1:
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
- /media-query-parser/2.0.2:
+ /media-query-parser@2.0.2:
resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
dependencies:
'@babel/runtime': 7.18.9
dev: false
- /media-typer/0.3.0:
+ /media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
dev: false
- /memfs/3.4.7:
+ /memfs@3.4.7:
resolution: {integrity: sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==}
engines: {node: '>= 4.0.0'}
dependencies:
fs-monkey: 1.0.3
dev: false
- /meow/9.0.0:
+ /meow@9.0.0:
resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==}
engines: {node: '>=10'}
dependencies:
@@ -10112,23 +10020,23 @@ packages:
yargs-parser: 20.2.9
dev: true
- /merge-descriptors/1.0.1:
+ /merge-descriptors@1.0.1:
resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
dev: false
- /merge-stream/2.0.0:
+ /merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /methods/1.1.2:
+ /methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
dev: false
- /micromark/2.11.4:
+ /micromark@2.11.4:
resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
dependencies:
debug: 4.3.4
@@ -10137,49 +10045,49 @@ packages:
- supports-color
dev: true
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
braces: 3.0.2
picomatch: 2.3.1
- /mime-db/1.49.0:
+ /mime-db@1.49.0:
resolution: {integrity: sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==}
engines: {node: '>= 0.6'}
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- /mime-types/2.1.32:
+ /mime-types@2.1.32:
resolution: {integrity: sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.49.0
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
- /mime/1.6.0:
+ /mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
hasBin: true
dev: false
- /mimic-fn/2.1.0:
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- /min-indent/1.0.1:
+ /min-indent@1.0.1:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
dev: true
- /mini-css-extract-plugin/2.6.1_webpack@5.58.2:
+ /mini-css-extract-plugin@2.6.1(webpack@5.58.2):
resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -10189,28 +10097,28 @@ packages:
webpack: 5.58.2
dev: false
- /minimalistic-assert/1.0.1:
+ /minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
dev: false
- /minimatch/3.0.4:
+ /minimatch@3.0.4:
resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
dependencies:
brace-expansion: 1.1.11
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
- /minimatch/5.1.1:
+ /minimatch@5.1.1:
resolution: {integrity: sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==}
engines: {node: '>=10'}
dependencies:
brace-expansion: 2.0.1
dev: true
- /minimist-options/4.1.0:
+ /minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
dependencies:
@@ -10219,31 +10127,31 @@ packages:
kind-of: 6.0.3
dev: true
- /minimist/1.2.6:
+ /minimist@1.2.6:
resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
- /mkdirp/0.5.5:
+ /mkdirp@0.5.5:
resolution: {integrity: sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==}
hasBin: true
dependencies:
minimist: 1.2.6
- /mkdirp/1.0.4:
+ /mkdirp@1.0.4:
resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
engines: {node: '>=10'}
hasBin: true
dev: true
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- /multicast-dns/7.2.5:
+ /multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
dependencies:
@@ -10251,11 +10159,11 @@ packages:
thunky: 1.1.0
dev: false
- /mute-stream/0.0.8:
+ /mute-stream@0.0.8:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
dev: true
- /mz/2.7.0:
+ /mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
dependencies:
any-promise: 1.3.0
@@ -10263,7 +10171,7 @@ packages:
thenify-all: 1.6.0
dev: false
- /nano-css/5.3.5_nnrd3gsncyragczmpvfhocinkq:
+ /nano-css@5.3.5(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-vSB9X12bbNu4ALBu7nigJgRViZ6ja3OU7CeuiV1zMIbXOdmkLahgtPmh3GBOlDxbKY0CitqlPdOReGlBLSp+yg==}
peerDependencies:
react: '*'
@@ -10274,57 +10182,56 @@ packages:
fastest-stable-stringify: 2.0.2
inline-style-prefixer: 6.0.1
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
rtl-css-js: 1.16.0
sourcemap-codec: 1.4.8
stacktrace-js: 2.0.2
stylis: 4.1.1
dev: false
- /nanoid/3.3.4:
+ /nanoid@3.3.4:
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- /nanospinner/0.3.1:
+ /nanospinner@0.3.1:
resolution: {integrity: sha512-esx373MR7OP0y7sz97FgcCDH+Mx67GW+1IuBgivf2o2MkASybBM1lL0bkrCAWTz3DHf3XaAovMisefiIFJMkzQ==}
dependencies:
picocolors: 0.2.1
dev: true
- /natural-compare-lite/1.4.0:
+ /natural-compare-lite@1.4.0:
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
dev: true
- /natural-compare/1.4.0:
+ /natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- dev: true
- /negotiator/0.6.3:
+ /negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
dev: false
- /neo-async/2.6.2:
+ /neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- /next-mdx-remote/3.0.8_nnrd3gsncyragczmpvfhocinkq:
+ /next-mdx-remote@3.0.8(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-WFSxt0crxG5PN/0WvaunzxzqV3wh3dPBZyhkclxwyQfLSRKzsNSArzot/4gYTOOZ/GtyRfNjbI/HtDsW2S4fqQ==}
peerDependencies:
react: '>=16.x <=17.x'
react-dom: '>=16.x <=17.x'
dependencies:
'@mdx-js/mdx': 1.6.22
- '@mdx-js/react': 1.6.22_react@18.3.1
+ '@mdx-js/react': 1.6.22(react@18.3.1)
esbuild: 0.12.29
pkg-dir: 5.0.0
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
- supports-color
dev: false
- /next/12.3.0_nnrd3gsncyragczmpvfhocinkq:
+ /next@12.3.0(@babel/core@7.20.5)(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-GpzI6me9V1+XYtfK0Ae9WD0mKqHyzQlGq1xH1rzNIYMASo4Tkl4rTe9jSqtBpXFhOS33KohXs9ZY38Akkhdciw==}
engines: {node: '>=12.22.0'}
hasBin: true
@@ -10347,9 +10254,9 @@ packages:
caniuse-lite: 1.0.30001439
postcss: 8.4.14
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
- styled-jsx: 5.0.6_react@18.3.1
- use-sync-external-store: 1.2.0_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-jsx: 5.0.6(@babel/core@7.20.5)(react@18.3.1)
+ use-sync-external-store: 1.2.0(react@18.3.1)
optionalDependencies:
'@next/swc-android-arm-eabi': 12.3.0
'@next/swc-android-arm64': 12.3.0
@@ -10367,42 +10274,41 @@ packages:
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- dev: false
- /no-case/3.0.4:
+ /no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
tslib: 2.4.0
- /node-fetch/2.6.1:
+ /node-fetch@2.6.1:
resolution: {integrity: sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==}
engines: {node: 4.x || >=6.0.0}
dev: true
- /node-forge/1.3.1:
+ /node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
dev: false
- /node-int64/0.4.0:
+ /node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
dev: true
- /node-releases/2.0.5:
+ /node-releases@2.0.5:
resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==}
- /node-releases/2.0.6:
+ /node-releases@2.0.6:
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
- /nookies/2.5.2:
+ /nookies@2.5.2:
resolution: {integrity: sha512-x0TRSaosAEonNKyCrShoUaJ5rrT5KHRNZ5DwPCuizjgrnkpE5DRf3VL7AyyQin4htict92X1EQ7ejDbaHDVdYA==}
dependencies:
cookie: 0.4.2
set-cookie-parser: 2.5.1
dev: false
- /normalize-package-data/2.5.0:
+ /normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 2.8.9
@@ -10410,7 +10316,7 @@ packages:
semver: 5.7.1
validate-npm-package-license: 3.0.4
- /normalize-package-data/3.0.3:
+ /normalize-package-data@3.0.3:
resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
engines: {node: '>=10'}
dependencies:
@@ -10420,55 +10326,55 @@ packages:
validate-npm-package-license: 3.0.4
dev: true
- /normalize-path/3.0.0:
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- /normalize-url/6.1.0:
+ /normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
dev: true
- /npm-run-path/2.0.2:
+ /npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
engines: {node: '>=4'}
dependencies:
path-key: 2.0.1
dev: false
- /npm-run-path/4.0.1:
+ /npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
dependencies:
path-key: 3.1.1
- /nth-check/1.0.2:
+ /nth-check@1.0.2:
resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==}
dependencies:
boolbase: 1.0.0
dev: true
- /nth-check/2.0.1:
+ /nth-check@2.0.1:
resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==}
dependencies:
boolbase: 1.0.0
- /nwsapi/2.2.1:
+ /nwsapi@2.2.1:
resolution: {integrity: sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==}
dev: true
- /object-assign/4.1.1:
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- /object-inspect/1.12.2:
+ /object-inspect@1.12.2:
resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
- /object-keys/1.1.1:
+ /object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- /object.assign/4.1.4:
+ /object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -10477,25 +10383,23 @@ packages:
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries/1.1.6:
+ /object.entries@1.1.6:
resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.5
- dev: true
- /object.fromentries/2.0.6:
+ /object.fromentries@2.0.6:
resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.5
- dev: true
- /object.getownpropertydescriptors/2.1.3:
+ /object.getownpropertydescriptors@2.1.3:
resolution: {integrity: sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==}
engines: {node: '>= 0.8'}
dependencies:
@@ -10504,50 +10408,48 @@ packages:
es-abstract: 1.20.5
dev: true
- /object.hasown/1.1.2:
+ /object.hasown@1.1.2:
resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
dependencies:
define-properties: 1.1.4
es-abstract: 1.20.5
- dev: true
- /object.values/1.1.6:
+ /object.values@1.1.6:
resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.5
- dev: true
- /obuf/1.1.2:
+ /obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
dev: false
- /on-finished/2.4.1:
+ /on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
dev: false
- /on-headers/1.0.2:
+ /on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
dev: false
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
- /onetime/5.1.2:
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
- /open/8.3.0:
+ /open@8.3.0:
resolution: {integrity: sha512-7INcPWb1UcOwSQxAXTnBJ+FxVV4MPs/X++FWWBtgY69/J5lc+tCteMt/oFK1MnkyHC4VILLa9ntmwKTwDR4Q9w==}
engines: {node: '>=12'}
dependencies:
@@ -10556,7 +10458,7 @@ packages:
is-wsl: 2.2.0
dev: true
- /open/8.4.0:
+ /open@8.4.0:
resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==}
engines: {node: '>=12'}
dependencies:
@@ -10564,7 +10466,7 @@ packages:
is-docker: 2.2.1
is-wsl: 2.2.0
- /optionator/0.8.3:
+ /optionator@0.8.3:
resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -10576,7 +10478,7 @@ packages:
word-wrap: 1.2.3
dev: true
- /optionator/0.9.1:
+ /optionator@0.9.1:
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -10586,50 +10488,49 @@ packages:
prelude-ls: 1.2.1
type-check: 0.4.0
word-wrap: 1.2.3
- dev: true
- /outdent/0.8.0:
+ /outdent@0.8.0:
resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==}
dev: false
- /p-finally/1.0.0:
+ /p-finally@1.0.0:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
dev: false
- /p-limit/2.3.0:
+ /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
- /p-limit/3.1.0:
+ /p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
- /p-locate/4.1.0:
+ /p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
dependencies:
p-limit: 2.3.0
- /p-locate/5.0.0:
+ /p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
dev: false
- /p-map/4.0.0:
+ /p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
dev: true
- /p-retry/4.6.2:
+ /p-retry@4.6.2:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
dependencies:
@@ -10637,24 +10538,23 @@ packages:
retry: 0.13.1
dev: false
- /p-try/2.2.0:
+ /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- /param-case/3.0.4:
+ /param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
tslib: 2.4.0
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
- dev: true
- /parse-entities/2.0.0:
+ /parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
dependencies:
character-entities: 1.2.4
@@ -10664,7 +10564,7 @@ packages:
is-decimal: 1.0.4
is-hexadecimal: 1.0.4
- /parse-json/5.2.0:
+ /parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
@@ -10673,7 +10573,7 @@ packages:
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.1.6
- /parse-prop-types/0.3.0_prop-types@15.8.1:
+ /parse-prop-types@0.3.0(prop-types@15.8.1):
resolution: {integrity: sha512-HAvQ2sGc2Y+OLWddBG+KKlxU/F931Vq0GPSqKVaRJb6bUVdkIYxk63mJ/ZwX1VTjZ0h34qrCXE3tmSVUHB1zxQ==}
engines: {node: '>=6'}
peerDependencies:
@@ -10682,111 +10582,110 @@ packages:
prop-types: 15.8.1
dev: false
- /parse5/6.0.1:
+ /parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
- /parseurl/1.3.3:
+ /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
dev: false
- /pascal-case/3.1.2:
+ /pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
tslib: 2.4.0
- /path-browserify/1.0.1:
+ /path-browserify@1.0.1:
resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
dev: true
- /path-case/3.0.4:
+ /path-case@3.0.4:
resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
dependencies:
dot-case: 3.0.4
tslib: 2.4.0
dev: true
- /path-exists/4.0.0:
+ /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- /path-is-absolute/1.0.1:
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- /path-key/2.0.1:
+ /path-key@2.0.1:
resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
engines: {node: '>=4'}
dev: false
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-to-regexp/0.1.7:
+ /path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
dev: false
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- dev: true
- /pend/1.2.0:
+ /pend@1.2.0:
resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
dev: true
- /picocolors/0.2.1:
+ /picocolors@0.2.1:
resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
dev: true
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pify/4.0.1:
+ /pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
dev: false
- /pirates/4.0.5:
+ /pirates@4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'}
- /pkg-dir/4.2.0:
+ /pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
dependencies:
find-up: 4.1.0
- /pkg-dir/5.0.0:
+ /pkg-dir@5.0.0:
resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
engines: {node: '>=10'}
dependencies:
find-up: 5.0.0
dev: false
- /playroom/0.28.1_nnrd3gsncyragczmpvfhocinkq:
+ /playroom@0.28.1(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-sXcAUYY6boeOA9hkBFGwemob0peltYhUyPozhNh+yd1Fj8wYr873oe93T33pYrBUfweow9pzRD0VoHggF6SAtw==}
hasBin: true
peerDependencies:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
dependencies:
- '@babel/cli': 7.18.10_@babel+core@7.20.5
+ '@babel/cli': 7.18.10(@babel/core@7.20.5)
'@babel/core': 7.20.5
- '@babel/preset-env': 7.18.10_@babel+core@7.20.5
- '@babel/preset-react': 7.18.6_@babel+core@7.20.5
- '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5
+ '@babel/preset-env': 7.18.10(@babel/core@7.20.5)
+ '@babel/preset-react': 7.18.6(@babel/core@7.20.5)
+ '@babel/preset-typescript': 7.18.6(@babel/core@7.20.5)
'@babel/standalone': 7.18.10
- '@soda/friendly-errors-webpack-plugin': 1.8.1_webpack@5.58.2
+ '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.58.2)
'@types/base64-url': 2.2.0
'@types/codemirror': 0.0.108
'@types/dedent': 0.7.0
@@ -10799,46 +10698,46 @@ packages:
'@vanilla-extract/babel-plugin': 1.1.7
'@vanilla-extract/css': 1.7.3
'@vanilla-extract/css-utils': 0.1.2
- '@vanilla-extract/sprinkles': 1.4.1_@vanilla-extract+css@1.7.3
- '@vanilla-extract/webpack-plugin': 2.1.12_webpack@5.58.2
- babel-loader: 8.2.5_ymqmvaizlfnglvl3k4adagbfaa
+ '@vanilla-extract/sprinkles': 1.4.1(@vanilla-extract/css@1.7.3)
+ '@vanilla-extract/webpack-plugin': 2.1.12(webpack@5.58.2)
+ babel-loader: 8.2.5(@babel/core@7.20.5)(webpack@5.58.2)
classnames: 2.3.1
codemirror: 5.65.7
command-line-args: 5.2.1
command-line-usage: 6.1.3
copy-to-clipboard: 3.3.2
- css-loader: 5.2.7_webpack@5.58.2
+ css-loader: 5.2.7(webpack@5.58.2)
current-git-branch: 1.1.0
dedent: 0.7.0
fast-glob: 3.2.12
find-up: 5.0.0
fuzzy: 0.1.3
history: 5.3.0
- html-webpack-plugin: 5.5.0_webpack@5.58.2
+ html-webpack-plugin: 5.5.0(webpack@5.58.2)
intersection-observer: 0.12.2
localforage: 1.10.0
locate-path: 6.0.0
lodash: 4.17.21
lz-string: 1.4.4
- mini-css-extract-plugin: 2.6.1_webpack@5.58.2
- parse-prop-types: 0.3.0_prop-types@15.8.1
+ mini-css-extract-plugin: 2.6.1(webpack@5.58.2)
+ parse-prop-types: 0.3.0(prop-types@15.8.1)
polished: 4.2.2
portfinder: 1.0.28
prettier: 2.8.0
prop-types: 15.8.1
query-string: 6.14.1
- re-resizable: 6.9.9_nnrd3gsncyragczmpvfhocinkq
+ re-resizable: 6.9.9(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
- react-docgen-typescript: 2.1.1_typescript@4.9.4
- react-dom: 18.3.1_react@18.3.1
- react-use: 17.4.0_nnrd3gsncyragczmpvfhocinkq
+ react-docgen-typescript: 2.1.1(typescript@4.9.4)
+ react-dom: 18.3.1(react@18.3.1)
+ react-use: 17.4.0(react-dom@18.3.1)(react@18.3.1)
read-pkg-up: 7.0.1
scope-eval: 1.0.0
typescript: 4.9.4
url-join: 4.0.1
- use-debounce: 3.4.3_react@18.3.1
+ use-debounce: 3.4.3(react@18.3.1)
webpack: 5.58.2
- webpack-dev-server: 4.9.3_webpack@5.58.2
+ webpack-dev-server: 4.9.3(webpack@5.58.2)
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@swc/core'
@@ -10851,20 +10750,20 @@ packages:
- webpack-cli
dev: false
- /please-upgrade-node/3.2.0:
+ /please-upgrade-node@3.2.0:
resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
dependencies:
semver-compare: 1.0.0
dev: true
- /polished/4.2.2:
+ /polished@4.2.2:
resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==}
engines: {node: '>=10'}
dependencies:
'@babel/runtime': 7.18.9
dev: false
- /portfinder/1.0.28:
+ /portfinder@1.0.28:
resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
engines: {node: '>= 0.12.0'}
dependencies:
@@ -10875,7 +10774,7 @@ packages:
- supports-color
dev: false
- /postcss-calc/8.0.0_postcss@8.4.19:
+ /postcss-calc@8.0.0(postcss@8.4.19):
resolution: {integrity: sha512-5NglwDrcbiy8XXfPM11F3HeC6hoT9W7GUH/Zi5U/p7u3Irv4rHhdDcIZwG0llHXV4ftsBjpfWMXAnXNl4lnt8g==}
peerDependencies:
postcss: ^8.2.2
@@ -10885,7 +10784,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-colormin/5.2.0_postcss@8.4.19:
+ /postcss-colormin@5.2.0(postcss@8.4.19):
resolution: {integrity: sha512-+HC6GfWU3upe5/mqmxuqYZ9B2Wl4lcoUUNkoaX59nEWV4EtADCMiBqui111Bu8R8IvaZTmqmxrqOAqjbHIwXPw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10898,7 +10797,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-convert-values/5.0.1_postcss@8.4.19:
+ /postcss-convert-values@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-C3zR1Do2BkKkCgC0g3sF8TS0koF2G+mN8xxayZx3f10cIRmTaAnpgpRQZjNekTZxM2ciSPoh2IWJm0VZx8NoQg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10908,7 +10807,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-discard-comments/5.0.1_postcss@8.4.19:
+ /postcss-discard-comments@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10917,7 +10816,7 @@ packages:
postcss: 8.4.19
dev: true
- /postcss-discard-duplicates/5.0.1_postcss@8.4.19:
+ /postcss-discard-duplicates@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10926,7 +10825,7 @@ packages:
postcss: 8.4.19
dev: true
- /postcss-discard-empty/5.0.1_postcss@8.4.19:
+ /postcss-discard-empty@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10935,7 +10834,7 @@ packages:
postcss: 8.4.19
dev: true
- /postcss-discard-overridden/5.0.1_postcss@8.4.19:
+ /postcss-discard-overridden@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-Y28H7y93L2BpJhrdUR2SR2fnSsT+3TVx1NmVQLbcnZWwIUpJ7mfcTC6Za9M2PG6w8j7UQRfzxqn8jU2VwFxo3Q==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10944,11 +10843,11 @@ packages:
postcss: 8.4.19
dev: true
- /postcss-media-query-parser/0.2.3:
+ /postcss-media-query-parser@0.2.3:
resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
dev: true
- /postcss-merge-longhand/5.0.2_postcss@8.4.19:
+ /postcss-merge-longhand@5.0.2(postcss@8.4.19):
resolution: {integrity: sha512-BMlg9AXSI5G9TBT0Lo/H3PfUy63P84rVz3BjCFE9e9Y9RXQZD3+h3YO1kgTNsNJy7bBc1YQp8DmSnwLIW5VPcw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10957,10 +10856,10 @@ packages:
css-color-names: 1.0.1
postcss: 8.4.19
postcss-value-parser: 4.2.0
- stylehacks: 5.0.1_postcss@8.4.19
+ stylehacks: 5.0.1(postcss@8.4.19)
dev: true
- /postcss-merge-rules/5.0.2_postcss@8.4.19:
+ /postcss-merge-rules@5.0.2(postcss@8.4.19):
resolution: {integrity: sha512-5K+Md7S3GwBewfB4rjDeol6V/RZ8S+v4B66Zk2gChRqLTCC8yjnHQ601omj9TKftS19OPGqZ/XzoqpzNQQLwbg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10968,13 +10867,13 @@ packages:
dependencies:
browserslist: 4.20.3
caniuse-api: 3.0.0
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-selector-parser: 6.0.10
vendors: 1.0.4
dev: true
- /postcss-minify-font-values/5.0.1_postcss@8.4.19:
+ /postcss-minify-font-values@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-7JS4qIsnqaxk+FXY1E8dHBDmraYFWmuL6cgt0T1SWGRO5bzJf8sUoelwa4P88LEWJZweHevAiDKxHlofuvtIoA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -10984,19 +10883,19 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-gradients/5.0.2_postcss@8.4.19:
+ /postcss-minify-gradients@5.0.2(postcss@8.4.19):
resolution: {integrity: sha512-7Do9JP+wqSD6Prittitt2zDLrfzP9pqKs2EcLX7HJYxsxCOwrrcLt4x/ctQTsiOw+/8HYotAoqNkrzItL19SdQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.2
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: true
- /postcss-minify-params/5.0.1_postcss@8.4.19:
+ /postcss-minify-params@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-4RUC4k2A/Q9mGco1Z8ODc7h+A0z7L7X2ypO1B6V8057eVK6mZ6xwz6QN64nHuHLbqbclkX1wyzRnIrdZehTEHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11004,13 +10903,13 @@ packages:
dependencies:
alphanum-sort: 1.0.2
browserslist: 4.20.3
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-value-parser: 4.2.0
uniqs: 2.0.0
dev: true
- /postcss-minify-selectors/5.1.0_postcss@8.4.19:
+ /postcss-minify-selectors@5.1.0(postcss@8.4.19):
resolution: {integrity: sha512-NzGBXDa7aPsAcijXZeagnJBKBPMYLaJJzB8CQh6ncvyl2sIndLVWfbcDi0SBjRWk5VqEjXvf8tYwzoKf4Z07og==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11021,7 +10920,7 @@ packages:
postcss-selector-parser: 6.0.10
dev: true
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.19:
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.19):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -11029,18 +10928,18 @@ packages:
dependencies:
postcss: 8.4.19
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.19:
+ /postcss-modules-local-by-default@4.0.0(postcss@8.4.19):
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.19
+ icss-utils: 5.1.0(postcss@8.4.19)
postcss: 8.4.19
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
- /postcss-modules-scope/3.0.0_postcss@8.4.19:
+ /postcss-modules-scope@3.0.0(postcss@8.4.19):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -11049,16 +10948,16 @@ packages:
postcss: 8.4.19
postcss-selector-parser: 6.0.10
- /postcss-modules-values/4.0.0_postcss@8.4.19:
+ /postcss-modules-values@4.0.0(postcss@8.4.19):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.19
+ icss-utils: 5.1.0(postcss@8.4.19)
postcss: 8.4.19
- /postcss-normalize-charset/5.0.1_postcss@8.4.19:
+ /postcss-normalize-charset@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11067,18 +10966,18 @@ packages:
postcss: 8.4.19
dev: true
- /postcss-normalize-display-values/5.0.1_postcss@8.4.19:
+ /postcss-normalize-display-values@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-uupdvWk88kLDXi5HEyI9IaAJTE3/Djbcrqq8YgjvAVuzgVuqIk3SuJWUisT2gaJbZm1H9g5k2w1xXilM3x8DjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-positions/5.0.1_postcss@8.4.19:
+ /postcss-normalize-positions@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-rvzWAJai5xej9yWqlCb1OWLd9JjW2Ex2BCPzUJrbaXmtKtgfL8dBMOOMTX6TnvQMtjk3ei1Lswcs78qKO1Skrg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11088,18 +10987,18 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-repeat-style/5.0.1_postcss@8.4.19:
+ /postcss-normalize-repeat-style@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-syZ2itq0HTQjj4QtXZOeefomckiV5TaUO6ReIEabCh3wgDs4Mr01pkif0MeVwKyU/LHEkPJnpwFKRxqWA/7O3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-string/5.0.1_postcss@8.4.19:
+ /postcss-normalize-string@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-Ic8GaQ3jPMVl1OEn2U//2pm93AXUcF3wz+OriskdZ1AOuYV25OdgS7w9Xu2LO5cGyhHCgn8dMXh9bO7vi3i9pA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11109,18 +11008,18 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-timing-functions/5.0.1_postcss@8.4.19:
+ /postcss-normalize-timing-functions@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-cPcBdVN5OsWCNEo5hiXfLUnXfTGtSFiBU9SK8k7ii8UD7OLuznzgNRYkLZow11BkQiiqMcgPyh4ZqXEEUrtQ1Q==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-unicode/5.0.1_postcss@8.4.19:
+ /postcss-normalize-unicode@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-kAtYD6V3pK0beqrU90gpCQB7g6AOfP/2KIPCVBKJM2EheVsBQmx/Iof+9zR9NFKLAx4Pr9mDhogB27pmn354nA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11131,7 +11030,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-url/5.0.2_postcss@8.4.19:
+ /postcss-normalize-url@5.0.2(postcss@8.4.19):
resolution: {integrity: sha512-k4jLTPUxREQ5bpajFQZpx8bCF2UrlqOTzP9kEqcEnOfwsRshWs2+oAFIHfDQB8GO2PaUaSE0NlTAYtbluZTlHQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11143,7 +11042,7 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-normalize-whitespace/5.0.1_postcss@8.4.19:
+ /postcss-normalize-whitespace@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-iPklmI5SBnRvwceb/XH568yyzK0qRVuAG+a1HFUsFRf11lEJTiQQa03a4RSCQvLKdcpX7XsI1Gen9LuLoqwiqA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11153,18 +11052,18 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-ordered-values/5.0.2_postcss@8.4.19:
+ /postcss-ordered-values@5.0.2(postcss@8.4.19):
resolution: {integrity: sha512-8AFYDSOYWebJYLyJi3fyjl6CqMEG/UVworjiyK1r573I56kb3e879sCJLGvR3merj+fAdPpVplXKQZv+ey6CgQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: true
- /postcss-reduce-initial/5.0.1_postcss@8.4.19:
+ /postcss-reduce-initial@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-zlCZPKLLTMAqA3ZWH57HlbCjkD55LX9dsRyxlls+wfuRfqCi5mSlZVan0heX5cHr154Dq9AfbH70LyhrSAezJw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11175,22 +11074,22 @@ packages:
postcss: 8.4.19
dev: true
- /postcss-reduce-transforms/5.0.1_postcss@8.4.19:
+ /postcss-reduce-transforms@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-a//FjoPeFkRuAguPscTVmRQUODP+f3ke2HqFNgGPwdYnpeC29RZdCBvGRGTsKpMURb/I3p6jdKoBQ2zI+9Q7kA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 2.0.1_postcss@8.4.19
+ cssnano-utils: 2.0.1(postcss@8.4.19)
postcss: 8.4.19
postcss-value-parser: 4.2.0
dev: true
- /postcss-resolve-nested-selector/0.1.1:
+ /postcss-resolve-nested-selector@0.1.1:
resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==}
dev: true
- /postcss-safe-parser/6.0.0_postcss@8.4.14:
+ /postcss-safe-parser@6.0.0(postcss@8.4.14):
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
engines: {node: '>=12.0'}
peerDependencies:
@@ -11199,14 +11098,14 @@ packages:
postcss: 8.4.14
dev: true
- /postcss-selector-parser/6.0.10:
+ /postcss-selector-parser@6.0.10:
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
engines: {node: '>=4'}
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- /postcss-svgo/5.0.2_postcss@8.4.19:
+ /postcss-svgo@5.0.2(postcss@8.4.19):
resolution: {integrity: sha512-YzQuFLZu3U3aheizD+B1joQ94vzPfE6BNUcSYuceNxlVnKKsOtdo6hL9/zyC168Q8EwfLSgaDSalsUGa9f2C0A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11217,7 +11116,7 @@ packages:
svgo: 2.8.0
dev: true
- /postcss-syntax/0.36.2:
+ /postcss-syntax@0.36.2(postcss@8.4.19):
resolution: {integrity: sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==}
peerDependencies:
postcss: '>=5.0.0'
@@ -11237,9 +11136,11 @@ packages:
optional: true
postcss-scss:
optional: true
+ dependencies:
+ postcss: 8.4.19
dev: true
- /postcss-unique-selectors/5.0.1_postcss@8.4.19:
+ /postcss-unique-selectors@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-gwi1NhHV4FMmPn+qwBNuot1sG1t2OmacLQ/AX29lzyggnjd+MnVD5uqQmpXO3J17KGL2WAxQruj1qTd3H0gG/w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -11251,10 +11152,10 @@ packages:
uniqs: 2.0.0
dev: true
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- /postcss/8.4.14:
+ /postcss@8.4.14:
resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -11262,7 +11163,7 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
- /postcss/8.4.19:
+ /postcss@8.4.19:
resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -11270,36 +11171,35 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
- /prelude-ls/1.1.2:
+ /prelude-ls@1.1.2:
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
engines: {node: '>= 0.8.0'}
dev: true
- /prelude-ls/1.2.1:
+ /prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- dev: true
- /prettier-linter-helpers/1.0.0:
+ /prettier-linter-helpers@1.0.0:
resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
engines: {node: '>=6.0.0'}
dependencies:
fast-diff: 1.2.0
dev: true
- /prettier/2.8.0:
+ /prettier@2.8.0:
resolution: {integrity: sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==}
engines: {node: '>=10.13.0'}
hasBin: true
- /pretty-error/4.0.0:
+ /pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
dependencies:
lodash: 4.17.21
renderkid: 3.0.0
dev: false
- /pretty-format/27.5.1:
+ /pretty-format@27.5.1:
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
@@ -11308,7 +11208,7 @@ packages:
react-is: 17.0.2
dev: true
- /pretty-format/28.1.3:
+ /pretty-format@28.1.3:
resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==}
engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0}
dependencies:
@@ -11318,7 +11218,7 @@ packages:
react-is: 18.2.0
dev: true
- /prism-react-renderer/1.3.5_react@18.3.1:
+ /prism-react-renderer@1.3.5(react@18.3.1):
resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
peerDependencies:
react: '>=0.14.9'
@@ -11326,21 +11226,20 @@ packages:
react: 18.3.1
dev: false
- /process-nextick-args/2.0.1:
+ /process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
dev: false
- /progress/2.0.1:
+ /progress@2.0.1:
resolution: {integrity: sha512-OE+a6vzqazc+K6LxJrX5UPyKFvGnL5CYmq2jFGNIBWHpc4QyE49/YOumcrpQFJpfejmvRtbJzgO1zPmMCqlbBg==}
engines: {node: '>=0.4.0'}
dev: true
- /progress/2.0.3:
+ /progress@2.0.3:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
- dev: true
- /prompt/1.2.0:
+ /prompt@1.2.0:
resolution: {integrity: sha512-iGerYRpRUg5ZyC+FJ/25G5PUKuWAGRjW1uOlhX7Pi3O5YygdK6R+KEaBjRbHSkU5vfS5PZCltSPZdDtUYwRCZA==}
engines: {node: '>= 0.6.6'}
dependencies:
@@ -11351,7 +11250,7 @@ packages:
winston: 2.4.5
dev: true
- /prompts/2.4.2:
+ /prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
dependencies:
@@ -11359,19 +11258,19 @@ packages:
sisteransi: 1.0.5
dev: true
- /prop-types/15.8.1:
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- /property-information/5.6.0:
+ /property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
dependencies:
xtend: 4.0.2
- /proxy-addr/2.0.7:
+ /proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
dependencies:
@@ -11379,30 +11278,30 @@ packages:
ipaddr.js: 1.9.1
dev: false
- /proxy-from-env/1.1.0:
+ /proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
dev: true
- /pseudomap/1.0.2:
+ /pseudomap@1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
dev: false
- /psl/1.9.0:
+ /psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
dev: true
- /pump/3.0.0:
+ /pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
dev: true
- /punycode/2.1.1:
+ /punycode@2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
- /puppeteer-core/10.4.0:
+ /puppeteer-core@10.4.0:
resolution: {integrity: sha512-KU8zyb7AIOqNjLCN3wkrFXxh+EVaG+zrs2P03ATNjc3iwSxHsu5/EvZiREpQ/IJiT9xfQbDVgKcsvRuzLCxglQ==}
engines: {node: '>=10.18.1'}
dependencies:
@@ -11424,19 +11323,19 @@ packages:
- utf-8-validate
dev: true
- /q/1.5.1:
+ /q@1.5.1:
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
dev: true
- /qs/6.10.3:
+ /qs@6.10.3:
resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.4
dev: false
- /query-string/6.14.1:
+ /query-string@6.14.1:
resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
engines: {node: '>=6'}
dependencies:
@@ -11446,25 +11345,25 @@ packages:
strict-uri-encode: 2.0.0
dev: false
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- /quick-lru/4.0.1:
+ /quick-lru@4.0.1:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
dev: true
- /randombytes/2.1.0:
+ /randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
- /range-parser/1.2.1:
+ /range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
dev: false
- /raw-body/2.5.1:
+ /raw-body@2.5.1:
resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'}
dependencies:
@@ -11474,24 +11373,24 @@ packages:
unpipe: 1.0.0
dev: false
- /re-resizable/6.9.9_nnrd3gsncyragczmpvfhocinkq:
+ /re-resizable@6.9.9(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-l+MBlKZffv/SicxDySKEEh42hR6m5bAHfNu3Tvxks2c4Ah+ldnWjfnVRwxo/nxF27SsUsxDS0raAzFuJNKABXA==}
peerDependencies:
react: ^16.13.1 || ^17.0.0 || ^18.0.0
react-dom: ^16.13.1 || ^17.0.0 || ^18.0.0
dependencies:
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /react-docgen-typescript/2.1.1_typescript@4.9.4:
+ /react-docgen-typescript@2.1.1(typescript@4.9.4):
resolution: {integrity: sha512-XWe8bsYqVjxciKdpNoufaHiB7FgUHIOnVQgxUolRL3Zlof2zkdTzuQH6SU2n3Ek9kfy3O1c63ojMtNfpiuNeZQ==}
peerDependencies:
typescript: '>= 4.3.x'
dependencies:
typescript: 4.9.4
- /react-dom/18.3.1_react@18.3.1:
+ /react-dom@18.3.1(react@18.3.1):
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
react: ^18.3.1
@@ -11500,7 +11399,7 @@ packages:
react: 18.3.1
scheduler: 0.23.2
- /react-element-to-jsx-string/14.3.4_nnrd3gsncyragczmpvfhocinkq:
+ /react-element-to-jsx-string@14.3.4(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==}
peerDependencies:
react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1
@@ -11509,11 +11408,11 @@ packages:
'@base2/pretty-print-object': 1.0.1
is-plain-object: 5.0.0
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
react-is: 17.0.2
dev: false
- /react-error-boundary/3.1.4_react@18.3.1:
+ /react-error-boundary@3.1.4(react@18.3.1):
resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==}
engines: {node: '>=10', npm: '>=6'}
peerDependencies:
@@ -11523,7 +11422,7 @@ packages:
react: 18.3.1
dev: true
- /react-hook-form/7.31.2_react@18.3.1:
+ /react-hook-form@7.31.2(react@18.3.1):
resolution: {integrity: sha512-oPudn3YuyzWg//IsT9z2cMEjWocAgHWX/bmueDT8cmsYQnGY5h7/njjvMDfLVv3mbdhYBjslTRnII2MIT7eNCA==}
engines: {node: '>=12.22.0'}
peerDependencies:
@@ -11532,41 +11431,40 @@ packages:
react: 18.3.1
dev: true
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- /react-is/17.0.2:
+ /react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- /react-is/18.2.0:
+ /react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- dev: true
- /react-live/3.1.1_nnrd3gsncyragczmpvfhocinkq:
+ /react-live@3.1.1(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-bPjrk7jCQ7dk8W3lx+/AAcn66TFRzTNIWsVa4mWqsiwIgUjaNqzFZZIuq2kY9UlAix8x63egsEFPX6dkno92Fg==}
engines: {node: '>= 0.12.0', npm: '>= 2.0.0'}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- prism-react-renderer: 1.3.5_react@18.3.1
+ prism-react-renderer: 1.3.5(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
sucrase: 3.25.0
- use-editable: 2.3.3_react@18.3.1
+ use-editable: 2.3.3(react@18.3.1)
dev: false
- /react-transition-state/1.1.4_nnrd3gsncyragczmpvfhocinkq:
+ /react-transition-state@1.1.4(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-6nQLWWx95gYazCm6OdtD1zGbRiirvVXPrDtHAGsYb4xs9spMM7bA8Vx77KCpjL8PJ8qz1lXFGz2PTboCSvt7iw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
dev: false
- /react-universal-interface/0.6.2_react@18.3.1+tslib@2.4.0:
+ /react-universal-interface@0.6.2(react@18.3.1)(tslib@2.4.0):
resolution: {integrity: sha512-dg8yXdcQmvgR13RIlZbTRQOoUrDciFVoSBZILwjE2LFISxZZ8loVJKAkuzswl5js8BHda79bIb2b84ehU8IjXw==}
peerDependencies:
react: '*'
@@ -11576,7 +11474,7 @@ packages:
tslib: 2.4.0
dev: false
- /react-use/17.4.0_nnrd3gsncyragczmpvfhocinkq:
+ /react-use@17.4.0(react-dom@18.3.1)(react@18.3.1):
resolution: {integrity: sha512-TgbNTCA33Wl7xzIJegn1HndB4qTS9u03QUwyNycUnXaweZkE4Kq2SB+Yoxx8qbshkZGYBDvUXbXWRUmQDcZZ/Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -11588,10 +11486,10 @@ packages:
fast-deep-equal: 3.1.3
fast-shallow-equal: 1.0.0
js-cookie: 2.2.1
- nano-css: 5.3.5_nnrd3gsncyragczmpvfhocinkq
+ nano-css: 5.3.5(react-dom@18.3.1)(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
- react-universal-interface: 0.6.2_react@18.3.1+tslib@2.4.0
+ react-dom: 18.3.1(react@18.3.1)
+ react-universal-interface: 0.6.2(react@18.3.1)(tslib@2.4.0)
resize-observer-polyfill: 1.5.1
screenfull: 5.2.0
set-harmonic-interval: 1.0.1
@@ -11600,7 +11498,7 @@ packages:
tslib: 2.4.0
dev: false
- /react/17.0.2:
+ /react@17.0.2:
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -11608,13 +11506,13 @@ packages:
object-assign: 4.1.1
dev: true
- /react/18.3.1:
+ /react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
dependencies:
loose-envify: 1.4.0
- /read-pkg-up/7.0.1:
+ /read-pkg-up@7.0.1:
resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==}
engines: {node: '>=8'}
dependencies:
@@ -11622,7 +11520,7 @@ packages:
read-pkg: 5.2.0
type-fest: 0.8.1
- /read-pkg/5.2.0:
+ /read-pkg@5.2.0:
resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
engines: {node: '>=8'}
dependencies:
@@ -11631,14 +11529,14 @@ packages:
parse-json: 5.2.0
type-fest: 0.6.0
- /read/1.0.7:
+ /read@1.0.7:
resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==}
engines: {node: '>=0.8'}
dependencies:
mute-stream: 0.0.8
dev: true
- /readable-stream/2.3.7:
+ /readable-stream@2.3.7:
resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
dependencies:
core-util-is: 1.0.3
@@ -11650,7 +11548,7 @@ packages:
util-deprecate: 1.0.2
dev: false
- /readable-stream/3.6.0:
+ /readable-stream@3.6.0:
resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
engines: {node: '>= 6'}
dependencies:
@@ -11658,13 +11556,13 @@ packages:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- /readdirp/3.6.0:
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
- /redent/3.0.0:
+ /redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
dependencies:
@@ -11672,47 +11570,45 @@ packages:
strip-indent: 3.0.0
dev: true
- /reduce-flatten/2.0.0:
+ /reduce-flatten@2.0.0:
resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==}
engines: {node: '>=6'}
dev: false
- /regenerate-unicode-properties/10.0.1:
+ /regenerate-unicode-properties@10.0.1:
resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
dev: true
- /regenerator-runtime/0.13.9:
+ /regenerator-runtime@0.13.9:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
- /regenerator-transform/0.15.0:
+ /regenerator-transform@0.15.0:
resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
dependencies:
'@babel/runtime': 7.18.9
- /regexp.prototype.flags/1.4.3:
+ /regexp.prototype.flags@1.4.3:
resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
functions-have-names: 1.2.3
- dev: true
- /regexpp/3.2.0:
+ /regexpp@3.2.0:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
- dev: true
- /regexpu-core/5.1.0:
+ /regexpu-core@5.1.0:
resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==}
engines: {node: '>=4'}
dependencies:
@@ -11723,30 +11619,30 @@ packages:
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.0.0
- /regjsgen/0.6.0:
+ /regjsgen@0.6.0:
resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==}
- /regjsparser/0.8.4:
+ /regjsparser@0.8.4:
resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==}
hasBin: true
dependencies:
jsesc: 0.5.0
- /relateurl/0.2.7:
+ /relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
dev: false
- /remark-footnotes/2.0.0:
+ /remark-footnotes@2.0.0:
resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==}
- /remark-mdx/1.6.22:
+ /remark-mdx@1.6.22:
resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==}
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9)
+ '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
'@mdx-js/util': 1.6.22
is-alphabetical: 1.0.4
remark-parse: 8.0.3
@@ -11754,7 +11650,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /remark-parse/8.0.3:
+ /remark-parse@8.0.3:
resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==}
dependencies:
ccount: 1.1.0
@@ -11774,12 +11670,12 @@ packages:
vfile-location: 3.2.0
xtend: 4.0.2
- /remark-squeeze-paragraphs/4.0.0:
+ /remark-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==}
dependencies:
mdast-squeeze-paragraphs: 4.0.0
- /remark-stringify/8.1.1:
+ /remark-stringify@8.1.1:
resolution: {integrity: sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A==}
dependencies:
ccount: 1.1.0
@@ -11798,7 +11694,7 @@ packages:
xtend: 4.0.2
dev: true
- /renderkid/3.0.0:
+ /renderkid@3.0.0:
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
dependencies:
css-select: 4.1.3
@@ -11808,67 +11704,66 @@ packages:
strip-ansi: 6.0.1
dev: false
- /repeat-string/1.6.1:
+ /repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
- /require-directory/2.1.1:
+ /require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
dev: true
- /require-from-string/2.0.2:
+ /require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
- /require-like/0.1.2:
+ /require-like@0.1.2:
resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==}
dev: false
- /requires-port/1.0.0:
+ /requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
dev: false
- /resize-observer-polyfill/1.5.1:
+ /resize-observer-polyfill@1.5.1:
resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
dev: false
- /resolve-cwd/3.0.0:
+ /resolve-cwd@3.0.0:
resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
engines: {node: '>=8'}
dependencies:
resolve-from: 5.0.0
dev: true
- /resolve-from/4.0.0:
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- dev: true
- /resolve-from/5.0.0:
+ /resolve-from@5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
dev: true
- /resolve.exports/1.1.0:
+ /resolve.exports@1.1.0:
resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==}
engines: {node: '>=10'}
dev: true
- /resolve/1.17.0:
+ /resolve@1.17.0:
resolution: {integrity: sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==}
dependencies:
path-parse: 1.0.7
dev: true
- /resolve/1.19.0:
+ /resolve@1.19.0:
resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
dependencies:
is-core-module: 2.11.0
path-parse: 1.0.7
dev: true
- /resolve/1.22.1:
+ /resolve@1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
hasBin: true
dependencies:
@@ -11876,14 +11771,13 @@ packages:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- /resolve/2.0.0-next.3:
+ /resolve@2.0.0-next.3:
resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==}
dependencies:
is-core-module: 2.11.0
path-parse: 1.0.7
- dev: true
- /restore-cursor/3.1.0:
+ /restore-cursor@3.1.0:
resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
engines: {node: '>=8'}
dependencies:
@@ -11891,27 +11785,27 @@ packages:
signal-exit: 3.0.7
dev: true
- /retry/0.13.1:
+ /retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
dev: false
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /revalidator/0.1.8:
+ /revalidator@0.1.8:
resolution: {integrity: sha512-xcBILK2pA9oh4SiinPEZfhP8HfrB/ha+a2fTMyl7Om2WjlDVrOQy99N2MXXlUHqGJz4qEu2duXxHJjDWuK/0xg==}
engines: {node: '>= 0.4.0'}
dev: true
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
dependencies:
glob: 7.2.0
- /rollup/2.79.1:
+ /rollup@2.79.1:
resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==}
engines: {node: '>=10.0.0'}
hasBin: true
@@ -11919,92 +11813,91 @@ packages:
fsevents: 2.3.2
dev: true
- /rtl-css-js/1.16.0:
+ /rtl-css-js@1.16.0:
resolution: {integrity: sha512-Oc7PnzwIEU4M0K1J4h/7qUUaljXhQ0kCObRsZjxs2HjkpKsnoTMvSmvJ4sqgJZd0zBoEfAyTdnK/jMIYvrjySQ==}
dependencies:
'@babel/runtime': 7.18.9
dev: false
- /run-parallel/1.2.0:
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
- /rxjs/6.6.7:
+ /rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
dependencies:
tslib: 1.14.1
dev: true
- /safe-buffer/5.1.2:
+ /safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- /safe-regex-test/1.0.0:
+ /safe-regex-test@1.0.0:
resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.3
is-regex: 1.1.4
- dev: true
- /safer-buffer/2.1.2:
+ /safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- /sax/1.2.4:
+ /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
dev: true
- /saxes/5.0.1:
+ /saxes@5.0.1:
resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
engines: {node: '>=10'}
dependencies:
xmlchars: 2.2.0
dev: true
- /scheduler/0.23.2:
+ /scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
dependencies:
loose-envify: 1.4.0
- /schema-utils/2.7.1:
+ /schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/3.1.1:
+ /schema-utils@3.1.1:
resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
- /schema-utils/4.0.0:
+ /schema-utils@4.0.0:
resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 8.11.0
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.11.0
+ ajv-formats: 2.1.1(ajv@8.11.0)
+ ajv-keywords: 5.1.0(ajv@8.11.0)
- /scope-eval/1.0.0:
+ /scope-eval@1.0.0:
resolution: {integrity: sha512-oWKaZEXqucTGRzhJCXE+D+hHDkiDe1iHhBlWwxkFTzO3phrdPo4Kju2tSJiWC3x+egyqxdpbs7s+YOPlZlqB1A==}
dev: false
- /screenfull/5.2.0:
+ /screenfull@5.2.0:
resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
engines: {node: '>=0.10.0'}
dev: false
- /section-matter/1.0.0:
+ /section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
engines: {node: '>=4'}
dependencies:
@@ -12012,49 +11905,48 @@ packages:
kind-of: 6.0.3
dev: false
- /select-hose/2.0.0:
+ /select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
dev: false
- /selfsigned/2.0.1:
+ /selfsigned@2.0.1:
resolution: {integrity: sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==}
engines: {node: '>=10'}
dependencies:
node-forge: 1.3.1
dev: false
- /semver-compare/1.0.0:
+ /semver-compare@1.0.0:
resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
dev: true
- /semver/5.7.1:
+ /semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
hasBin: true
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true
- /semver/7.0.0:
+ /semver@7.0.0:
resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==}
hasBin: true
- /semver/7.3.5:
+ /semver@7.3.5:
resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
- dev: true
- /semver/7.3.8:
+ /semver@7.3.8:
resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
- /send/0.18.0:
+ /send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -12075,7 +11967,7 @@ packages:
- supports-color
dev: false
- /sentence-case/3.0.4:
+ /sentence-case@3.0.4:
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
dependencies:
no-case: 3.0.4
@@ -12083,12 +11975,12 @@ packages:
upper-case-first: 2.0.2
dev: true
- /serialize-javascript/6.0.0:
+ /serialize-javascript@6.0.0:
resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
dependencies:
randombytes: 2.1.0
- /serve-index/1.9.1:
+ /serve-index@1.9.1:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -12103,7 +11995,7 @@ packages:
- supports-color
dev: false
- /serve-static/1.15.0:
+ /serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -12115,70 +12007,70 @@ packages:
- supports-color
dev: false
- /set-cookie-parser/2.5.1:
+ /set-cookie-parser@2.5.1:
resolution: {integrity: sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==}
dev: false
- /set-harmonic-interval/1.0.1:
+ /set-harmonic-interval@1.0.1:
resolution: {integrity: sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==}
engines: {node: '>=6.9'}
dev: false
- /setprototypeof/1.1.0:
+ /setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
dev: false
- /setprototypeof/1.2.0:
+ /setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
dev: false
- /shallow-clone/3.0.1:
+ /shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
dev: false
- /shallowequal/1.1.0:
+ /shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
- /shebang-command/1.2.0:
+ /shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
dependencies:
shebang-regex: 1.0.0
dev: false
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
- /shebang-regex/1.0.0:
+ /shebang-regex@1.0.0:
resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
engines: {node: '>=0.10.0'}
dev: false
- /shebang-regex/3.0.0:
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /side-channel/1.0.4:
+ /side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.1.3
object-inspect: 1.12.2
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
- /sisteransi/1.0.5:
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: true
- /size-limit/6.0.3:
+ /size-limit@6.0.3:
resolution: {integrity: sha512-bvZuNG1dPJ8GTkFq3lXkW8H1+ybVV3D7GecowAGlfbNO2T1Mcvy8kCoCpwVOWnq1wV+TraRUtExnQzIyyV94NQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
hasBin: true
@@ -12192,22 +12084,20 @@ packages:
picocolors: 0.2.1
dev: true
- /slash/2.0.0:
+ /slash@2.0.0:
resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
engines: {node: '>=6'}
dev: false
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- dev: true
- /slash/4.0.0:
+ /slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
- dev: true
- /slice-ansi/3.0.0:
+ /slice-ansi@3.0.0:
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
engines: {node: '>=8'}
dependencies:
@@ -12216,23 +12106,22 @@ packages:
is-fullwidth-code-point: 3.0.0
dev: true
- /slice-ansi/4.0.0:
+ /slice-ansi@4.0.0:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
dependencies:
ansi-styles: 4.3.0
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- dev: true
- /snake-case/3.0.4:
+ /snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
dependencies:
dot-case: 3.0.4
tslib: 2.4.0
dev: true
- /sockjs/0.3.24:
+ /sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
faye-websocket: 0.11.4
@@ -12240,11 +12129,11 @@ packages:
websocket-driver: 0.7.4
dev: false
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
- /source-map-resolve/0.6.0:
+ /source-map-resolve@0.6.0:
resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==}
deprecated: See https://github.com/lydell/source-map-resolve#deprecated
dependencies:
@@ -12252,56 +12141,56 @@ packages:
decode-uri-component: 0.2.0
dev: true
- /source-map-support/0.5.20:
+ /source-map-support@0.5.20:
resolution: {integrity: sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- /source-map/0.5.6:
+ /source-map@0.5.6:
resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==}
engines: {node: '>=0.10.0'}
dev: false
- /source-map/0.5.7:
+ /source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- /source-map/0.7.3:
+ /source-map@0.7.3:
resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
engines: {node: '>= 8'}
- /sourcemap-codec/1.4.8:
+ /sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
deprecated: Please use @jridgewell/sourcemap-codec instead
dev: false
- /space-separated-tokens/1.1.5:
+ /space-separated-tokens@1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
- /spdx-correct/3.1.1:
+ /spdx-correct@3.1.1:
resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==}
dependencies:
spdx-expression-parse: 3.0.1
spdx-license-ids: 3.0.10
- /spdx-exceptions/2.3.0:
+ /spdx-exceptions@2.3.0:
resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
- /spdx-expression-parse/3.0.1:
+ /spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
dependencies:
spdx-exceptions: 2.3.0
spdx-license-ids: 3.0.10
- /spdx-license-ids/3.0.10:
+ /spdx-license-ids@3.0.10:
resolution: {integrity: sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==}
- /spdy-transport/3.0.0:
+ /spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
debug: 4.3.4
@@ -12314,7 +12203,7 @@ packages:
- supports-color
dev: false
- /spdy/4.0.2:
+ /spdy@4.0.2:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -12327,53 +12216,53 @@ packages:
- supports-color
dev: false
- /specificity/0.4.1:
+ /specificity@0.4.1:
resolution: {integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==}
hasBin: true
dev: true
- /split-on-first/1.1.0:
+ /split-on-first@1.1.0:
resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
engines: {node: '>=6'}
dev: false
- /sprintf-js/1.0.3:
+ /sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- /stable/0.1.8:
+ /stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
dev: true
- /stack-generator/2.0.10:
+ /stack-generator@2.0.10:
resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==}
dependencies:
stackframe: 1.3.4
dev: false
- /stack-trace/0.0.10:
+ /stack-trace@0.0.10:
resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
dev: true
- /stack-utils/2.0.5:
+ /stack-utils@2.0.5:
resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==}
engines: {node: '>=10'}
dependencies:
escape-string-regexp: 2.0.0
dev: true
- /stackframe/1.3.4:
+ /stackframe@1.3.4:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
dev: false
- /stacktrace-gps/3.1.2:
+ /stacktrace-gps@3.1.2:
resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==}
dependencies:
source-map: 0.5.6
stackframe: 1.3.4
dev: false
- /stacktrace-js/2.0.2:
+ /stacktrace-js@2.0.2:
resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==}
dependencies:
error-stack-parser: 2.1.4
@@ -12381,30 +12270,30 @@ packages:
stacktrace-gps: 3.1.2
dev: false
- /state-toggle/1.0.3:
+ /state-toggle@1.0.3:
resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
- /statuses/1.5.0:
+ /statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
dev: false
- /statuses/2.0.1:
+ /statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
dev: false
- /strict-uri-encode/2.0.0:
+ /strict-uri-encode@2.0.0:
resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
engines: {node: '>=4'}
dev: false
- /string-argv/0.3.1:
+ /string-argv@0.3.1:
resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==}
engines: {node: '>=0.6.19'}
dev: true
- /string-length/4.0.2:
+ /string-length@4.0.2:
resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
engines: {node: '>=10'}
dependencies:
@@ -12412,7 +12301,7 @@ packages:
strip-ansi: 6.0.1
dev: true
- /string-length/5.0.1:
+ /string-length@5.0.1:
resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==}
engines: {node: '>=12.20'}
dependencies:
@@ -12420,7 +12309,7 @@ packages:
strip-ansi: 7.0.1
dev: true
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
@@ -12428,7 +12317,7 @@ packages:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- /string.prototype.matchall/4.0.8:
+ /string.prototype.matchall@4.0.8:
resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
@@ -12439,36 +12328,33 @@ packages:
internal-slot: 1.0.3
regexp.prototype.flags: 1.4.3
side-channel: 1.0.4
- dev: true
- /string.prototype.trimend/1.0.6:
+ /string.prototype.trimend@1.0.6:
resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.5
- dev: true
- /string.prototype.trimstart/1.0.6:
+ /string.prototype.trimstart@1.0.6:
resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==}
dependencies:
call-bind: 1.0.2
define-properties: 1.1.4
es-abstract: 1.20.5
- dev: true
- /string_decoder/1.1.1:
+ /string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
dev: false
- /string_decoder/1.3.0:
+ /string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
- /stringify-entities/3.1.0:
+ /stringify-entities@3.1.0:
resolution: {integrity: sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg==}
dependencies:
character-entities-html4: 1.1.4
@@ -12476,7 +12362,7 @@ packages:
xtend: 4.0.2
dev: true
- /stringify-object/3.3.0:
+ /stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
engines: {node: '>=4'}
dependencies:
@@ -12485,56 +12371,54 @@ packages:
is-regexp: 1.0.0
dev: true
- /strip-ansi/6.0.1:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
- /strip-ansi/7.0.1:
+ /strip-ansi@7.0.1:
resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
dev: true
- /strip-bom-string/1.0.0:
+ /strip-bom-string@1.0.0:
resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
engines: {node: '>=0.10.0'}
dev: false
- /strip-bom/3.0.0:
+ /strip-bom@3.0.0:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- dev: true
- /strip-bom/4.0.0:
+ /strip-bom@4.0.0:
resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
engines: {node: '>=8'}
dev: true
- /strip-eof/1.0.0:
+ /strip-eof@1.0.0:
resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
engines: {node: '>=0.10.0'}
dev: false
- /strip-final-newline/2.0.0:
+ /strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- /strip-indent/3.0.0:
+ /strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
dependencies:
min-indent: 1.0.1
dev: true
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- dev: true
- /style-loader/3.3.0_webpack@5.58.2:
+ /style-loader@3.3.0(webpack@5.58.2):
resolution: {integrity: sha512-szANub7ksJtQioJYtpbWwh1hUl99uK15n5HDlikeCRil/zYMZgSxucHddyF/4A3qJMUiAjPhFowrrQuNMA7jwQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -12543,16 +12427,16 @@ packages:
webpack: 5.58.2
dev: true
- /style-search/0.1.0:
+ /style-search@0.1.0:
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
dev: true
- /style-to-object/0.3.0:
+ /style-to-object@0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
dependencies:
inline-style-parser: 0.1.1
- /styled-components/5.3.6_nnrd3gsncyragczmpvfhocinkq:
+ /styled-components@5.3.6(react-dom@18.3.1)(react-is@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg==}
engines: {node: '>=10'}
requiresBuild: true
@@ -12562,19 +12446,20 @@ packages:
react-is: '>= 16.8.0'
dependencies:
'@babel/helper-module-imports': 7.18.6
- '@babel/traverse': 7.20.5_supports-color@5.5.0
+ '@babel/traverse': 7.20.5(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.0.6_styled-components@5.3.6
+ babel-plugin-styled-components: 2.0.6(styled-components@5.3.6)
css-to-react-native: 3.0.0
hoist-non-react-statics: 3.3.2
react: 18.3.1
- react-dom: 18.3.1_react@18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 18.2.0
shallowequal: 1.1.0
supports-color: 5.5.0
- /styled-jsx/5.0.6_react@18.3.1:
+ /styled-jsx@5.0.6(@babel/core@7.20.5)(react@18.3.1):
resolution: {integrity: sha512-xOeROtkK5MGMDimBQ3J6iPId8q0t/BDoG5XN6oKkZClVz9ISF/hihN8OCn2LggMU6N32aXnrXBdn3auSqNS9fA==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -12587,10 +12472,10 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
+ '@babel/core': 7.20.5
react: 18.3.1
- dev: false
- /stylehacks/5.0.1_postcss@8.4.19:
+ /stylehacks@5.0.1(postcss@8.4.19):
resolution: {integrity: sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -12601,7 +12486,7 @@ packages:
postcss-selector-parser: 6.0.10
dev: true
- /stylelint-config-prettier/9.0.3_stylelint@14.8.5:
+ /stylelint-config-prettier@9.0.3(stylelint@14.8.5):
resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==}
engines: {node: '>= 12'}
hasBin: true
@@ -12611,7 +12496,7 @@ packages:
stylelint: 14.8.5
dev: true
- /stylelint-config-recommended/7.0.0_stylelint@14.8.5:
+ /stylelint-config-recommended@7.0.0(stylelint@14.8.5):
resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==}
peerDependencies:
stylelint: ^14.4.0
@@ -12619,11 +12504,11 @@ packages:
stylelint: 14.8.5
dev: true
- /stylelint-config-styled-components/0.1.1:
+ /stylelint-config-styled-components@0.1.1:
resolution: {integrity: sha512-z5Xz/9GmvxO6e/DLzBMwkB85zHxEEjN6K7Cj80Bi+o/9vR9eS3GX3E9VuMnX9WLFYulqbqLtTapGGY28JBiy9Q==}
dev: true
- /stylelint-webpack-plugin/3.3.0:
+ /stylelint-webpack-plugin@3.3.0(stylelint@14.8.5)(webpack@5.58.2):
resolution: {integrity: sha512-F53bapIZ9zI16ero8IWm6TrUE6SSibZBphJE9b5rR2FxtvmGmm1YmS+a5xjQzn63+cv71GVSCu4byX66fBLpEw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -12635,9 +12520,11 @@ packages:
micromatch: 4.0.5
normalize-path: 3.0.0
schema-utils: 4.0.0
+ stylelint: 14.8.5
+ webpack: 5.58.2
dev: true
- /stylelint/14.8.5:
+ /stylelint@14.8.5:
resolution: {integrity: sha512-e3t4H/hlWlspkcNUrkhf44RU3OpPTA7uBOoREGBzSwdEF+2g/+gbZq7WEpMP7BpopcSe/uLaTvDuL+URL7cdnQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true
@@ -12669,7 +12556,7 @@ packages:
postcss: 8.4.14
postcss-media-query-parser: 0.2.3
postcss-resolve-nested-selector: 0.1.1
- postcss-safe-parser: 6.0.0_postcss@8.4.14
+ postcss-safe-parser: 6.0.0(postcss@8.4.14)
postcss-selector-parser: 6.0.10
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
@@ -12686,11 +12573,11 @@ packages:
- supports-color
dev: true
- /stylis/4.1.1:
+ /stylis@4.1.1:
resolution: {integrity: sha512-lVrM/bNdhVX2OgBFNa2YJ9Lxj7kPzylieHd3TNjuGE0Re9JB7joL5VUKOVH1kdNNJTgGPpT8hmwIAPLaSyEVFQ==}
dev: false
- /sucrase/3.25.0:
+ /sucrase@3.25.0:
resolution: {integrity: sha512-WxTtwEYXSmZArPGStGBicyRsg5TBEFhT5b7N+tF+zauImP0Acy+CoUK0/byJ8JNPK/5lbpWIVuFagI4+0l85QQ==}
engines: {node: '>=8'}
hasBin: true
@@ -12703,25 +12590,25 @@ packages:
ts-interface-checker: 0.1.13
dev: false
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
- /supports-hyperlinks/2.2.0:
+ /supports-hyperlinks@2.2.0:
resolution: {integrity: sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==}
engines: {node: '>=8'}
dependencies:
@@ -12729,19 +12616,19 @@ packages:
supports-color: 7.2.0
dev: true
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /svg-parser/2.0.4:
+ /svg-parser@2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
dev: true
- /svg-tags/1.0.0:
+ /svg-tags@1.0.0:
resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
dev: true
- /svgo/1.3.2:
+ /svgo@1.3.2:
resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==}
engines: {node: '>=4.0.0'}
deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x.
@@ -12762,7 +12649,7 @@ packages:
util.promisify: 1.0.1
dev: true
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -12776,11 +12663,11 @@ packages:
stable: 0.1.8
dev: true
- /symbol-tree/3.2.4:
+ /symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
- /synckit/0.3.4:
+ /synckit@0.3.4:
resolution: {integrity: sha512-t6qVl+gzR6qMkrP5pW+sxGe0mVx/O7vj29ir9k4Lw9BacPBE/cKHMvcROJlFBgNHFW94etQL/sBYFq4uur6C6A==}
engines: {node: '>=8.10'}
dependencies:
@@ -12788,15 +12675,14 @@ packages:
uuid: 8.3.2
dev: true
- /synckit/0.8.4:
+ /synckit@0.8.4:
resolution: {integrity: sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==}
engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
'@pkgr/utils': 2.3.1
tslib: 2.4.0
- dev: true
- /table-layout/1.0.2:
+ /table-layout@1.0.2:
resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -12806,7 +12692,7 @@ packages:
wordwrapjs: 4.0.1
dev: false
- /table/6.8.0:
+ /table@6.8.0:
resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -12815,13 +12701,12 @@ packages:
slice-ansi: 4.0.0
string-width: 4.2.3
strip-ansi: 6.0.1
- dev: true
- /tapable/2.2.1:
+ /tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- /tar-fs/2.0.0:
+ /tar-fs@2.0.0:
resolution: {integrity: sha512-vaY0obB6Om/fso8a8vakQBzwholQ7v5+uy+tF3Ozvxv1KNezmVQAiWtcNmMHFSFPqL3dJA8ha6gdtFbfX9mcxA==}
dependencies:
chownr: 1.1.4
@@ -12830,7 +12715,7 @@ packages:
tar-stream: 2.2.0
dev: true
- /tar-stream/2.2.0:
+ /tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
dependencies:
@@ -12841,7 +12726,7 @@ packages:
readable-stream: 3.6.0
dev: true
- /terminal-link/2.1.1:
+ /terminal-link@2.1.1:
resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==}
engines: {node: '>=8'}
dependencies:
@@ -12849,7 +12734,7 @@ packages:
supports-hyperlinks: 2.2.0
dev: true
- /terser-webpack-plugin/5.2.4_webpack@5.58.2:
+ /terser-webpack-plugin@5.2.4(webpack@5.58.2):
resolution: {integrity: sha512-E2CkNMN+1cho04YpdANyRrn8CyN4yMy+WdFKZIySFZrGXZxJwJP6PMNGGc/Mcr6qygQHUUqRxnAPmi0M9f00XA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -12873,7 +12758,7 @@ packages:
terser: 5.9.0
webpack: 5.58.2
- /terser/5.14.2:
+ /terser@5.14.2:
resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==}
engines: {node: '>=10'}
hasBin: true
@@ -12884,7 +12769,7 @@ packages:
source-map-support: 0.5.20
dev: false
- /terser/5.9.0:
+ /terser@5.9.0:
resolution: {integrity: sha512-h5hxa23sCdpzcye/7b8YqbE5OwKca/ni0RQz1uRX3tGh8haaGHqcuSqbGRybuAKNdntZ0mDgFNXPJ48xQ2RXKQ==}
engines: {node: '>=10'}
hasBin: true
@@ -12894,7 +12779,7 @@ packages:
source-map: 0.7.3
source-map-support: 0.5.20
- /test-exclude/6.0.0:
+ /test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
dependencies:
@@ -12903,79 +12788,77 @@ packages:
minimatch: 3.1.2
dev: true
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- dev: true
- /thenify-all/1.6.0:
+ /thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
dependencies:
thenify: 3.3.1
dev: false
- /thenify/3.3.1:
+ /thenify@3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
dependencies:
any-promise: 1.3.0
dev: false
- /throat/6.0.1:
+ /throat@6.0.1:
resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==}
dev: true
- /throttle-debounce/3.0.1:
+ /throttle-debounce@3.0.1:
resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
engines: {node: '>=10'}
dev: false
- /through/2.3.8:
+ /through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
dev: true
- /thunky/1.1.0:
+ /thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
dev: false
- /timsort/0.3.0:
+ /timsort@0.3.0:
resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
dev: true
- /tiny-glob/0.2.9:
+ /tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
dependencies:
globalyzer: 0.1.0
globrex: 0.1.2
- dev: true
- /tiny-warning/1.0.3:
+ /tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
- /tmpl/1.0.5:
+ /tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
dev: true
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
- /to-regex-range/5.0.1:
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
- /toggle-selection/1.0.6:
+ /toggle-selection@1.0.6:
resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
dev: false
- /toidentifier/1.0.1:
+ /toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
dev: false
- /tough-cookie/4.0.0:
+ /tough-cookie@4.0.0:
resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==}
engines: {node: '>=6'}
dependencies:
@@ -12984,36 +12867,36 @@ packages:
universalify: 0.1.2
dev: true
- /tr46/2.1.0:
+ /tr46@2.1.0:
resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
engines: {node: '>=8'}
dependencies:
punycode: 2.1.1
dev: true
- /trim-newlines/3.0.1:
+ /trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
dev: true
- /trim-trailing-lines/1.1.4:
+ /trim-trailing-lines@1.1.4:
resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==}
- /trim/0.0.1:
+ /trim@0.0.1:
resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==}
- /trough/1.0.5:
+ /trough@1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
- /ts-easing/0.2.0:
+ /ts-easing@0.2.0:
resolution: {integrity: sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==}
dev: false
- /ts-interface-checker/0.1.13:
+ /ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
dev: false
- /ts-jest/27.1.5_o3dordnsyemiqst2x4vh2uebdy:
+ /ts-jest@27.1.5(@babel/core@7.20.5)(babel-jest@27.5.1)(jest@27.5.1)(typescript@4.9.4):
resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
hasBin: true
@@ -13035,9 +12918,10 @@ packages:
optional: true
dependencies:
'@babel/core': 7.20.5
+ babel-jest: 27.5.1(@babel/core@7.20.5)
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 27.5.1_ts-node@10.9.1
+ jest: 27.5.1(ts-node@10.9.1)
jest-util: 27.5.1
json5: 2.2.1
lodash.memoize: 4.1.2
@@ -13047,14 +12931,14 @@ packages:
yargs-parser: 20.2.9
dev: true
- /ts-morph/17.0.1:
+ /ts-morph@17.0.1:
resolution: {integrity: sha512-10PkHyXmrtsTvZSL+cqtJLTgFXkU43Gd0JCc0Rw6GchWbqKe0Rwgt1v3ouobTZwQzF1mGhDeAlWYBMGRV7y+3g==}
dependencies:
'@ts-morph/common': 0.18.1
code-block-writer: 11.0.3
dev: true
- /ts-node/10.9.1_bt5sflnlgjdtoyp24iylol6xsy:
+ /ts-node@10.9.1(@types/node@16.11.6)(typescript@4.9.4):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -13085,11 +12969,11 @@ packages:
yn: 3.1.1
dev: true
- /ts-pattern/4.3.0:
+ /ts-pattern@4.3.0:
resolution: {integrity: sha512-pefrkcd4lmIVR0LA49Imjf9DYLK8vtWhqBPA3Ya1ir8xCW0O2yjL9dsCVvI7pCodLC5q7smNpEtDR2yVulQxOg==}
dev: false
- /tsconfck/2.0.1_typescript@4.9.4:
+ /tsconfck@2.0.1(typescript@4.9.4):
resolution: {integrity: sha512-/ipap2eecmVBmBlsQLBRbUmUNFwNJV/z2E+X0FPtHNjPwroMZQ7m39RMaCywlCulBheYXgMdUlWDd9rzxwMA0Q==}
engines: {node: ^14.13.1 || ^16 || >=18, pnpm: ^7.0.1}
hasBin: true
@@ -13102,26 +12986,24 @@ packages:
typescript: 4.9.4
dev: true
- /tsconfig-paths/3.14.1:
+ /tsconfig-paths@3.14.1:
resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==}
dependencies:
'@types/json5': 0.0.29
json5: 1.0.1
minimist: 1.2.6
strip-bom: 3.0.0
- dev: true
- /tslib/1.14.1:
+ /tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- dev: true
- /tslib/2.3.1:
+ /tslib@2.3.1:
resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
- /tslib/2.4.0:
+ /tslib@2.4.0:
resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
- /tsutils/3.21.0_typescript@4.9.4:
+ /tsutils@3.21.0(typescript@4.9.4):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
@@ -13129,51 +13011,48 @@ packages:
dependencies:
tslib: 1.14.1
typescript: 4.9.4
- dev: true
- /type-check/0.3.2:
+ /type-check@0.3.2:
resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.1.2
dev: true
- /type-check/0.4.0:
+ /type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
dependencies:
prelude-ls: 1.2.1
- dev: true
- /type-detect/4.0.8:
+ /type-detect@4.0.8:
resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
engines: {node: '>=4'}
dev: true
- /type-fest/0.18.1:
+ /type-fest@0.18.1:
resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==}
engines: {node: '>=10'}
dev: true
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
- dev: true
- /type-fest/0.21.3:
+ /type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
dev: true
- /type-fest/0.6.0:
+ /type-fest@0.6.0:
resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
engines: {node: '>=8'}
- /type-fest/0.8.1:
+ /type-fest@0.8.1:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
- /type-is/1.6.18:
+ /type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
dependencies:
@@ -13181,13 +13060,13 @@ packages:
mime-types: 2.1.35
dev: false
- /typedarray-to-buffer/3.1.5:
+ /typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
dependencies:
is-typedarray: 1.0.0
dev: true
- /typescript-styled-plugin/0.18.2:
+ /typescript-styled-plugin@0.18.2:
resolution: {integrity: sha512-eBs898Zz5C+k59ZydKVYBHjw4dC5WRxidOT7wfGkjLRZHKL6zIl6xkjIHMuctDE9hctxTq+GJcaXgk30lKEM9A==}
dependencies:
typescript-template-language-service-decorator: 2.3.1
@@ -13197,73 +13076,72 @@ packages:
vscode-languageserver-types: 3.17.1
dev: true
- /typescript-template-language-service-decorator/2.3.1:
+ /typescript-template-language-service-decorator@2.3.1:
resolution: {integrity: sha512-+Q5+cvBtPO4VKNyyI6O+XnIne+/hq/WfNhBaF4hJP8nB8TbikTg+2h9uBMsqduwX1+kVfwG9SBSwMTtvi2Ep7w==}
dev: true
- /typescript/4.8.4:
+ /typescript@4.8.4:
resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==}
engines: {node: '>=4.2.0'}
hasBin: true
dev: true
- /typescript/4.9.4:
+ /typescript@4.9.4:
resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==}
engines: {node: '>=4.2.0'}
hasBin: true
- /typical/4.0.0:
+ /typical@4.0.0:
resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==}
engines: {node: '>=8'}
dev: false
- /typical/5.2.0:
+ /typical@5.2.0:
resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==}
engines: {node: '>=8'}
dev: false
- /unbox-primitive/1.0.2:
+ /unbox-primitive@1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies:
call-bind: 1.0.2
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
- dev: true
- /unbzip2-stream/1.3.3:
+ /unbzip2-stream@1.3.3:
resolution: {integrity: sha512-fUlAF7U9Ah1Q6EieQ4x4zLNejrRvDWUYmxXUpN3uziFYCHapjWFaCAnreY9bGgxzaMCFAPPpYNng57CypwJVhg==}
dependencies:
buffer: 5.7.1
through: 2.3.8
dev: true
- /unherit/1.1.3:
+ /unherit@1.1.3:
resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
dependencies:
inherits: 2.0.4
xtend: 4.0.2
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.0
unicode-property-aliases-ecmascript: 2.0.0
- /unicode-match-property-value-ecmascript/2.0.0:
+ /unicode-match-property-value-ecmascript@2.0.0:
resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==}
engines: {node: '>=4'}
- /unicode-property-aliases-ecmascript/2.0.0:
+ /unicode-property-aliases-ecmascript@2.0.0:
resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==}
engines: {node: '>=4'}
- /unified/9.2.0:
+ /unified@9.2.0:
resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
dependencies:
'@types/unist': 2.0.6
@@ -13274,7 +13152,7 @@ packages:
trough: 1.0.5
vfile: 4.2.1
- /unified/9.2.2:
+ /unified@9.2.2:
resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
dependencies:
'@types/unist': 2.0.6
@@ -13286,70 +13164,70 @@ packages:
vfile: 4.2.1
dev: true
- /uniqs/2.0.0:
+ /uniqs@2.0.0:
resolution: {integrity: sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==}
dev: true
- /unist-builder/2.0.3:
+ /unist-builder@2.0.3:
resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==}
- /unist-util-generated/1.1.6:
+ /unist-util-generated@1.1.6:
resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==}
- /unist-util-is/4.1.0:
+ /unist-util-is@4.1.0:
resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
- /unist-util-position/3.1.0:
+ /unist-util-position@3.1.0:
resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==}
- /unist-util-remove-position/2.0.1:
+ /unist-util-remove-position@2.0.1:
resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==}
dependencies:
unist-util-visit: 2.0.3
- /unist-util-remove/2.1.0:
+ /unist-util-remove@2.1.0:
resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==}
dependencies:
unist-util-is: 4.1.0
- /unist-util-stringify-position/2.0.3:
+ /unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
dependencies:
'@types/unist': 2.0.6
- /unist-util-visit-parents/3.1.1:
+ /unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
dependencies:
'@types/unist': 2.0.6
unist-util-is: 4.1.0
- /unist-util-visit/2.0.3:
+ /unist-util-visit@2.0.3:
resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==}
dependencies:
'@types/unist': 2.0.6
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
- /universalify/0.1.2:
+ /universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
dev: true
- /universalify/2.0.0:
+ /universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
dev: true
- /unpipe/1.0.0:
+ /unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
dev: false
- /unquote/1.1.1:
+ /unquote@1.1.1:
resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
dev: true
- /update-browserslist-db/1.0.5_browserslist@4.21.3:
+ /update-browserslist-db@1.0.5(browserslist@4.21.3):
resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==}
hasBin: true
peerDependencies:
@@ -13359,28 +13237,28 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
- /upper-case-first/2.0.2:
+ /upper-case-first@2.0.2:
resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
dependencies:
tslib: 2.4.0
dev: true
- /upper-case/2.0.2:
+ /upper-case@2.0.2:
resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==}
dependencies:
tslib: 2.4.0
dev: true
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.1.1
- /url-join/4.0.1:
+ /url-join@4.0.1:
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
dev: false
- /use-debounce/3.4.3_react@18.3.1:
+ /use-debounce@3.4.3(react@18.3.1):
resolution: {integrity: sha512-nxy+opOxDccWfhMl36J5BSCTpvcj89iaQk2OZWLAtBJQj7ISCtx1gh+rFbdjGfMl6vtCZf6gke/kYvrkVfHMoA==}
peerDependencies:
react: '>=16.8.0'
@@ -13388,7 +13266,7 @@ packages:
react: 18.3.1
dev: false
- /use-editable/2.3.3_react@18.3.1:
+ /use-editable@2.3.3(react@18.3.1):
resolution: {integrity: sha512-7wVD2JbfAFJ3DK0vITvXBdpd9JAz5BcKAAolsnLBuBn6UDDwBGuCIAGvR3yA2BNKm578vAMVHFCWaOcA+BhhiA==}
peerDependencies:
react: '>= 16.8.0'
@@ -13396,18 +13274,17 @@ packages:
react: 18.3.1
dev: false
- /use-sync-external-store/1.2.0_react@18.3.1:
+ /use-sync-external-store@1.2.0(react@18.3.1):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
react: 18.3.1
- dev: false
- /util-deprecate/1.0.2:
+ /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- /util.promisify/1.0.1:
+ /util.promisify@1.0.1:
resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==}
dependencies:
define-properties: 1.1.4
@@ -13416,33 +13293,32 @@ packages:
object.getownpropertydescriptors: 2.1.3
dev: true
- /utila/0.4.0:
+ /utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
dev: false
- /utility-types/3.10.0:
+ /utility-types@3.10.0:
resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
engines: {node: '>= 4'}
dev: true
- /utils-merge/1.0.1:
+ /utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
dev: false
- /uuid/8.3.2:
+ /uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- /v8-compile-cache-lib/3.0.1:
+ /v8-compile-cache-lib@3.0.1:
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
dev: true
- /v8-compile-cache/2.3.0:
+ /v8-compile-cache@2.3.0:
resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==}
- dev: true
- /v8-to-istanbul/8.1.1:
+ /v8-to-istanbul@8.1.1:
resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==}
engines: {node: '>=10.12.0'}
dependencies:
@@ -13451,36 +13327,36 @@ packages:
source-map: 0.7.3
dev: true
- /validate-npm-package-license/3.0.4:
+ /validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
dependencies:
spdx-correct: 3.1.1
spdx-expression-parse: 3.0.1
- /validator/13.7.0:
+ /validator@13.7.0:
resolution: {integrity: sha512-nYXQLCBkpJ8X6ltALua9dRrZDHVYxjJ1wgskNt1lH9fzGjs3tgojGSCBjmEPwkWS1y29+DrizMTW19Pr9uB2nw==}
engines: {node: '>= 0.10'}
dev: true
- /vary/1.1.2:
+ /vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
dev: false
- /vendors/1.0.4:
+ /vendors@1.0.4:
resolution: {integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==}
dev: true
- /vfile-location/3.2.0:
+ /vfile-location@3.2.0:
resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==}
- /vfile-message/2.0.4:
+ /vfile-message@2.0.4:
resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
dependencies:
'@types/unist': 2.0.6
unist-util-stringify-position: 2.0.3
- /vfile/4.2.1:
+ /vfile@4.2.1:
resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
dependencies:
'@types/unist': 2.0.6
@@ -13488,23 +13364,23 @@ packages:
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
- /vite-plugin-babel-macros/1.0.6_vite@3.2.5:
+ /vite-plugin-babel-macros@1.0.6(vite@3.2.5):
resolution: {integrity: sha512-7cCT8jtu5UjpE46pH7RyVltWw5FbhDAtQliZ6QGqRNR5RUZKdAsB0CDjuF+VBoDpnl0KuESPu22SoNqXRYYWyQ==}
engines: {node: '>=16'}
peerDependencies:
vite: '>=2'
dependencies:
'@babel/core': 7.20.5
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.20.5
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.5)
+ '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.20.5)
'@types/babel__core': 7.1.18
babel-plugin-macros: 3.1.0
- vite: 3.2.5_@types+node@16.11.6
+ vite: 3.2.5(@types/node@16.11.6)
transitivePeerDependencies:
- supports-color
dev: true
- /vite-plugin-dts/1.7.1_vite@3.2.5:
+ /vite-plugin-dts@1.7.1(vite@3.2.5):
resolution: {integrity: sha512-2oGMnAjcrZN7jM1TloiS1b1mCn42s3El04ix2RFhId5P1WfMigF8WAwsqT6a6jk0Yso8t7AeZsBkkxYShR0hBQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -13518,13 +13394,13 @@ packages:
fs-extra: 10.1.0
kolorist: 1.6.0
ts-morph: 17.0.1
- vite: 3.2.5_@types+node@16.11.6
+ vite: 3.2.5(@types/node@16.11.6)
transitivePeerDependencies:
- rollup
- supports-color
dev: true
- /vite-plugin-stylelint/2.3.1_vite@3.2.5:
+ /vite-plugin-stylelint@2.3.1(stylelint@14.8.5)(vite@3.2.5):
resolution: {integrity: sha512-UZACgw82/1C5WDIK/JghxSAdD8rjR4xuqolPmbBu/gUCQfnJOkGFYclfrzsKHiV0JWHd/x1XtyIde2pc7j10NQ==}
peerDependencies:
'@types/stylelint': ^13.0.0
@@ -13535,35 +13411,36 @@ packages:
optional: true
dependencies:
'@rollup/pluginutils': 4.2.1
- vite: 3.2.5_@types+node@16.11.6
+ stylelint: 14.8.5
+ vite: 3.2.5(@types/node@16.11.6)
dev: true
- /vite-plugin-svgr/1.1.0_vite@3.2.5:
+ /vite-plugin-svgr@1.1.0(vite@3.2.5):
resolution: {integrity: sha512-fuwfRpUoMBX3wr47JVt4b4xpMYujONDGyDwZFE4JuohVTJovJ4VCNeAb3//mzdRxdzeHEfJuedpoHTvwPsqisA==}
peerDependencies:
vite: ^2.6.0
dependencies:
'@svgr/core': 6.3.1
- vite: 3.2.5_@types+node@16.11.6
+ vite: 3.2.5(@types/node@16.11.6)
transitivePeerDependencies:
- supports-color
dev: true
- /vite-tsconfig-paths/4.0.1_7g3uriyb4kqeq2yf2bucr7z2ea:
+ /vite-tsconfig-paths@4.0.1(typescript@4.9.4)(vite@3.2.5):
resolution: {integrity: sha512-CQpI+zxo8/CnqsAaM2+Kpsgaj7UEKlM1fMMcm7RZQlcxRd7JwGpsYhrHJo/dIA3lsd7HI4JtSflH4+Ip+Dymkw==}
peerDependencies:
vite: '>2.0.0-0'
dependencies:
debug: 4.3.4
globrex: 0.1.2
- tsconfck: 2.0.1_typescript@4.9.4
- vite: 3.2.5_@types+node@16.11.6
+ tsconfck: 2.0.1(typescript@4.9.4)
+ vite: 3.2.5(@types/node@16.11.6)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /vite/3.2.5_@types+node@16.11.6:
+ /vite@3.2.5(@types/node@16.11.6):
resolution: {integrity: sha512-4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -13597,7 +13474,7 @@ packages:
fsevents: 2.3.2
dev: true
- /vscode-css-languageservice/5.4.2:
+ /vscode-css-languageservice@5.4.2:
resolution: {integrity: sha512-DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg==}
dependencies:
vscode-languageserver-textdocument: 1.0.5
@@ -13606,7 +13483,7 @@ packages:
vscode-uri: 3.0.3
dev: true
- /vscode-emmet-helper/2.6.4:
+ /vscode-emmet-helper@2.6.4:
resolution: {integrity: sha512-fP0nunW1RUWEKGf4gqiYLOVNFFGXSRHjCl0pikxtwCFlty8WwimM+RBJ5o0aIiwerrYD30HqeaVyvDW027Sseg==}
deprecated: This package has been renamed to @vscode/emmet-helper, please update to the new name
dependencies:
@@ -13618,73 +13495,73 @@ packages:
vscode-uri: 2.1.2
dev: true
- /vscode-languageserver-textdocument/1.0.5:
+ /vscode-languageserver-textdocument@1.0.5:
resolution: {integrity: sha512-1ah7zyQjKBudnMiHbZmxz5bYNM9KKZYz+5VQLj+yr8l+9w3g+WAhCkUkWbhMEdC5u0ub4Ndiye/fDyS8ghIKQg==}
dev: true
- /vscode-languageserver-types/3.17.1:
+ /vscode-languageserver-types@3.17.1:
resolution: {integrity: sha512-K3HqVRPElLZVVPtMeKlsyL9aK0GxGQpvtAUTfX4k7+iJ4mc1M+JM+zQwkgGy2LzY0f0IAafe8MKqIkJrxfGGjQ==}
dev: true
- /vscode-nls/5.0.1:
+ /vscode-nls@5.0.1:
resolution: {integrity: sha512-hHQV6iig+M21lTdItKPkJAaWrxALQb/nqpVffakO4knJOh3DrU2SXOMzUzNgo1eADPzu3qSsJY1weCzvR52q9A==}
dev: true
- /vscode-uri/2.1.2:
+ /vscode-uri@2.1.2:
resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==}
dev: true
- /vscode-uri/3.0.3:
+ /vscode-uri@3.0.3:
resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==}
dev: true
- /w3c-hr-time/1.0.2:
+ /w3c-hr-time@1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
deprecated: Use your platform's native performance.now() and performance.timeOrigin.
dependencies:
browser-process-hrtime: 1.0.0
dev: true
- /w3c-xmlserializer/2.0.0:
+ /w3c-xmlserializer@2.0.0:
resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==}
engines: {node: '>=10'}
dependencies:
xml-name-validator: 3.0.0
dev: true
- /walker/1.0.7:
+ /walker@1.0.7:
resolution: {integrity: sha512-cF4je9Fgt6sj1PKfuFt9jpQPeHosM+Ryma/hfY9U7uXGKM7pJCsF0v2r55o+Il54+i77SyYWetB4tD1dEygRkw==}
dependencies:
makeerror: 1.0.11
dev: true
- /watchpack/2.2.0:
+ /watchpack@2.2.0:
resolution: {integrity: sha512-up4YAn/XHgZHIxFBVCdlMiWDj6WaLKpwVeGQk2I5thdYxF/KmF0aaz6TfJZ/hfl1h/XlcDr7k1KH7ThDagpFaA==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.9
- /wbuf/1.7.3:
+ /wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
minimalistic-assert: 1.0.1
dev: false
- /web-namespaces/1.1.4:
+ /web-namespaces@1.1.4:
resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==}
- /webidl-conversions/5.0.0:
+ /webidl-conversions@5.0.0:
resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
engines: {node: '>=8'}
dev: true
- /webidl-conversions/6.1.0:
+ /webidl-conversions@6.1.0:
resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==}
engines: {node: '>=10.4'}
dev: true
- /webpack-dev-middleware/5.3.3_webpack@5.58.2:
+ /webpack-dev-middleware@5.3.3(webpack@5.58.2):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -13698,7 +13575,7 @@ packages:
webpack: 5.58.2
dev: false
- /webpack-dev-server/4.9.3_webpack@5.58.2:
+ /webpack-dev-server@4.9.3(webpack@5.58.2):
resolution: {integrity: sha512-3qp/eoboZG5/6QgiZ3llN8TUzkSpYg1Ko9khWX1h40MIEUNS2mDoIa8aXsPfskER+GbTvs/IJZ1QTBBhhuetSw==}
engines: {node: '>= 12.13.0'}
hasBin: true
@@ -13726,7 +13603,7 @@ packages:
express: 4.18.1
graceful-fs: 4.2.9
html-entities: 2.3.3
- http-proxy-middleware: 2.0.6_@types+express@4.17.13
+ http-proxy-middleware: 2.0.6(@types/express@4.17.13)
ipaddr.js: 2.0.1
open: 8.4.0
p-retry: 4.6.2
@@ -13737,7 +13614,7 @@ packages:
sockjs: 0.3.24
spdy: 4.0.2
webpack: 5.58.2
- webpack-dev-middleware: 5.3.3_webpack@5.58.2
+ webpack-dev-middleware: 5.3.3(webpack@5.58.2)
ws: 8.8.1
transitivePeerDependencies:
- bufferutil
@@ -13746,7 +13623,7 @@ packages:
- utf-8-validate
dev: false
- /webpack-merge/5.8.0:
+ /webpack-merge@5.8.0:
resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -13754,11 +13631,11 @@ packages:
wildcard: 2.0.0
dev: false
- /webpack-sources/3.2.1:
+ /webpack-sources@3.2.1:
resolution: {integrity: sha512-t6BMVLQ0AkjBOoRTZgqrWm7xbXMBzD+XDq2EZ96+vMfn3qKgsvdXZhbPZ4ElUOpdv4u+iiGe+w3+J75iy/bYGA==}
engines: {node: '>=10.13.0'}
- /webpack/5.58.2:
+ /webpack@5.58.2:
resolution: {integrity: sha512-3S6e9Vo1W2ijk4F4PPWRIu6D/uGgqaPmqw+av3W3jLDujuNkdxX5h5c+RQ6GkjVR+WwIPOfgY8av+j5j4tMqJw==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -13774,7 +13651,7 @@ packages:
'@webassemblyjs/wasm-edit': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
acorn: 8.5.0
- acorn-import-assertions: 1.7.6_acorn@8.5.0
+ acorn-import-assertions: 1.7.6(acorn@8.5.0)
browserslist: 4.20.3
chrome-trace-event: 1.0.3
enhanced-resolve: 5.8.3
@@ -13789,7 +13666,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.1.1
tapable: 2.2.1
- terser-webpack-plugin: 5.2.4_webpack@5.58.2
+ terser-webpack-plugin: 5.2.4(webpack@5.58.2)
watchpack: 2.2.0
webpack-sources: 3.2.1
transitivePeerDependencies:
@@ -13797,7 +13674,7 @@ packages:
- esbuild
- uglify-js
- /websocket-driver/0.7.4:
+ /websocket-driver@0.7.4:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
engines: {node: '>=0.8.0'}
dependencies:
@@ -13806,22 +13683,22 @@ packages:
websocket-extensions: 0.1.4
dev: false
- /websocket-extensions/0.1.4:
+ /websocket-extensions@0.1.4:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
dev: false
- /whatwg-encoding/1.0.5:
+ /whatwg-encoding@1.0.5:
resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==}
dependencies:
iconv-lite: 0.4.24
dev: true
- /whatwg-mimetype/2.3.0:
+ /whatwg-mimetype@2.3.0:
resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==}
dev: true
- /whatwg-url/8.7.0:
+ /whatwg-url@8.7.0:
resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==}
engines: {node: '>=10'}
dependencies:
@@ -13830,7 +13707,7 @@ packages:
webidl-conversions: 6.1.0
dev: true
- /which-boxed-primitive/1.0.2:
+ /which-boxed-primitive@1.0.2:
resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
dependencies:
is-bigint: 1.0.4
@@ -13838,26 +13715,25 @@ packages:
is-number-object: 1.0.6
is-string: 1.0.7
is-symbol: 1.0.4
- dev: true
- /which/1.3.1:
+ /which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
dependencies:
isexe: 2.0.0
- /which/2.0.2:
+ /which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
hasBin: true
dependencies:
isexe: 2.0.0
- /wildcard/2.0.0:
+ /wildcard@2.0.0:
resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
dev: false
- /winston/2.4.5:
+ /winston@2.4.5:
resolution: {integrity: sha512-TWoamHt5yYvsMarGlGEQE59SbJHqGsZV8/lwC+iCcGeAe0vUaOh+Lv6SYM17ouzC/a/LB1/hz/7sxFBtlu1l4A==}
engines: {node: '>= 0.10.0'}
dependencies:
@@ -13869,12 +13745,11 @@ packages:
stack-trace: 0.0.10
dev: true
- /word-wrap/1.2.3:
+ /word-wrap@1.2.3:
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
engines: {node: '>=0.10.0'}
- dev: true
- /wordwrapjs/4.0.1:
+ /wordwrapjs@4.0.1:
resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -13882,7 +13757,7 @@ packages:
typical: 5.2.0
dev: false
- /wrap-ansi/6.2.0:
+ /wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
dependencies:
@@ -13891,7 +13766,7 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrap-ansi/7.0.0:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -13900,10 +13775,10 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
- /write-file-atomic/3.0.3:
+ /write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
dependencies:
imurmurhash: 0.1.4
@@ -13912,7 +13787,7 @@ packages:
typedarray-to-buffer: 3.1.5
dev: true
- /write-file-atomic/4.0.1:
+ /write-file-atomic@4.0.1:
resolution: {integrity: sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16}
dependencies:
@@ -13920,7 +13795,7 @@ packages:
signal-exit: 3.0.7
dev: true
- /ws/7.4.6:
+ /ws@7.4.6:
resolution: {integrity: sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==}
engines: {node: '>=8.3.0'}
peerDependencies:
@@ -13933,7 +13808,7 @@ packages:
optional: true
dev: true
- /ws/8.8.1:
+ /ws@8.8.1:
resolution: {integrity: sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -13946,46 +13821,46 @@ packages:
optional: true
dev: false
- /xml-name-validator/3.0.0:
+ /xml-name-validator@3.0.0:
resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==}
dev: true
- /xmlchars/2.2.0:
+ /xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
dev: true
- /xtend/4.0.2:
+ /xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
- /y18n/5.0.8:
+ /y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
dev: true
- /yallist/2.1.2:
+ /yallist@2.1.2:
resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
dev: false
- /yallist/4.0.0:
+ /yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
dev: true
- /yargs-parser/20.2.9:
+ /yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
dev: true
- /yargs-parser/21.1.1:
+ /yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
dev: true
- /yargs/16.2.0:
+ /yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
dependencies:
@@ -13998,7 +13873,7 @@ packages:
yargs-parser: 20.2.9
dev: true
- /yargs/17.7.2:
+ /yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
dependencies:
@@ -14011,23 +13886,23 @@ packages:
yargs-parser: 21.1.1
dev: true
- /yauzl/2.10.0:
+ /yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
dev: true
- /yn/3.1.1:
+ /yn@3.1.1:
resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
engines: {node: '>=6'}
dev: true
- /yocto-queue/0.1.0:
+ /yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- /z-schema/5.0.4:
+ /z-schema@5.0.4:
resolution: {integrity: sha512-gm/lx3hDzJNcLwseIeQVm1UcwhWIKpSB4NqH89pTBtFns4k/HDHudsICtvG05Bvw/Mv3jMyk700y5dadueLHdA==}
engines: {node: '>=8.0.0'}
hasBin: true
@@ -14039,5 +13914,5 @@ packages:
commander: 2.20.3
dev: true
- /zwitch/1.0.5:
+ /zwitch@1.0.5:
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}